
    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_f1c620b97031410e48b74254.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00000{vertical-align:0.000000px;}
.ls0_c00000{letter-spacing:0.000000px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00000{word-spacing:-117.000000px;}
.ws1_c00000{word-spacing:-11.124000px;}
.ws2_c00000{word-spacing:0.000000px;}
._3_c00000{margin-left:-100.108739px;}
._2_c00000{margin-left:-17.538720px;}
._17_c00000{margin-left:-7.668000px;}
._11_c00000{margin-left:-6.480000px;}
._1c_c00000{margin-left:-5.448000px;}
._1b_c00000{margin-left:-3.780000px;}
._a_c00000{margin-left:-1.320000px;}
._1e_c00000{width:1.299660px;}
._6_c00000{width:2.508000px;}
._15_c00000{width:3.672000px;}
._12_c00000{width:5.184000px;}
._e_c00000{width:9.906000px;}
._10_c00000{width:12.308340px;}
._19_c00000{width:13.812000px;}
._20_c00000{width:18.132000px;}
._16_c00000{width:19.224000px;}
._13_c00000{width:21.276000px;}
._1a_c00000{width:22.866000px;}
._14_c00000{width:24.006000px;}
._18_c00000{width:25.026000px;}
._1d_c00000{width:26.988000px;}
._9_c00000{width:28.644000px;}
._5_c00000{width:30.228000px;}
._7_c00000{width:33.137940px;}
._b_c00000{width:37.488000px;}
._d_c00000{width:39.552000px;}
._8_c00000{width:41.184000px;}
._4_c00000{width:42.636000px;}
._f_c00000{width:44.160000px;}
._0_c00000{width:47.190000px;}
._1_c00000{width:48.357660px;}
._c_c00000{width:51.002340px;}
._21_c00000{width:54.588000px;}
._1f_c00000{width:61.226340px;}
.fc0_c00000{color:transparent;}
.fs5_c00000{font-size:108.000000px;}
.fs4_c00000{font-size:120.000000px;}
.fs3_c00000{font-size:132.000000px;}
.fs1_c00000{font-size:224.538000px;}
.fs2_c00000{font-size:333.678000px;}
.fs0_c00000{font-size:390.000000px;}
.y0_c00000{bottom:0.000000px;}
.y9_c00000{bottom:245.134500px;}
.y8_c00000{bottom:281.134500px;}
.y7_c00000{bottom:333.334500px;}
.y6_c00000{bottom:369.334500px;}
.y5_c00000{bottom:405.334500px;}
.y4_c00000{bottom:455.592000px;}
.y1_c00000{bottom:1113.756000px;}
.y3_c00000{bottom:1114.552500px;}
.y2_c00000{bottom:1152.325500px;}
.h5_c00000{height:108.000000px;}
.h4_c00000{height:120.000000px;}
.h3_c00000{height:132.000000px;}
.h2_c00000{height:390.000000px;}
.h1_c00000{height:1267.500000px;}
.h0_c00000{height:1267.765500px;}
.w1_c00000{width:897.000000px;}
.w0_c00000{width:897.330000px;}
.x0_c00000{left:0.000000px;}
.x1_c00000{left:189.165000px;}
.x5_c00000{left:207.751500px;}
.x4_c00000{left:235.053000px;}
.x6_c00000{left:246.352500px;}
.x8_c00000{left:343.566000px;}
.x3_c00000{left:365.017500px;}
.x2_c00000{left:366.330000px;}
.x9_c00000{left:370.255500px;}
.x7_c00000{left:380.869500px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:-104.000000pt;}
.ws1_c00000{word-spacing:-9.888000pt;}
.ws2_c00000{word-spacing:0.000000pt;}
._3_c00000{margin-left:-88.985546pt;}
._2_c00000{margin-left:-15.589973pt;}
._17_c00000{margin-left:-6.816000pt;}
._11_c00000{margin-left:-5.760000pt;}
._1c_c00000{margin-left:-4.842667pt;}
._1b_c00000{margin-left:-3.360000pt;}
._a_c00000{margin-left:-1.173333pt;}
._1e_c00000{width:1.155253pt;}
._6_c00000{width:2.229333pt;}
._15_c00000{width:3.264000pt;}
._12_c00000{width:4.608000pt;}
._e_c00000{width:8.805333pt;}
._10_c00000{width:10.940747pt;}
._19_c00000{width:12.277333pt;}
._20_c00000{width:16.117333pt;}
._16_c00000{width:17.088000pt;}
._13_c00000{width:18.912000pt;}
._1a_c00000{width:20.325333pt;}
._14_c00000{width:21.338667pt;}
._18_c00000{width:22.245333pt;}
._1d_c00000{width:23.989333pt;}
._9_c00000{width:25.461333pt;}
._5_c00000{width:26.869333pt;}
._7_c00000{width:29.455947pt;}
._b_c00000{width:33.322667pt;}
._d_c00000{width:35.157333pt;}
._8_c00000{width:36.608000pt;}
._4_c00000{width:37.898667pt;}
._f_c00000{width:39.253333pt;}
._0_c00000{width:41.946667pt;}
._1_c00000{width:42.984587pt;}
._c_c00000{width:45.335413pt;}
._21_c00000{width:48.522667pt;}
._1f_c00000{width:54.423413pt;}
.fs5_c00000{font-size:96.000000pt;}
.fs4_c00000{font-size:106.666667pt;}
.fs3_c00000{font-size:117.333333pt;}
.fs1_c00000{font-size:199.589333pt;}
.fs2_c00000{font-size:296.602667pt;}
.fs0_c00000{font-size:346.666667pt;}
.y0_c00000{bottom:0.000000pt;}
.y9_c00000{bottom:217.897333pt;}
.y8_c00000{bottom:249.897333pt;}
.y7_c00000{bottom:296.297333pt;}
.y6_c00000{bottom:328.297333pt;}
.y5_c00000{bottom:360.297333pt;}
.y4_c00000{bottom:404.970667pt;}
.y1_c00000{bottom:990.005333pt;}
.y3_c00000{bottom:990.713333pt;}
.y2_c00000{bottom:1024.289333pt;}
.h5_c00000{height:96.000000pt;}
.h4_c00000{height:106.666667pt;}
.h3_c00000{height:117.333333pt;}
.h2_c00000{height:346.666667pt;}
.h1_c00000{height:1126.666667pt;}
.h0_c00000{height:1126.902667pt;}
.w1_c00000{width:797.333333pt;}
.w0_c00000{width:797.626667pt;}
.x0_c00000{left:0.000000pt;}
.x1_c00000{left:168.146667pt;}
.x5_c00000{left:184.668000pt;}
.x4_c00000{left:208.936000pt;}
.x6_c00000{left:218.980000pt;}
.x8_c00000{left:305.392000pt;}
.x3_c00000{left:324.460000pt;}
.x2_c00000{left:325.626667pt;}
.x9_c00000{left:329.116000pt;}
.x7_c00000{left:338.550667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_baed771ab56ab512902b78a9.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00001;src:url('chunks/assets/font_2e9921f671cc3edf19150726.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:0.861816;font-style: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;}
.ls8_c00001{letter-spacing:-0.287280px;}
.ls7_c00001{letter-spacing:-0.167760px;}
.ls5_c00001{letter-spacing:-0.095760px;}
.ls3_c00001{letter-spacing:0.000000px;}
.ls4_c00001{letter-spacing:0.095760px;}
.ls6_c00001{letter-spacing:0.335520px;}
.ls2_c00001{letter-spacing:0.383040px;}
.ls1_c00001{letter-spacing:0.670320px;}
.ls0_c00001{letter-spacing:1.006560px;}
.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:-37.913760px;}
.ws1_c00001{word-spacing:-37.746000px;}
.ws2_c00001{word-spacing:-21.641760px;}
.ws3_c00001{word-spacing:-21.354480px;}
.ws7_c00001{word-spacing:-0.383040px;}
.ws8_c00001{word-spacing:-0.167760px;}
.ws5_c00001{word-spacing:-0.095760px;}
.ws4_c00001{word-spacing:0.000000px;}
.ws6_c00001{word-spacing:0.095760px;}
.ws9_c00001{word-spacing:0.167760px;}
.wsb_c00001{word-spacing:0.287280px;}
.wsa_c00001{word-spacing:0.335520px;}
._1_c00001{margin-left:-1.149120px;}
._0_c00001{width:1.072512px;}
._2_c00001{width:2.097144px;}
.fc0_c00001{color:rgb(0,0,0);}
.fs0_c00001{font-size:95.760000px;}
.fs1_c00001{font-size:167.760000px;}
.y0_c00001{bottom:0.000000px;}
.y1c_c00001{bottom:105.673320px;}
.y1b_c00001{bottom:140.769360px;}
.y1a_c00001{bottom:175.865400px;}
.y19_c00001{bottom:211.152960px;}
.y18_c00001{bottom:246.249000px;}
.y17_c00001{bottom:281.345040px;}
.y16_c00001{bottom:316.632600px;}
.y15_c00001{bottom:351.728640px;}
.y14_c00001{bottom:386.824680px;}
.y13_c00001{bottom:422.112240px;}
.y12_c00001{bottom:457.208280px;}
.y11_c00001{bottom:492.304320px;}
.y10_c00001{bottom:527.400360px;}
.yf_c00001{bottom:562.687920px;}
.ye_c00001{bottom:597.783960px;}
.yd_c00001{bottom:632.880000px;}
.yc_c00001{bottom:677.152080px;}
.yb_c00001{bottom:738.720000px;}
.ya_c00001{bottom:791.096250px;}
.y9_c00001{bottom:826.383810px;}
.y8_c00001{bottom:861.479850px;}
.y7_c00001{bottom:905.760000px;}
.y6_c00001{bottom:958.136760px;}
.y5_c00001{bottom:993.232800px;}
.y4_c00001{bottom:1028.520360px;}
.y3_c00001{bottom:1063.616400px;}
.y2_c00001{bottom:1098.712440px;}
.y1_c00001{bottom:1134.000000px;}
.h4_c00001{height:65.460938px;}
.h2_c00001{height:68.733984px;}
.h3_c00001{height:114.679688px;}
.h0_c00001{height:1262.880000px;}
.h1_c00001{height:1263.000000px;}
.w0_c00001{width:892.980000px;}
.w1_c00001{width:893.250000px;}
.x0_c00001{left:0.000000px;}
.x1_c00001{left:106.200000px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls8_c00001{letter-spacing:-0.255360pt;}
.ls7_c00001{letter-spacing:-0.149120pt;}
.ls5_c00001{letter-spacing:-0.085120pt;}
.ls3_c00001{letter-spacing:0.000000pt;}
.ls4_c00001{letter-spacing:0.085120pt;}
.ls6_c00001{letter-spacing:0.298240pt;}
.ls2_c00001{letter-spacing:0.340480pt;}
.ls1_c00001{letter-spacing:0.595840pt;}
.ls0_c00001{letter-spacing:0.894720pt;}
.ws0_c00001{word-spacing:-33.701120pt;}
.ws1_c00001{word-spacing:-33.552000pt;}
.ws2_c00001{word-spacing:-19.237120pt;}
.ws3_c00001{word-spacing:-18.981760pt;}
.ws7_c00001{word-spacing:-0.340480pt;}
.ws8_c00001{word-spacing:-0.149120pt;}
.ws5_c00001{word-spacing:-0.085120pt;}
.ws4_c00001{word-spacing:0.000000pt;}
.ws6_c00001{word-spacing:0.085120pt;}
.ws9_c00001{word-spacing:0.149120pt;}
.wsb_c00001{word-spacing:0.255360pt;}
.wsa_c00001{word-spacing:0.298240pt;}
._1_c00001{margin-left:-1.021440pt;}
._0_c00001{width:0.953344pt;}
._2_c00001{width:1.864128pt;}
.fs0_c00001{font-size:85.120000pt;}
.fs1_c00001{font-size:149.120000pt;}
.y0_c00001{bottom:0.000000pt;}
.y1c_c00001{bottom:93.931840pt;}
.y1b_c00001{bottom:125.128320pt;}
.y1a_c00001{bottom:156.324800pt;}
.y19_c00001{bottom:187.691520pt;}
.y18_c00001{bottom:218.888000pt;}
.y17_c00001{bottom:250.084480pt;}
.y16_c00001{bottom:281.451200pt;}
.y15_c00001{bottom:312.647680pt;}
.y14_c00001{bottom:343.844160pt;}
.y13_c00001{bottom:375.210880pt;}
.y12_c00001{bottom:406.407360pt;}
.y11_c00001{bottom:437.603840pt;}
.y10_c00001{bottom:468.800320pt;}
.yf_c00001{bottom:500.167040pt;}
.ye_c00001{bottom:531.363520pt;}
.yd_c00001{bottom:562.560000pt;}
.yc_c00001{bottom:601.912960pt;}
.yb_c00001{bottom:656.640000pt;}
.ya_c00001{bottom:703.196667pt;}
.y9_c00001{bottom:734.563387pt;}
.y8_c00001{bottom:765.759867pt;}
.y7_c00001{bottom:805.120000pt;}
.y6_c00001{bottom:851.677120pt;}
.y5_c00001{bottom:882.873600pt;}
.y4_c00001{bottom:914.240320pt;}
.y3_c00001{bottom:945.436800pt;}
.y2_c00001{bottom:976.633280pt;}
.y1_c00001{bottom:1008.000000pt;}
.h4_c00001{height:58.187500pt;}
.h2_c00001{height:61.096875pt;}
.h3_c00001{height:101.937500pt;}
.h0_c00001{height:1122.560000pt;}
.h1_c00001{height:1122.666667pt;}
.w0_c00001{width:793.760000pt;}
.w1_c00001{width:794.000000pt;}
.x0_c00001{left:0.000000pt;}
.x1_c00001{left:94.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_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_d5e4565a7736f9c90baa87bc.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00002;src:url('chunks/assets/font_a38a0454e163fc236872f685.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00002;src:url('chunks/assets/font_4e41c4cfab3ff3f0c6498c61.woff2')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00002;src:url('chunks/assets/font_207f323ec69cb3f6856478a7.woff2')format("woff");}.ff4_c00002{font-family:ff4_c00002;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00002{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00002{vertical-align:0.000000px;}
.ls5_c00002{letter-spacing:-0.648000px;}
.lsa_c00002{letter-spacing:-0.360000px;}
.lsb_c00002{letter-spacing:-0.288000px;}
.ls8_c00002{letter-spacing:-0.216000px;}
.ls7_c00002{letter-spacing:-0.144000px;}
.ls9_c00002{letter-spacing:-0.072000px;}
.ls3_c00002{letter-spacing:0.000000px;}
.ls6_c00002{letter-spacing:0.072000px;}
.lsc_c00002{letter-spacing:0.144000px;}
.ls0_c00002{letter-spacing:0.216000px;}
.ls1_c00002{letter-spacing:0.288000px;}
.ls4_c00002{letter-spacing:0.360000px;}
.ls2_c00002{letter-spacing:180.144000px;}
.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;}
}
.ws2_c00002{word-spacing:-16.632000px;}
.ws3_c00002{word-spacing:-16.488000px;}
.ws1_c00002{word-spacing:-16.344000px;}
.ws5_c00002{word-spacing:-16.272000px;}
.ws6_c00002{word-spacing:-16.200000px;}
.ws7_c00002{word-spacing:-16.128000px;}
.ws4_c00002{word-spacing:-16.056000px;}
.ws0_c00002{word-spacing:-15.624000px;}
.wsb_c00002{word-spacing:-0.792000px;}
.ws12_c00002{word-spacing:-0.504000px;}
.wsa_c00002{word-spacing:-0.360000px;}
.wsd_c00002{word-spacing:-0.216000px;}
.ws13_c00002{word-spacing:-0.144000px;}
.ws11_c00002{word-spacing:-0.072000px;}
.ws8_c00002{word-spacing:0.000000px;}
.wsc_c00002{word-spacing:0.144000px;}
.ws9_c00002{word-spacing:0.216000px;}
.wse_c00002{word-spacing:0.276000px;}
.ws10_c00002{word-spacing:0.288000px;}
.wsf_c00002{word-spacing:0.648000px;}
._0_c00002{margin-left:-1.224000px;}
._1_c00002{width:1.080000px;}
.fc1_c00002{color:rgb(0,0,255);}
.fc0_c00002{color:rgb(0,0,0);}
.fs0_c00002{font-size:72.000000px;}
.y0_c00002{bottom:0.000000px;}
.y1_c00002{bottom:86.505000px;}
.y17_c00002{bottom:370.440000px;}
.y16_c00002{bottom:396.900000px;}
.y15_c00002{bottom:423.180000px;}
.y14_c00002{bottom:449.640000px;}
.y13_c00002{bottom:475.920000px;}
.y12_c00002{bottom:528.660000px;}
.y11_c00002{bottom:555.120000px;}
.y10_c00002{bottom:581.400000px;}
.yf_c00002{bottom:607.860000px;}
.ye_c00002{bottom:717.660000px;}
.yd_c00002{bottom:743.940000px;}
.yc_c00002{bottom:770.400000px;}
.yb_c00002{bottom:823.140000px;}
.ya_c00002{bottom:849.420000px;}
.y9_c00002{bottom:875.880000px;}
.y8_c00002{bottom:902.160000px;}
.y7_c00002{bottom:954.825000px;}
.y6_c00002{bottom:981.285000px;}
.y5_c00002{bottom:1034.100000px;}
.y4_c00002{bottom:1060.380000px;}
.y3_c00002{bottom:1113.120000px;}
.y2_c00002{bottom:1139.580000px;}
.h2_c00002{height:51.679688px;}
.h0_c00002{height:1262.880000px;}
.h1_c00002{height:1263.000000px;}
.w0_c00002{width:892.980000px;}
.w1_c00002{width:893.250000px;}
.x0_c00002{left:0.000000px;}
.x2_c00002{left:106.200000px;}
.x3_c00002{left:160.200000px;}
.x1_c00002{left:441.720000px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls5_c00002{letter-spacing:-0.576000pt;}
.lsa_c00002{letter-spacing:-0.320000pt;}
.lsb_c00002{letter-spacing:-0.256000pt;}
.ls8_c00002{letter-spacing:-0.192000pt;}
.ls7_c00002{letter-spacing:-0.128000pt;}
.ls9_c00002{letter-spacing:-0.064000pt;}
.ls3_c00002{letter-spacing:0.000000pt;}
.ls6_c00002{letter-spacing:0.064000pt;}
.lsc_c00002{letter-spacing:0.128000pt;}
.ls0_c00002{letter-spacing:0.192000pt;}
.ls1_c00002{letter-spacing:0.256000pt;}
.ls4_c00002{letter-spacing:0.320000pt;}
.ls2_c00002{letter-spacing:160.128000pt;}
.ws2_c00002{word-spacing:-14.784000pt;}
.ws3_c00002{word-spacing:-14.656000pt;}
.ws1_c00002{word-spacing:-14.528000pt;}
.ws5_c00002{word-spacing:-14.464000pt;}
.ws6_c00002{word-spacing:-14.400000pt;}
.ws7_c00002{word-spacing:-14.336000pt;}
.ws4_c00002{word-spacing:-14.272000pt;}
.ws0_c00002{word-spacing:-13.888000pt;}
.wsb_c00002{word-spacing:-0.704000pt;}
.ws12_c00002{word-spacing:-0.448000pt;}
.wsa_c00002{word-spacing:-0.320000pt;}
.wsd_c00002{word-spacing:-0.192000pt;}
.ws13_c00002{word-spacing:-0.128000pt;}
.ws11_c00002{word-spacing:-0.064000pt;}
.ws8_c00002{word-spacing:0.000000pt;}
.wsc_c00002{word-spacing:0.128000pt;}
.ws9_c00002{word-spacing:0.192000pt;}
.wse_c00002{word-spacing:0.245333pt;}
.ws10_c00002{word-spacing:0.256000pt;}
.wsf_c00002{word-spacing:0.576000pt;}
._0_c00002{margin-left:-1.088000pt;}
._1_c00002{width:0.960000pt;}
.fs0_c00002{font-size:64.000000pt;}
.y0_c00002{bottom:0.000000pt;}
.y1_c00002{bottom:76.893333pt;}
.y17_c00002{bottom:329.280000pt;}
.y16_c00002{bottom:352.800000pt;}
.y15_c00002{bottom:376.160000pt;}
.y14_c00002{bottom:399.680000pt;}
.y13_c00002{bottom:423.040000pt;}
.y12_c00002{bottom:469.920000pt;}
.y11_c00002{bottom:493.440000pt;}
.y10_c00002{bottom:516.800000pt;}
.yf_c00002{bottom:540.320000pt;}
.ye_c00002{bottom:637.920000pt;}
.yd_c00002{bottom:661.280000pt;}
.yc_c00002{bottom:684.800000pt;}
.yb_c00002{bottom:731.680000pt;}
.ya_c00002{bottom:755.040000pt;}
.y9_c00002{bottom:778.560000pt;}
.y8_c00002{bottom:801.920000pt;}
.y7_c00002{bottom:848.733333pt;}
.y6_c00002{bottom:872.253333pt;}
.y5_c00002{bottom:919.200000pt;}
.y4_c00002{bottom:942.560000pt;}
.y3_c00002{bottom:989.440000pt;}
.y2_c00002{bottom:1012.960000pt;}
.h2_c00002{height:45.937500pt;}
.h0_c00002{height:1122.560000pt;}
.h1_c00002{height:1122.666667pt;}
.w0_c00002{width:793.760000pt;}
.w1_c00002{width:794.000000pt;}
.x0_c00002{left:0.000000pt;}
.x2_c00002{left:94.400000pt;}
.x3_c00002{left:142.400000pt;}
.x1_c00002{left:392.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_24d67537d4cae93778614a3f.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00003;src:url('chunks/assets/font_a38a0454e163fc236872f685.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00003;src:url('chunks/assets/font_93218c8c42e84ada4a3dcfe8.woff2')format("woff");}.ff3_c00003{font-family:ff3_c00003;line-height:0.861816;font-style:normal;font-weight:normal;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_11794d4fbadd04108d56ea43.woff2')format("woff");}.ff4_c00003{font-family:ff4_c00003;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00003;src:url('chunks/assets/font_8a4c7c4ea70de4b1e134c7e1.woff2')format("woff");}.ff5_c00003{font-family:ff5_c00003;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00003;src:url('chunks/assets/font_c7d5da0bfab29e72731fbdc7.woff2')format("woff");}.ff6_c00003{font-family:ff6_c00003;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls1c_c00003{letter-spacing:-0.792000px;}
.ls22_c00003{letter-spacing:-0.648000px;}
.ls1b_c00003{letter-spacing:-0.576000px;}
.ls19_c00003{letter-spacing:-0.504000px;}
.ls1e_c00003{letter-spacing:-0.360000px;}
.ls16_c00003{letter-spacing:-0.288000px;}
.ls1f_c00003{letter-spacing:-0.216000px;}
.ls17_c00003{letter-spacing:-0.144000px;}
.ls15_c00003{letter-spacing:0.000000px;}
.lsf_c00003{letter-spacing:0.066000px;}
.ls4_c00003{letter-spacing:0.072000px;}
.ls8_c00003{letter-spacing:0.102000px;}
.lsd_c00003{letter-spacing:0.144000px;}
.ls2_c00003{letter-spacing:0.216000px;}
.ls3_c00003{letter-spacing:0.246000px;}
.ls14_c00003{letter-spacing:0.288000px;}
.ls12_c00003{letter-spacing:0.300000px;}
.ls9_c00003{letter-spacing:0.360000px;}
.ls6_c00003{letter-spacing:0.695424px;}
.ls0_c00003{letter-spacing:1.734000px;}
.ls5_c00003{letter-spacing:3.192024px;}
.ls11_c00003{letter-spacing:3.894000px;}
.ls10_c00003{letter-spacing:4.218000px;}
.ls1d_c00003{letter-spacing:6.198000px;}
.ls21_c00003{letter-spacing:8.178000px;}
.ls20_c00003{letter-spacing:8.838000px;}
.ls7_c00003{letter-spacing:9.498000px;}
.lse_c00003{letter-spacing:11.478000px;}
.ls1_c00003{letter-spacing:15.438000px;}
.ls18_c00003{letter-spacing:15.444000px;}
.ls1a_c00003{letter-spacing:20.058000px;}
.lsb_c00003{letter-spacing:24.540000px;}
.lsc_c00003{letter-spacing:25.170000px;}
.lsa_c00003{letter-spacing:25.194000px;}
.ls13_c00003{letter-spacing:74.880000px;}
.sc__c00003{text-shadow:none;}
.sc0_c00003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
.sc0_c00003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00003{word-spacing:-32.544000px;}
.ws1_c00003{word-spacing:-32.256000px;}
.ws9_c00003{word-spacing:-16.632000px;}
.ws8_c00003{word-spacing:-16.488000px;}
.ws3_c00003{word-spacing:-16.416000px;}
.ws4_c00003{word-spacing:-16.344000px;}
.ws6_c00003{word-spacing:-16.272000px;}
.ws2_c00003{word-spacing:-16.128000px;}
.wsa_c00003{word-spacing:-16.056000px;}
.ws7_c00003{word-spacing:-15.912000px;}
.ws5_c00003{word-spacing:-15.480000px;}
.ws49_c00003{word-spacing:-1.224000px;}
.ws48_c00003{word-spacing:-1.008000px;}
.ws46_c00003{word-spacing:-0.936000px;}
.ws45_c00003{word-spacing:-0.792000px;}
.ws4a_c00003{word-spacing:-0.648000px;}
.ws44_c00003{word-spacing:-0.510000px;}
.ws28_c00003{word-spacing:-0.360000px;}
.ws2b_c00003{word-spacing:-0.294000px;}
.ws47_c00003{word-spacing:-0.288000px;}
.ws22_c00003{word-spacing:-0.144000px;}
.ws25_c00003{word-spacing:-0.072000px;}
.wsb_c00003{word-spacing:0.000000px;}
.ws29_c00003{word-spacing:0.144000px;}
.wsc_c00003{word-spacing:0.216000px;}
.ws36_c00003{word-spacing:0.384000px;}
.ws4c_c00003{word-spacing:0.432000px;}
.ws27_c00003{word-spacing:0.504000px;}
.ws1c_c00003{word-spacing:0.564000px;}
.ws16_c00003{word-spacing:0.576000px;}
.wsd_c00003{word-spacing:0.720000px;}
.ws32_c00003{word-spacing:0.744000px;}
.ws31_c00003{word-spacing:0.804000px;}
.ws1f_c00003{word-spacing:0.864000px;}
.ws39_c00003{word-spacing:0.936000px;}
.ws2d_c00003{word-spacing:1.044000px;}
.ws10_c00003{word-spacing:1.404000px;}
.ws2a_c00003{word-spacing:1.440000px;}
.ws26_c00003{word-spacing:1.524000px;}
.ws23_c00003{word-spacing:1.584000px;}
.wse_c00003{word-spacing:1.656000px;}
.ws15_c00003{word-spacing:1.824000px;}
.ws17_c00003{word-spacing:2.088000px;}
.ws18_c00003{word-spacing:2.232000px;}
.ws19_c00003{word-spacing:2.376000px;}
.ws1a_c00003{word-spacing:2.808000px;}
.ws38_c00003{word-spacing:3.528000px;}
.ws37_c00003{word-spacing:3.816000px;}
.ws35_c00003{word-spacing:4.248000px;}
.ws1b_c00003{word-spacing:6.408000px;}
.ws1d_c00003{word-spacing:6.696000px;}
.ws4d_c00003{word-spacing:7.128000px;}
.ws4e_c00003{word-spacing:8.136000px;}
.ws4b_c00003{word-spacing:8.568000px;}
.ws30_c00003{word-spacing:8.712000px;}
.ws20_c00003{word-spacing:9.288000px;}
.ws1e_c00003{word-spacing:10.008000px;}
.ws2c_c00003{word-spacing:12.168000px;}
.ws2e_c00003{word-spacing:12.600000px;}
.ws2f_c00003{word-spacing:12.816000px;}
.ws4f_c00003{word-spacing:15.048000px;}
.wsf_c00003{word-spacing:16.488000px;}
.ws12_c00003{word-spacing:16.632000px;}
.ws13_c00003{word-spacing:16.776000px;}
.ws11_c00003{word-spacing:17.352000px;}
.ws21_c00003{word-spacing:18.648000px;}
.ws24_c00003{word-spacing:18.936000px;}
.ws34_c00003{word-spacing:22.248000px;}
.ws33_c00003{word-spacing:22.392000px;}
.ws14_c00003{word-spacing:22.536000px;}
.ws40_c00003{word-spacing:27.072000px;}
.ws43_c00003{word-spacing:27.576000px;}
.ws3f_c00003{word-spacing:27.648000px;}
.ws3c_c00003{word-spacing:28.002000px;}
.ws3d_c00003{word-spacing:28.008000px;}
.ws3a_c00003{word-spacing:28.152000px;}
.ws41_c00003{word-spacing:28.362000px;}
.ws3e_c00003{word-spacing:28.440000px;}
.ws42_c00003{word-spacing:28.584000px;}
.ws3b_c00003{word-spacing:28.728000px;}
._1_c00003{margin-left:-1.180152px;}
._0_c00003{width:1.008048px;}
._2_c00003{width:2.979648px;}
._4_c00003{width:7.134072px;}
._3_c00003{width:8.159976px;}
.fc0_c00003{color:rgb(0,0,0);}
.fs0_c00003{font-size:72.000000px;}
.fs1_c00003{font-size:144.000000px;}
.y0_c00003{bottom:0.000000px;}
.y1_c00003{bottom:86.505000px;}
.y1f_c00003{bottom:127.440000px;}
.y1e_c00003{bottom:153.720000px;}
.y1d_c00003{bottom:181.080000px;}
.y1c_c00003{bottom:207.360000px;}
.y1b_c00003{bottom:234.720000px;}
.y1a_c00003{bottom:262.080000px;}
.y19_c00003{bottom:288.360000px;}
.y18_c00003{bottom:315.900000px;}
.y17_c00003{bottom:342.000000px;}
.y16_c00003{bottom:369.360000px;}
.y15_c00003{bottom:396.904500px;}
.y14_c00003{bottom:423.184500px;}
.y13_c00003{bottom:475.924500px;}
.y12_c00003{bottom:502.294500px;}
.y11_c00003{bottom:528.664500px;}
.y10_c00003{bottom:555.034500px;}
.yf_c00003{bottom:581.404500px;}
.ye_c00003{bottom:634.144500px;}
.yd_c00003{bottom:660.514500px;}
.yc_c00003{bottom:686.884500px;}
.yb_c00003{bottom:740.164500px;}
.ya_c00003{bottom:889.024500px;}
.y9_c00003{bottom:915.381000px;}
.y8_c00003{bottom:941.737500px;}
.y7_c00003{bottom:968.094000px;}
.y6_c00003{bottom:994.450500px;}
.y5_c00003{bottom:1020.807000px;}
.y4_c00003{bottom:1047.163500px;}
.y3_c00003{bottom:1073.520000px;}
.y2_c00003{bottom:1122.480000px;}
.h2_c00003{height:51.679688px;}
.h3_c00003{height:98.437500px;}
.h4_c00003{height:103.359375px;}
.h0_c00003{height:1262.880000px;}
.h1_c00003{height:1263.000000px;}
.w0_c00003{width:892.980000px;}
.w1_c00003{width:893.250000px;}
.x0_c00003{left:0.000000px;}
.x2_c00003{left:106.200000px;}
.x3_c00003{left:133.200000px;}
.x1_c00003{left:441.720000px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls1c_c00003{letter-spacing:-0.704000pt;}
.ls22_c00003{letter-spacing:-0.576000pt;}
.ls1b_c00003{letter-spacing:-0.512000pt;}
.ls19_c00003{letter-spacing:-0.448000pt;}
.ls1e_c00003{letter-spacing:-0.320000pt;}
.ls16_c00003{letter-spacing:-0.256000pt;}
.ls1f_c00003{letter-spacing:-0.192000pt;}
.ls17_c00003{letter-spacing:-0.128000pt;}
.ls15_c00003{letter-spacing:0.000000pt;}
.lsf_c00003{letter-spacing:0.058667pt;}
.ls4_c00003{letter-spacing:0.064000pt;}
.ls8_c00003{letter-spacing:0.090667pt;}
.lsd_c00003{letter-spacing:0.128000pt;}
.ls2_c00003{letter-spacing:0.192000pt;}
.ls3_c00003{letter-spacing:0.218667pt;}
.ls14_c00003{letter-spacing:0.256000pt;}
.ls12_c00003{letter-spacing:0.266667pt;}
.ls9_c00003{letter-spacing:0.320000pt;}
.ls6_c00003{letter-spacing:0.618155pt;}
.ls0_c00003{letter-spacing:1.541333pt;}
.ls5_c00003{letter-spacing:2.837355pt;}
.ls11_c00003{letter-spacing:3.461333pt;}
.ls10_c00003{letter-spacing:3.749333pt;}
.ls1d_c00003{letter-spacing:5.509333pt;}
.ls21_c00003{letter-spacing:7.269333pt;}
.ls20_c00003{letter-spacing:7.856000pt;}
.ls7_c00003{letter-spacing:8.442667pt;}
.lse_c00003{letter-spacing:10.202667pt;}
.ls1_c00003{letter-spacing:13.722667pt;}
.ls18_c00003{letter-spacing:13.728000pt;}
.ls1a_c00003{letter-spacing:17.829333pt;}
.lsb_c00003{letter-spacing:21.813333pt;}
.lsc_c00003{letter-spacing:22.373333pt;}
.lsa_c00003{letter-spacing:22.394667pt;}
.ls13_c00003{letter-spacing:66.560000pt;}
.ws0_c00003{word-spacing:-28.928000pt;}
.ws1_c00003{word-spacing:-28.672000pt;}
.ws9_c00003{word-spacing:-14.784000pt;}
.ws8_c00003{word-spacing:-14.656000pt;}
.ws3_c00003{word-spacing:-14.592000pt;}
.ws4_c00003{word-spacing:-14.528000pt;}
.ws6_c00003{word-spacing:-14.464000pt;}
.ws2_c00003{word-spacing:-14.336000pt;}
.wsa_c00003{word-spacing:-14.272000pt;}
.ws7_c00003{word-spacing:-14.144000pt;}
.ws5_c00003{word-spacing:-13.760000pt;}
.ws49_c00003{word-spacing:-1.088000pt;}
.ws48_c00003{word-spacing:-0.896000pt;}
.ws46_c00003{word-spacing:-0.832000pt;}
.ws45_c00003{word-spacing:-0.704000pt;}
.ws4a_c00003{word-spacing:-0.576000pt;}
.ws44_c00003{word-spacing:-0.453333pt;}
.ws28_c00003{word-spacing:-0.320000pt;}
.ws2b_c00003{word-spacing:-0.261333pt;}
.ws47_c00003{word-spacing:-0.256000pt;}
.ws22_c00003{word-spacing:-0.128000pt;}
.ws25_c00003{word-spacing:-0.064000pt;}
.wsb_c00003{word-spacing:0.000000pt;}
.ws29_c00003{word-spacing:0.128000pt;}
.wsc_c00003{word-spacing:0.192000pt;}
.ws36_c00003{word-spacing:0.341333pt;}
.ws4c_c00003{word-spacing:0.384000pt;}
.ws27_c00003{word-spacing:0.448000pt;}
.ws1c_c00003{word-spacing:0.501333pt;}
.ws16_c00003{word-spacing:0.512000pt;}
.wsd_c00003{word-spacing:0.640000pt;}
.ws32_c00003{word-spacing:0.661333pt;}
.ws31_c00003{word-spacing:0.714667pt;}
.ws1f_c00003{word-spacing:0.768000pt;}
.ws39_c00003{word-spacing:0.832000pt;}
.ws2d_c00003{word-spacing:0.928000pt;}
.ws10_c00003{word-spacing:1.248000pt;}
.ws2a_c00003{word-spacing:1.280000pt;}
.ws26_c00003{word-spacing:1.354667pt;}
.ws23_c00003{word-spacing:1.408000pt;}
.wse_c00003{word-spacing:1.472000pt;}
.ws15_c00003{word-spacing:1.621333pt;}
.ws17_c00003{word-spacing:1.856000pt;}
.ws18_c00003{word-spacing:1.984000pt;}
.ws19_c00003{word-spacing:2.112000pt;}
.ws1a_c00003{word-spacing:2.496000pt;}
.ws38_c00003{word-spacing:3.136000pt;}
.ws37_c00003{word-spacing:3.392000pt;}
.ws35_c00003{word-spacing:3.776000pt;}
.ws1b_c00003{word-spacing:5.696000pt;}
.ws1d_c00003{word-spacing:5.952000pt;}
.ws4d_c00003{word-spacing:6.336000pt;}
.ws4e_c00003{word-spacing:7.232000pt;}
.ws4b_c00003{word-spacing:7.616000pt;}
.ws30_c00003{word-spacing:7.744000pt;}
.ws20_c00003{word-spacing:8.256000pt;}
.ws1e_c00003{word-spacing:8.896000pt;}
.ws2c_c00003{word-spacing:10.816000pt;}
.ws2e_c00003{word-spacing:11.200000pt;}
.ws2f_c00003{word-spacing:11.392000pt;}
.ws4f_c00003{word-spacing:13.376000pt;}
.wsf_c00003{word-spacing:14.656000pt;}
.ws12_c00003{word-spacing:14.784000pt;}
.ws13_c00003{word-spacing:14.912000pt;}
.ws11_c00003{word-spacing:15.424000pt;}
.ws21_c00003{word-spacing:16.576000pt;}
.ws24_c00003{word-spacing:16.832000pt;}
.ws34_c00003{word-spacing:19.776000pt;}
.ws33_c00003{word-spacing:19.904000pt;}
.ws14_c00003{word-spacing:20.032000pt;}
.ws40_c00003{word-spacing:24.064000pt;}
.ws43_c00003{word-spacing:24.512000pt;}
.ws3f_c00003{word-spacing:24.576000pt;}
.ws3c_c00003{word-spacing:24.890667pt;}
.ws3d_c00003{word-spacing:24.896000pt;}
.ws3a_c00003{word-spacing:25.024000pt;}
.ws41_c00003{word-spacing:25.210667pt;}
.ws3e_c00003{word-spacing:25.280000pt;}
.ws42_c00003{word-spacing:25.408000pt;}
.ws3b_c00003{word-spacing:25.536000pt;}
._1_c00003{margin-left:-1.049024pt;}
._0_c00003{width:0.896043pt;}
._2_c00003{width:2.648576pt;}
._4_c00003{width:6.341397pt;}
._3_c00003{width:7.253312pt;}
.fs0_c00003{font-size:64.000000pt;}
.fs1_c00003{font-size:128.000000pt;}
.y0_c00003{bottom:0.000000pt;}
.y1_c00003{bottom:76.893333pt;}
.y1f_c00003{bottom:113.280000pt;}
.y1e_c00003{bottom:136.640000pt;}
.y1d_c00003{bottom:160.960000pt;}
.y1c_c00003{bottom:184.320000pt;}
.y1b_c00003{bottom:208.640000pt;}
.y1a_c00003{bottom:232.960000pt;}
.y19_c00003{bottom:256.320000pt;}
.y18_c00003{bottom:280.800000pt;}
.y17_c00003{bottom:304.000000pt;}
.y16_c00003{bottom:328.320000pt;}
.y15_c00003{bottom:352.804000pt;}
.y14_c00003{bottom:376.164000pt;}
.y13_c00003{bottom:423.044000pt;}
.y12_c00003{bottom:446.484000pt;}
.y11_c00003{bottom:469.924000pt;}
.y10_c00003{bottom:493.364000pt;}
.yf_c00003{bottom:516.804000pt;}
.ye_c00003{bottom:563.684000pt;}
.yd_c00003{bottom:587.124000pt;}
.yc_c00003{bottom:610.564000pt;}
.yb_c00003{bottom:657.924000pt;}
.ya_c00003{bottom:790.244000pt;}
.y9_c00003{bottom:813.672000pt;}
.y8_c00003{bottom:837.100000pt;}
.y7_c00003{bottom:860.528000pt;}
.y6_c00003{bottom:883.956000pt;}
.y5_c00003{bottom:907.384000pt;}
.y4_c00003{bottom:930.812000pt;}
.y3_c00003{bottom:954.240000pt;}
.y2_c00003{bottom:997.760000pt;}
.h2_c00003{height:45.937500pt;}
.h3_c00003{height:87.500000pt;}
.h4_c00003{height:91.875000pt;}
.h0_c00003{height:1122.560000pt;}
.h1_c00003{height:1122.666667pt;}
.w0_c00003{width:793.760000pt;}
.w1_c00003{width:794.000000pt;}
.x0_c00003{left:0.000000pt;}
.x2_c00003{left:94.400000pt;}
.x3_c00003{left:118.400000pt;}
.x1_c00003{left:392.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5edfefc02146007970db7ab4.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00004;src:url('chunks/assets/font_bc6019dc9e151da6908db32a.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:0.861816;font-style:normal;font-weight:normal;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_c7d5da0bfab29e72731fbdc7.woff2')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00004;src:url('chunks/assets/font_588d30328851040277fdcdd8.woff2')format("woff");}.ff4_c00004{font-family:ff4_c00004;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00004;src:url('chunks/assets/font_4ab47c86b4be8a70bec36a47.woff2')format("woff");}.ff5_c00004{font-family:ff5_c00004;line-height:0.677734;font-style:normal;font-weight:normal;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_ce5d2d5d9af71515adea75b0.woff2')format("woff");}.ff6_c00004{font-family:ff6_c00004;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00004;src:url('chunks/assets/font_a38a0454e163fc236872f685.woff2')format("woff");}.ff7_c00004{font-family:ff7_c00004;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00004{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00004{vertical-align:0.000000px;}
.ls19_c00004{letter-spacing:-0.648000px;}
.ls11_c00004{letter-spacing:-0.576000px;}
.ls17_c00004{letter-spacing:-0.504000px;}
.ls12_c00004{letter-spacing:-0.432000px;}
.ls18_c00004{letter-spacing:-0.360000px;}
.ls1b_c00004{letter-spacing:-0.288000px;}
.ls16_c00004{letter-spacing:-0.216000px;}
.ls1a_c00004{letter-spacing:-0.144000px;}
.ls15_c00004{letter-spacing:-0.072000px;}
.ls14_c00004{letter-spacing:0.000000px;}
.ls2_c00004{letter-spacing:0.072000px;}
.ls13_c00004{letter-spacing:0.144000px;}
.ls0_c00004{letter-spacing:0.216000px;}
.ls1_c00004{letter-spacing:0.288000px;}
.ls3_c00004{letter-spacing:0.360000px;}
.ls7_c00004{letter-spacing:1.254000px;}
.ls6_c00004{letter-spacing:1.314000px;}
.ls1c_c00004{letter-spacing:8.178000px;}
.ls5_c00004{letter-spacing:8.928000px;}
.lse_c00004{letter-spacing:19.776000px;}
.lsb_c00004{letter-spacing:19.842000px;}
.ls9_c00004{letter-spacing:20.508000px;}
.lsf_c00004{letter-spacing:20.514000px;}
.ls10_c00004{letter-spacing:20.526000px;}
.lsa_c00004{letter-spacing:20.532000px;}
.ls8_c00004{letter-spacing:20.550000px;}
.lsd_c00004{letter-spacing:20.568000px;}
.lsc_c00004{letter-spacing:20.592000px;}
.ls4_c00004{letter-spacing:74.880000px;}
.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;}
}
.wsd_c00004{word-spacing:-72.000000px;}
.ws1_c00004{word-spacing:-16.632000px;}
.ws8_c00004{word-spacing:-16.488000px;}
.ws0_c00004{word-spacing:-16.416000px;}
.ws3_c00004{word-spacing:-16.344000px;}
.ws2_c00004{word-spacing:-16.272000px;}
.ws5_c00004{word-spacing:-16.200000px;}
.wsa_c00004{word-spacing:-16.056000px;}
.ws9_c00004{word-spacing:-15.984000px;}
.ws7_c00004{word-spacing:-15.912000px;}
.wsc_c00004{word-spacing:-15.696000px;}
.wsb_c00004{word-spacing:-15.624000px;}
.ws1d_c00004{word-spacing:-0.792000px;}
.ws1a_c00004{word-spacing:-0.504000px;}
.ws17_c00004{word-spacing:-0.360000px;}
.ws6_c00004{word-spacing:-0.288000px;}
.ws10_c00004{word-spacing:-0.216000px;}
.ws15_c00004{word-spacing:-0.144000px;}
.ws16_c00004{word-spacing:-0.072000px;}
.wse_c00004{word-spacing:0.000000px;}
.ws13_c00004{word-spacing:0.072000px;}
.ws1c_c00004{word-spacing:0.144000px;}
.ws14_c00004{word-spacing:0.216000px;}
.ws22_c00004{word-spacing:0.288000px;}
.ws1b_c00004{word-spacing:0.360000px;}
.ws12_c00004{word-spacing:0.432000px;}
.ws18_c00004{word-spacing:0.504000px;}
.wsf_c00004{word-spacing:0.576000px;}
.ws19_c00004{word-spacing:0.648000px;}
.ws26_c00004{word-spacing:0.744000px;}
.ws21_c00004{word-spacing:0.792000px;}
.ws23_c00004{word-spacing:0.864000px;}
.ws24_c00004{word-spacing:0.936000px;}
.ws28_c00004{word-spacing:1.368000px;}
.ws1f_c00004{word-spacing:7.992000px;}
.ws2e_c00004{word-spacing:8.496000px;}
.ws25_c00004{word-spacing:8.568000px;}
.ws27_c00004{word-spacing:8.712000px;}
.ws31_c00004{word-spacing:8.856000px;}
.ws20_c00004{word-spacing:9.288000px;}
.ws11_c00004{word-spacing:9.360000px;}
.ws1e_c00004{word-spacing:9.504000px;}
.ws30_c00004{word-spacing:17.400000px;}
.ws2a_c00004{word-spacing:17.430000px;}
.ws29_c00004{word-spacing:17.448000px;}
.ws2c_c00004{word-spacing:17.466000px;}
.ws2d_c00004{word-spacing:17.496000px;}
.ws2b_c00004{word-spacing:17.502000px;}
.ws2f_c00004{word-spacing:17.544000px;}
.ws4_c00004{word-spacing:36.432000px;}
._2_c00004{margin-left:-1.152000px;}
._3_c00004{width:1.296000px;}
._1_c00004{width:8.208000px;}
._4_c00004{width:9.288000px;}
._0_c00004{width:10.584000px;}
.fc1_c00004{color:rgb(0,0,255);}
.fc0_c00004{color:rgb(0,0,0);}
.fs0_c00004{font-size:72.000000px;}
.y0_c00004{bottom:0.000000px;}
.y26_c00004{bottom:61.980000px;}
.y25_c00004{bottom:101.610000px;}
.y24_c00004{bottom:127.980000px;}
.y23_c00004{bottom:154.350000px;}
.y22_c00004{bottom:180.720000px;}
.y21_c00004{bottom:233.280000px;}
.y20_c00004{bottom:260.640000px;}
.y1f_c00004{bottom:288.000000px;}
.y1e_c00004{bottom:315.360000px;}
.y1d_c00004{bottom:342.720000px;}
.y1c_c00004{bottom:369.180000px;}
.y1b_c00004{bottom:395.460000px;}
.y1a_c00004{bottom:421.740000px;}
.y19_c00004{bottom:449.100000px;}
.y18_c00004{bottom:475.380000px;}
.y17_c00004{bottom:502.740000px;}
.y16_c00004{bottom:530.100000px;}
.y15_c00004{bottom:556.560000px;}
.y14_c00004{bottom:609.120000px;}
.y13_c00004{bottom:636.480000px;}
.y12_c00004{bottom:663.840000px;}
.y11_c00004{bottom:691.200000px;}
.y10_c00004{bottom:717.660000px;}
.yf_c00004{bottom:743.940000px;}
.ye_c00004{bottom:796.680000px;}
.yd_c00004{bottom:823.140000px;}
.yc_c00004{bottom:849.420000px;}
.yb_c00004{bottom:875.880000px;}
.ya_c00004{bottom:902.160000px;}
.y9_c00004{bottom:928.620000px;}
.y8_c00004{bottom:954.900000px;}
.y7_c00004{bottom:981.360000px;}
.y6_c00004{bottom:1007.640000px;}
.y5_c00004{bottom:1034.100000px;}
.y4_c00004{bottom:1060.380000px;}
.y3_c00004{bottom:1086.840000px;}
.y2_c00004{bottom:1113.120000px;}
.y1_c00004{bottom:1139.580000px;}
.h2_c00004{height:51.679688px;}
.h0_c00004{height:1262.880000px;}
.h1_c00004{height:1263.000000px;}
.w0_c00004{width:892.980000px;}
.w1_c00004{width:893.250000px;}
.x0_c00004{left:0.000000px;}
.x1_c00004{left:106.200000px;}
.x2_c00004{left:133.200000px;}
.x3_c00004{left:441.972000px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls19_c00004{letter-spacing:-0.576000pt;}
.ls11_c00004{letter-spacing:-0.512000pt;}
.ls17_c00004{letter-spacing:-0.448000pt;}
.ls12_c00004{letter-spacing:-0.384000pt;}
.ls18_c00004{letter-spacing:-0.320000pt;}
.ls1b_c00004{letter-spacing:-0.256000pt;}
.ls16_c00004{letter-spacing:-0.192000pt;}
.ls1a_c00004{letter-spacing:-0.128000pt;}
.ls15_c00004{letter-spacing:-0.064000pt;}
.ls14_c00004{letter-spacing:0.000000pt;}
.ls2_c00004{letter-spacing:0.064000pt;}
.ls13_c00004{letter-spacing:0.128000pt;}
.ls0_c00004{letter-spacing:0.192000pt;}
.ls1_c00004{letter-spacing:0.256000pt;}
.ls3_c00004{letter-spacing:0.320000pt;}
.ls7_c00004{letter-spacing:1.114667pt;}
.ls6_c00004{letter-spacing:1.168000pt;}
.ls1c_c00004{letter-spacing:7.269333pt;}
.ls5_c00004{letter-spacing:7.936000pt;}
.lse_c00004{letter-spacing:17.578667pt;}
.lsb_c00004{letter-spacing:17.637333pt;}
.ls9_c00004{letter-spacing:18.229333pt;}
.lsf_c00004{letter-spacing:18.234667pt;}
.ls10_c00004{letter-spacing:18.245333pt;}
.lsa_c00004{letter-spacing:18.250667pt;}
.ls8_c00004{letter-spacing:18.266667pt;}
.lsd_c00004{letter-spacing:18.282667pt;}
.lsc_c00004{letter-spacing:18.304000pt;}
.ls4_c00004{letter-spacing:66.560000pt;}
.wsd_c00004{word-spacing:-64.000000pt;}
.ws1_c00004{word-spacing:-14.784000pt;}
.ws8_c00004{word-spacing:-14.656000pt;}
.ws0_c00004{word-spacing:-14.592000pt;}
.ws3_c00004{word-spacing:-14.528000pt;}
.ws2_c00004{word-spacing:-14.464000pt;}
.ws5_c00004{word-spacing:-14.400000pt;}
.wsa_c00004{word-spacing:-14.272000pt;}
.ws9_c00004{word-spacing:-14.208000pt;}
.ws7_c00004{word-spacing:-14.144000pt;}
.wsc_c00004{word-spacing:-13.952000pt;}
.wsb_c00004{word-spacing:-13.888000pt;}
.ws1d_c00004{word-spacing:-0.704000pt;}
.ws1a_c00004{word-spacing:-0.448000pt;}
.ws17_c00004{word-spacing:-0.320000pt;}
.ws6_c00004{word-spacing:-0.256000pt;}
.ws10_c00004{word-spacing:-0.192000pt;}
.ws15_c00004{word-spacing:-0.128000pt;}
.ws16_c00004{word-spacing:-0.064000pt;}
.wse_c00004{word-spacing:0.000000pt;}
.ws13_c00004{word-spacing:0.064000pt;}
.ws1c_c00004{word-spacing:0.128000pt;}
.ws14_c00004{word-spacing:0.192000pt;}
.ws22_c00004{word-spacing:0.256000pt;}
.ws1b_c00004{word-spacing:0.320000pt;}
.ws12_c00004{word-spacing:0.384000pt;}
.ws18_c00004{word-spacing:0.448000pt;}
.wsf_c00004{word-spacing:0.512000pt;}
.ws19_c00004{word-spacing:0.576000pt;}
.ws26_c00004{word-spacing:0.661333pt;}
.ws21_c00004{word-spacing:0.704000pt;}
.ws23_c00004{word-spacing:0.768000pt;}
.ws24_c00004{word-spacing:0.832000pt;}
.ws28_c00004{word-spacing:1.216000pt;}
.ws1f_c00004{word-spacing:7.104000pt;}
.ws2e_c00004{word-spacing:7.552000pt;}
.ws25_c00004{word-spacing:7.616000pt;}
.ws27_c00004{word-spacing:7.744000pt;}
.ws31_c00004{word-spacing:7.872000pt;}
.ws20_c00004{word-spacing:8.256000pt;}
.ws11_c00004{word-spacing:8.320000pt;}
.ws1e_c00004{word-spacing:8.448000pt;}
.ws30_c00004{word-spacing:15.466667pt;}
.ws2a_c00004{word-spacing:15.493333pt;}
.ws29_c00004{word-spacing:15.509333pt;}
.ws2c_c00004{word-spacing:15.525333pt;}
.ws2d_c00004{word-spacing:15.552000pt;}
.ws2b_c00004{word-spacing:15.557333pt;}
.ws2f_c00004{word-spacing:15.594667pt;}
.ws4_c00004{word-spacing:32.384000pt;}
._2_c00004{margin-left:-1.024000pt;}
._3_c00004{width:1.152000pt;}
._1_c00004{width:7.296000pt;}
._4_c00004{width:8.256000pt;}
._0_c00004{width:9.408000pt;}
.fs0_c00004{font-size:64.000000pt;}
.y0_c00004{bottom:0.000000pt;}
.y26_c00004{bottom:55.093333pt;}
.y25_c00004{bottom:90.320000pt;}
.y24_c00004{bottom:113.760000pt;}
.y23_c00004{bottom:137.200000pt;}
.y22_c00004{bottom:160.640000pt;}
.y21_c00004{bottom:207.360000pt;}
.y20_c00004{bottom:231.680000pt;}
.y1f_c00004{bottom:256.000000pt;}
.y1e_c00004{bottom:280.320000pt;}
.y1d_c00004{bottom:304.640000pt;}
.y1c_c00004{bottom:328.160000pt;}
.y1b_c00004{bottom:351.520000pt;}
.y1a_c00004{bottom:374.880000pt;}
.y19_c00004{bottom:399.200000pt;}
.y18_c00004{bottom:422.560000pt;}
.y17_c00004{bottom:446.880000pt;}
.y16_c00004{bottom:471.200000pt;}
.y15_c00004{bottom:494.720000pt;}
.y14_c00004{bottom:541.440000pt;}
.y13_c00004{bottom:565.760000pt;}
.y12_c00004{bottom:590.080000pt;}
.y11_c00004{bottom:614.400000pt;}
.y10_c00004{bottom:637.920000pt;}
.yf_c00004{bottom:661.280000pt;}
.ye_c00004{bottom:708.160000pt;}
.yd_c00004{bottom:731.680000pt;}
.yc_c00004{bottom:755.040000pt;}
.yb_c00004{bottom:778.560000pt;}
.ya_c00004{bottom:801.920000pt;}
.y9_c00004{bottom:825.440000pt;}
.y8_c00004{bottom:848.800000pt;}
.y7_c00004{bottom:872.320000pt;}
.y6_c00004{bottom:895.680000pt;}
.y5_c00004{bottom:919.200000pt;}
.y4_c00004{bottom:942.560000pt;}
.y3_c00004{bottom:966.080000pt;}
.y2_c00004{bottom:989.440000pt;}
.y1_c00004{bottom:1012.960000pt;}
.h2_c00004{height:45.937500pt;}
.h0_c00004{height:1122.560000pt;}
.h1_c00004{height:1122.666667pt;}
.w0_c00004{width:793.760000pt;}
.w1_c00004{width:794.000000pt;}
.x0_c00004{left:0.000000pt;}
.x1_c00004{left:94.400000pt;}
.x2_c00004{left:118.400000pt;}
.x3_c00004{left:392.864000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c4691bb86a1d77315717a0f.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00005;src:url('chunks/assets/font_a38a0454e163fc236872f685.woff2')format("woff");}.ff2_c00005{font-family:ff2_c00005;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00005;src:url('chunks/assets/font_3d7643a491260facee1bf984.woff2')format("woff");}.ff3_c00005{font-family:ff3_c00005;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00005;src:url('chunks/assets/font_6eb836c159f93e7ae7610097.woff2')format("woff");}.ff4_c00005{font-family:ff4_c00005;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00005;src:url('chunks/assets/font_c7d5da0bfab29e72731fbdc7.woff2')format("woff");}.ff5_c00005{font-family:ff5_c00005;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00005;src:url('chunks/assets/font_b909b6fee73575e862e3337b.woff2')format("woff");}.ff6_c00005{font-family:ff6_c00005;line-height:0.861816;font-style:normal;font-weight: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_fde7638359b7639be16f338c.woff2')format("woff");}.ff7_c00005{font-family:ff7_c00005;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00005;src:url('chunks/assets/font_fde7638359b7639be16f338c.woff2')format("woff");}.ff8_c00005{font-family:ff8_c00005;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00005{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00005{vertical-align:0.000000px;}
.ls26_c00005{letter-spacing:-1.368000px;}
.ls19_c00005{letter-spacing:-0.936000px;}
.ls20_c00005{letter-spacing:-0.792000px;}
.ls1b_c00005{letter-spacing:-0.648000px;}
.ls1e_c00005{letter-spacing:-0.576000px;}
.ls22_c00005{letter-spacing:-0.504000px;}
.ls29_c00005{letter-spacing:-0.432000px;}
.ls1a_c00005{letter-spacing:-0.360000px;}
.ls1c_c00005{letter-spacing:-0.288000px;}
.ls23_c00005{letter-spacing:-0.216000px;}
.ls1f_c00005{letter-spacing:-0.144000px;}
.ls1d_c00005{letter-spacing:-0.072000px;}
.ls18_c00005{letter-spacing:0.000000px;}
.ls5_c00005{letter-spacing:0.072000px;}
.ls11_c00005{letter-spacing:0.108000px;}
.ls10_c00005{letter-spacing:0.114000px;}
.ls2_c00005{letter-spacing:0.144000px;}
.ls14_c00005{letter-spacing:0.180000px;}
.ls17_c00005{letter-spacing:0.198000px;}
.ls1_c00005{letter-spacing:0.216000px;}
.ls12_c00005{letter-spacing:0.240000px;}
.ls16_c00005{letter-spacing:0.288000px;}
.ls15_c00005{letter-spacing:0.288576px;}
.lsc_c00005{letter-spacing:0.294000px;}
.ls13_c00005{letter-spacing:0.312048px;}
.ls4_c00005{letter-spacing:0.360000px;}
.lse_c00005{letter-spacing:0.384000px;}
.ls9_c00005{letter-spacing:0.384648px;}
.ls0_c00005{letter-spacing:1.008000px;}
.lsb_c00005{letter-spacing:1.734000px;}
.lsa_c00005{letter-spacing:2.454000px;}
.ls7_c00005{letter-spacing:3.174000px;}
.ls6_c00005{letter-spacing:8.208000px;}
.ls21_c00005{letter-spacing:10.158000px;}
.ls8_c00005{letter-spacing:10.818000px;}
.ls27_c00005{letter-spacing:13.422000px;}
.ls2a_c00005{letter-spacing:13.428000px;}
.lsf_c00005{letter-spacing:13.458000px;}
.ls28_c00005{letter-spacing:13.464000px;}
.ls2c_c00005{letter-spacing:14.118000px;}
.ls2d_c00005{letter-spacing:14.748000px;}
.ls2b_c00005{letter-spacing:14.778000px;}
.ls25_c00005{letter-spacing:15.432000px;}
.ls24_c00005{letter-spacing:15.438000px;}
.ls2e_c00005{letter-spacing:16.728000px;}
.ls30_c00005{letter-spacing:16.752000px;}
.ls2f_c00005{letter-spacing:16.758000px;}
.lsd_c00005{letter-spacing:18.738000px;}
.ls3_c00005{letter-spacing:74.880000px;}
.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;}
}
.ws10_c00005{word-spacing:-72.216000px;}
.ws11_c00005{word-spacing:-71.784000px;}
.ws7_c00005{word-spacing:-16.632000px;}
.wsf_c00005{word-spacing:-16.560000px;}
.ws1_c00005{word-spacing:-16.488000px;}
.wsc_c00005{word-spacing:-16.416000px;}
.ws3_c00005{word-spacing:-16.344000px;}
.ws2_c00005{word-spacing:-16.272000px;}
.ws8_c00005{word-spacing:-16.200000px;}
.ws6_c00005{word-spacing:-16.128000px;}
.wsb_c00005{word-spacing:-16.056000px;}
.ws4_c00005{word-spacing:-15.984000px;}
.ws5_c00005{word-spacing:-15.912000px;}
.wse_c00005{word-spacing:-15.840000px;}
.wsa_c00005{word-spacing:-15.768000px;}
.ws0_c00005{word-spacing:-15.624000px;}
.wsd_c00005{word-spacing:-15.480000px;}
.ws64_c00005{word-spacing:-1.080000px;}
.ws62_c00005{word-spacing:-0.936000px;}
.ws1e_c00005{word-spacing:-0.792000px;}
.ws61_c00005{word-spacing:-0.714000px;}
.ws5f_c00005{word-spacing:-0.654000px;}
.ws63_c00005{word-spacing:-0.648000px;}
.ws4c_c00005{word-spacing:-0.582000px;}
.ws1f_c00005{word-spacing:-0.576000px;}
.ws24_c00005{word-spacing:-0.504000px;}
.ws73_c00005{word-spacing:-0.432000px;}
.ws1a_c00005{word-spacing:-0.360000px;}
.ws4f_c00005{word-spacing:-0.354000px;}
.ws66_c00005{word-spacing:-0.288000px;}
.ws4d_c00005{word-spacing:-0.216000px;}
.ws32_c00005{word-spacing:-0.144000px;}
.ws14_c00005{word-spacing:-0.072000px;}
.ws12_c00005{word-spacing:0.000000px;}
.ws18_c00005{word-spacing:0.072000px;}
.ws65_c00005{word-spacing:0.144000px;}
.ws13_c00005{word-spacing:0.216000px;}
.ws74_c00005{word-spacing:0.282000px;}
.ws4e_c00005{word-spacing:0.288000px;}
.ws16_c00005{word-spacing:0.360000px;}
.ws31_c00005{word-spacing:0.504000px;}
.ws19_c00005{word-spacing:0.576000px;}
.ws1b_c00005{word-spacing:0.648000px;}
.ws60_c00005{word-spacing:0.720000px;}
.ws75_c00005{word-spacing:0.726000px;}
.ws41_c00005{word-spacing:0.792000px;}
.ws2e_c00005{word-spacing:0.924000px;}
.ws15_c00005{word-spacing:0.936000px;}
.ws29_c00005{word-spacing:0.984000px;}
.ws39_c00005{word-spacing:1.224000px;}
.ws3e_c00005{word-spacing:1.284000px;}
.ws17_c00005{word-spacing:1.296000px;}
.ws3c_c00005{word-spacing:1.344000px;}
.ws38_c00005{word-spacing:1.368000px;}
.ws35_c00005{word-spacing:1.404000px;}
.ws3f_c00005{word-spacing:1.524000px;}
.ws33_c00005{word-spacing:1.704000px;}
.ws28_c00005{word-spacing:2.088000px;}
.ws30_c00005{word-spacing:2.376000px;}
.ws2f_c00005{word-spacing:2.520000px;}
.ws26_c00005{word-spacing:2.808000px;}
.ws27_c00005{word-spacing:3.096000px;}
.ws25_c00005{word-spacing:3.528000px;}
.ws68_c00005{word-spacing:5.184000px;}
.ws69_c00005{word-spacing:5.976000px;}
.ws6e_c00005{word-spacing:6.264000px;}
.ws6b_c00005{word-spacing:6.480000px;}
.ws6c_c00005{word-spacing:6.546000px;}
.ws67_c00005{word-spacing:6.624000px;}
.ws6a_c00005{word-spacing:6.696000px;}
.ws6d_c00005{word-spacing:6.768000px;}
.ws21_c00005{word-spacing:7.128000px;}
.ws20_c00005{word-spacing:7.848000px;}
.ws22_c00005{word-spacing:8.136000px;}
.ws23_c00005{word-spacing:8.568000px;}
.ws2a_c00005{word-spacing:11.448000px;}
.ws2d_c00005{word-spacing:11.736000px;}
.ws2b_c00005{word-spacing:11.880000px;}
.ws1d_c00005{word-spacing:12.456000px;}
.ws2c_c00005{word-spacing:12.600000px;}
.ws1c_c00005{word-spacing:12.888000px;}
.ws3b_c00005{word-spacing:13.608000px;}
.ws3a_c00005{word-spacing:14.328000px;}
.ws3d_c00005{word-spacing:15.048000px;}
.ws36_c00005{word-spacing:15.912000px;}
.ws37_c00005{word-spacing:17.208000px;}
.ws46_c00005{word-spacing:17.928000px;}
.ws4a_c00005{word-spacing:18.144000px;}
.ws40_c00005{word-spacing:18.216000px;}
.ws4b_c00005{word-spacing:18.282000px;}
.ws42_c00005{word-spacing:18.288000px;}
.ws47_c00005{word-spacing:18.360000px;}
.ws48_c00005{word-spacing:18.432000px;}
.ws49_c00005{word-spacing:18.648000px;}
.ws44_c00005{word-spacing:18.936000px;}
.ws43_c00005{word-spacing:19.002000px;}
.ws45_c00005{word-spacing:19.008000px;}
.ws34_c00005{word-spacing:20.376000px;}
.ws51_c00005{word-spacing:28.224000px;}
.ws54_c00005{word-spacing:28.656000px;}
.ws53_c00005{word-spacing:28.872000px;}
.ws50_c00005{word-spacing:28.944000px;}
.ws55_c00005{word-spacing:29.232000px;}
.ws52_c00005{word-spacing:29.304000px;}
.ws58_c00005{word-spacing:29.376000px;}
.ws59_c00005{word-spacing:29.448000px;}
.ws71_c00005{word-spacing:29.664000px;}
.ws6f_c00005{word-spacing:29.736000px;}
.ws70_c00005{word-spacing:29.808000px;}
.ws72_c00005{word-spacing:29.958000px;}
.ws57_c00005{word-spacing:30.024000px;}
.ws56_c00005{word-spacing:30.456000px;}
.ws9_c00005{word-spacing:36.432000px;}
.ws5d_c00005{word-spacing:113.040000px;}
.ws5b_c00005{word-spacing:113.256000px;}
.ws5e_c00005{word-spacing:113.328000px;}
.ws5a_c00005{word-spacing:113.760000px;}
.ws5c_c00005{word-spacing:114.048000px;}
._1_c00005{margin-left:-1.224000px;}
._0_c00005{width:1.512000px;}
._4_c00005{width:3.426000px;}
._3_c00005{width:11.232000px;}
._2_c00005{width:12.528000px;}
._5_c00005{width:28.422000px;}
.fc1_c00005{color:rgb(0,0,255);}
.fc0_c00005{color:rgb(0,0,0);}
.fs0_c00005{font-size:72.000000px;}
.y0_c00005{bottom:0.000000px;}
.y1_c00005{bottom:86.505000px;}
.y22_c00005{bottom:160.020000px;}
.y21_c00005{bottom:186.420000px;}
.y20_c00005{bottom:212.820000px;}
.y1f_c00005{bottom:239.220000px;}
.y1e_c00005{bottom:291.960000px;}
.y1d_c00005{bottom:318.300000px;}
.y1c_c00005{bottom:344.640000px;}
.y1b_c00005{bottom:370.980000px;}
.y1a_c00005{bottom:423.720000px;}
.y19_c00005{bottom:450.180000px;}
.y18_c00005{bottom:502.920000px;}
.y17_c00005{bottom:529.290000px;}
.y16_c00005{bottom:555.660000px;}
.y15_c00005{bottom:582.030000px;}
.y14_c00005{bottom:608.400000px;}
.y13_c00005{bottom:634.770000px;}
.y12_c00005{bottom:661.140000px;}
.y11_c00005{bottom:713.880000px;}
.y10_c00005{bottom:740.220000px;}
.yf_c00005{bottom:766.560000px;}
.ye_c00005{bottom:792.900000px;}
.yd_c00005{bottom:845.640000px;}
.yc_c00005{bottom:871.920000px;}
.yb_c00005{bottom:899.280000px;}
.ya_c00005{bottom:925.740000px;}
.y9_c00005{bottom:952.020000px;}
.y8_c00005{bottom:978.480000px;}
.y7_c00005{bottom:1004.760000px;}
.y6_c00005{bottom:1032.120000px;}
.y5_c00005{bottom:1058.400000px;}
.y4_c00005{bottom:1085.760000px;}
.y3_c00005{bottom:1113.120000px;}
.y2_c00005{bottom:1139.580000px;}
.h2_c00005{height:51.679688px;}
.h0_c00005{height:1262.880000px;}
.h1_c00005{height:1263.000000px;}
.w0_c00005{width:892.980000px;}
.w1_c00005{width:893.250000px;}
.x0_c00005{left:0.000000px;}
.x2_c00005{left:106.200000px;}
.x3_c00005{left:133.200000px;}
.x1_c00005{left:441.720000px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls26_c00005{letter-spacing:-1.216000pt;}
.ls19_c00005{letter-spacing:-0.832000pt;}
.ls20_c00005{letter-spacing:-0.704000pt;}
.ls1b_c00005{letter-spacing:-0.576000pt;}
.ls1e_c00005{letter-spacing:-0.512000pt;}
.ls22_c00005{letter-spacing:-0.448000pt;}
.ls29_c00005{letter-spacing:-0.384000pt;}
.ls1a_c00005{letter-spacing:-0.320000pt;}
.ls1c_c00005{letter-spacing:-0.256000pt;}
.ls23_c00005{letter-spacing:-0.192000pt;}
.ls1f_c00005{letter-spacing:-0.128000pt;}
.ls1d_c00005{letter-spacing:-0.064000pt;}
.ls18_c00005{letter-spacing:0.000000pt;}
.ls5_c00005{letter-spacing:0.064000pt;}
.ls11_c00005{letter-spacing:0.096000pt;}
.ls10_c00005{letter-spacing:0.101333pt;}
.ls2_c00005{letter-spacing:0.128000pt;}
.ls14_c00005{letter-spacing:0.160000pt;}
.ls17_c00005{letter-spacing:0.176000pt;}
.ls1_c00005{letter-spacing:0.192000pt;}
.ls12_c00005{letter-spacing:0.213333pt;}
.ls16_c00005{letter-spacing:0.256000pt;}
.ls15_c00005{letter-spacing:0.256512pt;}
.lsc_c00005{letter-spacing:0.261333pt;}
.ls13_c00005{letter-spacing:0.277376pt;}
.ls4_c00005{letter-spacing:0.320000pt;}
.lse_c00005{letter-spacing:0.341333pt;}
.ls9_c00005{letter-spacing:0.341909pt;}
.ls0_c00005{letter-spacing:0.896000pt;}
.lsb_c00005{letter-spacing:1.541333pt;}
.lsa_c00005{letter-spacing:2.181333pt;}
.ls7_c00005{letter-spacing:2.821333pt;}
.ls6_c00005{letter-spacing:7.296000pt;}
.ls21_c00005{letter-spacing:9.029333pt;}
.ls8_c00005{letter-spacing:9.616000pt;}
.ls27_c00005{letter-spacing:11.930667pt;}
.ls2a_c00005{letter-spacing:11.936000pt;}
.lsf_c00005{letter-spacing:11.962667pt;}
.ls28_c00005{letter-spacing:11.968000pt;}
.ls2c_c00005{letter-spacing:12.549333pt;}
.ls2d_c00005{letter-spacing:13.109333pt;}
.ls2b_c00005{letter-spacing:13.136000pt;}
.ls25_c00005{letter-spacing:13.717333pt;}
.ls24_c00005{letter-spacing:13.722667pt;}
.ls2e_c00005{letter-spacing:14.869333pt;}
.ls30_c00005{letter-spacing:14.890667pt;}
.ls2f_c00005{letter-spacing:14.896000pt;}
.lsd_c00005{letter-spacing:16.656000pt;}
.ls3_c00005{letter-spacing:66.560000pt;}
.ws10_c00005{word-spacing:-64.192000pt;}
.ws11_c00005{word-spacing:-63.808000pt;}
.ws7_c00005{word-spacing:-14.784000pt;}
.wsf_c00005{word-spacing:-14.720000pt;}
.ws1_c00005{word-spacing:-14.656000pt;}
.wsc_c00005{word-spacing:-14.592000pt;}
.ws3_c00005{word-spacing:-14.528000pt;}
.ws2_c00005{word-spacing:-14.464000pt;}
.ws8_c00005{word-spacing:-14.400000pt;}
.ws6_c00005{word-spacing:-14.336000pt;}
.wsb_c00005{word-spacing:-14.272000pt;}
.ws4_c00005{word-spacing:-14.208000pt;}
.ws5_c00005{word-spacing:-14.144000pt;}
.wse_c00005{word-spacing:-14.080000pt;}
.wsa_c00005{word-spacing:-14.016000pt;}
.ws0_c00005{word-spacing:-13.888000pt;}
.wsd_c00005{word-spacing:-13.760000pt;}
.ws64_c00005{word-spacing:-0.960000pt;}
.ws62_c00005{word-spacing:-0.832000pt;}
.ws1e_c00005{word-spacing:-0.704000pt;}
.ws61_c00005{word-spacing:-0.634667pt;}
.ws5f_c00005{word-spacing:-0.581333pt;}
.ws63_c00005{word-spacing:-0.576000pt;}
.ws4c_c00005{word-spacing:-0.517333pt;}
.ws1f_c00005{word-spacing:-0.512000pt;}
.ws24_c00005{word-spacing:-0.448000pt;}
.ws73_c00005{word-spacing:-0.384000pt;}
.ws1a_c00005{word-spacing:-0.320000pt;}
.ws4f_c00005{word-spacing:-0.314667pt;}
.ws66_c00005{word-spacing:-0.256000pt;}
.ws4d_c00005{word-spacing:-0.192000pt;}
.ws32_c00005{word-spacing:-0.128000pt;}
.ws14_c00005{word-spacing:-0.064000pt;}
.ws12_c00005{word-spacing:0.000000pt;}
.ws18_c00005{word-spacing:0.064000pt;}
.ws65_c00005{word-spacing:0.128000pt;}
.ws13_c00005{word-spacing:0.192000pt;}
.ws74_c00005{word-spacing:0.250667pt;}
.ws4e_c00005{word-spacing:0.256000pt;}
.ws16_c00005{word-spacing:0.320000pt;}
.ws31_c00005{word-spacing:0.448000pt;}
.ws19_c00005{word-spacing:0.512000pt;}
.ws1b_c00005{word-spacing:0.576000pt;}
.ws60_c00005{word-spacing:0.640000pt;}
.ws75_c00005{word-spacing:0.645333pt;}
.ws41_c00005{word-spacing:0.704000pt;}
.ws2e_c00005{word-spacing:0.821333pt;}
.ws15_c00005{word-spacing:0.832000pt;}
.ws29_c00005{word-spacing:0.874667pt;}
.ws39_c00005{word-spacing:1.088000pt;}
.ws3e_c00005{word-spacing:1.141333pt;}
.ws17_c00005{word-spacing:1.152000pt;}
.ws3c_c00005{word-spacing:1.194667pt;}
.ws38_c00005{word-spacing:1.216000pt;}
.ws35_c00005{word-spacing:1.248000pt;}
.ws3f_c00005{word-spacing:1.354667pt;}
.ws33_c00005{word-spacing:1.514667pt;}
.ws28_c00005{word-spacing:1.856000pt;}
.ws30_c00005{word-spacing:2.112000pt;}
.ws2f_c00005{word-spacing:2.240000pt;}
.ws26_c00005{word-spacing:2.496000pt;}
.ws27_c00005{word-spacing:2.752000pt;}
.ws25_c00005{word-spacing:3.136000pt;}
.ws68_c00005{word-spacing:4.608000pt;}
.ws69_c00005{word-spacing:5.312000pt;}
.ws6e_c00005{word-spacing:5.568000pt;}
.ws6b_c00005{word-spacing:5.760000pt;}
.ws6c_c00005{word-spacing:5.818667pt;}
.ws67_c00005{word-spacing:5.888000pt;}
.ws6a_c00005{word-spacing:5.952000pt;}
.ws6d_c00005{word-spacing:6.016000pt;}
.ws21_c00005{word-spacing:6.336000pt;}
.ws20_c00005{word-spacing:6.976000pt;}
.ws22_c00005{word-spacing:7.232000pt;}
.ws23_c00005{word-spacing:7.616000pt;}
.ws2a_c00005{word-spacing:10.176000pt;}
.ws2d_c00005{word-spacing:10.432000pt;}
.ws2b_c00005{word-spacing:10.560000pt;}
.ws1d_c00005{word-spacing:11.072000pt;}
.ws2c_c00005{word-spacing:11.200000pt;}
.ws1c_c00005{word-spacing:11.456000pt;}
.ws3b_c00005{word-spacing:12.096000pt;}
.ws3a_c00005{word-spacing:12.736000pt;}
.ws3d_c00005{word-spacing:13.376000pt;}
.ws36_c00005{word-spacing:14.144000pt;}
.ws37_c00005{word-spacing:15.296000pt;}
.ws46_c00005{word-spacing:15.936000pt;}
.ws4a_c00005{word-spacing:16.128000pt;}
.ws40_c00005{word-spacing:16.192000pt;}
.ws4b_c00005{word-spacing:16.250667pt;}
.ws42_c00005{word-spacing:16.256000pt;}
.ws47_c00005{word-spacing:16.320000pt;}
.ws48_c00005{word-spacing:16.384000pt;}
.ws49_c00005{word-spacing:16.576000pt;}
.ws44_c00005{word-spacing:16.832000pt;}
.ws43_c00005{word-spacing:16.890667pt;}
.ws45_c00005{word-spacing:16.896000pt;}
.ws34_c00005{word-spacing:18.112000pt;}
.ws51_c00005{word-spacing:25.088000pt;}
.ws54_c00005{word-spacing:25.472000pt;}
.ws53_c00005{word-spacing:25.664000pt;}
.ws50_c00005{word-spacing:25.728000pt;}
.ws55_c00005{word-spacing:25.984000pt;}
.ws52_c00005{word-spacing:26.048000pt;}
.ws58_c00005{word-spacing:26.112000pt;}
.ws59_c00005{word-spacing:26.176000pt;}
.ws71_c00005{word-spacing:26.368000pt;}
.ws6f_c00005{word-spacing:26.432000pt;}
.ws70_c00005{word-spacing:26.496000pt;}
.ws72_c00005{word-spacing:26.629333pt;}
.ws57_c00005{word-spacing:26.688000pt;}
.ws56_c00005{word-spacing:27.072000pt;}
.ws9_c00005{word-spacing:32.384000pt;}
.ws5d_c00005{word-spacing:100.480000pt;}
.ws5b_c00005{word-spacing:100.672000pt;}
.ws5e_c00005{word-spacing:100.736000pt;}
.ws5a_c00005{word-spacing:101.120000pt;}
.ws5c_c00005{word-spacing:101.376000pt;}
._1_c00005{margin-left:-1.088000pt;}
._0_c00005{width:1.344000pt;}
._4_c00005{width:3.045333pt;}
._3_c00005{width:9.984000pt;}
._2_c00005{width:11.136000pt;}
._5_c00005{width:25.264000pt;}
.fs0_c00005{font-size:64.000000pt;}
.y0_c00005{bottom:0.000000pt;}
.y1_c00005{bottom:76.893333pt;}
.y22_c00005{bottom:142.240000pt;}
.y21_c00005{bottom:165.706667pt;}
.y20_c00005{bottom:189.173333pt;}
.y1f_c00005{bottom:212.640000pt;}
.y1e_c00005{bottom:259.520000pt;}
.y1d_c00005{bottom:282.933333pt;}
.y1c_c00005{bottom:306.346667pt;}
.y1b_c00005{bottom:329.760000pt;}
.y1a_c00005{bottom:376.640000pt;}
.y19_c00005{bottom:400.160000pt;}
.y18_c00005{bottom:447.040000pt;}
.y17_c00005{bottom:470.480000pt;}
.y16_c00005{bottom:493.920000pt;}
.y15_c00005{bottom:517.360000pt;}
.y14_c00005{bottom:540.800000pt;}
.y13_c00005{bottom:564.240000pt;}
.y12_c00005{bottom:587.680000pt;}
.y11_c00005{bottom:634.560000pt;}
.y10_c00005{bottom:657.973333pt;}
.yf_c00005{bottom:681.386667pt;}
.ye_c00005{bottom:704.800000pt;}
.yd_c00005{bottom:751.680000pt;}
.yc_c00005{bottom:775.040000pt;}
.yb_c00005{bottom:799.360000pt;}
.ya_c00005{bottom:822.880000pt;}
.y9_c00005{bottom:846.240000pt;}
.y8_c00005{bottom:869.760000pt;}
.y7_c00005{bottom:893.120000pt;}
.y6_c00005{bottom:917.440000pt;}
.y5_c00005{bottom:940.800000pt;}
.y4_c00005{bottom:965.120000pt;}
.y3_c00005{bottom:989.440000pt;}
.y2_c00005{bottom:1012.960000pt;}
.h2_c00005{height:45.937500pt;}
.h0_c00005{height:1122.560000pt;}
.h1_c00005{height:1122.666667pt;}
.w0_c00005{width:793.760000pt;}
.w1_c00005{width:794.000000pt;}
.x0_c00005{left:0.000000pt;}
.x2_c00005{left:94.400000pt;}
.x3_c00005{left:118.400000pt;}
.x1_c00005{left:392.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_824f13a36687e8f618e048e7.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:0.861816;font-style:normal;font-weight:normal;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_ed661af76c5d053948a20d8a.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00006;src:url('chunks/assets/font_f286b1b5cb031f0f0ea67aab.woff2')format("woff");}.ff3_c00006{font-family:ff3_c00006;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00006;src:url('chunks/assets/font_4dfde70d054a42b584834b92.woff2')format("woff");}.ff4_c00006{font-family:ff4_c00006;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00006;src:url('chunks/assets/font_a38a0454e163fc236872f685.woff2')format("woff");}.ff5_c00006{font-family:ff5_c00006;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00006{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00006{vertical-align:0.000000px;}
.ls25_c00006{letter-spacing:-1.368000px;}
.ls27_c00006{letter-spacing:-1.224000px;}
.ls1d_c00006{letter-spacing:-0.648000px;}
.ls1f_c00006{letter-spacing:-0.576000px;}
.ls18_c00006{letter-spacing:-0.504000px;}
.ls17_c00006{letter-spacing:-0.360000px;}
.ls21_c00006{letter-spacing:-0.288000px;}
.ls19_c00006{letter-spacing:-0.216000px;}
.ls1b_c00006{letter-spacing:-0.144000px;}
.ls16_c00006{letter-spacing:0.000000px;}
.lsf_c00006{letter-spacing:0.042000px;}
.ls9_c00006{letter-spacing:0.048000px;}
.ls12_c00006{letter-spacing:0.059424px;}
.ls11_c00006{letter-spacing:0.060000px;}
.ls3_c00006{letter-spacing:0.072000px;}
.lsa_c00006{letter-spacing:0.102000px;}
.ls10_c00006{letter-spacing:0.108000px;}
.lse_c00006{letter-spacing:0.114000px;}
.ls14_c00006{letter-spacing:0.138000px;}
.ls1a_c00006{letter-spacing:0.144000px;}
.lsb_c00006{letter-spacing:0.168000px;}
.ls13_c00006{letter-spacing:0.186000px;}
.lsc_c00006{letter-spacing:0.192000px;}
.ls2_c00006{letter-spacing:0.203976px;}
.ls0_c00006{letter-spacing:0.216000px;}
.ls8_c00006{letter-spacing:0.244296px;}
.ls7_c00006{letter-spacing:0.246000px;}
.ls1_c00006{letter-spacing:0.288000px;}
.ls4_c00006{letter-spacing:0.360000px;}
.ls15_c00006{letter-spacing:0.390000px;}
.lsd_c00006{letter-spacing:1.734000px;}
.ls5_c00006{letter-spacing:2.430000px;}
.ls6_c00006{letter-spacing:2.454000px;}
.ls28_c00006{letter-spacing:10.158000px;}
.ls29_c00006{letter-spacing:10.818000px;}
.ls1c_c00006{letter-spacing:11.448000px;}
.ls1e_c00006{letter-spacing:12.138000px;}
.ls24_c00006{letter-spacing:14.112000px;}
.ls20_c00006{letter-spacing:14.778000px;}
.ls22_c00006{letter-spacing:15.426000px;}
.ls23_c00006{letter-spacing:15.438000px;}
.ls26_c00006{letter-spacing:21.378000px;}
.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;}
}
.wsd_c00006{word-spacing:-32.256000px;}
.ws7_c00006{word-spacing:-16.632000px;}
.ws0_c00006{word-spacing:-16.560000px;}
.ws1_c00006{word-spacing:-16.488000px;}
.ws3_c00006{word-spacing:-16.475976px;}
.ws9_c00006{word-spacing:-16.416000px;}
.ws2_c00006{word-spacing:-16.344000px;}
.ws4_c00006{word-spacing:-16.272000px;}
.wsa_c00006{word-spacing:-16.128000px;}
.ws5_c00006{word-spacing:-16.056000px;}
.wsc_c00006{word-spacing:-15.984000px;}
.ws8_c00006{word-spacing:-15.912000px;}
.ws6_c00006{word-spacing:-15.768000px;}
.wsb_c00006{word-spacing:-15.624000px;}
.ws51_c00006{word-spacing:-1.008000px;}
.ws50_c00006{word-spacing:-0.936000px;}
.wsf_c00006{word-spacing:-0.792000px;}
.ws10_c00006{word-spacing:-0.720000px;}
.ws4f_c00006{word-spacing:-0.504000px;}
.ws29_c00006{word-spacing:-0.360000px;}
.ws14_c00006{word-spacing:-0.288000px;}
.ws28_c00006{word-spacing:-0.216000px;}
.ws13_c00006{word-spacing:-0.210000px;}
.ws52_c00006{word-spacing:-0.150000px;}
.ws31_c00006{word-spacing:-0.144000px;}
.ws11_c00006{word-spacing:-0.072000px;}
.ws12_c00006{word-spacing:0.000000px;}
.wse_c00006{word-spacing:0.072000px;}
.ws53_c00006{word-spacing:0.138000px;}
.ws54_c00006{word-spacing:0.144000px;}
.ws23_c00006{word-spacing:0.216000px;}
.ws45_c00006{word-spacing:0.360000px;}
.ws20_c00006{word-spacing:0.504000px;}
.ws2f_c00006{word-spacing:0.576000px;}
.ws30_c00006{word-spacing:0.648000px;}
.ws27_c00006{word-spacing:0.720000px;}
.ws41_c00006{word-spacing:0.924000px;}
.ws43_c00006{word-spacing:0.984000px;}
.ws2b_c00006{word-spacing:1.044000px;}
.ws2d_c00006{word-spacing:1.104000px;}
.ws3f_c00006{word-spacing:1.224000px;}
.ws39_c00006{word-spacing:1.284000px;}
.ws33_c00006{word-spacing:1.344000px;}
.ws35_c00006{word-spacing:1.368000px;}
.ws34_c00006{word-spacing:1.404000px;}
.ws3b_c00006{word-spacing:1.944000px;}
.ws36_c00006{word-spacing:2.088000px;}
.ws2a_c00006{word-spacing:2.376000px;}
.ws1c_c00006{word-spacing:2.664000px;}
.ws17_c00006{word-spacing:2.880000px;}
.ws16_c00006{word-spacing:3.024000px;}
.ws1a_c00006{word-spacing:3.096000px;}
.ws15_c00006{word-spacing:3.744000px;}
.ws19_c00006{word-spacing:4.032000px;}
.ws1b_c00006{word-spacing:4.104000px;}
.ws18_c00006{word-spacing:4.248000px;}
.ws4e_c00006{word-spacing:6.840000px;}
.ws56_c00006{word-spacing:7.128000px;}
.ws4c_c00006{word-spacing:7.416000px;}
.ws4a_c00006{word-spacing:7.560000px;}
.ws4b_c00006{word-spacing:7.632000px;}
.ws4d_c00006{word-spacing:7.848000px;}
.ws47_c00006{word-spacing:7.992000px;}
.ws49_c00006{word-spacing:8.130000px;}
.ws46_c00006{word-spacing:8.208000px;}
.ws48_c00006{word-spacing:8.784000px;}
.ws42_c00006{word-spacing:10.728000px;}
.ws40_c00006{word-spacing:11.448000px;}
.ws44_c00006{word-spacing:11.736000px;}
.ws2c_c00006{word-spacing:13.176000px;}
.ws2e_c00006{word-spacing:13.464000px;}
.ws3a_c00006{word-spacing:15.336000px;}
.ws38_c00006{word-spacing:16.056000px;}
.ws37_c00006{word-spacing:16.488000px;}
.ws32_c00006{word-spacing:16.776000px;}
.ws3c_c00006{word-spacing:22.248000px;}
.ws3e_c00006{word-spacing:22.968000px;}
.ws3d_c00006{word-spacing:23.544000px;}
.ws55_c00006{word-spacing:33.768000px;}
.ws26_c00006{word-spacing:139.248000px;}
.ws1e_c00006{word-spacing:140.040000px;}
.ws1f_c00006{word-spacing:140.538000px;}
.ws1d_c00006{word-spacing:140.616000px;}
.ws25_c00006{word-spacing:140.688000px;}
.ws24_c00006{word-spacing:140.976000px;}
.ws21_c00006{word-spacing:141.192000px;}
.ws22_c00006{word-spacing:141.264000px;}
._0_c00006{margin-left:-1.211976px;}
._2_c00006{width:1.001952px;}
._4_c00006{width:2.075832px;}
._1_c00006{width:3.258072px;}
._3_c00006{width:4.428144px;}
._5_c00006{width:8.328000px;}
.fc1_c00006{color:rgb(0,0,255);}
.fc0_c00006{color:rgb(0,0,0);}
.fs0_c00006{font-size:72.000000px;}
.fs1_c00006{font-size:144.000000px;}
.y0_c00006{bottom:0.000000px;}
.y17_c00006{bottom:87.735000px;}
.y16_c00006{bottom:335.340000px;}
.y15_c00006{bottom:361.710000px;}
.y14_c00006{bottom:388.080000px;}
.y13_c00006{bottom:414.450000px;}
.y12_c00006{bottom:440.820000px;}
.y11_c00006{bottom:489.600000px;}
.y10_c00006{bottom:638.460000px;}
.yf_c00006{bottom:691.200000px;}
.ye_c00006{bottom:717.660000px;}
.yd_c00006{bottom:770.400000px;}
.yc_c00006{bottom:796.752000px;}
.yb_c00006{bottom:823.104000px;}
.ya_c00006{bottom:849.456000px;}
.y9_c00006{bottom:875.808000px;}
.y8_c00006{bottom:902.160000px;}
.y7_c00006{bottom:954.900000px;}
.y6_c00006{bottom:981.270000px;}
.y5_c00006{bottom:1007.640000px;}
.y4_c00006{bottom:1060.380000px;}
.y3_c00006{bottom:1086.780000px;}
.y2_c00006{bottom:1113.180000px;}
.y1_c00006{bottom:1139.580000px;}
.h2_c00006{height:51.679688px;}
.h3_c00006{height:98.437500px;}
.h0_c00006{height:1262.880000px;}
.h1_c00006{height:1263.000000px;}
.w0_c00006{width:892.980000px;}
.w1_c00006{width:893.250000px;}
.x0_c00006{left:0.000000px;}
.x1_c00006{left:106.200000px;}
.x2_c00006{left:442.009500px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls25_c00006{letter-spacing:-1.216000pt;}
.ls27_c00006{letter-spacing:-1.088000pt;}
.ls1d_c00006{letter-spacing:-0.576000pt;}
.ls1f_c00006{letter-spacing:-0.512000pt;}
.ls18_c00006{letter-spacing:-0.448000pt;}
.ls17_c00006{letter-spacing:-0.320000pt;}
.ls21_c00006{letter-spacing:-0.256000pt;}
.ls19_c00006{letter-spacing:-0.192000pt;}
.ls1b_c00006{letter-spacing:-0.128000pt;}
.ls16_c00006{letter-spacing:0.000000pt;}
.lsf_c00006{letter-spacing:0.037333pt;}
.ls9_c00006{letter-spacing:0.042667pt;}
.ls12_c00006{letter-spacing:0.052821pt;}
.ls11_c00006{letter-spacing:0.053333pt;}
.ls3_c00006{letter-spacing:0.064000pt;}
.lsa_c00006{letter-spacing:0.090667pt;}
.ls10_c00006{letter-spacing:0.096000pt;}
.lse_c00006{letter-spacing:0.101333pt;}
.ls14_c00006{letter-spacing:0.122667pt;}
.ls1a_c00006{letter-spacing:0.128000pt;}
.lsb_c00006{letter-spacing:0.149333pt;}
.ls13_c00006{letter-spacing:0.165333pt;}
.lsc_c00006{letter-spacing:0.170667pt;}
.ls2_c00006{letter-spacing:0.181312pt;}
.ls0_c00006{letter-spacing:0.192000pt;}
.ls8_c00006{letter-spacing:0.217152pt;}
.ls7_c00006{letter-spacing:0.218667pt;}
.ls1_c00006{letter-spacing:0.256000pt;}
.ls4_c00006{letter-spacing:0.320000pt;}
.ls15_c00006{letter-spacing:0.346667pt;}
.lsd_c00006{letter-spacing:1.541333pt;}
.ls5_c00006{letter-spacing:2.160000pt;}
.ls6_c00006{letter-spacing:2.181333pt;}
.ls28_c00006{letter-spacing:9.029333pt;}
.ls29_c00006{letter-spacing:9.616000pt;}
.ls1c_c00006{letter-spacing:10.176000pt;}
.ls1e_c00006{letter-spacing:10.789333pt;}
.ls24_c00006{letter-spacing:12.544000pt;}
.ls20_c00006{letter-spacing:13.136000pt;}
.ls22_c00006{letter-spacing:13.712000pt;}
.ls23_c00006{letter-spacing:13.722667pt;}
.ls26_c00006{letter-spacing:19.002667pt;}
.wsd_c00006{word-spacing:-28.672000pt;}
.ws7_c00006{word-spacing:-14.784000pt;}
.ws0_c00006{word-spacing:-14.720000pt;}
.ws1_c00006{word-spacing:-14.656000pt;}
.ws3_c00006{word-spacing:-14.645312pt;}
.ws9_c00006{word-spacing:-14.592000pt;}
.ws2_c00006{word-spacing:-14.528000pt;}
.ws4_c00006{word-spacing:-14.464000pt;}
.wsa_c00006{word-spacing:-14.336000pt;}
.ws5_c00006{word-spacing:-14.272000pt;}
.wsc_c00006{word-spacing:-14.208000pt;}
.ws8_c00006{word-spacing:-14.144000pt;}
.ws6_c00006{word-spacing:-14.016000pt;}
.wsb_c00006{word-spacing:-13.888000pt;}
.ws51_c00006{word-spacing:-0.896000pt;}
.ws50_c00006{word-spacing:-0.832000pt;}
.wsf_c00006{word-spacing:-0.704000pt;}
.ws10_c00006{word-spacing:-0.640000pt;}
.ws4f_c00006{word-spacing:-0.448000pt;}
.ws29_c00006{word-spacing:-0.320000pt;}
.ws14_c00006{word-spacing:-0.256000pt;}
.ws28_c00006{word-spacing:-0.192000pt;}
.ws13_c00006{word-spacing:-0.186667pt;}
.ws52_c00006{word-spacing:-0.133333pt;}
.ws31_c00006{word-spacing:-0.128000pt;}
.ws11_c00006{word-spacing:-0.064000pt;}
.ws12_c00006{word-spacing:0.000000pt;}
.wse_c00006{word-spacing:0.064000pt;}
.ws53_c00006{word-spacing:0.122667pt;}
.ws54_c00006{word-spacing:0.128000pt;}
.ws23_c00006{word-spacing:0.192000pt;}
.ws45_c00006{word-spacing:0.320000pt;}
.ws20_c00006{word-spacing:0.448000pt;}
.ws2f_c00006{word-spacing:0.512000pt;}
.ws30_c00006{word-spacing:0.576000pt;}
.ws27_c00006{word-spacing:0.640000pt;}
.ws41_c00006{word-spacing:0.821333pt;}
.ws43_c00006{word-spacing:0.874667pt;}
.ws2b_c00006{word-spacing:0.928000pt;}
.ws2d_c00006{word-spacing:0.981333pt;}
.ws3f_c00006{word-spacing:1.088000pt;}
.ws39_c00006{word-spacing:1.141333pt;}
.ws33_c00006{word-spacing:1.194667pt;}
.ws35_c00006{word-spacing:1.216000pt;}
.ws34_c00006{word-spacing:1.248000pt;}
.ws3b_c00006{word-spacing:1.728000pt;}
.ws36_c00006{word-spacing:1.856000pt;}
.ws2a_c00006{word-spacing:2.112000pt;}
.ws1c_c00006{word-spacing:2.368000pt;}
.ws17_c00006{word-spacing:2.560000pt;}
.ws16_c00006{word-spacing:2.688000pt;}
.ws1a_c00006{word-spacing:2.752000pt;}
.ws15_c00006{word-spacing:3.328000pt;}
.ws19_c00006{word-spacing:3.584000pt;}
.ws1b_c00006{word-spacing:3.648000pt;}
.ws18_c00006{word-spacing:3.776000pt;}
.ws4e_c00006{word-spacing:6.080000pt;}
.ws56_c00006{word-spacing:6.336000pt;}
.ws4c_c00006{word-spacing:6.592000pt;}
.ws4a_c00006{word-spacing:6.720000pt;}
.ws4b_c00006{word-spacing:6.784000pt;}
.ws4d_c00006{word-spacing:6.976000pt;}
.ws47_c00006{word-spacing:7.104000pt;}
.ws49_c00006{word-spacing:7.226667pt;}
.ws46_c00006{word-spacing:7.296000pt;}
.ws48_c00006{word-spacing:7.808000pt;}
.ws42_c00006{word-spacing:9.536000pt;}
.ws40_c00006{word-spacing:10.176000pt;}
.ws44_c00006{word-spacing:10.432000pt;}
.ws2c_c00006{word-spacing:11.712000pt;}
.ws2e_c00006{word-spacing:11.968000pt;}
.ws3a_c00006{word-spacing:13.632000pt;}
.ws38_c00006{word-spacing:14.272000pt;}
.ws37_c00006{word-spacing:14.656000pt;}
.ws32_c00006{word-spacing:14.912000pt;}
.ws3c_c00006{word-spacing:19.776000pt;}
.ws3e_c00006{word-spacing:20.416000pt;}
.ws3d_c00006{word-spacing:20.928000pt;}
.ws55_c00006{word-spacing:30.016000pt;}
.ws26_c00006{word-spacing:123.776000pt;}
.ws1e_c00006{word-spacing:124.480000pt;}
.ws1f_c00006{word-spacing:124.922667pt;}
.ws1d_c00006{word-spacing:124.992000pt;}
.ws25_c00006{word-spacing:125.056000pt;}
.ws24_c00006{word-spacing:125.312000pt;}
.ws21_c00006{word-spacing:125.504000pt;}
.ws22_c00006{word-spacing:125.568000pt;}
._0_c00006{margin-left:-1.077312pt;}
._2_c00006{width:0.890624pt;}
._4_c00006{width:1.845184pt;}
._1_c00006{width:2.896064pt;}
._3_c00006{width:3.936128pt;}
._5_c00006{width:7.402667pt;}
.fs0_c00006{font-size:64.000000pt;}
.fs1_c00006{font-size:128.000000pt;}
.y0_c00006{bottom:0.000000pt;}
.y17_c00006{bottom:77.986667pt;}
.y16_c00006{bottom:298.080000pt;}
.y15_c00006{bottom:321.520000pt;}
.y14_c00006{bottom:344.960000pt;}
.y13_c00006{bottom:368.400000pt;}
.y12_c00006{bottom:391.840000pt;}
.y11_c00006{bottom:435.200000pt;}
.y10_c00006{bottom:567.520000pt;}
.yf_c00006{bottom:614.400000pt;}
.ye_c00006{bottom:637.920000pt;}
.yd_c00006{bottom:684.800000pt;}
.yc_c00006{bottom:708.224000pt;}
.yb_c00006{bottom:731.648000pt;}
.ya_c00006{bottom:755.072000pt;}
.y9_c00006{bottom:778.496000pt;}
.y8_c00006{bottom:801.920000pt;}
.y7_c00006{bottom:848.800000pt;}
.y6_c00006{bottom:872.240000pt;}
.y5_c00006{bottom:895.680000pt;}
.y4_c00006{bottom:942.560000pt;}
.y3_c00006{bottom:966.026667pt;}
.y2_c00006{bottom:989.493333pt;}
.y1_c00006{bottom:1012.960000pt;}
.h2_c00006{height:45.937500pt;}
.h3_c00006{height:87.500000pt;}
.h0_c00006{height:1122.560000pt;}
.h1_c00006{height:1122.666667pt;}
.w0_c00006{width:793.760000pt;}
.w1_c00006{width:794.000000pt;}
.x0_c00006{left:0.000000pt;}
.x1_c00006{left:94.400000pt;}
.x2_c00006{left:392.897333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_68fb329ed224bde2a28968a3.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00007;src:url('chunks/assets/font_26621b5af8ce54869658fa9e.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:0.937500;font-style:normal;font-weight:normal;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_2cc2a3032e7ba562ca1dd9ee.woff2')format("woff");}.ff3_c00007{font-family:ff3_c00007;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00007{letter-spacing:0.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;}
}
.ws0_c00007{word-spacing:-16.272000px;}
.ws2_c00007{word-spacing:-0.504000px;}
.ws1_c00007{word-spacing:0.000000px;}
._0_c00007{margin-left:-1.152000px;}
._1_c00007{width:1.008000px;}
._2_c00007{width:2.202000px;}
.fc1_c00007{color:rgb(0,0,255);}
.fc0_c00007{color:rgb(0,0,0);}
.fs0_c00007{font-size:72.000000px;}
.fs1_c00007{font-size:144.000000px;}
.y0_c00007{bottom:0.000000px;}
.y1_c00007{bottom:85.837500px;}
.y1d_c00007{bottom:115.837500px;}
.y1c_c00007{bottom:142.237500px;}
.y1b_c00007{bottom:195.375000px;}
.y1a_c00007{bottom:221.775000px;}
.y19_c00007{bottom:275.175000px;}
.y18_c00007{bottom:301.575000px;}
.y17_c00007{bottom:353.820000px;}
.y16_c00007{bottom:380.205000px;}
.y15_c00007{bottom:406.320000px;}
.y14_c00007{bottom:462.705000px;}
.y13_c00007{bottom:489.120000px;}
.y12_c00007{bottom:542.550000px;}
.y11_c00007{bottom:568.950000px;}
.y10_c00007{bottom:595.350000px;}
.yf_c00007{bottom:647.850000px;}
.ye_c00007{bottom:674.250000px;}
.yd_c00007{bottom:700.695000px;}
.yc_c00007{bottom:753.195000px;}
.yb_c00007{bottom:779.580000px;}
.ya_c00007{bottom:805.980000px;}
.y9_c00007{bottom:859.425000px;}
.y8_c00007{bottom:885.825000px;}
.y7_c00007{bottom:911.925000px;}
.y6_c00007{bottom:964.425000px;}
.y5_c00007{bottom:990.825000px;}
.y4_c00007{bottom:1044.255000px;}
.y3_c00007{bottom:1070.670000px;}
.y2_c00007{bottom:1127.370000px;}
.h1_c00007{height:54.667969px;}
.h3_c00007{height:54.914062px;}
.h2_c00007{height:109.828125px;}
.h0_c00007{height:1263.000000px;}
.w1_c00007{width:893.250000px;}
.w0_c00007{width:893.400000px;}
.x0_c00007{left:0.000000px;}
.x2_c00007{left:106.237500px;}
.x1_c00007{left:442.050000px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls0_c00007{letter-spacing:0.000000pt;}
.ws0_c00007{word-spacing:-14.464000pt;}
.ws2_c00007{word-spacing:-0.448000pt;}
.ws1_c00007{word-spacing:0.000000pt;}
._0_c00007{margin-left:-1.024000pt;}
._1_c00007{width:0.896000pt;}
._2_c00007{width:1.957333pt;}
.fs0_c00007{font-size:64.000000pt;}
.fs1_c00007{font-size:128.000000pt;}
.y0_c00007{bottom:0.000000pt;}
.y1_c00007{bottom:76.300000pt;}
.y1d_c00007{bottom:102.966667pt;}
.y1c_c00007{bottom:126.433333pt;}
.y1b_c00007{bottom:173.666667pt;}
.y1a_c00007{bottom:197.133333pt;}
.y19_c00007{bottom:244.600000pt;}
.y18_c00007{bottom:268.066667pt;}
.y17_c00007{bottom:314.506667pt;}
.y16_c00007{bottom:337.960000pt;}
.y15_c00007{bottom:361.173333pt;}
.y14_c00007{bottom:411.293333pt;}
.y13_c00007{bottom:434.773333pt;}
.y12_c00007{bottom:482.266667pt;}
.y11_c00007{bottom:505.733333pt;}
.y10_c00007{bottom:529.200000pt;}
.yf_c00007{bottom:575.866667pt;}
.ye_c00007{bottom:599.333333pt;}
.yd_c00007{bottom:622.840000pt;}
.yc_c00007{bottom:669.506667pt;}
.yb_c00007{bottom:692.960000pt;}
.ya_c00007{bottom:716.426667pt;}
.y9_c00007{bottom:763.933333pt;}
.y8_c00007{bottom:787.400000pt;}
.y7_c00007{bottom:810.600000pt;}
.y6_c00007{bottom:857.266667pt;}
.y5_c00007{bottom:880.733333pt;}
.y4_c00007{bottom:928.226667pt;}
.y3_c00007{bottom:951.706667pt;}
.y2_c00007{bottom:1002.106667pt;}
.h1_c00007{height:48.593750pt;}
.h3_c00007{height:48.812500pt;}
.h2_c00007{height:97.625000pt;}
.h0_c00007{height:1122.666667pt;}
.w1_c00007{width:794.000000pt;}
.w0_c00007{width:794.133333pt;}
.x0_c00007{left:0.000000pt;}
.x2_c00007{left:94.433333pt;}
.x1_c00007{left:392.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_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_8be4e0922727a5026594b429.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00008;src:url('chunks/assets/font_e59240518f60661da59c70ac.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:0.982910;font-style:normal;font-weight:normal;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_925909bc5faf466dfd94ff13.woff2')format("woff");}.ff3_c00008{font-family:ff3_c00008;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00008{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.ls2_c00008{letter-spacing:-0.216000px;}
.ls1_c00008{letter-spacing:0.000000px;}
.ls0_c00008{letter-spacing:0.330000px;}
.sc__c00008{text-shadow:none;}
.sc0_c00008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00008{-webkit-text-stroke:0px transparent;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00008{word-spacing:-16.272000px;}
.ws1_c00008{word-spacing:-16.056000px;}
.wsc_c00008{word-spacing:-0.648000px;}
.ws4_c00008{word-spacing:-0.432000px;}
.ws16_c00008{word-spacing:-0.264000px;}
.ws2_c00008{word-spacing:0.000000px;}
.ws3_c00008{word-spacing:0.138000px;}
.ws18_c00008{word-spacing:0.216000px;}
.ws5_c00008{word-spacing:0.288000px;}
.ws13_c00008{word-spacing:0.360000px;}
.wsa_c00008{word-spacing:0.432000px;}
.ws7_c00008{word-spacing:0.504000px;}
.ws6_c00008{word-spacing:0.576000px;}
.wsb_c00008{word-spacing:0.648000px;}
.wsf_c00008{word-spacing:0.690000px;}
.ws1a_c00008{word-spacing:0.840000px;}
.ws19_c00008{word-spacing:0.978000px;}
.ws17_c00008{word-spacing:1.272000px;}
.ws12_c00008{word-spacing:1.332000px;}
.ws11_c00008{word-spacing:1.398000px;}
.ws10_c00008{word-spacing:1.482000px;}
.ws15_c00008{word-spacing:1.542000px;}
.wse_c00008{word-spacing:1.716000px;}
.wsd_c00008{word-spacing:2.370000px;}
.ws9_c00008{word-spacing:2.658000px;}
.ws8_c00008{word-spacing:2.730000px;}
.ws14_c00008{word-spacing:2.946000px;}
._2_c00008{margin-left:-2.495952px;}
._0_c00008{margin-left:-1.386000px;}
._1_c00008{width:1.121952px;}
._3_c00008{width:2.214384px;}
.fc1_c00008{color:rgb(0,0,255);}
.fc0_c00008{color:rgb(0,0,0);}
.fs0_c00008{font-size:66.000000px;}
.fs2_c00008{font-size:72.000000px;}
.fs1_c00008{font-size:144.000000px;}
.y0_c00008{bottom:0.000000px;}
.y1_c00008{bottom:90.937500px;}
.y1f_c00008{bottom:152.728500px;}
.y1e_c00008{bottom:179.001000px;}
.y1d_c00008{bottom:205.273500px;}
.y1c_c00008{bottom:257.773500px;}
.y1b_c00008{bottom:284.173500px;}
.y1a_c00008{bottom:310.573500px;}
.y19_c00008{bottom:363.418500px;}
.y18_c00008{bottom:388.318500px;}
.y17_c00008{bottom:413.218500px;}
.y16_c00008{bottom:438.118500px;}
.y15_c00008{bottom:464.503500px;}
.y14_c00008{bottom:517.348500px;}
.y13_c00008{bottom:543.748500px;}
.y12_c00008{bottom:570.148500px;}
.y11_c00008{bottom:596.548500px;}
.y10_c00008{bottom:649.048500px;}
.yf_c00008{bottom:675.313500px;}
.ye_c00008{bottom:701.578500px;}
.yd_c00008{bottom:754.393500px;}
.yc_c00008{bottom:780.789000px;}
.yb_c00008{bottom:807.184500px;}
.ya_c00008{bottom:833.580000px;}
.y9_c00008{bottom:886.425000px;}
.y8_c00008{bottom:912.825000px;}
.y7_c00008{bottom:939.225000px;}
.y6_c00008{bottom:965.625000px;}
.y5_c00008{bottom:1018.455000px;}
.y4_c00008{bottom:1044.705000px;}
.y3_c00008{bottom:1070.955000px;}
.y2_c00008{bottom:1127.370000px;}
.h1_c00008{height:53.109375px;}
.h4_c00008{height:54.914062px;}
.h3_c00008{height:57.937500px;}
.h2_c00008{height:109.828125px;}
.h0_c00008{height:1263.000000px;}
.w1_c00008{width:893.250000px;}
.w0_c00008{width:893.400000px;}
.x0_c00008{left:0.000000px;}
.x2_c00008{left:106.237500px;}
.x1_c00008{left:441.750000px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls2_c00008{letter-spacing:-0.192000pt;}
.ls1_c00008{letter-spacing:0.000000pt;}
.ls0_c00008{letter-spacing:0.293333pt;}
.ws0_c00008{word-spacing:-14.464000pt;}
.ws1_c00008{word-spacing:-14.272000pt;}
.wsc_c00008{word-spacing:-0.576000pt;}
.ws4_c00008{word-spacing:-0.384000pt;}
.ws16_c00008{word-spacing:-0.234667pt;}
.ws2_c00008{word-spacing:0.000000pt;}
.ws3_c00008{word-spacing:0.122667pt;}
.ws18_c00008{word-spacing:0.192000pt;}
.ws5_c00008{word-spacing:0.256000pt;}
.ws13_c00008{word-spacing:0.320000pt;}
.wsa_c00008{word-spacing:0.384000pt;}
.ws7_c00008{word-spacing:0.448000pt;}
.ws6_c00008{word-spacing:0.512000pt;}
.wsb_c00008{word-spacing:0.576000pt;}
.wsf_c00008{word-spacing:0.613333pt;}
.ws1a_c00008{word-spacing:0.746667pt;}
.ws19_c00008{word-spacing:0.869333pt;}
.ws17_c00008{word-spacing:1.130667pt;}
.ws12_c00008{word-spacing:1.184000pt;}
.ws11_c00008{word-spacing:1.242667pt;}
.ws10_c00008{word-spacing:1.317333pt;}
.ws15_c00008{word-spacing:1.370667pt;}
.wse_c00008{word-spacing:1.525333pt;}
.wsd_c00008{word-spacing:2.106667pt;}
.ws9_c00008{word-spacing:2.362667pt;}
.ws8_c00008{word-spacing:2.426667pt;}
.ws14_c00008{word-spacing:2.618667pt;}
._2_c00008{margin-left:-2.218624pt;}
._0_c00008{margin-left:-1.232000pt;}
._1_c00008{width:0.997291pt;}
._3_c00008{width:1.968341pt;}
.fs0_c00008{font-size:58.666667pt;}
.fs2_c00008{font-size:64.000000pt;}
.fs1_c00008{font-size:128.000000pt;}
.y0_c00008{bottom:0.000000pt;}
.y1_c00008{bottom:80.833333pt;}
.y1f_c00008{bottom:135.758667pt;}
.y1e_c00008{bottom:159.112000pt;}
.y1d_c00008{bottom:182.465333pt;}
.y1c_c00008{bottom:229.132000pt;}
.y1b_c00008{bottom:252.598667pt;}
.y1a_c00008{bottom:276.065333pt;}
.y19_c00008{bottom:323.038667pt;}
.y18_c00008{bottom:345.172000pt;}
.y17_c00008{bottom:367.305333pt;}
.y16_c00008{bottom:389.438667pt;}
.y15_c00008{bottom:412.892000pt;}
.y14_c00008{bottom:459.865333pt;}
.y13_c00008{bottom:483.332000pt;}
.y12_c00008{bottom:506.798667pt;}
.y11_c00008{bottom:530.265333pt;}
.y10_c00008{bottom:576.932000pt;}
.yf_c00008{bottom:600.278667pt;}
.ye_c00008{bottom:623.625333pt;}
.yd_c00008{bottom:670.572000pt;}
.yc_c00008{bottom:694.034667pt;}
.yb_c00008{bottom:717.497333pt;}
.ya_c00008{bottom:740.960000pt;}
.y9_c00008{bottom:787.933333pt;}
.y8_c00008{bottom:811.400000pt;}
.y7_c00008{bottom:834.866667pt;}
.y6_c00008{bottom:858.333333pt;}
.y5_c00008{bottom:905.293333pt;}
.y4_c00008{bottom:928.626667pt;}
.y3_c00008{bottom:951.960000pt;}
.y2_c00008{bottom:1002.106667pt;}
.h1_c00008{height:47.208333pt;}
.h4_c00008{height:48.812500pt;}
.h3_c00008{height:51.500000pt;}
.h2_c00008{height:97.625000pt;}
.h0_c00008{height:1122.666667pt;}
.w1_c00008{width:794.000000pt;}
.w0_c00008{width:794.133333pt;}
.x0_c00008{left:0.000000pt;}
.x2_c00008{left:94.433333pt;}
.x1_c00008{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_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_3569146e1b6c1da08ec310d5.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00009;src:url('chunks/assets/font_a9ae95fcfe74554c93289ff7.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:0.982910;font-style:normal;font-weight:normal;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_1170f2bba3a32c76b863a2c6.woff2')format("woff");}.ff3_c00009{font-family:ff3_c00009;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00009;src:url('chunks/assets/font_90261859b3c9c10c54f4a21b.woff2')format("woff");}.ff4_c00009{font-family:ff4_c00009;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00009{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.ls3_c00009{letter-spacing:-0.216000px;}
.ls1_c00009{letter-spacing:0.000000px;}
.ls0_c00009{letter-spacing:0.144000px;}
.ls2_c00009{letter-spacing:0.288000px;}
.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:-72.000000px;}
.ws2_c00009{word-spacing:-16.560000px;}
.ws0_c00009{word-spacing:-16.272000px;}
.ws3_c00009{word-spacing:0.000000px;}
.ws4_c00009{word-spacing:0.138000px;}
._1_c00009{margin-left:-1.152000px;}
._0_c00009{width:1.128000px;}
._3_c00009{width:2.178000px;}
._2_c00009{width:3.462000px;}
.fc1_c00009{color:rgb(0,0,255);}
.fc0_c00009{color:rgb(0,0,0);}
.fs0_c00009{font-size:66.000000px;}
.fs1_c00009{font-size:72.000000px;}
.y0_c00009{bottom:0.000000px;}
.y1_c00009{bottom:90.937500px;}
.y1f_c00009{bottom:200.475000px;}
.y1e_c00009{bottom:226.875000px;}
.y1d_c00009{bottom:253.275000px;}
.y1c_c00009{bottom:306.075000px;}
.y1b_c00009{bottom:332.475000px;}
.y1a_c00009{bottom:358.920000px;}
.y19_c00009{bottom:385.320000px;}
.y18_c00009{bottom:438.120000px;}
.y17_c00009{bottom:464.505000px;}
.y16_c00009{bottom:486.405000px;}
.y15_c00009{bottom:512.850000px;}
.y14_c00009{bottom:565.650000px;}
.y13_c00009{bottom:592.050000px;}
.y12_c00009{bottom:618.450000px;}
.y11_c00009{bottom:644.850000px;}
.y10_c00009{bottom:696.480000px;}
.yf_c00009{bottom:722.880000px;}
.ye_c00009{bottom:749.295000px;}
.yd_c00009{bottom:801.495000px;}
.yc_c00009{bottom:828.195000px;}
.yb_c00009{bottom:854.625000px;}
.ya_c00009{bottom:880.725000px;}
.y9_c00009{bottom:933.825000px;}
.y8_c00009{bottom:960.225000px;}
.y7_c00009{bottom:986.625000px;}
.y6_c00009{bottom:1013.070000px;}
.y5_c00009{bottom:1064.670000px;}
.y4_c00009{bottom:1091.070000px;}
.y3_c00009{bottom:1117.455000px;}
.y2_c00009{bottom:1143.870000px;}
.h1_c00009{height:53.109375px;}
.h3_c00009{height:54.914062px;}
.h2_c00009{height:57.937500px;}
.h0_c00009{height:1263.000000px;}
.w1_c00009{width:893.250000px;}
.w0_c00009{width:893.400000px;}
.x0_c00009{left:0.000000px;}
.x2_c00009{left:106.237500px;}
.x1_c00009{left:441.750000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls3_c00009{letter-spacing:-0.192000pt;}
.ls1_c00009{letter-spacing:0.000000pt;}
.ls0_c00009{letter-spacing:0.128000pt;}
.ls2_c00009{letter-spacing:0.256000pt;}
.ws1_c00009{word-spacing:-64.000000pt;}
.ws2_c00009{word-spacing:-14.720000pt;}
.ws0_c00009{word-spacing:-14.464000pt;}
.ws3_c00009{word-spacing:0.000000pt;}
.ws4_c00009{word-spacing:0.122667pt;}
._1_c00009{margin-left:-1.024000pt;}
._0_c00009{width:1.002667pt;}
._3_c00009{width:1.936000pt;}
._2_c00009{width:3.077333pt;}
.fs0_c00009{font-size:58.666667pt;}
.fs1_c00009{font-size:64.000000pt;}
.y0_c00009{bottom:0.000000pt;}
.y1_c00009{bottom:80.833333pt;}
.y1f_c00009{bottom:178.200000pt;}
.y1e_c00009{bottom:201.666667pt;}
.y1d_c00009{bottom:225.133333pt;}
.y1c_c00009{bottom:272.066667pt;}
.y1b_c00009{bottom:295.533333pt;}
.y1a_c00009{bottom:319.040000pt;}
.y19_c00009{bottom:342.506667pt;}
.y18_c00009{bottom:389.440000pt;}
.y17_c00009{bottom:412.893333pt;}
.y16_c00009{bottom:432.360000pt;}
.y15_c00009{bottom:455.866667pt;}
.y14_c00009{bottom:502.800000pt;}
.y13_c00009{bottom:526.266667pt;}
.y12_c00009{bottom:549.733333pt;}
.y11_c00009{bottom:573.200000pt;}
.y10_c00009{bottom:619.093333pt;}
.yf_c00009{bottom:642.560000pt;}
.ye_c00009{bottom:666.040000pt;}
.yd_c00009{bottom:712.440000pt;}
.yc_c00009{bottom:736.173333pt;}
.yb_c00009{bottom:759.666667pt;}
.ya_c00009{bottom:782.866667pt;}
.y9_c00009{bottom:830.066667pt;}
.y8_c00009{bottom:853.533333pt;}
.y7_c00009{bottom:877.000000pt;}
.y6_c00009{bottom:900.506667pt;}
.y5_c00009{bottom:946.373333pt;}
.y4_c00009{bottom:969.840000pt;}
.y3_c00009{bottom:993.293333pt;}
.y2_c00009{bottom:1016.773333pt;}
.h1_c00009{height:47.208333pt;}
.h3_c00009{height:48.812500pt;}
.h2_c00009{height:51.500000pt;}
.h0_c00009{height:1122.666667pt;}
.w1_c00009{width:794.000000pt;}
.w0_c00009{width:794.133333pt;}
.x0_c00009{left:0.000000pt;}
.x2_c00009{left:94.433333pt;}
.x1_c00009{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_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_fe2cc12534b954d38307ed36.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:0.982910;font-style:normal;font-weight:normal;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_c4b4aa709f9fa700f41cd4ad.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00010;src:url('chunks/assets/font_35ba2646c09069e0e3ef05ec.woff2')format("woff");}.ff3_c00010{font-family:ff3_c00010;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00010;src:url('chunks/assets/font_90261859b3c9c10c54f4a21b.woff2')format("woff");}.ff4_c00010{font-family:ff4_c00010;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00010{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.ls4_c00010{letter-spacing:-0.216000px;}
.ls3_c00010{letter-spacing:0.000000px;}
.ls1_c00010{letter-spacing:0.084000px;}
.ls2_c00010{letter-spacing:0.138000px;}
.ls0_c00010{letter-spacing:0.264000px;}
.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;}
}
.ws2_c00010{word-spacing:-72.000000px;}
.ws0_c00010{word-spacing:-66.138000px;}
.ws1_c00010{word-spacing:-16.272000px;}
.ws3_c00010{word-spacing:-16.056000px;}
.ws4_c00010{word-spacing:0.000000px;}
._1_c00010{margin-left:-1.350000px;}
._0_c00010{width:1.296000px;}
._2_c00010{width:2.964000px;}
.fc1_c00010{color:rgb(0,0,255);}
.fc0_c00010{color:rgb(0,0,0);}
.fs0_c00010{font-size:66.000000px;}
.fs1_c00010{font-size:72.000000px;}
.y0_c00010{bottom:0.000000px;}
.y1_c00010{bottom:90.937500px;}
.y1f_c00010{bottom:173.475000px;}
.y1e_c00010{bottom:199.875000px;}
.y1d_c00010{bottom:226.275000px;}
.y1c_c00010{bottom:279.075000px;}
.y1b_c00010{bottom:305.475000px;}
.y1a_c00010{bottom:331.875000px;}
.y19_c00010{bottom:358.320000px;}
.y18_c00010{bottom:411.120000px;}
.y17_c00010{bottom:437.505000px;}
.y16_c00010{bottom:463.620000px;}
.y15_c00010{bottom:516.450000px;}
.y14_c00010{bottom:543.150000px;}
.y13_c00010{bottom:569.550000px;}
.y12_c00010{bottom:595.650000px;}
.y11_c00010{bottom:648.450000px;}
.y10_c00010{bottom:674.850000px;}
.yf_c00010{bottom:701.280000px;}
.ye_c00010{bottom:754.080000px;}
.yd_c00010{bottom:780.495000px;}
.yc_c00010{bottom:806.895000px;}
.yb_c00010{bottom:859.425000px;}
.ya_c00010{bottom:885.825000px;}
.y9_c00010{bottom:912.225000px;}
.y8_c00010{bottom:963.825000px;}
.y7_c00010{bottom:990.525000px;}
.y6_c00010{bottom:1012.455000px;}
.y5_c00010{bottom:1038.570000px;}
.y4_c00010{bottom:1091.070000px;}
.y3_c00010{bottom:1117.455000px;}
.y2_c00010{bottom:1143.870000px;}
.h1_c00010{height:53.109375px;}
.h3_c00010{height:54.914062px;}
.h2_c00010{height:57.937500px;}
.h0_c00010{height:1263.000000px;}
.w1_c00010{width:893.250000px;}
.w0_c00010{width:893.400000px;}
.x0_c00010{left:0.000000px;}
.x2_c00010{left:106.237500px;}
.x1_c00010{left:437.550000px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls4_c00010{letter-spacing:-0.192000pt;}
.ls3_c00010{letter-spacing:0.000000pt;}
.ls1_c00010{letter-spacing:0.074667pt;}
.ls2_c00010{letter-spacing:0.122667pt;}
.ls0_c00010{letter-spacing:0.234667pt;}
.ws2_c00010{word-spacing:-64.000000pt;}
.ws0_c00010{word-spacing:-58.789333pt;}
.ws1_c00010{word-spacing:-14.464000pt;}
.ws3_c00010{word-spacing:-14.272000pt;}
.ws4_c00010{word-spacing:0.000000pt;}
._1_c00010{margin-left:-1.200000pt;}
._0_c00010{width:1.152000pt;}
._2_c00010{width:2.634667pt;}
.fs0_c00010{font-size:58.666667pt;}
.fs1_c00010{font-size:64.000000pt;}
.y0_c00010{bottom:0.000000pt;}
.y1_c00010{bottom:80.833333pt;}
.y1f_c00010{bottom:154.200000pt;}
.y1e_c00010{bottom:177.666667pt;}
.y1d_c00010{bottom:201.133333pt;}
.y1c_c00010{bottom:248.066667pt;}
.y1b_c00010{bottom:271.533333pt;}
.y1a_c00010{bottom:295.000000pt;}
.y19_c00010{bottom:318.506667pt;}
.y18_c00010{bottom:365.440000pt;}
.y17_c00010{bottom:388.893333pt;}
.y16_c00010{bottom:412.106667pt;}
.y15_c00010{bottom:459.066667pt;}
.y14_c00010{bottom:482.800000pt;}
.y13_c00010{bottom:506.266667pt;}
.y12_c00010{bottom:529.466667pt;}
.y11_c00010{bottom:576.400000pt;}
.y10_c00010{bottom:599.866667pt;}
.yf_c00010{bottom:623.360000pt;}
.ye_c00010{bottom:670.293333pt;}
.yd_c00010{bottom:693.773333pt;}
.yc_c00010{bottom:717.240000pt;}
.yb_c00010{bottom:763.933333pt;}
.ya_c00010{bottom:787.400000pt;}
.y9_c00010{bottom:810.866667pt;}
.y8_c00010{bottom:856.733333pt;}
.y7_c00010{bottom:880.466667pt;}
.y6_c00010{bottom:899.960000pt;}
.y5_c00010{bottom:923.173333pt;}
.y4_c00010{bottom:969.840000pt;}
.y3_c00010{bottom:993.293333pt;}
.y2_c00010{bottom:1016.773333pt;}
.h1_c00010{height:47.208333pt;}
.h3_c00010{height:48.812500pt;}
.h2_c00010{height:51.500000pt;}
.h0_c00010{height:1122.666667pt;}
.w1_c00010{width:794.000000pt;}
.w0_c00010{width:794.133333pt;}
.x0_c00010{left:0.000000pt;}
.x2_c00010{left:94.433333pt;}
.x1_c00010{left:388.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_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_aeaf7560e6767375f1e39d40.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:0.982910;font-style:normal;font-weight:normal;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_788c46b3ee96de74b5b2782d.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00011;src:url('chunks/assets/font_f534d6c0a66e8a8e28668469.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00011;src:url('chunks/assets/font_90261859b3c9c10c54f4a21b.woff2')format("woff");}.ff4_c00011{font-family:ff4_c00011;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00011{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls3_c00011{letter-spacing:-0.216000px;}
.ls2_c00011{letter-spacing:0.000000px;}
.ls1_c00011{letter-spacing:0.138000px;}
.ls0_c00011{letter-spacing:0.144000px;}
.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;}
}
.ws2_c00011{word-spacing:-72.000000px;}
.ws0_c00011{word-spacing:-66.138000px;}
.ws1_c00011{word-spacing:-16.272000px;}
.ws3_c00011{word-spacing:-16.056000px;}
.ws4_c00011{word-spacing:0.000000px;}
._1_c00011{margin-left:-1.146000px;}
._0_c00011{width:1.008000px;}
._2_c00011{width:3.144000px;}
.fc1_c00011{color:rgb(0,0,255);}
.fc0_c00011{color:rgb(0,0,0);}
.fs0_c00011{font-size:66.000000px;}
.fs1_c00011{font-size:72.000000px;}
.y0_c00011{bottom:0.000000px;}
.y1_c00011{bottom:90.937500px;}
.y1e_c00011{bottom:225.975000px;}
.y1d_c00011{bottom:252.375000px;}
.y1c_c00011{bottom:274.275000px;}
.y1b_c00011{bottom:300.675000px;}
.y1a_c00011{bottom:352.920000px;}
.y19_c00011{bottom:379.620000px;}
.y18_c00011{bottom:406.005000px;}
.y17_c00011{bottom:432.120000px;}
.y16_c00011{bottom:484.905000px;}
.y15_c00011{bottom:511.350000px;}
.y14_c00011{bottom:537.750000px;}
.y13_c00011{bottom:564.150000px;}
.y12_c00011{bottom:616.350000px;}
.y11_c00011{bottom:642.750000px;}
.y10_c00011{bottom:669.150000px;}
.yf_c00011{bottom:695.595000px;}
.ye_c00011{bottom:721.980000px;}
.yd_c00011{bottom:774.495000px;}
.yc_c00011{bottom:800.880000px;}
.yb_c00011{bottom:826.995000px;}
.ya_c00011{bottom:879.825000px;}
.y9_c00011{bottom:906.225000px;}
.y8_c00011{bottom:932.625000px;}
.y7_c00011{bottom:985.425000px;}
.y6_c00011{bottom:1011.870000px;}
.y5_c00011{bottom:1038.255000px;}
.y4_c00011{bottom:1091.070000px;}
.y3_c00011{bottom:1117.455000px;}
.y2_c00011{bottom:1143.870000px;}
.h1_c00011{height:53.109375px;}
.h3_c00011{height:54.914062px;}
.h2_c00011{height:57.937500px;}
.h0_c00011{height:1263.000000px;}
.w1_c00011{width:893.250000px;}
.w0_c00011{width:893.400000px;}
.x0_c00011{left:0.000000px;}
.x2_c00011{left:106.237500px;}
.x1_c00011{left:437.550000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls3_c00011{letter-spacing:-0.192000pt;}
.ls2_c00011{letter-spacing:0.000000pt;}
.ls1_c00011{letter-spacing:0.122667pt;}
.ls0_c00011{letter-spacing:0.128000pt;}
.ws2_c00011{word-spacing:-64.000000pt;}
.ws0_c00011{word-spacing:-58.789333pt;}
.ws1_c00011{word-spacing:-14.464000pt;}
.ws3_c00011{word-spacing:-14.272000pt;}
.ws4_c00011{word-spacing:0.000000pt;}
._1_c00011{margin-left:-1.018667pt;}
._0_c00011{width:0.896000pt;}
._2_c00011{width:2.794667pt;}
.fs0_c00011{font-size:58.666667pt;}
.fs1_c00011{font-size:64.000000pt;}
.y0_c00011{bottom:0.000000pt;}
.y1_c00011{bottom:80.833333pt;}
.y1e_c00011{bottom:200.866667pt;}
.y1d_c00011{bottom:224.333333pt;}
.y1c_c00011{bottom:243.800000pt;}
.y1b_c00011{bottom:267.266667pt;}
.y1a_c00011{bottom:313.706667pt;}
.y19_c00011{bottom:337.440000pt;}
.y18_c00011{bottom:360.893333pt;}
.y17_c00011{bottom:384.106667pt;}
.y16_c00011{bottom:431.026667pt;}
.y15_c00011{bottom:454.533333pt;}
.y14_c00011{bottom:478.000000pt;}
.y13_c00011{bottom:501.466667pt;}
.y12_c00011{bottom:547.866667pt;}
.y11_c00011{bottom:571.333333pt;}
.y10_c00011{bottom:594.800000pt;}
.yf_c00011{bottom:618.306667pt;}
.ye_c00011{bottom:641.760000pt;}
.yd_c00011{bottom:688.440000pt;}
.yc_c00011{bottom:711.893333pt;}
.yb_c00011{bottom:735.106667pt;}
.ya_c00011{bottom:782.066667pt;}
.y9_c00011{bottom:805.533333pt;}
.y8_c00011{bottom:829.000000pt;}
.y7_c00011{bottom:875.933333pt;}
.y6_c00011{bottom:899.440000pt;}
.y5_c00011{bottom:922.893333pt;}
.y4_c00011{bottom:969.840000pt;}
.y3_c00011{bottom:993.293333pt;}
.y2_c00011{bottom:1016.773333pt;}
.h1_c00011{height:47.208333pt;}
.h3_c00011{height:48.812500pt;}
.h2_c00011{height:51.500000pt;}
.h0_c00011{height:1122.666667pt;}
.w1_c00011{width:794.000000pt;}
.w0_c00011{width:794.133333pt;}
.x0_c00011{left:0.000000pt;}
.x2_c00011{left:94.433333pt;}
.x1_c00011{left:388.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_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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:0.938000;font-style:normal;font-weight:normal;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_923d89f987b8634b05e83d43.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:0.939000;font-style:normal;font-weight:normal;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_17c2dc3d74fc7f51ce0df7df.woff2')format("woff");}.ff3_c00012{font-family:ff3_c00012;line-height:0.938000;font-style:normal;font-weight:normal;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_3d52c7cd71d8f93a9eedf6ff.woff2')format("woff");}.ff4_c00012{font-family:ff4_c00012;line-height:0.938000;font-style: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;}
.ls5_c00012{letter-spacing:-0.043200px;}
.ls6_c00012{letter-spacing:-0.032400px;}
.ls1_c00012{letter-spacing:-0.024000px;}
.ls2_c00012{letter-spacing:0.000000px;}
.ls4_c00012{letter-spacing:0.021600px;}
.ls0_c00012{letter-spacing:0.105600px;}
.ls3_c00012{letter-spacing:0.187200px;}
.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;}
}
.ws3_c00012{word-spacing:-29.991600px;}
.ws2_c00012{word-spacing:-0.194400px;}
.ws1_c00012{word-spacing:-0.086400px;}
.ws4_c00012{word-spacing:0.000000px;}
.ws0_c00012{word-spacing:0.184800px;}
._0_c00012{margin-left:-13.200000px;}
._1_c00012{margin-left:-7.488000px;}
._2_c00012{width:1.022400px;}
._3_c00012{width:37.980000px;}
.fc1_c00012{color:rgb(47,77,93);}
.fc0_c00012{color:rgb(255,255,255);}
.fs3_c00012{font-size:108.000000px;}
.fs2_c00012{font-size:132.000000px;}
.fs1_c00012{font-size:144.000000px;}
.fs0_c00012{font-size:240.000000px;}
.y0_c00012{bottom:0.000000px;}
.y7_c00012{bottom:99.999900px;}
.y6_c00012{bottom:144.999900px;}
.y5_c00012{bottom:269.007900px;}
.y4_c00012{bottom:312.999900px;}
.y3_c00012{bottom:432.999900px;}
.y2_c00012{bottom:504.999900px;}
.y1_c00012{bottom:576.999900px;}
.h4_c00012{height:78.624000px;}
.h3_c00012{height:96.096000px;}
.h2_c00012{height:104.976000px;}
.h1_c00012{height:174.720000px;}
.h0_c00012{height:810.000000px;}
.w0_c00012{width:1440.000000px;}
.x0_c00012{left:0.000000px;}
.x1_c00012{left:42.637500px;}
.x3_c00012{left:68.031450px;}
.x2_c00012{left:366.637500px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls5_c00012{letter-spacing:-0.038400pt;}
.ls6_c00012{letter-spacing:-0.028800pt;}
.ls1_c00012{letter-spacing:-0.021333pt;}
.ls2_c00012{letter-spacing:0.000000pt;}
.ls4_c00012{letter-spacing:0.019200pt;}
.ls0_c00012{letter-spacing:0.093867pt;}
.ls3_c00012{letter-spacing:0.166400pt;}
.ws3_c00012{word-spacing:-26.659200pt;}
.ws2_c00012{word-spacing:-0.172800pt;}
.ws1_c00012{word-spacing:-0.076800pt;}
.ws4_c00012{word-spacing:0.000000pt;}
.ws0_c00012{word-spacing:0.164267pt;}
._0_c00012{margin-left:-11.733333pt;}
._1_c00012{margin-left:-6.656000pt;}
._2_c00012{width:0.908800pt;}
._3_c00012{width:33.760000pt;}
.fs3_c00012{font-size:96.000000pt;}
.fs2_c00012{font-size:117.333333pt;}
.fs1_c00012{font-size:128.000000pt;}
.fs0_c00012{font-size:213.333333pt;}
.y0_c00012{bottom:0.000000pt;}
.y7_c00012{bottom:88.888800pt;}
.y6_c00012{bottom:128.888800pt;}
.y5_c00012{bottom:239.118133pt;}
.y4_c00012{bottom:278.222133pt;}
.y3_c00012{bottom:384.888800pt;}
.y2_c00012{bottom:448.888800pt;}
.y1_c00012{bottom:512.888800pt;}
.h4_c00012{height:69.888000pt;}
.h3_c00012{height:85.418667pt;}
.h2_c00012{height:93.312000pt;}
.h1_c00012{height:155.306667pt;}
.h0_c00012{height:720.000000pt;}
.w0_c00012{width:1280.000000pt;}
.x0_c00012{left:0.000000pt;}
.x1_c00012{left:37.900000pt;}
.x3_c00012{left:60.472400pt;}
.x2_c00012{left:325.900000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3aa1c830227cc51926f2f971.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:0.938000;font-style:normal;font-weight:normal;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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:0.938000;font-style:normal;font-weight:normal;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_8bb689920d4a805f089aebd0.woff2')format("woff");}.ff4_c00013{font-family:ff4_c00013;line-height:0.938000;font-style: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:64.047600px;}
.ls2_c00013{letter-spacing:-0.360000px;}
.ls3_c00013{letter-spacing:-0.012600px;}
.ls1_c00013{letter-spacing:0.000000px;}
.ls0_c00013{letter-spacing:0.012600px;}
.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:-33.000000px;}
.ws3_c00013{word-spacing:0.000000px;}
.ws2_c00013{word-spacing:784.238400px;}
.ws1_c00013{word-spacing:920.624400px;}
._1_c00013{margin-left:-1.260000px;}
._0_c00013{width:1.200000px;}
.fc1_c00013{color:rgb(29,141,176);}
.fc0_c00013{color:rgb(255,255,255);}
.fs1_c00013{font-size:60.000000px;}
.fs0_c00013{font-size:120.000000px;}
.fs3_c00013{font-size:126.000000px;}
.fs2_c00013{font-size:240.000000px;}
.y0_c00013{bottom:0.000000px;}
.y3_c00013{bottom:31.999950px;}
.y6_c00013{bottom:329.988000px;}
.y5_c00013{bottom:363.000000px;}
.y2_c00013{bottom:474.999900px;}
.y1_c00013{bottom:552.999900px;}
.y4_c00013{bottom:694.999950px;}
.h2_c00013{height:43.680000px;}
.h1_c00013{height:87.360000px;}
.h4_c00013{height:91.728000px;}
.h5_c00013{height:155.775600px;}
.h3_c00013{height:174.720000px;}
.h0_c00013{height:810.000000px;}
.w0_c00013{width:1440.000000px;}
.x0_c00013{left:0.000000px;}
.x3_c00013{left:68.031450px;}
.x6_c00013{left:111.430800px;}
.x7_c00013{left:190.212300px;}
.x4_c00013{left:426.445800px;}
.x5_c00013{left:792.718050px;}
.x1_c00013{left:1030.782750px;}
.x2_c00013{left:1035.362850px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.v1_c00013{vertical-align:56.931200pt;}
.ls2_c00013{letter-spacing:-0.320000pt;}
.ls3_c00013{letter-spacing:-0.011200pt;}
.ls1_c00013{letter-spacing:0.000000pt;}
.ls0_c00013{letter-spacing:0.011200pt;}
.ws0_c00013{word-spacing:-29.333333pt;}
.ws3_c00013{word-spacing:0.000000pt;}
.ws2_c00013{word-spacing:697.100800pt;}
.ws1_c00013{word-spacing:818.332800pt;}
._1_c00013{margin-left:-1.120000pt;}
._0_c00013{width:1.066667pt;}
.fs1_c00013{font-size:53.333333pt;}
.fs0_c00013{font-size:106.666667pt;}
.fs3_c00013{font-size:112.000000pt;}
.fs2_c00013{font-size:213.333333pt;}
.y0_c00013{bottom:0.000000pt;}
.y3_c00013{bottom:28.444400pt;}
.y6_c00013{bottom:293.322667pt;}
.y5_c00013{bottom:322.666667pt;}
.y2_c00013{bottom:422.222133pt;}
.y1_c00013{bottom:491.555467pt;}
.y4_c00013{bottom:617.777733pt;}
.h2_c00013{height:38.826667pt;}
.h1_c00013{height:77.653333pt;}
.h4_c00013{height:81.536000pt;}
.h5_c00013{height:138.467200pt;}
.h3_c00013{height:155.306667pt;}
.h0_c00013{height:720.000000pt;}
.w0_c00013{width:1280.000000pt;}
.x0_c00013{left:0.000000pt;}
.x3_c00013{left:60.472400pt;}
.x6_c00013{left:99.049600pt;}
.x7_c00013{left:169.077600pt;}
.x4_c00013{left:379.062933pt;}
.x5_c00013{left:704.638267pt;}
.x1_c00013{left:916.251333pt;}
.x2_c00013{left:920.322533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3aa1c830227cc51926f2f971.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:0.938000;font-style:normal;font-weight:normal;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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff3_c00014{font-family:ff3_c00014;line-height:0.938000;font-style:normal;font-weight:normal;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_8bb689920d4a805f089aebd0.woff2')format("woff");}.ff4_c00014{font-family:ff4_c00014;line-height:0.938000;font-style: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;}
.v1_c00014{vertical-align:64.047600px;}
.ls2_c00014{letter-spacing:-0.360000px;}
.ls3_c00014{letter-spacing:-0.012600px;}
.ls1_c00014{letter-spacing:0.000000px;}
.ls0_c00014{letter-spacing:0.012600px;}
.sc__c00014{text-shadow:none;}
.sc0_c00014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00014{-webkit-text-stroke:0px transparent;}
.sc0_c00014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00014{word-spacing:-33.000000px;}
.ws3_c00014{word-spacing:0.000000px;}
.ws2_c00014{word-spacing:784.238400px;}
.ws1_c00014{word-spacing:920.624400px;}
._1_c00014{margin-left:-1.260000px;}
._0_c00014{width:1.200000px;}
.fc1_c00014{color:rgb(29,141,176);}
.fc0_c00014{color:rgb(255,255,255);}
.fs1_c00014{font-size:60.000000px;}
.fs0_c00014{font-size:120.000000px;}
.fs3_c00014{font-size:126.000000px;}
.fs2_c00014{font-size:240.000000px;}
.y0_c00014{bottom:0.000000px;}
.y3_c00014{bottom:31.999950px;}
.y6_c00014{bottom:329.988000px;}
.y5_c00014{bottom:363.000000px;}
.y2_c00014{bottom:474.999900px;}
.y1_c00014{bottom:552.999900px;}
.y4_c00014{bottom:694.999950px;}
.h2_c00014{height:43.680000px;}
.h1_c00014{height:87.360000px;}
.h4_c00014{height:91.728000px;}
.h5_c00014{height:155.775600px;}
.h3_c00014{height:174.720000px;}
.h0_c00014{height:810.000000px;}
.w0_c00014{width:1440.000000px;}
.x0_c00014{left:0.000000px;}
.x3_c00014{left:68.031450px;}
.x6_c00014{left:111.430800px;}
.x7_c00014{left:190.212300px;}
.x4_c00014{left:426.445800px;}
.x5_c00014{left:792.718050px;}
.x1_c00014{left:1030.782750px;}
.x2_c00014{left:1035.362850px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.v1_c00014{vertical-align:56.931200pt;}
.ls2_c00014{letter-spacing:-0.320000pt;}
.ls3_c00014{letter-spacing:-0.011200pt;}
.ls1_c00014{letter-spacing:0.000000pt;}
.ls0_c00014{letter-spacing:0.011200pt;}
.ws0_c00014{word-spacing:-29.333333pt;}
.ws3_c00014{word-spacing:0.000000pt;}
.ws2_c00014{word-spacing:697.100800pt;}
.ws1_c00014{word-spacing:818.332800pt;}
._1_c00014{margin-left:-1.120000pt;}
._0_c00014{width:1.066667pt;}
.fs1_c00014{font-size:53.333333pt;}
.fs0_c00014{font-size:106.666667pt;}
.fs3_c00014{font-size:112.000000pt;}
.fs2_c00014{font-size:213.333333pt;}
.y0_c00014{bottom:0.000000pt;}
.y3_c00014{bottom:28.444400pt;}
.y6_c00014{bottom:293.322667pt;}
.y5_c00014{bottom:322.666667pt;}
.y2_c00014{bottom:422.222133pt;}
.y1_c00014{bottom:491.555467pt;}
.y4_c00014{bottom:617.777733pt;}
.h2_c00014{height:38.826667pt;}
.h1_c00014{height:77.653333pt;}
.h4_c00014{height:81.536000pt;}
.h5_c00014{height:138.467200pt;}
.h3_c00014{height:155.306667pt;}
.h0_c00014{height:720.000000pt;}
.w0_c00014{width:1280.000000pt;}
.x0_c00014{left:0.000000pt;}
.x3_c00014{left:60.472400pt;}
.x6_c00014{left:99.049600pt;}
.x7_c00014{left:169.077600pt;}
.x4_c00014{left:379.062933pt;}
.x5_c00014{left:704.638267pt;}
.x1_c00014{left:916.251333pt;}
.x2_c00014{left:920.322533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:0.938000;font-style:normal;font-weight:normal;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_b9ef67b851003977122debcd.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:0.938000;font-style:normal;font-weight:normal;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_70ee910c91ebf17aa134ed08.woff2')format("woff");}.ff3_c00015{font-family:ff3_c00015;line-height:0.939000;font-style:normal;font-weight:normal;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_c0453b5a765b8cefb0f6c438.woff2')format("woff");}.ff4_c00015{font-family:ff4_c00015;line-height:0.650000;font-style:normal;font-weight:normal;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_4126b77024b57ca6641e8e08.woff2')format("woff");}.ff5_c00015{font-family:ff5_c00015;line-height:0.650000;font-style:normal;font-weight:normal;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_957ae464f98b4f99a9f38822.woff2')format("woff");}.ff6_c00015{font-family:ff6_c00015;line-height:0.896000;font-style: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;}
.v1_c00015{vertical-align:68.064000px;}
.ls7_c00015{letter-spacing:-1.285200px;}
.ls6_c00015{letter-spacing:-0.421200px;}
.ls3_c00015{letter-spacing:-0.288000px;}
.ls2_c00015{letter-spacing:-0.086400px;}
.ls4_c00015{letter-spacing:-0.024000px;}
.ls1_c00015{letter-spacing:0.000000px;}
.ls5_c00015{letter-spacing:0.507600px;}
.ls0_c00015{letter-spacing:2.541000px;}
.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;}
}
.ws3_c00015{word-spacing:-24.915600px;}
.ws4_c00015{word-spacing:-23.986800px;}
.ws5_c00015{word-spacing:0.000000px;}
.ws0_c00015{word-spacing:0.144000px;}
.ws2_c00015{word-spacing:424.548600px;}
.ws1_c00015{word-spacing:448.909200px;}
._5_c00015{margin-left:-6.156000px;}
._2_c00015{margin-left:-3.888000px;}
._4_c00015{margin-left:-2.808000px;}
._0_c00015{margin-left:-1.260000px;}
._7_c00015{width:1.584000px;}
._3_c00015{width:3.456000px;}
._6_c00015{width:4.968000px;}
._1_c00015{width:465.699600px;}
.fc3_c00015{color:rgb(0,53,102);}
.fc2_c00015{color:rgb(24,38,46);}
.fc1_c00015{color:rgb(29,141,176);}
.fc0_c00015{color:rgb(255,255,255);}
.fs0_c00015{font-size:60.000000px;}
.fs4_c00015{font-size:66.000000px;}
.fs5_c00015{font-size:108.000000px;}
.fs3_c00015{font-size:120.000000px;}
.fs2_c00015{font-size:144.000000px;}
.fs1_c00015{font-size:216.000000px;}
.y0_c00015{bottom:0.000000px;}
.y1_c00015{bottom:31.999950px;}
.y9_c00015{bottom:33.000000px;}
.y5_c00015{bottom:93.999900px;}
.ya_c00015{bottom:96.999900px;}
.y4_c00015{bottom:138.000000px;}
.y6_c00015{bottom:186.000000px;}
.yb_c00015{bottom:189.999900px;}
.y7_c00015{bottom:279.000000px;}
.yc_c00015{bottom:282.000000px;}
.y8_c00015{bottom:370.999950px;}
.yd_c00015{bottom:373.999950px;}
.y3_c00015{bottom:664.984050px;}
.y2_c00015{bottom:730.000050px;}
.h6_c00015{height:42.306000px;}
.h1_c00015{height:43.680000px;}
.h5_c00015{height:76.920000px;}
.h7_c00015{height:77.544000px;}
.h2_c00015{height:157.248000px;}
.h3_c00015{height:173.040000px;}
.h4_c00015{height:535.999500px;}
.h0_c00015{height:810.000000px;}
.w1_c00015{width:972.000000px;}
.w0_c00015{width:1440.000000px;}
.x0_c00015{left:0.000000px;}
.xb_c00015{left:4.434900px;}
.xd_c00015{left:22.697550px;}
.xe_c00015{left:39.085050px;}
.x1_c00015{left:68.031450px;}
.xc_c00015{left:91.735200px;}
.xa_c00015{left:202.213050px;}
.x5_c00015{left:205.000500px;}
.x8_c00015{left:236.230200px;}
.x7_c00015{left:248.709150px;}
.x2_c00015{left:360.070800px;}
.x6_c00015{left:440.772600px;}
.x9_c00015{left:540.604950px;}
.x3_c00015{left:563.596800px;}
.x4_c00015{left:792.718050px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.v1_c00015{vertical-align:60.501333pt;}
.ls7_c00015{letter-spacing:-1.142400pt;}
.ls6_c00015{letter-spacing:-0.374400pt;}
.ls3_c00015{letter-spacing:-0.256000pt;}
.ls2_c00015{letter-spacing:-0.076800pt;}
.ls4_c00015{letter-spacing:-0.021333pt;}
.ls1_c00015{letter-spacing:0.000000pt;}
.ls5_c00015{letter-spacing:0.451200pt;}
.ls0_c00015{letter-spacing:2.258667pt;}
.ws3_c00015{word-spacing:-22.147200pt;}
.ws4_c00015{word-spacing:-21.321600pt;}
.ws5_c00015{word-spacing:0.000000pt;}
.ws0_c00015{word-spacing:0.128000pt;}
.ws2_c00015{word-spacing:377.376533pt;}
.ws1_c00015{word-spacing:399.030400pt;}
._5_c00015{margin-left:-5.472000pt;}
._2_c00015{margin-left:-3.456000pt;}
._4_c00015{margin-left:-2.496000pt;}
._0_c00015{margin-left:-1.120000pt;}
._7_c00015{width:1.408000pt;}
._3_c00015{width:3.072000pt;}
._6_c00015{width:4.416000pt;}
._1_c00015{width:413.955200pt;}
.fs0_c00015{font-size:53.333333pt;}
.fs4_c00015{font-size:58.666667pt;}
.fs5_c00015{font-size:96.000000pt;}
.fs3_c00015{font-size:106.666667pt;}
.fs2_c00015{font-size:128.000000pt;}
.fs1_c00015{font-size:192.000000pt;}
.y0_c00015{bottom:0.000000pt;}
.y1_c00015{bottom:28.444400pt;}
.y9_c00015{bottom:29.333333pt;}
.y5_c00015{bottom:83.555467pt;}
.ya_c00015{bottom:86.222133pt;}
.y4_c00015{bottom:122.666667pt;}
.y6_c00015{bottom:165.333333pt;}
.yb_c00015{bottom:168.888800pt;}
.y7_c00015{bottom:248.000000pt;}
.yc_c00015{bottom:250.666667pt;}
.y8_c00015{bottom:329.777733pt;}
.yd_c00015{bottom:332.444400pt;}
.y3_c00015{bottom:591.096933pt;}
.y2_c00015{bottom:648.888933pt;}
.h6_c00015{height:37.605333pt;}
.h1_c00015{height:38.826667pt;}
.h5_c00015{height:68.373333pt;}
.h7_c00015{height:68.928000pt;}
.h2_c00015{height:139.776000pt;}
.h3_c00015{height:153.813333pt;}
.h4_c00015{height:476.444000pt;}
.h0_c00015{height:720.000000pt;}
.w1_c00015{width:864.000000pt;}
.w0_c00015{width:1280.000000pt;}
.x0_c00015{left:0.000000pt;}
.xb_c00015{left:3.942133pt;}
.xd_c00015{left:20.175600pt;}
.xe_c00015{left:34.742267pt;}
.x1_c00015{left:60.472400pt;}
.xc_c00015{left:81.542400pt;}
.xa_c00015{left:179.744933pt;}
.x5_c00015{left:182.222667pt;}
.x8_c00015{left:209.982400pt;}
.x7_c00015{left:221.074800pt;}
.x2_c00015{left:320.062933pt;}
.x6_c00015{left:391.797867pt;}
.x9_c00015{left:480.537733pt;}
.x3_c00015{left:500.974933pt;}
.x4_c00015{left:704.638267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:0.938000;font-style:normal;font-weight:normal;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_17c2dc3d74fc7f51ce0df7df.woff2')format("woff");}.ff3_c00016{font-family:ff3_c00016;line-height:0.938000;font-style:normal;font-weight:normal;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_885b7c2aeac05015c0d2105c.woff2')format("woff");}.ff4_c00016{font-family:ff4_c00016;line-height:0.938000;font-style:normal;font-weight:normal;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_36ca70480c29ce0e28ae5d5a.woff2')format("woff");}.ff5_c00016{font-family:ff5_c00016;line-height:0.918000;font-style: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;}
.v1_c00016{vertical-align:44.047800px;}
.ls4_c00016{letter-spacing:-0.290400px;}
.ls5_c00016{letter-spacing:-0.270000px;}
.ls8_c00016{letter-spacing:-0.052800px;}
.ls3_c00016{letter-spacing:0.000000px;}
.ls7_c00016{letter-spacing:0.052800px;}
.ls0_c00016{letter-spacing:0.079200px;}
.ls1_c00016{letter-spacing:0.105600px;}
.ls2_c00016{letter-spacing:0.211200px;}
.ls6_c00016{letter-spacing:0.290400px;}
.ls9_c00016{letter-spacing:0.343200px;}
.sc__c00016{text-shadow:none;}
.sc0_c00016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00016{-webkit-text-stroke:0px transparent;}
.sc0_c00016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00016{word-spacing:-36.696000px;}
.ws0_c00016{word-spacing:-24.750000px;}
.ws2_c00016{word-spacing:0.000000px;}
._3_c00016{margin-left:-2.600400px;}
._0_c00016{margin-left:-1.260000px;}
._1_c00016{width:1.056000px;}
._2_c00016{width:38.424000px;}
.fc3_c00016{color:rgb(24,38,46);}
.fc2_c00016{color:rgb(47,77,93);}
.fc1_c00016{color:rgb(29,141,176);}
.fc0_c00016{color:rgb(255,255,255);}
.fs0_c00016{font-size:60.000000px;}
.fs3_c00016{font-size:90.000000px;}
.fs2_c00016{font-size:132.000000px;}
.fs1_c00016{font-size:240.000000px;}
.y0_c00016{bottom:0.000000px;}
.y1_c00016{bottom:31.999950px;}
.yc_c00016{bottom:131.988000px;}
.yb_c00016{bottom:163.998000px;}
.ya_c00016{bottom:210.000000px;}
.y9_c00016{bottom:303.010950px;}
.y8_c00016{bottom:335.020950px;}
.y7_c00016{bottom:366.007950px;}
.y6_c00016{bottom:412.999950px;}
.y5_c00016{bottom:506.988000px;}
.y4_c00016{bottom:538.998000px;}
.y3_c00016{bottom:585.000000px;}
.y2_c00016{bottom:694.999950px;}
.h1_c00016{height:43.680000px;}
.h3_c00016{height:96.096000px;}
.h5_c00016{height:108.666000px;}
.h4_c00016{height:108.757800px;}
.h2_c00016{height:174.720000px;}
.h0_c00016{height:810.000000px;}
.w0_c00016{width:1440.000000px;}
.x0_c00016{left:0.000000px;}
.x1_c00016{left:68.031450px;}
.x4_c00016{left:78.831450px;}
.x2_c00016{left:379.758300px;}
.x3_c00016{left:792.718050px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.v1_c00016{vertical-align:39.153600pt;}
.ls4_c00016{letter-spacing:-0.258133pt;}
.ls5_c00016{letter-spacing:-0.240000pt;}
.ls8_c00016{letter-spacing:-0.046933pt;}
.ls3_c00016{letter-spacing:0.000000pt;}
.ls7_c00016{letter-spacing:0.046933pt;}
.ls0_c00016{letter-spacing:0.070400pt;}
.ls1_c00016{letter-spacing:0.093867pt;}
.ls2_c00016{letter-spacing:0.187733pt;}
.ls6_c00016{letter-spacing:0.258133pt;}
.ls9_c00016{letter-spacing:0.305067pt;}
.ws1_c00016{word-spacing:-32.618667pt;}
.ws0_c00016{word-spacing:-22.000000pt;}
.ws2_c00016{word-spacing:0.000000pt;}
._3_c00016{margin-left:-2.311467pt;}
._0_c00016{margin-left:-1.120000pt;}
._1_c00016{width:0.938667pt;}
._2_c00016{width:34.154667pt;}
.fs0_c00016{font-size:53.333333pt;}
.fs3_c00016{font-size:80.000000pt;}
.fs2_c00016{font-size:117.333333pt;}
.fs1_c00016{font-size:213.333333pt;}
.y0_c00016{bottom:0.000000pt;}
.y1_c00016{bottom:28.444400pt;}
.yc_c00016{bottom:117.322667pt;}
.yb_c00016{bottom:145.776000pt;}
.ya_c00016{bottom:186.666667pt;}
.y9_c00016{bottom:269.343067pt;}
.y8_c00016{bottom:297.796400pt;}
.y7_c00016{bottom:325.340400pt;}
.y6_c00016{bottom:367.111067pt;}
.y5_c00016{bottom:450.656000pt;}
.y4_c00016{bottom:479.109333pt;}
.y3_c00016{bottom:520.000000pt;}
.y2_c00016{bottom:617.777733pt;}
.h1_c00016{height:38.826667pt;}
.h3_c00016{height:85.418667pt;}
.h5_c00016{height:96.592000pt;}
.h4_c00016{height:96.673600pt;}
.h2_c00016{height:155.306667pt;}
.h0_c00016{height:720.000000pt;}
.w0_c00016{width:1280.000000pt;}
.x0_c00016{left:0.000000pt;}
.x1_c00016{left:60.472400pt;}
.x4_c00016{left:70.072400pt;}
.x2_c00016{left:337.562933pt;}
.x3_c00016{left:704.638267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_17c2dc3d74fc7f51ce0df7df.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:0.938000;font-style:normal;font-weight:normal;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_885b7c2aeac05015c0d2105c.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:0.938000;font-style:normal;font-weight:normal;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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff3_c00017{font-family:ff3_c00017;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff4_c00017{font-family:ff4_c00017;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00017;src:url('chunks/assets/font_a3b30ea61a45c4df7ed57029.woff2')format("woff");}.ff5_c00017{font-family:ff5_c00017;line-height:0.918000;font-style: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;}
.v1_c00017{vertical-align:72.000000px;}
.ls4_c00017{letter-spacing:-0.793800px;}
.ls2_c00017{letter-spacing:0.000000px;}
.ls1_c00017{letter-spacing:0.105600px;}
.ls3_c00017{letter-spacing:0.290400px;}
.ls0_c00017{letter-spacing:0.343200px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00017{word-spacing:0.000000px;}
._5_c00017{margin-left:-4868.940000px;}
._6_c00017{margin-left:-18.096000px;}
._3_c00017{margin-left:-6.388800px;}
._7_c00017{margin-left:-4.368000px;}
._4_c00017{margin-left:-2.745600px;}
._2_c00017{margin-left:-1.056000px;}
._1_c00017{width:1.056000px;}
._0_c00017{width:61.776000px;}
.fc3_c00017{color:rgb(24,38,46);}
.fc2_c00017{color:rgb(29,141,176);}
.fc1_c00017{color:rgb(255,255,255);}
.fc0_c00017{color:rgb(47,77,93);}
.fs1_c00017{font-size:60.000000px;}
.fs0_c00017{font-size:132.000000px;}
.fs3_c00017{font-size:162.000000px;}
.fs2_c00017{font-size:240.000000px;}
.y0_c00017{bottom:0.000000px;}
.yc_c00017{bottom:31.999950px;}
.yb_c00017{bottom:125.008950px;}
.ya_c00017{bottom:164.014950px;}
.y9_c00017{bottom:218.002950px;}
.y8_c00017{bottom:257.998950px;}
.y7_c00017{bottom:297.004950px;}
.y6_c00017{bottom:356.008950px;}
.y5_c00017{bottom:399.007950px;}
.y4_c00017{bottom:442.996950px;}
.y3_c00017{bottom:498.007950px;}
.y2_c00017{bottom:537.013950px;}
.y1_c00017{bottom:577.999950px;}
.yd_c00017{bottom:694.999950px;}
.h2_c00017{height:43.680000px;}
.h1_c00017{height:96.096000px;}
.h3_c00017{height:188.478000px;}
.h0_c00017{height:810.000000px;}
.w0_c00017{width:1440.000000px;}
.x0_c00017{left:0.000000px;}
.x1_c00017{left:78.831450px;}
.x2_c00017{left:105.825450px;}
.x4_c00017{left:343.810800px;}
.x3_c00017{left:792.692400px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.v1_c00017{vertical-align:64.000000pt;}
.ls4_c00017{letter-spacing:-0.705600pt;}
.ls2_c00017{letter-spacing:0.000000pt;}
.ls1_c00017{letter-spacing:0.093867pt;}
.ls3_c00017{letter-spacing:0.258133pt;}
.ls0_c00017{letter-spacing:0.305067pt;}
.ws0_c00017{word-spacing:0.000000pt;}
._5_c00017{margin-left:-4327.946667pt;}
._6_c00017{margin-left:-16.085333pt;}
._3_c00017{margin-left:-5.678933pt;}
._7_c00017{margin-left:-3.882667pt;}
._4_c00017{margin-left:-2.440533pt;}
._2_c00017{margin-left:-0.938667pt;}
._1_c00017{width:0.938667pt;}
._0_c00017{width:54.912000pt;}
.fs1_c00017{font-size:53.333333pt;}
.fs0_c00017{font-size:117.333333pt;}
.fs3_c00017{font-size:144.000000pt;}
.fs2_c00017{font-size:213.333333pt;}
.y0_c00017{bottom:0.000000pt;}
.yc_c00017{bottom:28.444400pt;}
.yb_c00017{bottom:111.119067pt;}
.ya_c00017{bottom:145.791067pt;}
.y9_c00017{bottom:193.780400pt;}
.y8_c00017{bottom:229.332400pt;}
.y7_c00017{bottom:264.004400pt;}
.y6_c00017{bottom:316.452400pt;}
.y5_c00017{bottom:354.673733pt;}
.y4_c00017{bottom:393.775067pt;}
.y3_c00017{bottom:442.673733pt;}
.y2_c00017{bottom:477.345733pt;}
.y1_c00017{bottom:513.777733pt;}
.yd_c00017{bottom:617.777733pt;}
.h2_c00017{height:38.826667pt;}
.h1_c00017{height:85.418667pt;}
.h3_c00017{height:167.536000pt;}
.h0_c00017{height:720.000000pt;}
.w0_c00017{width:1280.000000pt;}
.x0_c00017{left:0.000000pt;}
.x1_c00017{left:70.072400pt;}
.x2_c00017{left:94.067067pt;}
.x4_c00017{left:305.609600pt;}
.x3_c00017{left:704.615467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8bb689920d4a805f089aebd0.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:0.938000;font-style:normal;font-weight:normal;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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:0.938000;font-style: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;}
.v1_c00018{vertical-align:64.047600px;}
.ls3_c00018{letter-spacing:-0.012600px;}
.ls1_c00018{letter-spacing:0.000000px;}
.ls0_c00018{letter-spacing:0.012600px;}
.ls2_c00018{letter-spacing:0.226800px;}
.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:-35.254800px;}
.ws3_c00018{word-spacing:0.000000px;}
.ws2_c00018{word-spacing:784.238400px;}
.ws1_c00018{word-spacing:920.624400px;}
._0_c00018{margin-left:-1.058400px;}
.fc1_c00018{color:rgb(29,141,176);}
.fc0_c00018{color:rgb(255,255,255);}
.fs1_c00018{font-size:60.000000px;}
.fs0_c00018{font-size:126.000000px;}
.fs2_c00018{font-size:240.000000px;}
.y0_c00018{bottom:0.000000px;}
.y3_c00018{bottom:31.999950px;}
.y6_c00018{bottom:329.988000px;}
.y5_c00018{bottom:363.000000px;}
.y2_c00018{bottom:474.000000px;}
.y1_c00018{bottom:550.999950px;}
.y4_c00018{bottom:694.999950px;}
.h2_c00018{height:43.680000px;}
.h1_c00018{height:91.728000px;}
.h4_c00018{height:155.775600px;}
.h3_c00018{height:174.720000px;}
.h0_c00018{height:810.000000px;}
.w0_c00018{width:1440.000000px;}
.x0_c00018{left:0.000000px;}
.x3_c00018{left:68.031450px;}
.x6_c00018{left:111.430800px;}
.x7_c00018{left:190.212300px;}
.x4_c00018{left:426.445800px;}
.x5_c00018{left:792.718050px;}
.x1_c00018{left:938.814000px;}
.x2_c00018{left:1030.956600px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.v1_c00018{vertical-align:56.931200pt;}
.ls3_c00018{letter-spacing:-0.011200pt;}
.ls1_c00018{letter-spacing:0.000000pt;}
.ls0_c00018{letter-spacing:0.011200pt;}
.ls2_c00018{letter-spacing:0.201600pt;}
.ws0_c00018{word-spacing:-31.337600pt;}
.ws3_c00018{word-spacing:0.000000pt;}
.ws2_c00018{word-spacing:697.100800pt;}
.ws1_c00018{word-spacing:818.332800pt;}
._0_c00018{margin-left:-0.940800pt;}
.fs1_c00018{font-size:53.333333pt;}
.fs0_c00018{font-size:112.000000pt;}
.fs2_c00018{font-size:213.333333pt;}
.y0_c00018{bottom:0.000000pt;}
.y3_c00018{bottom:28.444400pt;}
.y6_c00018{bottom:293.322667pt;}
.y5_c00018{bottom:322.666667pt;}
.y2_c00018{bottom:421.333333pt;}
.y1_c00018{bottom:489.777733pt;}
.y4_c00018{bottom:617.777733pt;}
.h2_c00018{height:38.826667pt;}
.h1_c00018{height:81.536000pt;}
.h4_c00018{height:138.467200pt;}
.h3_c00018{height:155.306667pt;}
.h0_c00018{height:720.000000pt;}
.w0_c00018{width:1280.000000pt;}
.x0_c00018{left:0.000000pt;}
.x3_c00018{left:60.472400pt;}
.x6_c00018{left:99.049600pt;}
.x7_c00018{left:169.077600pt;}
.x4_c00018{left:379.062933pt;}
.x5_c00018{left:704.638267pt;}
.x1_c00018{left:834.501333pt;}
.x2_c00018{left:916.405867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:0.938000;font-style:normal;font-weight:normal;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_923d89f987b8634b05e83d43.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:0.939000;font-style:normal;font-weight:normal;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_02011eb6d81d39cdec037c29.woff2')format("woff");}.ff4_c00019{font-family:ff4_c00019;line-height:0.938000;font-style:normal;font-weight:normal;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_7fc810f40bcae7149dee9f13.woff2')format("woff");}.ff5_c00019{font-family:ff5_c00019;line-height:0.938000;font-style: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:43.872000px;}
.ls4_c00019{letter-spacing:-0.230400px;}
.ls1_c00019{letter-spacing:0.000000px;}
.ls3_c00019{letter-spacing:0.043200px;}
.ls2_c00019{letter-spacing:0.187200px;}
.ls0_c00019{letter-spacing:0.316800px;}
.sc__c00019{text-shadow:none;}
.sc0_c00019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00019{-webkit-text-stroke:0px transparent;}
.sc0_c00019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00019{word-spacing:-0.412800px;}
.ws1_c00019{word-spacing:0.000000px;}
._2_c00019{margin-left:-8.748000px;}
._1_c00019{margin-left:-1.260000px;}
._0_c00019{width:1.008000px;}
._3_c00019{width:26.706000px;}
.fc3_c00019{color:rgb(24,38,46);}
.fc2_c00019{color:rgb(47,77,93);}
.fc1_c00019{color:rgb(29,141,176);}
.fc0_c00019{color:rgb(255,255,255);}
.fs0_c00019{font-size:60.000000px;}
.fs3_c00019{font-size:96.000000px;}
.fs2_c00019{font-size:144.000000px;}
.fs1_c00019{font-size:240.000000px;}
.y0_c00019{bottom:0.000000px;}
.y1_c00019{bottom:31.999950px;}
.y8_c00019{bottom:327.031950px;}
.y7_c00019{bottom:369.043950px;}
.y6_c00019{bottom:413.035950px;}
.y5_c00019{bottom:456.019950px;}
.y4_c00019{bottom:500.011950px;}
.y3_c00019{bottom:574.999950px;}
.y2_c00019{bottom:694.999950px;}
.h1_c00019{height:43.680000px;}
.h3_c00019{height:104.976000px;}
.h4_c00019{height:113.760000px;}
.h2_c00019{height:174.720000px;}
.h0_c00019{height:810.000000px;}
.w0_c00019{width:1440.000000px;}
.x0_c00019{left:0.000000px;}
.x1_c00019{left:68.031450px;}
.x4_c00019{left:78.831450px;}
.x5_c00019{left:132.831450px;}
.x2_c00019{left:296.320800px;}
.x3_c00019{left:792.718050px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.v1_c00019{vertical-align:38.997333pt;}
.ls4_c00019{letter-spacing:-0.204800pt;}
.ls1_c00019{letter-spacing:0.000000pt;}
.ls3_c00019{letter-spacing:0.038400pt;}
.ls2_c00019{letter-spacing:0.166400pt;}
.ls0_c00019{letter-spacing:0.281600pt;}
.ws0_c00019{word-spacing:-0.366933pt;}
.ws1_c00019{word-spacing:0.000000pt;}
._2_c00019{margin-left:-7.776000pt;}
._1_c00019{margin-left:-1.120000pt;}
._0_c00019{width:0.896000pt;}
._3_c00019{width:23.738667pt;}
.fs0_c00019{font-size:53.333333pt;}
.fs3_c00019{font-size:85.333333pt;}
.fs2_c00019{font-size:128.000000pt;}
.fs1_c00019{font-size:213.333333pt;}
.y0_c00019{bottom:0.000000pt;}
.y1_c00019{bottom:28.444400pt;}
.y8_c00019{bottom:290.695067pt;}
.y7_c00019{bottom:328.039067pt;}
.y6_c00019{bottom:367.143067pt;}
.y5_c00019{bottom:405.351067pt;}
.y4_c00019{bottom:444.455067pt;}
.y3_c00019{bottom:511.111067pt;}
.y2_c00019{bottom:617.777733pt;}
.h1_c00019{height:38.826667pt;}
.h3_c00019{height:93.312000pt;}
.h4_c00019{height:101.120000pt;}
.h2_c00019{height:155.306667pt;}
.h0_c00019{height:720.000000pt;}
.w0_c00019{width:1280.000000pt;}
.x0_c00019{left:0.000000pt;}
.x1_c00019{left:60.472400pt;}
.x4_c00019{left:70.072400pt;}
.x5_c00019{left:118.072400pt;}
.x2_c00019{left:263.396267pt;}
.x3_c00019{left:704.638267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_923d89f987b8634b05e83d43.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:0.939000;font-style:normal;font-weight:normal;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_02011eb6d81d39cdec037c29.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:0.938000;font-style:normal;font-weight:normal;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_7fc810f40bcae7149dee9f13.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:0.938000;font-style:normal;font-weight:normal;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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff4_c00020{font-family:ff4_c00020;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff5_c00020{font-family:ff5_c00020;line-height:0.938000;font-style: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;}
.v1_c00020{vertical-align:39.952200px;}
.ls3_c00020{letter-spacing:-0.288000px;}
.ls1_c00020{letter-spacing:0.000000px;}
.ls0_c00020{letter-spacing:0.187200px;}
.ls2_c00020{letter-spacing:0.230400px;}
.ls4_c00020{letter-spacing:0.316800px;}
.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;}
}
.ws3_c00020{word-spacing:-40.032000px;}
.ws0_c00020{word-spacing:-0.950400px;}
.ws1_c00020{word-spacing:-0.345600px;}
.ws4_c00020{word-spacing:0.000000px;}
.ws2_c00020{word-spacing:39.364800px;}
._3_c00020{margin-left:-4868.412000px;}
._2_c00020{margin-left:-7.113600px;}
._1_c00020{margin-left:-1.108800px;}
._0_c00020{width:1.108800px;}
.fc3_c00020{color:rgb(29,141,176);}
.fc2_c00020{color:rgb(255,255,255);}
.fc1_c00020{color:rgb(24,38,46);}
.fc0_c00020{color:rgb(47,77,93);}
.fs2_c00020{font-size:60.000000px;}
.fs1_c00020{font-size:96.000000px;}
.fs0_c00020{font-size:144.000000px;}
.fs3_c00020{font-size:240.000000px;}
.y0_c00020{bottom:0.000000px;}
.y7_c00020{bottom:31.999950px;}
.y6_c00020{bottom:320.011950px;}
.y5_c00020{bottom:362.995950px;}
.y4_c00020{bottom:405.007950px;}
.y3_c00020{bottom:448.999950px;}
.y2_c00020{bottom:491.983950px;}
.y1_c00020{bottom:574.999950px;}
.y8_c00020{bottom:694.999950px;}
.h3_c00020{height:43.680000px;}
.h1_c00020{height:104.976000px;}
.h2_c00020{height:109.840200px;}
.h4_c00020{height:174.720000px;}
.h0_c00020{height:810.000000px;}
.w0_c00020{width:1440.000000px;}
.x0_c00020{left:0.000000px;}
.x1_c00020{left:78.831450px;}
.x2_c00020{left:132.831450px;}
.x4_c00020{left:244.570800px;}
.x3_c00020{left:792.692400px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.v1_c00020{vertical-align:35.513067pt;}
.ls3_c00020{letter-spacing:-0.256000pt;}
.ls1_c00020{letter-spacing:0.000000pt;}
.ls0_c00020{letter-spacing:0.166400pt;}
.ls2_c00020{letter-spacing:0.204800pt;}
.ls4_c00020{letter-spacing:0.281600pt;}
.ws3_c00020{word-spacing:-35.584000pt;}
.ws0_c00020{word-spacing:-0.844800pt;}
.ws1_c00020{word-spacing:-0.307200pt;}
.ws4_c00020{word-spacing:0.000000pt;}
.ws2_c00020{word-spacing:34.990933pt;}
._3_c00020{margin-left:-4327.477333pt;}
._2_c00020{margin-left:-6.323200pt;}
._1_c00020{margin-left:-0.985600pt;}
._0_c00020{width:0.985600pt;}
.fs2_c00020{font-size:53.333333pt;}
.fs1_c00020{font-size:85.333333pt;}
.fs0_c00020{font-size:128.000000pt;}
.fs3_c00020{font-size:213.333333pt;}
.y0_c00020{bottom:0.000000pt;}
.y7_c00020{bottom:28.444400pt;}
.y6_c00020{bottom:284.455067pt;}
.y5_c00020{bottom:322.663067pt;}
.y4_c00020{bottom:360.007067pt;}
.y3_c00020{bottom:399.111067pt;}
.y2_c00020{bottom:437.319067pt;}
.y1_c00020{bottom:511.111067pt;}
.y8_c00020{bottom:617.777733pt;}
.h3_c00020{height:38.826667pt;}
.h1_c00020{height:93.312000pt;}
.h2_c00020{height:97.635733pt;}
.h4_c00020{height:155.306667pt;}
.h0_c00020{height:720.000000pt;}
.w0_c00020{width:1280.000000pt;}
.x0_c00020{left:0.000000pt;}
.x1_c00020{left:70.072400pt;}
.x2_c00020{left:118.072400pt;}
.x4_c00020{left:217.396267pt;}
.x3_c00020{left:704.615467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_923d89f987b8634b05e83d43.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:0.939000;font-style:normal;font-weight:normal;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_7fc810f40bcae7149dee9f13.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:0.938000;font-style:normal;font-weight:normal;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_4fbc6dbccc3d38424a7ca432.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:0.927000;font-style:normal;font-weight:normal;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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff4_c00021{font-family:ff4_c00021;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff5_c00021{font-family:ff5_c00021;line-height:0.938000;font-style: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;}
.v1_c00021{vertical-align:39.856200px;}
.v2_c00021{vertical-align:44.016000px;}
.ls3_c00021{letter-spacing:0.000000px;}
.ls4_c00021{letter-spacing:0.072000px;}
.ls1_c00021{letter-spacing:0.187200px;}
.ls2_c00021{letter-spacing:0.288000px;}
.ls0_c00021{letter-spacing:0.316800px;}
.sc__c00021{text-shadow:none;}
.sc0_c00021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00021{-webkit-text-stroke:0px transparent;}
.sc0_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00021{word-spacing:-0.412800px;}
.ws1_c00021{word-spacing:0.000000px;}
._8_c00021{margin-left:-4868.412000px;}
._6_c00021{margin-left:-13.464000px;}
._1_c00021{margin-left:-11.088000px;}
._4_c00021{margin-left:-9.936000px;}
._5_c00021{margin-left:-8.784000px;}
._7_c00021{margin-left:-5.932800px;}
._0_c00021{margin-left:-1.008000px;}
._3_c00021{width:1.022400px;}
._2_c00021{width:38.736000px;}
.fc3_c00021{color:rgb(29,141,176);}
.fc2_c00021{color:rgb(255,255,255);}
.fc1_c00021{color:rgb(24,38,46);}
.fc0_c00021{color:rgb(47,77,93);}
.fs2_c00021{font-size:60.000000px;}
.fs1_c00021{font-size:96.000000px;}
.fs0_c00021{font-size:144.000000px;}
.fs3_c00021{font-size:240.000000px;}
.y0_c00021{bottom:0.000000px;}
.y8_c00021{bottom:31.999950px;}
.y7_c00021{bottom:209.995950px;}
.y6_c00021{bottom:253.987950px;}
.y5_c00021{bottom:304.999950px;}
.y4_c00021{bottom:413.035950px;}
.y3_c00021{bottom:456.019950px;}
.y2_c00021{bottom:500.011950px;}
.y1_c00021{bottom:574.999950px;}
.y9_c00021{bottom:694.999950px;}
.h5_c00021{height:43.680000px;}
.h3_c00021{height:104.832000px;}
.h1_c00021{height:104.976000px;}
.h2_c00021{height:109.744200px;}
.h4_c00021{height:113.904000px;}
.h6_c00021{height:174.720000px;}
.h0_c00021{height:810.000000px;}
.w0_c00021{width:1440.000000px;}
.x0_c00021{left:0.000000px;}
.x1_c00021{left:78.831450px;}
.x2_c00021{left:132.831450px;}
.x4_c00021{left:356.414550px;}
.x3_c00021{left:792.692400px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.v1_c00021{vertical-align:35.427733pt;}
.v2_c00021{vertical-align:39.125333pt;}
.ls3_c00021{letter-spacing:0.000000pt;}
.ls4_c00021{letter-spacing:0.064000pt;}
.ls1_c00021{letter-spacing:0.166400pt;}
.ls2_c00021{letter-spacing:0.256000pt;}
.ls0_c00021{letter-spacing:0.281600pt;}
.ws0_c00021{word-spacing:-0.366933pt;}
.ws1_c00021{word-spacing:0.000000pt;}
._8_c00021{margin-left:-4327.477333pt;}
._6_c00021{margin-left:-11.968000pt;}
._1_c00021{margin-left:-9.856000pt;}
._4_c00021{margin-left:-8.832000pt;}
._5_c00021{margin-left:-7.808000pt;}
._7_c00021{margin-left:-5.273600pt;}
._0_c00021{margin-left:-0.896000pt;}
._3_c00021{width:0.908800pt;}
._2_c00021{width:34.432000pt;}
.fs2_c00021{font-size:53.333333pt;}
.fs1_c00021{font-size:85.333333pt;}
.fs0_c00021{font-size:128.000000pt;}
.fs3_c00021{font-size:213.333333pt;}
.y0_c00021{bottom:0.000000pt;}
.y8_c00021{bottom:28.444400pt;}
.y7_c00021{bottom:186.663067pt;}
.y6_c00021{bottom:225.767067pt;}
.y5_c00021{bottom:271.111067pt;}
.y4_c00021{bottom:367.143067pt;}
.y3_c00021{bottom:405.351067pt;}
.y2_c00021{bottom:444.455067pt;}
.y1_c00021{bottom:511.111067pt;}
.y9_c00021{bottom:617.777733pt;}
.h5_c00021{height:38.826667pt;}
.h3_c00021{height:93.184000pt;}
.h1_c00021{height:93.312000pt;}
.h2_c00021{height:97.550400pt;}
.h4_c00021{height:101.248000pt;}
.h6_c00021{height:155.306667pt;}
.h0_c00021{height:720.000000pt;}
.w0_c00021{width:1280.000000pt;}
.x0_c00021{left:0.000000pt;}
.x1_c00021{left:70.072400pt;}
.x2_c00021{left:118.072400pt;}
.x4_c00021{left:316.812933pt;}
.x3_c00021{left:704.615467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3aa1c830227cc51926f2f971.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:0.938000;font-style:normal;font-weight:normal;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_8bb689920d4a805f089aebd0.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:0.938000;font-style:normal;font-weight:normal;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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff3_c00022{font-family:ff3_c00022;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff4_c00022{font-family:ff4_c00022;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.v1_c00022{vertical-align:64.047600px;}
.ls2_c00022{letter-spacing:-0.360000px;}
.ls3_c00022{letter-spacing:-0.012600px;}
.ls1_c00022{letter-spacing:0.000000px;}
.ls0_c00022{letter-spacing:0.012600px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00022{word-spacing:-33.000000px;}
.ws3_c00022{word-spacing:0.000000px;}
.ws2_c00022{word-spacing:784.238400px;}
.ws1_c00022{word-spacing:920.624400px;}
._2_c00022{margin-left:-4868.220000px;}
._1_c00022{margin-left:-1.260000px;}
._0_c00022{width:1.200000px;}
.fc1_c00022{color:rgb(29,141,176);}
.fc0_c00022{color:rgb(255,255,255);}
.fs2_c00022{font-size:60.000000px;}
.fs0_c00022{font-size:120.000000px;}
.fs1_c00022{font-size:126.000000px;}
.fs3_c00022{font-size:240.000000px;}
.y0_c00022{bottom:0.000000px;}
.y5_c00022{bottom:31.999950px;}
.y4_c00022{bottom:329.988000px;}
.y3_c00022{bottom:363.000000px;}
.y2_c00022{bottom:474.999900px;}
.y1_c00022{bottom:552.999900px;}
.y6_c00022{bottom:694.999950px;}
.h4_c00022{height:43.680000px;}
.h1_c00022{height:87.360000px;}
.h2_c00022{height:91.728000px;}
.h3_c00022{height:155.775600px;}
.h5_c00022{height:174.720000px;}
.h0_c00022{height:810.000000px;}
.w0_c00022{width:1440.000000px;}
.x0_c00022{left:0.000000px;}
.x3_c00022{left:111.430800px;}
.x4_c00022{left:190.212300px;}
.x6_c00022{left:426.445800px;}
.x5_c00022{left:792.718050px;}
.x1_c00022{left:1030.782750px;}
.x2_c00022{left:1035.362850px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.v1_c00022{vertical-align:56.931200pt;}
.ls2_c00022{letter-spacing:-0.320000pt;}
.ls3_c00022{letter-spacing:-0.011200pt;}
.ls1_c00022{letter-spacing:0.000000pt;}
.ls0_c00022{letter-spacing:0.011200pt;}
.ws0_c00022{word-spacing:-29.333333pt;}
.ws3_c00022{word-spacing:0.000000pt;}
.ws2_c00022{word-spacing:697.100800pt;}
.ws1_c00022{word-spacing:818.332800pt;}
._2_c00022{margin-left:-4327.306667pt;}
._1_c00022{margin-left:-1.120000pt;}
._0_c00022{width:1.066667pt;}
.fs2_c00022{font-size:53.333333pt;}
.fs0_c00022{font-size:106.666667pt;}
.fs1_c00022{font-size:112.000000pt;}
.fs3_c00022{font-size:213.333333pt;}
.y0_c00022{bottom:0.000000pt;}
.y5_c00022{bottom:28.444400pt;}
.y4_c00022{bottom:293.322667pt;}
.y3_c00022{bottom:322.666667pt;}
.y2_c00022{bottom:422.222133pt;}
.y1_c00022{bottom:491.555467pt;}
.y6_c00022{bottom:617.777733pt;}
.h4_c00022{height:38.826667pt;}
.h1_c00022{height:77.653333pt;}
.h2_c00022{height:81.536000pt;}
.h3_c00022{height:138.467200pt;}
.h5_c00022{height:155.306667pt;}
.h0_c00022{height:720.000000pt;}
.w0_c00022{width:1280.000000pt;}
.x0_c00022{left:0.000000pt;}
.x3_c00022{left:99.049600pt;}
.x4_c00022{left:169.077600pt;}
.x6_c00022{left:379.062933pt;}
.x5_c00022{left:704.638267pt;}
.x1_c00022{left:916.251333pt;}
.x2_c00022{left:920.322533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_923d89f987b8634b05e83d43.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:0.939000;font-style:normal;font-weight:normal;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_02011eb6d81d39cdec037c29.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:0.938000;font-style:normal;font-weight:normal;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_7fc810f40bcae7149dee9f13.woff2')format("woff");}.ff3_c00023{font-family:ff3_c00023;line-height:0.938000;font-style:normal;font-weight:normal;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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff4_c00023{font-family:ff4_c00023;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff5_c00023{font-family:ff5_c00023;line-height:0.938000;font-style: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:43.920000px;}
.ls6_c00023{letter-spacing:-0.360000px;}
.ls2_c00023{letter-spacing:-0.288000px;}
.ls3_c00023{letter-spacing:-0.230400px;}
.ls1_c00023{letter-spacing:0.000000px;}
.ls5_c00023{letter-spacing:0.043200px;}
.ls4_c00023{letter-spacing:0.230400px;}
.ls0_c00023{letter-spacing:0.316800px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00023{word-spacing:-0.412800px;}
.ws1_c00023{word-spacing:0.000000px;}
._2_c00023{margin-left:-13.502400px;}
._4_c00023{margin-left:-8.976000px;}
._1_c00023{margin-left:-1.065600px;}
._0_c00023{width:1.108800px;}
._3_c00023{width:67.848000px;}
.fc3_c00023{color:rgb(29,141,176);}
.fc2_c00023{color:rgb(255,255,255);}
.fc1_c00023{color:rgb(24,38,46);}
.fc0_c00023{color:rgb(47,77,93);}
.fs2_c00023{font-size:60.000000px;}
.fs1_c00023{font-size:96.000000px;}
.fs0_c00023{font-size:144.000000px;}
.fs3_c00023{font-size:240.000000px;}
.y0_c00023{bottom:0.000000px;}
.y6_c00023{bottom:31.999950px;}
.y5_c00023{bottom:351.019950px;}
.y4_c00023{bottom:393.031950px;}
.y3_c00023{bottom:437.023950px;}
.y2_c00023{bottom:480.007950px;}
.y1_c00023{bottom:523.999950px;}
.y7_c00023{bottom:694.999950px;}
.h3_c00023{height:43.680000px;}
.h1_c00023{height:104.976000px;}
.h2_c00023{height:113.808000px;}
.h4_c00023{height:174.720000px;}
.h0_c00023{height:810.000000px;}
.w0_c00023{width:1440.000000px;}
.x0_c00023{left:0.000000px;}
.x2_c00023{left:68.031450px;}
.x1_c00023{left:132.831450px;}
.x3_c00023{left:165.869550px;}
.x4_c00023{left:792.718050px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.v1_c00023{vertical-align:39.040000pt;}
.ls6_c00023{letter-spacing:-0.320000pt;}
.ls2_c00023{letter-spacing:-0.256000pt;}
.ls3_c00023{letter-spacing:-0.204800pt;}
.ls1_c00023{letter-spacing:0.000000pt;}
.ls5_c00023{letter-spacing:0.038400pt;}
.ls4_c00023{letter-spacing:0.204800pt;}
.ls0_c00023{letter-spacing:0.281600pt;}
.ws0_c00023{word-spacing:-0.366933pt;}
.ws1_c00023{word-spacing:0.000000pt;}
._2_c00023{margin-left:-12.002133pt;}
._4_c00023{margin-left:-7.978667pt;}
._1_c00023{margin-left:-0.947200pt;}
._0_c00023{width:0.985600pt;}
._3_c00023{width:60.309333pt;}
.fs2_c00023{font-size:53.333333pt;}
.fs1_c00023{font-size:85.333333pt;}
.fs0_c00023{font-size:128.000000pt;}
.fs3_c00023{font-size:213.333333pt;}
.y0_c00023{bottom:0.000000pt;}
.y6_c00023{bottom:28.444400pt;}
.y5_c00023{bottom:312.017733pt;}
.y4_c00023{bottom:349.361733pt;}
.y3_c00023{bottom:388.465733pt;}
.y2_c00023{bottom:426.673733pt;}
.y1_c00023{bottom:465.777733pt;}
.y7_c00023{bottom:617.777733pt;}
.h3_c00023{height:38.826667pt;}
.h1_c00023{height:93.312000pt;}
.h2_c00023{height:101.162667pt;}
.h4_c00023{height:155.306667pt;}
.h0_c00023{height:720.000000pt;}
.w0_c00023{width:1280.000000pt;}
.x0_c00023{left:0.000000pt;}
.x2_c00023{left:60.472400pt;}
.x1_c00023{left:118.072400pt;}
.x3_c00023{left:147.439600pt;}
.x4_c00023{left:704.638267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_923d89f987b8634b05e83d43.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:0.939000;font-style:normal;font-weight:normal;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_02011eb6d81d39cdec037c29.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:0.938000;font-style:normal;font-weight:normal;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_7fc810f40bcae7149dee9f13.woff2')format("woff");}.ff3_c00024{font-family:ff3_c00024;line-height:0.938000;font-style:normal;font-weight:normal;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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff4_c00024{font-family:ff4_c00024;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff5_c00024{font-family:ff5_c00024;line-height:0.938000;font-style: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:43.920000px;}
.ls7_c00024{letter-spacing:-0.360000px;}
.ls5_c00024{letter-spacing:-0.288000px;}
.ls4_c00024{letter-spacing:-0.230400px;}
.ls6_c00024{letter-spacing:0.000000px;}
.ls3_c00024{letter-spacing:0.043200px;}
.ls1_c00024{letter-spacing:0.187200px;}
.ls2_c00024{letter-spacing:0.316800px;}
.ls0_c00024{letter-spacing:57.600000px;}
.sc__c00024{text-shadow:none;}
.sc0_c00024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00024{-webkit-text-stroke:0px transparent;}
.sc0_c00024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00024{word-spacing:-40.219200px;}
.ws0_c00024{word-spacing:-39.744000px;}
.ws1_c00024{word-spacing:-0.921600px;}
.ws3_c00024{word-spacing:-0.412800px;}
.ws4_c00024{word-spacing:0.000000px;}
._4_c00024{margin-left:-13.416000px;}
._6_c00024{margin-left:-8.976000px;}
._1_c00024{margin-left:-7.848000px;}
._2_c00024{margin-left:-1.152000px;}
._0_c00024{width:1.008000px;}
._3_c00024{width:57.600000px;}
._5_c00024{width:67.848000px;}
.fc3_c00024{color:rgb(29,141,176);}
.fc2_c00024{color:rgb(255,255,255);}
.fc1_c00024{color:rgb(24,38,46);}
.fc0_c00024{color:rgb(47,77,93);}
.fs2_c00024{font-size:60.000000px;}
.fs1_c00024{font-size:96.000000px;}
.fs0_c00024{font-size:144.000000px;}
.fs3_c00024{font-size:240.000000px;}
.y0_c00024{bottom:0.000000px;}
.ya_c00024{bottom:31.999950px;}
.y9_c00024{bottom:168.019950px;}
.y8_c00024{bottom:227.023950px;}
.y7_c00024{bottom:270.007950px;}
.y6_c00024{bottom:329.011950px;}
.y5_c00024{bottom:371.023950px;}
.y4_c00024{bottom:429.019950px;}
.y3_c00024{bottom:473.011950px;}
.y2_c00024{bottom:531.007950px;}
.y1_c00024{bottom:574.999950px;}
.yb_c00024{bottom:694.999950px;}
.h3_c00024{height:43.680000px;}
.h1_c00024{height:104.976000px;}
.h2_c00024{height:113.808000px;}
.h4_c00024{height:174.720000px;}
.h0_c00024{height:810.000000px;}
.w0_c00024{width:1440.000000px;}
.x0_c00024{left:0.000000px;}
.x3_c00024{left:68.031450px;}
.x1_c00024{left:78.831450px;}
.x2_c00024{left:105.867450px;}
.x4_c00024{left:165.869550px;}
.x5_c00024{left:792.718050px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.v1_c00024{vertical-align:39.040000pt;}
.ls7_c00024{letter-spacing:-0.320000pt;}
.ls5_c00024{letter-spacing:-0.256000pt;}
.ls4_c00024{letter-spacing:-0.204800pt;}
.ls6_c00024{letter-spacing:0.000000pt;}
.ls3_c00024{letter-spacing:0.038400pt;}
.ls1_c00024{letter-spacing:0.166400pt;}
.ls2_c00024{letter-spacing:0.281600pt;}
.ls0_c00024{letter-spacing:51.200000pt;}
.ws2_c00024{word-spacing:-35.750400pt;}
.ws0_c00024{word-spacing:-35.328000pt;}
.ws1_c00024{word-spacing:-0.819200pt;}
.ws3_c00024{word-spacing:-0.366933pt;}
.ws4_c00024{word-spacing:0.000000pt;}
._4_c00024{margin-left:-11.925333pt;}
._6_c00024{margin-left:-7.978667pt;}
._1_c00024{margin-left:-6.976000pt;}
._2_c00024{margin-left:-1.024000pt;}
._0_c00024{width:0.896000pt;}
._3_c00024{width:51.200000pt;}
._5_c00024{width:60.309333pt;}
.fs2_c00024{font-size:53.333333pt;}
.fs1_c00024{font-size:85.333333pt;}
.fs0_c00024{font-size:128.000000pt;}
.fs3_c00024{font-size:213.333333pt;}
.y0_c00024{bottom:0.000000pt;}
.ya_c00024{bottom:28.444400pt;}
.y9_c00024{bottom:149.351067pt;}
.y8_c00024{bottom:201.799067pt;}
.y7_c00024{bottom:240.007067pt;}
.y6_c00024{bottom:292.455067pt;}
.y5_c00024{bottom:329.799067pt;}
.y4_c00024{bottom:381.351067pt;}
.y3_c00024{bottom:420.455067pt;}
.y2_c00024{bottom:472.007067pt;}
.y1_c00024{bottom:511.111067pt;}
.yb_c00024{bottom:617.777733pt;}
.h3_c00024{height:38.826667pt;}
.h1_c00024{height:93.312000pt;}
.h2_c00024{height:101.162667pt;}
.h4_c00024{height:155.306667pt;}
.h0_c00024{height:720.000000pt;}
.w0_c00024{width:1280.000000pt;}
.x0_c00024{left:0.000000pt;}
.x3_c00024{left:60.472400pt;}
.x1_c00024{left:70.072400pt;}
.x2_c00024{left:94.104400pt;}
.x4_c00024{left:147.439600pt;}
.x5_c00024{left:704.638267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_923d89f987b8634b05e83d43.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:0.939000;font-style:normal;font-weight:normal;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_02011eb6d81d39cdec037c29.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:0.938000;font-style:normal;font-weight:normal;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_7fc810f40bcae7149dee9f13.woff2')format("woff");}.ff3_c00025{font-family:ff3_c00025;line-height:0.938000;font-style:normal;font-weight:normal;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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff4_c00025{font-family:ff4_c00025;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff5_c00025{font-family:ff5_c00025;line-height:0.938000;font-style: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;}
.v1_c00025{vertical-align:39.856200px;}
.ls6_c00025{letter-spacing:-0.360000px;}
.ls3_c00025{letter-spacing:-0.288000px;}
.ls2_c00025{letter-spacing:-0.230400px;}
.ls1_c00025{letter-spacing:0.000000px;}
.ls4_c00025{letter-spacing:0.187200px;}
.ls5_c00025{letter-spacing:0.288000px;}
.ls0_c00025{letter-spacing:0.316800px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00025{word-spacing:-0.412800px;}
.ws1_c00025{word-spacing:0.000000px;}
._2_c00025{margin-left:-13.531200px;}
._4_c00025{margin-left:-8.976000px;}
._1_c00025{margin-left:-1.036800px;}
._0_c00025{width:1.123200px;}
._3_c00025{width:67.848000px;}
.fc3_c00025{color:rgb(29,141,176);}
.fc2_c00025{color:rgb(255,255,255);}
.fc1_c00025{color:rgb(24,38,46);}
.fc0_c00025{color:rgb(47,77,93);}
.fs2_c00025{font-size:60.000000px;}
.fs1_c00025{font-size:96.000000px;}
.fs0_c00025{font-size:144.000000px;}
.fs3_c00025{font-size:240.000000px;}
.y0_c00025{bottom:0.000000px;}
.y7_c00025{bottom:31.999950px;}
.y6_c00025{bottom:359.035950px;}
.y5_c00025{bottom:401.047950px;}
.y4_c00025{bottom:444.031950px;}
.y3_c00025{bottom:488.023950px;}
.y2_c00025{bottom:531.007950px;}
.y1_c00025{bottom:574.999950px;}
.y8_c00025{bottom:694.999950px;}
.h4_c00025{height:43.680000px;}
.h2_c00025{height:104.832000px;}
.h1_c00025{height:104.976000px;}
.h3_c00025{height:109.744200px;}
.h5_c00025{height:174.720000px;}
.h0_c00025{height:810.000000px;}
.w0_c00025{width:1440.000000px;}
.x0_c00025{left:0.000000px;}
.x2_c00025{left:68.031450px;}
.x1_c00025{left:78.831450px;}
.x3_c00025{left:165.869550px;}
.x4_c00025{left:792.718050px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.v1_c00025{vertical-align:35.427733pt;}
.ls6_c00025{letter-spacing:-0.320000pt;}
.ls3_c00025{letter-spacing:-0.256000pt;}
.ls2_c00025{letter-spacing:-0.204800pt;}
.ls1_c00025{letter-spacing:0.000000pt;}
.ls4_c00025{letter-spacing:0.166400pt;}
.ls5_c00025{letter-spacing:0.256000pt;}
.ls0_c00025{letter-spacing:0.281600pt;}
.ws0_c00025{word-spacing:-0.366933pt;}
.ws1_c00025{word-spacing:0.000000pt;}
._2_c00025{margin-left:-12.027733pt;}
._4_c00025{margin-left:-7.978667pt;}
._1_c00025{margin-left:-0.921600pt;}
._0_c00025{width:0.998400pt;}
._3_c00025{width:60.309333pt;}
.fs2_c00025{font-size:53.333333pt;}
.fs1_c00025{font-size:85.333333pt;}
.fs0_c00025{font-size:128.000000pt;}
.fs3_c00025{font-size:213.333333pt;}
.y0_c00025{bottom:0.000000pt;}
.y7_c00025{bottom:28.444400pt;}
.y6_c00025{bottom:319.143067pt;}
.y5_c00025{bottom:356.487067pt;}
.y4_c00025{bottom:394.695067pt;}
.y3_c00025{bottom:433.799067pt;}
.y2_c00025{bottom:472.007067pt;}
.y1_c00025{bottom:511.111067pt;}
.y8_c00025{bottom:617.777733pt;}
.h4_c00025{height:38.826667pt;}
.h2_c00025{height:93.184000pt;}
.h1_c00025{height:93.312000pt;}
.h3_c00025{height:97.550400pt;}
.h5_c00025{height:155.306667pt;}
.h0_c00025{height:720.000000pt;}
.w0_c00025{width:1280.000000pt;}
.x0_c00025{left:0.000000pt;}
.x2_c00025{left:60.472400pt;}
.x1_c00025{left:70.072400pt;}
.x3_c00025{left:147.439600pt;}
.x4_c00025{left:704.638267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_923d89f987b8634b05e83d43.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:0.939000;font-style:normal;font-weight:normal;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_02011eb6d81d39cdec037c29.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:0.938000;font-style:normal;font-weight:normal;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_7fc810f40bcae7149dee9f13.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;line-height:0.938000;font-style:normal;font-weight:normal;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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff4_c00026{font-family:ff4_c00026;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff5_c00026{font-family:ff5_c00026;line-height:0.938000;font-style: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;}
.v1_c00026{vertical-align:40.000200px;}
.v2_c00026{vertical-align:43.968000px;}
.ls6_c00026{letter-spacing:-0.360000px;}
.ls3_c00026{letter-spacing:-0.288000px;}
.ls2_c00026{letter-spacing:-0.230400px;}
.ls1_c00026{letter-spacing:0.000000px;}
.ls4_c00026{letter-spacing:0.187200px;}
.ls5_c00026{letter-spacing:0.288000px;}
.ls0_c00026{letter-spacing:0.316800px;}
.sc__c00026{text-shadow:none;}
.sc0_c00026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00026{-webkit-text-stroke:0px transparent;}
.sc0_c00026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00026{word-spacing:-12.450000px;}
.ws1_c00026{word-spacing:-0.412800px;}
.ws3_c00026{word-spacing:0.000000px;}
.ws2_c00026{word-spacing:2816.400000px;}
._2_c00026{margin-left:-13.531200px;}
._4_c00026{margin-left:-8.976000px;}
._1_c00026{margin-left:-1.036800px;}
._0_c00026{width:1.123200px;}
._3_c00026{width:67.848000px;}
.fc3_c00026{color:rgb(29,141,176);}
.fc2_c00026{color:rgb(255,255,255);}
.fc1_c00026{color:rgb(24,38,46);}
.fc0_c00026{color:rgb(47,77,93);}
.fs2_c00026{font-size:60.000000px;}
.fs1_c00026{font-size:96.000000px;}
.fs0_c00026{font-size:144.000000px;}
.fs3_c00026{font-size:240.000000px;}
.y0_c00026{bottom:0.000000px;}
.y9_c00026{bottom:31.999950px;}
.y8_c00026{bottom:198.007950px;}
.y7_c00026{bottom:241.999950px;}
.y6_c00026{bottom:358.987950px;}
.y5_c00026{bottom:401.047950px;}
.y4_c00026{bottom:444.031950px;}
.y3_c00026{bottom:488.023950px;}
.y2_c00026{bottom:531.007950px;}
.y1_c00026{bottom:574.999950px;}
.ya_c00026{bottom:694.999950px;}
.h5_c00026{height:43.680000px;}
.h2_c00026{height:104.832000px;}
.h1_c00026{height:104.976000px;}
.h3_c00026{height:109.936200px;}
.h4_c00026{height:113.856000px;}
.h6_c00026{height:174.720000px;}
.h0_c00026{height:810.000000px;}
.w0_c00026{width:1440.000000px;}
.x0_c00026{left:0.000000px;}
.x2_c00026{left:68.031450px;}
.x1_c00026{left:78.831450px;}
.x3_c00026{left:165.869550px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.v1_c00026{vertical-align:35.555733pt;}
.v2_c00026{vertical-align:39.082667pt;}
.ls6_c00026{letter-spacing:-0.320000pt;}
.ls3_c00026{letter-spacing:-0.256000pt;}
.ls2_c00026{letter-spacing:-0.204800pt;}
.ls1_c00026{letter-spacing:0.000000pt;}
.ls4_c00026{letter-spacing:0.166400pt;}
.ls5_c00026{letter-spacing:0.256000pt;}
.ls0_c00026{letter-spacing:0.281600pt;}
.ws0_c00026{word-spacing:-11.066667pt;}
.ws1_c00026{word-spacing:-0.366933pt;}
.ws3_c00026{word-spacing:0.000000pt;}
.ws2_c00026{word-spacing:2503.466667pt;}
._2_c00026{margin-left:-12.027733pt;}
._4_c00026{margin-left:-7.978667pt;}
._1_c00026{margin-left:-0.921600pt;}
._0_c00026{width:0.998400pt;}
._3_c00026{width:60.309333pt;}
.fs2_c00026{font-size:53.333333pt;}
.fs1_c00026{font-size:85.333333pt;}
.fs0_c00026{font-size:128.000000pt;}
.fs3_c00026{font-size:213.333333pt;}
.y0_c00026{bottom:0.000000pt;}
.y9_c00026{bottom:28.444400pt;}
.y8_c00026{bottom:176.007067pt;}
.y7_c00026{bottom:215.111067pt;}
.y6_c00026{bottom:319.100400pt;}
.y5_c00026{bottom:356.487067pt;}
.y4_c00026{bottom:394.695067pt;}
.y3_c00026{bottom:433.799067pt;}
.y2_c00026{bottom:472.007067pt;}
.y1_c00026{bottom:511.111067pt;}
.ya_c00026{bottom:617.777733pt;}
.h5_c00026{height:38.826667pt;}
.h2_c00026{height:93.184000pt;}
.h1_c00026{height:93.312000pt;}
.h3_c00026{height:97.721067pt;}
.h4_c00026{height:101.205333pt;}
.h6_c00026{height:155.306667pt;}
.h0_c00026{height:720.000000pt;}
.w0_c00026{width:1280.000000pt;}
.x0_c00026{left:0.000000pt;}
.x2_c00026{left:60.472400pt;}
.x1_c00026{left:70.072400pt;}
.x3_c00026{left:147.439600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:0.938000;font-style:normal;font-weight:normal;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_923d89f987b8634b05e83d43.woff2')format("woff");}.ff3_c00027{font-family:ff3_c00027;line-height:0.939000;font-style:normal;font-weight:normal;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_02011eb6d81d39cdec037c29.woff2')format("woff");}.ff4_c00027{font-family:ff4_c00027;line-height:0.938000;font-style:normal;font-weight:normal;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_7fc810f40bcae7149dee9f13.woff2')format("woff");}.ff5_c00027{font-family:ff5_c00027;line-height:0.938000;font-style: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;}
.v1_c00027{vertical-align:43.776000px;}
.ls6_c00027{letter-spacing:-5.054400px;}
.ls4_c00027{letter-spacing:-0.360000px;}
.ls8_c00027{letter-spacing:-0.230400px;}
.ls7_c00027{letter-spacing:-0.043200px;}
.ls5_c00027{letter-spacing:0.000000px;}
.ls3_c00027{letter-spacing:0.316800px;}
.ls2_c00027{letter-spacing:39.858000px;}
.ls1_c00027{letter-spacing:57.600000px;}
.ls0_c00027{letter-spacing:97.344000px;}
.sc__c00027{text-shadow:none;}
.sc0_c00027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00027{-webkit-text-stroke:0px transparent;}
.sc0_c00027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00027{word-spacing:-0.412800px;}
.ws1_c00027{word-spacing:0.000000px;}
._1_c00027{margin-left:-13.560000px;}
._3_c00027{margin-left:-8.049600px;}
._0_c00027{margin-left:-1.008000px;}
._2_c00027{width:1.108800px;}
._4_c00027{width:4.752000px;}
._5_c00027{width:5.760000px;}
.fc3_c00027{color:rgb(24,38,46);}
.fc2_c00027{color:rgb(47,77,93);}
.fc1_c00027{color:rgb(29,141,176);}
.fc0_c00027{color:rgb(255,255,255);}
.fs0_c00027{font-size:60.000000px;}
.fs3_c00027{font-size:96.000000px;}
.fs2_c00027{font-size:144.000000px;}
.fs1_c00027{font-size:240.000000px;}
.y0_c00027{bottom:0.000000px;}
.y1_c00027{bottom:31.999950px;}
.yb_c00027{bottom:168.055950px;}
.ya_c00027{bottom:212.047950px;}
.y9_c00027{bottom:270.043950px;}
.y8_c00027{bottom:329.047950px;}
.y7_c00027{bottom:386.035950px;}
.y6_c00027{bottom:429.019950px;}
.y5_c00027{bottom:473.011950px;}
.y4_c00027{bottom:531.007950px;}
.y3_c00027{bottom:574.999950px;}
.y2_c00027{bottom:694.999950px;}
.h1_c00027{height:43.680000px;}
.h3_c00027{height:104.976000px;}
.h4_c00027{height:113.664000px;}
.h2_c00027{height:174.720000px;}
.h0_c00027{height:810.000000px;}
.w0_c00027{width:1440.000000px;}
.x0_c00027{left:0.000000px;}
.x1_c00027{left:68.031450px;}
.x4_c00027{left:78.831450px;}
.x5_c00027{left:105.831450px;}
.x2_c00027{left:286.537050px;}
.x3_c00027{left:792.718050px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.v1_c00027{vertical-align:38.912000pt;}
.ls6_c00027{letter-spacing:-4.492800pt;}
.ls4_c00027{letter-spacing:-0.320000pt;}
.ls8_c00027{letter-spacing:-0.204800pt;}
.ls7_c00027{letter-spacing:-0.038400pt;}
.ls5_c00027{letter-spacing:0.000000pt;}
.ls3_c00027{letter-spacing:0.281600pt;}
.ls2_c00027{letter-spacing:35.429333pt;}
.ls1_c00027{letter-spacing:51.200000pt;}
.ls0_c00027{letter-spacing:86.528000pt;}
.ws0_c00027{word-spacing:-0.366933pt;}
.ws1_c00027{word-spacing:0.000000pt;}
._1_c00027{margin-left:-12.053333pt;}
._3_c00027{margin-left:-7.155200pt;}
._0_c00027{margin-left:-0.896000pt;}
._2_c00027{width:0.985600pt;}
._4_c00027{width:4.224000pt;}
._5_c00027{width:5.120000pt;}
.fs0_c00027{font-size:53.333333pt;}
.fs3_c00027{font-size:85.333333pt;}
.fs2_c00027{font-size:128.000000pt;}
.fs1_c00027{font-size:213.333333pt;}
.y0_c00027{bottom:0.000000pt;}
.y1_c00027{bottom:28.444400pt;}
.yb_c00027{bottom:149.383067pt;}
.ya_c00027{bottom:188.487067pt;}
.y9_c00027{bottom:240.039067pt;}
.y8_c00027{bottom:292.487067pt;}
.y7_c00027{bottom:343.143067pt;}
.y6_c00027{bottom:381.351067pt;}
.y5_c00027{bottom:420.455067pt;}
.y4_c00027{bottom:472.007067pt;}
.y3_c00027{bottom:511.111067pt;}
.y2_c00027{bottom:617.777733pt;}
.h1_c00027{height:38.826667pt;}
.h3_c00027{height:93.312000pt;}
.h4_c00027{height:101.034667pt;}
.h2_c00027{height:155.306667pt;}
.h0_c00027{height:720.000000pt;}
.w0_c00027{width:1280.000000pt;}
.x0_c00027{left:0.000000pt;}
.x1_c00027{left:60.472400pt;}
.x4_c00027{left:70.072400pt;}
.x5_c00027{left:94.072400pt;}
.x2_c00027{left:254.699600pt;}
.x3_c00027{left:704.638267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8bb689920d4a805f089aebd0.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:0.938000;font-style:normal;font-weight:normal;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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:0.938000;font-style: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;}
.v1_c00028{vertical-align:64.047600px;}
.ls4_c00028{letter-spacing:-0.360000px;}
.ls3_c00028{letter-spacing:-0.012600px;}
.ls1_c00028{letter-spacing:0.000000px;}
.ls0_c00028{letter-spacing:0.012600px;}
.ls2_c00028{letter-spacing:0.226800px;}
.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:-35.254800px;}
.ws3_c00028{word-spacing:0.000000px;}
.ws2_c00028{word-spacing:784.238400px;}
.ws1_c00028{word-spacing:920.624400px;}
._1_c00028{margin-left:-4869.278400px;}
._0_c00028{margin-left:-1.285200px;}
.fc1_c00028{color:rgb(29,141,176);}
.fc0_c00028{color:rgb(255,255,255);}
.fs1_c00028{font-size:60.000000px;}
.fs0_c00028{font-size:126.000000px;}
.fs2_c00028{font-size:240.000000px;}
.y0_c00028{bottom:0.000000px;}
.y5_c00028{bottom:31.999950px;}
.y4_c00028{bottom:329.988000px;}
.y3_c00028{bottom:363.000000px;}
.y2_c00028{bottom:472.999950px;}
.y1_c00028{bottom:549.999900px;}
.y6_c00028{bottom:727.000050px;}
.h3_c00028{height:43.680000px;}
.h1_c00028{height:91.728000px;}
.h2_c00028{height:155.775600px;}
.h4_c00028{height:174.720000px;}
.h0_c00028{height:810.000000px;}
.w0_c00028{width:1440.000000px;}
.x0_c00028{left:0.000000px;}
.x3_c00028{left:111.430800px;}
.x4_c00028{left:190.212300px;}
.x6_c00028{left:426.445800px;}
.x5_c00028{left:792.718050px;}
.x1_c00028{left:1025.157750px;}
.x2_c00028{left:1030.956750px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.v1_c00028{vertical-align:56.931200pt;}
.ls4_c00028{letter-spacing:-0.320000pt;}
.ls3_c00028{letter-spacing:-0.011200pt;}
.ls1_c00028{letter-spacing:0.000000pt;}
.ls0_c00028{letter-spacing:0.011200pt;}
.ls2_c00028{letter-spacing:0.201600pt;}
.ws0_c00028{word-spacing:-31.337600pt;}
.ws3_c00028{word-spacing:0.000000pt;}
.ws2_c00028{word-spacing:697.100800pt;}
.ws1_c00028{word-spacing:818.332800pt;}
._1_c00028{margin-left:-4328.247467pt;}
._0_c00028{margin-left:-1.142400pt;}
.fs1_c00028{font-size:53.333333pt;}
.fs0_c00028{font-size:112.000000pt;}
.fs2_c00028{font-size:213.333333pt;}
.y0_c00028{bottom:0.000000pt;}
.y5_c00028{bottom:28.444400pt;}
.y4_c00028{bottom:293.322667pt;}
.y3_c00028{bottom:322.666667pt;}
.y2_c00028{bottom:420.444400pt;}
.y1_c00028{bottom:488.888800pt;}
.y6_c00028{bottom:646.222267pt;}
.h3_c00028{height:38.826667pt;}
.h1_c00028{height:81.536000pt;}
.h2_c00028{height:138.467200pt;}
.h4_c00028{height:155.306667pt;}
.h0_c00028{height:720.000000pt;}
.w0_c00028{width:1280.000000pt;}
.x0_c00028{left:0.000000pt;}
.x3_c00028{left:99.049600pt;}
.x4_c00028{left:169.077600pt;}
.x6_c00028{left:379.062933pt;}
.x5_c00028{left:704.638267pt;}
.x1_c00028{left:911.251333pt;}
.x2_c00028{left:916.406000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:0.938000;font-style:normal;font-weight:normal;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_b9ef67b851003977122debcd.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:0.938000;font-style:normal;font-weight:normal;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_923d89f987b8634b05e83d43.woff2')format("woff");}.ff3_c00029{font-family:ff3_c00029;line-height:0.939000;font-style:normal;font-weight:normal;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_02011eb6d81d39cdec037c29.woff2')format("woff");}.ff4_c00029{font-family:ff4_c00029;line-height:0.938000;font-style:normal;font-weight:normal;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_315b02e1a8e63873c69d5dd7.woff2')format("woff");}.ff5_c00029{font-family:ff5_c00029;line-height:0.938000;font-style: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;}
.v1_c00029{vertical-align:68.064000px;}
.ls3_c00029{letter-spacing:-0.360000px;}
.ls6_c00029{letter-spacing:-0.316800px;}
.ls4_c00029{letter-spacing:-0.288000px;}
.ls7_c00029{letter-spacing:-0.230400px;}
.ls2_c00029{letter-spacing:0.000000px;}
.ls1_c00029{letter-spacing:0.187200px;}
.ls5_c00029{letter-spacing:0.288000px;}
.ls0_c00029{letter-spacing:57.600000px;}
.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:-39.744000px;}
.ws1_c00029{word-spacing:-0.762000px;}
.ws2_c00029{word-spacing:0.000000px;}
._1_c00029{margin-left:-4868.160000px;}
._4_c00029{margin-left:-10.886400px;}
._3_c00029{margin-left:-2.260800px;}
._0_c00029{margin-left:-1.260000px;}
._2_c00029{width:1.123200px;}
._5_c00029{width:57.600000px;}
.fc3_c00029{color:rgb(47,77,93);}
.fc2_c00029{color:rgb(24,38,46);}
.fc1_c00029{color:rgb(29,141,176);}
.fc0_c00029{color:rgb(255,255,255);}
.fs0_c00029{font-size:60.000000px;}
.fs3_c00029{font-size:96.000000px;}
.fs2_c00029{font-size:144.000000px;}
.fs1_c00029{font-size:216.000000px;}
.y0_c00029{bottom:0.000000px;}
.y1_c00029{bottom:31.999950px;}
.yd_c00029{bottom:167.016000px;}
.yc_c00029{bottom:210.000000px;}
.yb_c00029{bottom:269.028000px;}
.ya_c00029{bottom:312.012000px;}
.y9_c00029{bottom:356.004000px;}
.y8_c00029{bottom:398.016000px;}
.y7_c00029{bottom:441.000000px;}
.y6_c00029{bottom:500.023950px;}
.y5_c00029{bottom:543.007950px;}
.y4_c00029{bottom:586.999950px;}
.y3_c00029{bottom:664.984050px;}
.y2_c00029{bottom:730.000050px;}
.h1_c00029{height:43.680000px;}
.h5_c00029{height:104.832000px;}
.h4_c00029{height:104.976000px;}
.h2_c00029{height:157.248000px;}
.h3_c00029{height:173.040000px;}
.h0_c00029{height:810.000000px;}
.w0_c00029{width:1440.000000px;}
.x0_c00029{left:0.000000px;}
.x3_c00029{left:46.769100px;}
.x2_c00029{left:68.031450px;}
.x4_c00029{left:73.758600px;}
.x1_c00029{left:792.692400px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.v1_c00029{vertical-align:60.501333pt;}
.ls3_c00029{letter-spacing:-0.320000pt;}
.ls6_c00029{letter-spacing:-0.281600pt;}
.ls4_c00029{letter-spacing:-0.256000pt;}
.ls7_c00029{letter-spacing:-0.204800pt;}
.ls2_c00029{letter-spacing:0.000000pt;}
.ls1_c00029{letter-spacing:0.166400pt;}
.ls5_c00029{letter-spacing:0.256000pt;}
.ls0_c00029{letter-spacing:51.200000pt;}
.ws0_c00029{word-spacing:-35.328000pt;}
.ws1_c00029{word-spacing:-0.677333pt;}
.ws2_c00029{word-spacing:0.000000pt;}
._1_c00029{margin-left:-4327.253333pt;}
._4_c00029{margin-left:-9.676800pt;}
._3_c00029{margin-left:-2.009600pt;}
._0_c00029{margin-left:-1.120000pt;}
._2_c00029{width:0.998400pt;}
._5_c00029{width:51.200000pt;}
.fs0_c00029{font-size:53.333333pt;}
.fs3_c00029{font-size:85.333333pt;}
.fs2_c00029{font-size:128.000000pt;}
.fs1_c00029{font-size:192.000000pt;}
.y0_c00029{bottom:0.000000pt;}
.y1_c00029{bottom:28.444400pt;}
.yd_c00029{bottom:148.458667pt;}
.yc_c00029{bottom:186.666667pt;}
.yb_c00029{bottom:239.136000pt;}
.ya_c00029{bottom:277.344000pt;}
.y9_c00029{bottom:316.448000pt;}
.y8_c00029{bottom:353.792000pt;}
.y7_c00029{bottom:392.000000pt;}
.y6_c00029{bottom:444.465733pt;}
.y5_c00029{bottom:482.673733pt;}
.y4_c00029{bottom:521.777733pt;}
.y3_c00029{bottom:591.096933pt;}
.y2_c00029{bottom:648.888933pt;}
.h1_c00029{height:38.826667pt;}
.h5_c00029{height:93.184000pt;}
.h4_c00029{height:93.312000pt;}
.h2_c00029{height:139.776000pt;}
.h3_c00029{height:153.813333pt;}
.h0_c00029{height:720.000000pt;}
.w0_c00029{width:1280.000000pt;}
.x0_c00029{left:0.000000pt;}
.x3_c00029{left:41.572533pt;}
.x2_c00029{left:60.472400pt;}
.x4_c00029{left:65.563200pt;}
.x1_c00029{left:704.615467pt;}
}





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

.ir_c00030:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00030{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00030;src:url('chunks/assets/font_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00030;src:url('chunks/assets/font_b9ef67b851003977122debcd.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00030;src:url('chunks/assets/font_330f0f207e237ea2b30c7006.woff2')format("woff");}.ff3_c00030{font-family:ff3_c00030;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00030{vertical-align:0.000000px;}
.ls0_c00030{letter-spacing:-0.360000px;}
.ls1_c00030{letter-spacing:0.000000px;}
.sc__c00030{text-shadow:none;}
.sc0_c00030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00030{-webkit-text-stroke:0px transparent;}
.sc0_c00030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00030{word-spacing:0.000000px;}
._0_c00030{margin-left:-1.260000px;}
.fc2_c00030{color:rgb(192,0,0);}
.fc1_c00030{color:rgb(29,141,176);}
.fc0_c00030{color:rgb(255,255,255);}
.fs0_c00030{font-size:60.000000px;}
.fs2_c00030{font-size:108.000000px;}
.fs1_c00030{font-size:216.000000px;}
.y0_c00030{bottom:0.000000px;}
.y1_c00030{bottom:31.999950px;}
.y4_c00030{bottom:552.000000px;}
.y3_c00030{bottom:664.984050px;}
.y2_c00030{bottom:730.000050px;}
.h1_c00030{height:43.680000px;}
.h3_c00030{height:78.624000px;}
.h2_c00030{height:157.248000px;}
.h0_c00030{height:810.000000px;}
.w0_c00030{width:1440.000000px;}
.x0_c00030{left:0.000000px;}
.x1_c00030{left:68.031450px;}
.x3_c00030{left:100.046700px;}
.x2_c00030{left:792.718050px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls0_c00030{letter-spacing:-0.320000pt;}
.ls1_c00030{letter-spacing:0.000000pt;}
.ws0_c00030{word-spacing:0.000000pt;}
._0_c00030{margin-left:-1.120000pt;}
.fs0_c00030{font-size:53.333333pt;}
.fs2_c00030{font-size:96.000000pt;}
.fs1_c00030{font-size:192.000000pt;}
.y0_c00030{bottom:0.000000pt;}
.y1_c00030{bottom:28.444400pt;}
.y4_c00030{bottom:490.666667pt;}
.y3_c00030{bottom:591.096933pt;}
.y2_c00030{bottom:648.888933pt;}
.h1_c00030{height:38.826667pt;}
.h3_c00030{height:69.888000pt;}
.h2_c00030{height:139.776000pt;}
.h0_c00030{height:720.000000pt;}
.w0_c00030{width:1280.000000pt;}
.x0_c00030{left:0.000000pt;}
.x1_c00030{left:60.472400pt;}
.x3_c00030{left:88.930400pt;}
.x2_c00030{left:704.638267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_923d89f987b8634b05e83d43.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:0.939000;font-style:normal;font-weight:normal;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_7fc810f40bcae7149dee9f13.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:0.938000;font-style:normal;font-weight:normal;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_02011eb6d81d39cdec037c29.woff2')format("woff");}.ff3_c00031{font-family:ff3_c00031;line-height:0.938000;font-style:normal;font-weight:normal;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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff4_c00031{font-family:ff4_c00031;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff5_c00031{font-family:ff5_c00031;line-height:0.938000;font-style: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;}
.v1_c00031{vertical-align:40.000200px;}
.ls8_c00031{letter-spacing:-0.384000px;}
.ls7_c00031{letter-spacing:-0.360000px;}
.ls6_c00031{letter-spacing:-0.288000px;}
.ls5_c00031{letter-spacing:-0.230400px;}
.ls2_c00031{letter-spacing:-0.043200px;}
.ls3_c00031{letter-spacing:0.000000px;}
.ls0_c00031{letter-spacing:0.187200px;}
.ls4_c00031{letter-spacing:0.316800px;}
.ls1_c00031{letter-spacing:57.600000px;}
.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:-66.336000px;}
.ws1_c00031{word-spacing:-40.219200px;}
.ws0_c00031{word-spacing:-0.412800px;}
.ws3_c00031{word-spacing:0.000000px;}
._3_c00031{margin-left:-4.680000px;}
._1_c00031{margin-left:-1.345200px;}
._0_c00031{width:1.123200px;}
._2_c00031{width:57.600000px;}
._4_c00031{width:67.800000px;}
.fc3_c00031{color:rgb(29,141,176);}
.fc2_c00031{color:rgb(255,255,255);}
.fc1_c00031{color:rgb(24,38,46);}
.fc0_c00031{color:rgb(47,77,93);}
.fs2_c00031{font-size:60.000000px;}
.fs1_c00031{font-size:96.000000px;}
.fs0_c00031{font-size:144.000000px;}
.fs3_c00031{font-size:240.000000px;}
.y0_c00031{bottom:0.000000px;}
.yb_c00031{bottom:31.999950px;}
.ya_c00031{bottom:159.036000px;}
.y9_c00031{bottom:203.028000px;}
.y8_c00031{bottom:261.024000px;}
.y7_c00031{bottom:305.016000px;}
.y6_c00031{bottom:363.012000px;}
.y5_c00031{bottom:405.024000px;}
.y4_c00031{bottom:449.016000px;}
.y3_c00031{bottom:492.000000px;}
.y2_c00031{bottom:550.999950px;}
.y1_c00031{bottom:594.000000px;}
.yc_c00031{bottom:694.999950px;}
.h4_c00031{height:43.680000px;}
.h3_c00031{height:104.832000px;}
.h1_c00031{height:104.976000px;}
.h2_c00031{height:109.888200px;}
.h5_c00031{height:174.720000px;}
.h0_c00031{height:810.000000px;}
.w0_c00031{width:1440.000000px;}
.x0_c00031{left:0.000000px;}
.x1_c00031{left:27.673650px;}
.x2_c00031{left:54.673650px;}
.x3_c00031{left:68.031450px;}
.x4_c00031{left:792.718050px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.v1_c00031{vertical-align:35.555733pt;}
.ls8_c00031{letter-spacing:-0.341333pt;}
.ls7_c00031{letter-spacing:-0.320000pt;}
.ls6_c00031{letter-spacing:-0.256000pt;}
.ls5_c00031{letter-spacing:-0.204800pt;}
.ls2_c00031{letter-spacing:-0.038400pt;}
.ls3_c00031{letter-spacing:0.000000pt;}
.ls0_c00031{letter-spacing:0.166400pt;}
.ls4_c00031{letter-spacing:0.281600pt;}
.ls1_c00031{letter-spacing:51.200000pt;}
.ws2_c00031{word-spacing:-58.965333pt;}
.ws1_c00031{word-spacing:-35.750400pt;}
.ws0_c00031{word-spacing:-0.366933pt;}
.ws3_c00031{word-spacing:0.000000pt;}
._3_c00031{margin-left:-4.160000pt;}
._1_c00031{margin-left:-1.195733pt;}
._0_c00031{width:0.998400pt;}
._2_c00031{width:51.200000pt;}
._4_c00031{width:60.266667pt;}
.fs2_c00031{font-size:53.333333pt;}
.fs1_c00031{font-size:85.333333pt;}
.fs0_c00031{font-size:128.000000pt;}
.fs3_c00031{font-size:213.333333pt;}
.y0_c00031{bottom:0.000000pt;}
.yb_c00031{bottom:28.444400pt;}
.ya_c00031{bottom:141.365333pt;}
.y9_c00031{bottom:180.469333pt;}
.y8_c00031{bottom:232.021333pt;}
.y7_c00031{bottom:271.125333pt;}
.y6_c00031{bottom:322.677333pt;}
.y5_c00031{bottom:360.021333pt;}
.y4_c00031{bottom:399.125333pt;}
.y3_c00031{bottom:437.333333pt;}
.y2_c00031{bottom:489.777733pt;}
.y1_c00031{bottom:528.000000pt;}
.yc_c00031{bottom:617.777733pt;}
.h4_c00031{height:38.826667pt;}
.h3_c00031{height:93.184000pt;}
.h1_c00031{height:93.312000pt;}
.h2_c00031{height:97.678400pt;}
.h5_c00031{height:155.306667pt;}
.h0_c00031{height:720.000000pt;}
.w0_c00031{width:1280.000000pt;}
.x0_c00031{left:0.000000pt;}
.x1_c00031{left:24.598800pt;}
.x2_c00031{left:48.598800pt;}
.x3_c00031{left:60.472400pt;}
.x4_c00031{left:704.638267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_923d89f987b8634b05e83d43.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:0.939000;font-style:normal;font-weight:normal;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_02011eb6d81d39cdec037c29.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:0.938000;font-style:normal;font-weight:normal;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_7fc810f40bcae7149dee9f13.woff2')format("woff");}.ff3_c00032{font-family:ff3_c00032;line-height:0.938000;font-style:normal;font-weight:normal;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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff4_c00032{font-family:ff4_c00032;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00032;src:url('chunks/assets/font_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff5_c00032{font-family:ff5_c00032;line-height:0.938000;font-style: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;}
.v1_c00032{vertical-align:43.855800px;}
.ls4_c00032{letter-spacing:-0.360000px;}
.ls1_c00032{letter-spacing:-0.144000px;}
.ls0_c00032{letter-spacing:0.000000px;}
.ls2_c00032{letter-spacing:0.043200px;}
.ls3_c00032{letter-spacing:0.316800px;}
.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:-0.412800px;}
.ws1_c00032{word-spacing:0.000000px;}
._2_c00032{margin-left:-13.944000px;}
._1_c00032{margin-left:-1.008000px;}
._0_c00032{width:1.094400px;}
.fc3_c00032{color:rgb(29,141,176);}
.fc2_c00032{color:rgb(255,255,255);}
.fc1_c00032{color:rgb(24,38,46);}
.fc0_c00032{color:rgb(47,77,93);}
.fs2_c00032{font-size:60.000000px;}
.fs1_c00032{font-size:96.000000px;}
.fs0_c00032{font-size:144.000000px;}
.fs3_c00032{font-size:240.000000px;}
.y0_c00032{bottom:0.000000px;}
.y7_c00032{bottom:31.999950px;}
.y6_c00032{bottom:255.036000px;}
.y5_c00032{bottom:299.028000px;}
.y4_c00032{bottom:356.016000px;}
.y3_c00032{bottom:414.012000px;}
.y2_c00032{bottom:473.016000px;}
.y1_c00032{bottom:516.000000px;}
.y8_c00032{bottom:694.999950px;}
.h3_c00032{height:43.680000px;}
.h1_c00032{height:104.976000px;}
.h2_c00032{height:113.743800px;}
.h4_c00032{height:174.720000px;}
.h0_c00032{height:810.000000px;}
.w0_c00032{width:1440.000000px;}
.x0_c00032{left:0.000000px;}
.x2_c00032{left:68.031450px;}
.x1_c00032{left:78.831450px;}
.x3_c00032{left:510.037050px;}
.x4_c00032{left:792.718050px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.v1_c00032{vertical-align:38.982933pt;}
.ls4_c00032{letter-spacing:-0.320000pt;}
.ls1_c00032{letter-spacing:-0.128000pt;}
.ls0_c00032{letter-spacing:0.000000pt;}
.ls2_c00032{letter-spacing:0.038400pt;}
.ls3_c00032{letter-spacing:0.281600pt;}
.ws0_c00032{word-spacing:-0.366933pt;}
.ws1_c00032{word-spacing:0.000000pt;}
._2_c00032{margin-left:-12.394667pt;}
._1_c00032{margin-left:-0.896000pt;}
._0_c00032{width:0.972800pt;}
.fs2_c00032{font-size:53.333333pt;}
.fs1_c00032{font-size:85.333333pt;}
.fs0_c00032{font-size:128.000000pt;}
.fs3_c00032{font-size:213.333333pt;}
.y0_c00032{bottom:0.000000pt;}
.y7_c00032{bottom:28.444400pt;}
.y6_c00032{bottom:226.698667pt;}
.y5_c00032{bottom:265.802667pt;}
.y4_c00032{bottom:316.458667pt;}
.y3_c00032{bottom:368.010667pt;}
.y2_c00032{bottom:420.458667pt;}
.y1_c00032{bottom:458.666667pt;}
.y8_c00032{bottom:617.777733pt;}
.h3_c00032{height:38.826667pt;}
.h1_c00032{height:93.312000pt;}
.h2_c00032{height:101.105600pt;}
.h4_c00032{height:155.306667pt;}
.h0_c00032{height:720.000000pt;}
.w0_c00032{width:1280.000000pt;}
.x0_c00032{left:0.000000pt;}
.x2_c00032{left:60.472400pt;}
.x1_c00032{left:70.072400pt;}
.x3_c00032{left:453.366267pt;}
.x4_c00032{left:704.638267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_558601833a7f01f29d41294c.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:0.938000;font-style:normal;font-weight:normal;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_17c2dc3d74fc7f51ce0df7df.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:0.938000;font-style:normal;font-weight:normal;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_aee590e96564a2df068f423c.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;line-height:0.938000;font-style:normal;font-weight:normal;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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff4_c00033{font-family:ff4_c00033;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff5_c00033{font-family:ff5_c00033;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00033;src:url('chunks/assets/font_a3b30ea61a45c4df7ed57029.woff2')format("woff");}.ff6_c00033{font-family:ff6_c00033;line-height:0.918000;font-style: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;}
.v1_c00033{vertical-align:72.000000px;}
.ls5_c00033{letter-spacing:-0.793800px;}
.ls4_c00033{letter-spacing:-0.360000px;}
.ls2_c00033{letter-spacing:0.000000px;}
.ls3_c00033{letter-spacing:0.343200px;}
.ls1_c00033{letter-spacing:36.696000px;}
.ls0_c00033{letter-spacing:61.776000px;}
.sc__c00033{text-shadow:none;}
.sc0_c00033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00033{-webkit-text-stroke:0px transparent;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00033{word-spacing:0.000000px;}
.ws0_c00033{word-spacing:65.880000px;}
._5_c00033{margin-left:-4868.160000px;}
._6_c00033{margin-left:-17.892000px;}
._2_c00033{margin-left:-6.388800px;}
._7_c00033{margin-left:-4.368000px;}
._3_c00033{margin-left:-2.617200px;}
._4_c00033{margin-left:-1.260000px;}
._0_c00033{width:1.004400px;}
._1_c00033{width:61.776000px;}
.fc4_c00033{color:rgb(24,38,46);}
.fc3_c00033{color:rgb(29,141,176);}
.fc2_c00033{color:rgb(255,255,255);}
.fc1_c00033{color:rgb(206,222,230);}
.fc0_c00033{color:rgb(47,77,93);}
.fs2_c00033{font-size:60.000000px;}
.fs0_c00033{font-size:120.000000px;}
.fs1_c00033{font-size:132.000000px;}
.fs4_c00033{font-size:162.000000px;}
.fs3_c00033{font-size:240.000000px;}
.y0_c00033{bottom:0.000000px;}
.yc_c00033{bottom:31.999950px;}
.yb_c00033{bottom:120.025950px;}
.ya_c00033{bottom:164.014950px;}
.y9_c00033{bottom:218.002950px;}
.y8_c00033{bottom:257.998950px;}
.y7_c00033{bottom:297.004950px;}
.y6_c00033{bottom:356.008950px;}
.y5_c00033{bottom:399.007950px;}
.y4_c00033{bottom:442.996950px;}
.y3_c00033{bottom:498.007950px;}
.y2_c00033{bottom:537.013950px;}
.y1_c00033{bottom:577.999950px;}
.yd_c00033{bottom:694.999950px;}
.h2_c00033{height:43.680000px;}
.h1_c00033{height:96.096000px;}
.h3_c00033{height:188.478000px;}
.h0_c00033{height:810.000000px;}
.w0_c00033{width:1440.000000px;}
.x0_c00033{left:0.000000px;}
.x1_c00033{left:78.831450px;}
.x2_c00033{left:105.835950px;}
.x4_c00033{left:343.810800px;}
.x3_c00033{left:792.692400px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.v1_c00033{vertical-align:64.000000pt;}
.ls5_c00033{letter-spacing:-0.705600pt;}
.ls4_c00033{letter-spacing:-0.320000pt;}
.ls2_c00033{letter-spacing:0.000000pt;}
.ls3_c00033{letter-spacing:0.305067pt;}
.ls1_c00033{letter-spacing:32.618667pt;}
.ls0_c00033{letter-spacing:54.912000pt;}
.ws1_c00033{word-spacing:0.000000pt;}
.ws0_c00033{word-spacing:58.560000pt;}
._5_c00033{margin-left:-4327.253333pt;}
._6_c00033{margin-left:-15.904000pt;}
._2_c00033{margin-left:-5.678933pt;}
._7_c00033{margin-left:-3.882667pt;}
._3_c00033{margin-left:-2.326400pt;}
._4_c00033{margin-left:-1.120000pt;}
._0_c00033{width:0.892800pt;}
._1_c00033{width:54.912000pt;}
.fs2_c00033{font-size:53.333333pt;}
.fs0_c00033{font-size:106.666667pt;}
.fs1_c00033{font-size:117.333333pt;}
.fs4_c00033{font-size:144.000000pt;}
.fs3_c00033{font-size:213.333333pt;}
.y0_c00033{bottom:0.000000pt;}
.yc_c00033{bottom:28.444400pt;}
.yb_c00033{bottom:106.689733pt;}
.ya_c00033{bottom:145.791067pt;}
.y9_c00033{bottom:193.780400pt;}
.y8_c00033{bottom:229.332400pt;}
.y7_c00033{bottom:264.004400pt;}
.y6_c00033{bottom:316.452400pt;}
.y5_c00033{bottom:354.673733pt;}
.y4_c00033{bottom:393.775067pt;}
.y3_c00033{bottom:442.673733pt;}
.y2_c00033{bottom:477.345733pt;}
.y1_c00033{bottom:513.777733pt;}
.yd_c00033{bottom:617.777733pt;}
.h2_c00033{height:38.826667pt;}
.h1_c00033{height:85.418667pt;}
.h3_c00033{height:167.536000pt;}
.h0_c00033{height:720.000000pt;}
.w0_c00033{width:1280.000000pt;}
.x0_c00033{left:0.000000pt;}
.x1_c00033{left:70.072400pt;}
.x2_c00033{left:94.076400pt;}
.x4_c00033{left:305.609600pt;}
.x3_c00033{left:704.615467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:0.938000;font-style:normal;font-weight:normal;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_648ee49a34c457134fd9e017.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:0.740000;font-style: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);}
.v1_c00034{vertical-align:-12.000000px;}
.v0_c00034{vertical-align:0.000000px;}
.ls0_c00034{letter-spacing:-0.360000px;}
.ls2_c00034{letter-spacing:-0.216000px;}
.ls1_c00034{letter-spacing:0.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;}
}
.ws1_c00034{word-spacing:-6.720000px;}
.ws2_c00034{word-spacing:0.000000px;}
.ws0_c00034{word-spacing:66.990000px;}
._0_c00034{margin-left:-1.260000px;}
._1_c00034{width:1.212000px;}
._2_c00034{width:105.779400px;}
.fc2_c00034{color:rgb(47,77,93);}
.fc1_c00034{color:rgb(29,141,176);}
.fc0_c00034{color:rgb(255,255,255);}
.fs0_c00034{font-size:60.000000px;}
.fs2_c00034{font-size:180.000000px;}
.fs1_c00034{font-size:240.000000px;}
.y0_c00034{bottom:0.000000px;}
.y1_c00034{bottom:31.999950px;}
.y3_c00034{bottom:382.999950px;}
.y2_c00034{bottom:694.999950px;}
.h1_c00034{height:43.680000px;}
.h2_c00034{height:174.720000px;}
.h0_c00034{height:810.000000px;}
.w0_c00034{width:1440.000000px;}
.x0_c00034{left:0.000000px;}
.x1_c00034{left:68.031450px;}
.x4_c00034{left:247.661700px;}
.x2_c00034{left:376.477050px;}
.x3_c00034{left:792.718050px;}
@media print{
.v1_c00034{vertical-align:-10.666667pt;}
.v0_c00034{vertical-align:0.000000pt;}
.ls0_c00034{letter-spacing:-0.320000pt;}
.ls2_c00034{letter-spacing:-0.192000pt;}
.ls1_c00034{letter-spacing:0.000000pt;}
.ws1_c00034{word-spacing:-5.973333pt;}
.ws2_c00034{word-spacing:0.000000pt;}
.ws0_c00034{word-spacing:59.546667pt;}
._0_c00034{margin-left:-1.120000pt;}
._1_c00034{width:1.077333pt;}
._2_c00034{width:94.026133pt;}
.fs0_c00034{font-size:53.333333pt;}
.fs2_c00034{font-size:160.000000pt;}
.fs1_c00034{font-size:213.333333pt;}
.y0_c00034{bottom:0.000000pt;}
.y1_c00034{bottom:28.444400pt;}
.y3_c00034{bottom:340.444400pt;}
.y2_c00034{bottom:617.777733pt;}
.h1_c00034{height:38.826667pt;}
.h2_c00034{height:155.306667pt;}
.h0_c00034{height:720.000000pt;}
.w0_c00034{width:1280.000000pt;}
.x0_c00034{left:0.000000pt;}
.x1_c00034{left:60.472400pt;}
.x4_c00034{left:220.143733pt;}
.x2_c00034{left:334.646267pt;}
.x3_c00034{left:704.638267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:0.938000;font-style:normal;font-weight:normal;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_648ee49a34c457134fd9e017.woff2')format("woff");}.ff3_c00035{font-family:ff3_c00035;line-height:0.740000;font-style: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);}
.v1_c00035{vertical-align:-12.000000px;}
.v0_c00035{vertical-align:0.000000px;}
.ls0_c00035{letter-spacing:-0.360000px;}
.ls2_c00035{letter-spacing:-0.216000px;}
.ls1_c00035{letter-spacing:0.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;}
}
.ws1_c00035{word-spacing:-6.720000px;}
.ws2_c00035{word-spacing:0.000000px;}
.ws0_c00035{word-spacing:66.990000px;}
._0_c00035{margin-left:-1.260000px;}
._1_c00035{width:1.212000px;}
._2_c00035{width:105.888000px;}
.fc2_c00035{color:rgb(47,77,93);}
.fc1_c00035{color:rgb(29,141,176);}
.fc0_c00035{color:rgb(255,255,255);}
.fs0_c00035{font-size:60.000000px;}
.fs2_c00035{font-size:180.000000px;}
.fs1_c00035{font-size:240.000000px;}
.y0_c00035{bottom:0.000000px;}
.y1_c00035{bottom:31.999950px;}
.y4_c00035{bottom:276.000000px;}
.y3_c00035{bottom:382.999950px;}
.y2_c00035{bottom:694.999950px;}
.h1_c00035{height:43.680000px;}
.h2_c00035{height:174.720000px;}
.h0_c00035{height:810.000000px;}
.w0_c00035{width:1440.000000px;}
.x0_c00035{left:0.000000px;}
.x1_c00035{left:68.031450px;}
.x4_c00035{left:247.661700px;}
.x5_c00035{left:251.421900px;}
.x2_c00035{left:376.477050px;}
.x3_c00035{left:792.718050px;}
@media print{
.v1_c00035{vertical-align:-10.666667pt;}
.v0_c00035{vertical-align:0.000000pt;}
.ls0_c00035{letter-spacing:-0.320000pt;}
.ls2_c00035{letter-spacing:-0.192000pt;}
.ls1_c00035{letter-spacing:0.000000pt;}
.ws1_c00035{word-spacing:-5.973333pt;}
.ws2_c00035{word-spacing:0.000000pt;}
.ws0_c00035{word-spacing:59.546667pt;}
._0_c00035{margin-left:-1.120000pt;}
._1_c00035{width:1.077333pt;}
._2_c00035{width:94.122667pt;}
.fs0_c00035{font-size:53.333333pt;}
.fs2_c00035{font-size:160.000000pt;}
.fs1_c00035{font-size:213.333333pt;}
.y0_c00035{bottom:0.000000pt;}
.y1_c00035{bottom:28.444400pt;}
.y4_c00035{bottom:245.333333pt;}
.y3_c00035{bottom:340.444400pt;}
.y2_c00035{bottom:617.777733pt;}
.h1_c00035{height:38.826667pt;}
.h2_c00035{height:155.306667pt;}
.h0_c00035{height:720.000000pt;}
.w0_c00035{width:1280.000000pt;}
.x0_c00035{left:0.000000pt;}
.x1_c00035{left:60.472400pt;}
.x4_c00035{left:220.143733pt;}
.x5_c00035{left:223.486133pt;}
.x2_c00035{left:334.646267pt;}
.x3_c00035{left:704.638267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_923d89f987b8634b05e83d43.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:0.939000;font-style:normal;font-weight:normal;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_7fc810f40bcae7149dee9f13.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:0.938000;font-style:normal;font-weight:normal;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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff4_c00036{font-family:ff4_c00036;line-height:0.938000;font-style: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;}
.v2_c00036{vertical-align:39.936000px;}
.v1_c00036{vertical-align:43.968000px;}
.ls2_c00036{letter-spacing:-0.360000px;}
.ls0_c00036{letter-spacing:0.000000px;}
.ls1_c00036{letter-spacing:0.316800px;}
.sc__c00036{text-shadow:none;}
.sc0_c00036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00036{-webkit-text-stroke:0px transparent;}
.sc0_c00036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00036{word-spacing:-0.412800px;}
.ws1_c00036{word-spacing:0.000000px;}
._6_c00036{margin-left:-13.944000px;}
._4_c00036{margin-left:-8.352000px;}
._5_c00036{margin-left:-2.836800px;}
._2_c00036{margin-left:-1.022400px;}
._1_c00036{width:1.123200px;}
._3_c00036{width:27.738000px;}
._0_c00036{width:57.600000px;}
.fc3_c00036{color:rgb(29,141,176);}
.fc2_c00036{color:rgb(255,255,255);}
.fc1_c00036{color:rgb(24,38,46);}
.fc0_c00036{color:rgb(47,77,93);}
.fs2_c00036{font-size:60.000000px;}
.fs1_c00036{font-size:96.000000px;}
.fs0_c00036{font-size:144.000000px;}
.fs3_c00036{font-size:240.000000px;}
.y0_c00036{bottom:0.000000px;}
.y8_c00036{bottom:31.999950px;}
.y7_c00036{bottom:133.023900px;}
.y6_c00036{bottom:177.015900px;}
.y5_c00036{bottom:219.999900px;}
.y4_c00036{bottom:336.015900px;}
.y3_c00036{bottom:378.999900px;}
.y2_c00036{bottom:496.008000px;}
.y1_c00036{bottom:540.000000px;}
.y9_c00036{bottom:694.999950px;}
.h5_c00036{height:43.680000px;}
.h1_c00036{height:104.976000px;}
.h3_c00036{height:109.824000px;}
.h4_c00036{height:113.792400px;}
.h2_c00036{height:113.856000px;}
.h6_c00036{height:174.720000px;}
.h0_c00036{height:810.000000px;}
.w0_c00036{width:1440.000000px;}
.x0_c00036{left:0.000000px;}
.x3_c00036{left:68.031450px;}
.x1_c00036{left:78.831450px;}
.x2_c00036{left:105.831450px;}
.x4_c00036{left:510.037050px;}
.x5_c00036{left:792.718050px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.v2_c00036{vertical-align:35.498667pt;}
.v1_c00036{vertical-align:39.082667pt;}
.ls2_c00036{letter-spacing:-0.320000pt;}
.ls0_c00036{letter-spacing:0.000000pt;}
.ls1_c00036{letter-spacing:0.281600pt;}
.ws0_c00036{word-spacing:-0.366933pt;}
.ws1_c00036{word-spacing:0.000000pt;}
._6_c00036{margin-left:-12.394667pt;}
._4_c00036{margin-left:-7.424000pt;}
._5_c00036{margin-left:-2.521600pt;}
._2_c00036{margin-left:-0.908800pt;}
._1_c00036{width:0.998400pt;}
._3_c00036{width:24.656000pt;}
._0_c00036{width:51.200000pt;}
.fs2_c00036{font-size:53.333333pt;}
.fs1_c00036{font-size:85.333333pt;}
.fs0_c00036{font-size:128.000000pt;}
.fs3_c00036{font-size:213.333333pt;}
.y0_c00036{bottom:0.000000pt;}
.y8_c00036{bottom:28.444400pt;}
.y7_c00036{bottom:118.243467pt;}
.y6_c00036{bottom:157.347467pt;}
.y5_c00036{bottom:195.555467pt;}
.y4_c00036{bottom:298.680800pt;}
.y3_c00036{bottom:336.888800pt;}
.y2_c00036{bottom:440.896000pt;}
.y1_c00036{bottom:480.000000pt;}
.y9_c00036{bottom:617.777733pt;}
.h5_c00036{height:38.826667pt;}
.h1_c00036{height:93.312000pt;}
.h3_c00036{height:97.621333pt;}
.h4_c00036{height:101.148800pt;}
.h2_c00036{height:101.205333pt;}
.h6_c00036{height:155.306667pt;}
.h0_c00036{height:720.000000pt;}
.w0_c00036{width:1280.000000pt;}
.x0_c00036{left:0.000000pt;}
.x3_c00036{left:60.472400pt;}
.x1_c00036{left:70.072400pt;}
.x2_c00036{left:94.072400pt;}
.x4_c00036{left:453.366267pt;}
.x5_c00036{left:704.638267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:0.938000;font-style:normal;font-weight:normal;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_5e27aa69aaf201bd6d57bd58.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:0.938000;font-style:normal;font-weight:normal;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_9106c459eb6c90f753a1d25b.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;line-height:1.070000;font-style:normal;font-weight:normal;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_ed1e07d9933c8add341e6e95.woff2')format("woff");}.ff4_c00037{font-family:ff4_c00037;line-height:0.938000;font-style:normal;font-weight:normal;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_6e9be9373e2fb39b65f57629.woff2')format("woff");}.ff5_c00037{font-family:ff5_c00037;line-height:0.732000;font-style: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:-6.442800px;}
.ls9_c00037{letter-spacing:-0.546000px;}
.ls2_c00037{letter-spacing:-0.360000px;}
.ls5_c00037{letter-spacing:-0.218400px;}
.ls4_c00037{letter-spacing:-0.201600px;}
.ls8_c00037{letter-spacing:-0.100800px;}
.ls3_c00037{letter-spacing:0.000000px;}
.ls7_c00037{letter-spacing:0.100800px;}
.ls1_c00037{letter-spacing:0.168000px;}
.ls0_c00037{letter-spacing:0.218400px;}
.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;}
}
.ws10_c00037{word-spacing:-23.570400px;}
.ws5_c00037{word-spacing:-23.452800px;}
.ws2_c00037{word-spacing:-23.352000px;}
.wsd_c00037{word-spacing:-23.251200px;}
.wsb_c00037{word-spacing:-22.806000px;}
.ws3_c00037{word-spacing:-16.909200px;}
.ws8_c00037{word-spacing:-0.739200px;}
.wse_c00037{word-spacing:-0.638400px;}
.ws4_c00037{word-spacing:-0.369600px;}
.ws6_c00037{word-spacing:-0.336000px;}
.ws7_c00037{word-spacing:-0.285600px;}
.wsc_c00037{word-spacing:-0.218400px;}
.wsa_c00037{word-spacing:-0.168000px;}
.ws1_c00037{word-spacing:-0.084000px;}
.ws11_c00037{word-spacing:0.000000px;}
.ws9_c00037{word-spacing:0.201600px;}
.wsf_c00037{word-spacing:292.706400px;}
.ws0_c00037{word-spacing:339.208800px;}
._8_c00037{margin-left:-9.912000px;}
._a_c00037{margin-left:-8.131200px;}
._7_c00037{margin-left:-7.106400px;}
._9_c00037{margin-left:-5.678400px;}
._1_c00037{margin-left:-4.670400px;}
._2_c00037{margin-left:-3.502800px;}
._6_c00037{margin-left:-2.410800px;}
._0_c00037{margin-left:-1.260000px;}
._3_c00037{width:1.092000px;}
._4_c00037{width:6.031200px;}
._5_c00037{width:22.167600px;}
._b_c00037{width:34.322400px;}
.fc2_c00037{color:rgb(47,77,93);}
.fc1_c00037{color:rgb(29,141,176);}
.fc0_c00037{color:rgb(255,255,255);}
.fs0_c00037{font-size:60.000000px;}
.fs2_c00037{font-size:84.000000px;}
.fs1_c00037{font-size:240.000000px;}
.y0_c00037{bottom:0.000000px;}
.y1_c00037{bottom:31.999950px;}
.y15_c00037{bottom:86.020950px;}
.y14_c00037{bottom:112.018950px;}
.y13_c00037{bottom:152.023950px;}
.y12_c00037{bottom:176.026950px;}
.y11_c00037{bottom:217.018950px;}
.y10_c00037{bottom:257.023950px;}
.yf_c00037{bottom:283.021950px;}
.ye_c00037{bottom:323.026950px;}
.yd_c00037{bottom:347.029950px;}
.yc_c00037{bottom:373.027950px;}
.yb_c00037{bottom:413.032950px;}
.ya_c00037{bottom:454.024950px;}
.y9_c00037{bottom:479.014950px;}
.y8_c00037{bottom:518.011950px;}
.y7_c00037{bottom:544.009950px;}
.y6_c00037{bottom:584.014950px;}
.y5_c00037{bottom:625.006950px;}
.y4_c00037{bottom:649.996950px;}
.y3_c00037{bottom:673.999950px;}
.y2_c00037{bottom:718.999950px;}
.h1_c00037{height:43.680000px;}
.h3_c00037{height:72.240000px;}
.h2_c00037{height:174.720000px;}
.h0_c00037{height:810.000000px;}
.w0_c00037{width:1440.000000px;}
.x0_c00037{left:0.000000px;}
.x1_c00037{left:68.031450px;}
.x4_c00037{left:78.760650px;}
.x5_c00037{left:186.763650px;}
.x2_c00037{left:493.125000px;}
.x3_c00037{left:792.718050px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls6_c00037{letter-spacing:-5.726933pt;}
.ls9_c00037{letter-spacing:-0.485333pt;}
.ls2_c00037{letter-spacing:-0.320000pt;}
.ls5_c00037{letter-spacing:-0.194133pt;}
.ls4_c00037{letter-spacing:-0.179200pt;}
.ls8_c00037{letter-spacing:-0.089600pt;}
.ls3_c00037{letter-spacing:0.000000pt;}
.ls7_c00037{letter-spacing:0.089600pt;}
.ls1_c00037{letter-spacing:0.149333pt;}
.ls0_c00037{letter-spacing:0.194133pt;}
.ws10_c00037{word-spacing:-20.951467pt;}
.ws5_c00037{word-spacing:-20.846933pt;}
.ws2_c00037{word-spacing:-20.757333pt;}
.wsd_c00037{word-spacing:-20.667733pt;}
.wsb_c00037{word-spacing:-20.272000pt;}
.ws3_c00037{word-spacing:-15.030400pt;}
.ws8_c00037{word-spacing:-0.657067pt;}
.wse_c00037{word-spacing:-0.567467pt;}
.ws4_c00037{word-spacing:-0.328533pt;}
.ws6_c00037{word-spacing:-0.298667pt;}
.ws7_c00037{word-spacing:-0.253867pt;}
.wsc_c00037{word-spacing:-0.194133pt;}
.wsa_c00037{word-spacing:-0.149333pt;}
.ws1_c00037{word-spacing:-0.074667pt;}
.ws11_c00037{word-spacing:0.000000pt;}
.ws9_c00037{word-spacing:0.179200pt;}
.wsf_c00037{word-spacing:260.183467pt;}
.ws0_c00037{word-spacing:301.518933pt;}
._8_c00037{margin-left:-8.810667pt;}
._a_c00037{margin-left:-7.227733pt;}
._7_c00037{margin-left:-6.316800pt;}
._9_c00037{margin-left:-5.047467pt;}
._1_c00037{margin-left:-4.151467pt;}
._2_c00037{margin-left:-3.113600pt;}
._6_c00037{margin-left:-2.142933pt;}
._0_c00037{margin-left:-1.120000pt;}
._3_c00037{width:0.970667pt;}
._4_c00037{width:5.361067pt;}
._5_c00037{width:19.704533pt;}
._b_c00037{width:30.508800pt;}
.fs0_c00037{font-size:53.333333pt;}
.fs2_c00037{font-size:74.666667pt;}
.fs1_c00037{font-size:213.333333pt;}
.y0_c00037{bottom:0.000000pt;}
.y1_c00037{bottom:28.444400pt;}
.y15_c00037{bottom:76.463067pt;}
.y14_c00037{bottom:99.572400pt;}
.y13_c00037{bottom:135.132400pt;}
.y12_c00037{bottom:156.468400pt;}
.y11_c00037{bottom:192.905733pt;}
.y10_c00037{bottom:228.465733pt;}
.yf_c00037{bottom:251.575067pt;}
.ye_c00037{bottom:287.135067pt;}
.yd_c00037{bottom:308.471067pt;}
.yc_c00037{bottom:331.580400pt;}
.yb_c00037{bottom:367.140400pt;}
.ya_c00037{bottom:403.577733pt;}
.y9_c00037{bottom:425.791067pt;}
.y8_c00037{bottom:460.455067pt;}
.y7_c00037{bottom:483.564400pt;}
.y6_c00037{bottom:519.124400pt;}
.y5_c00037{bottom:555.561733pt;}
.y4_c00037{bottom:577.775067pt;}
.y3_c00037{bottom:599.111067pt;}
.y2_c00037{bottom:639.111067pt;}
.h1_c00037{height:38.826667pt;}
.h3_c00037{height:64.213333pt;}
.h2_c00037{height:155.306667pt;}
.h0_c00037{height:720.000000pt;}
.w0_c00037{width:1280.000000pt;}
.x0_c00037{left:0.000000pt;}
.x1_c00037{left:60.472400pt;}
.x4_c00037{left:70.009467pt;}
.x5_c00037{left:166.012133pt;}
.x2_c00037{left:438.333333pt;}
.x3_c00037{left:704.638267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3d1e0da2fc18d36c72459e07.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:0.939000;font-style:normal;font-weight:normal;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_3a6b3cb189fcc4d1df5ef0f8.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:0.938000;font-style: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;}
.ls1_c00038{letter-spacing:-0.360000px;}
.ls0_c00038{letter-spacing:0.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;}
}
.ws0_c00038{word-spacing:-90.072000px;}
.ws1_c00038{word-spacing:0.000000px;}
._1_c00038{margin-left:-4868.160000px;}
._0_c00038{margin-left:-1.260000px;}
.fc0_c00038{color:rgb(255,255,255);}
.fs1_c00038{font-size:60.000000px;}
.fs0_c00038{font-size:324.000000px;}
.y0_c00038{bottom:0.000000px;}
.y3_c00038{bottom:31.999950px;}
.y2_c00038{bottom:365.014950px;}
.y1_c00038{bottom:460.999950px;}
.h2_c00038{height:43.680000px;}
.h1_c00038{height:236.196000px;}
.h0_c00038{height:810.000000px;}
.w0_c00038{width:1440.000000px;}
.x0_c00038{left:0.000000px;}
.x2_c00038{left:181.944000px;}
.x1_c00038{left:569.610000px;}
.x3_c00038{left:792.692400px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls1_c00038{letter-spacing:-0.320000pt;}
.ls0_c00038{letter-spacing:0.000000pt;}
.ws0_c00038{word-spacing:-80.064000pt;}
.ws1_c00038{word-spacing:0.000000pt;}
._1_c00038{margin-left:-4327.253333pt;}
._0_c00038{margin-left:-1.120000pt;}
.fs1_c00038{font-size:53.333333pt;}
.fs0_c00038{font-size:288.000000pt;}
.y0_c00038{bottom:0.000000pt;}
.y3_c00038{bottom:28.444400pt;}
.y2_c00038{bottom:324.457733pt;}
.y1_c00038{bottom:409.777733pt;}
.h2_c00038{height:38.826667pt;}
.h1_c00038{height:209.952000pt;}
.h0_c00038{height:720.000000pt;}
.w0_c00038{width:1280.000000pt;}
.x0_c00038{left:0.000000pt;}
.x2_c00038{left:161.728000pt;}
.x1_c00038{left:506.320000pt;}
.x3_c00038{left:704.615467pt;}
}





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

.ir_c00039:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00039{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00039;src:url('chunks/assets/font_1f378549abe15ee7506bf7c3.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00039;src:url('chunks/assets/font_6bd34d731768859a408c1c49.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00039;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff3_c00039{font-family:ff3_c00039;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00039;src:url('chunks/assets/font_924bf32c21d79fe4a9a3c504.woff2')format("woff");}.ff4_c00039{font-family:ff4_c00039;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00039;src:url('chunks/assets/font_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff5_c00039{font-family:ff5_c00039;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00039{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00039{vertical-align:-15.120000px;}
.v0_c00039{vertical-align:0.000000px;}
.v1_c00039{vertical-align:20.880000px;}
.ls14_c00039{letter-spacing:-0.675360px;}
.ls1b_c00039{letter-spacing:-0.504000px;}
.ls15_c00039{letter-spacing:-0.337680px;}
.ls10_c00039{letter-spacing:-0.289440px;}
.ls19_c00039{letter-spacing:-0.272160px;}
.lsf_c00039{letter-spacing:-0.241200px;}
.ls1c_c00039{letter-spacing:-0.239040px;}
.lse_c00039{letter-spacing:-0.216000px;}
.ls1a_c00039{letter-spacing:-0.211680px;}
.ls1e_c00039{letter-spacing:-0.179280px;}
.ls12_c00039{letter-spacing:-0.144720px;}
.ls16_c00039{letter-spacing:-0.059760px;}
.lsd_c00039{letter-spacing:0.000000px;}
.ls11_c00039{letter-spacing:0.048240px;}
.ls5_c00039{letter-spacing:0.096480px;}
.ls7_c00039{letter-spacing:0.101592px;}
.ls1d_c00039{letter-spacing:0.119520px;}
.ls3_c00039{letter-spacing:0.144720px;}
.ls6_c00039{letter-spacing:0.179280px;}
.ls13_c00039{letter-spacing:0.192960px;}
.lsc_c00039{letter-spacing:0.216000px;}
.ls17_c00039{letter-spacing:0.239040px;}
.ls18_c00039{letter-spacing:0.298800px;}
.ls0_c00039{letter-spacing:0.337680px;}
.ls4_c00039{letter-spacing:0.385920px;}
.ls8_c00039{letter-spacing:1.613520px;}
.lsa_c00039{letter-spacing:5.916240px;}
.lsb_c00039{letter-spacing:5.976000px;}
.ls2_c00039{letter-spacing:8.538480px;}
.ls9_c00039{letter-spacing:8.784720px;}
.ls1_c00039{letter-spacing:91.318320px;}
.sc__c00039{text-shadow:none;}
.sc0_c00039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00039{-webkit-text-stroke:0px transparent;}
.sc0_c00039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c00039{word-spacing:-16.488000px;}
.ws0_c00039{word-spacing:-16.056000px;}
.wsb_c00039{word-spacing:-15.768000px;}
.ws8_c00039{word-spacing:-13.804560px;}
.wsc_c00039{word-spacing:-13.685040px;}
.wsd_c00039{word-spacing:-13.625280px;}
.ws6_c00039{word-spacing:-13.505760px;}
.ws7_c00039{word-spacing:-13.446000px;}
.ws10_c00039{word-spacing:-13.326480px;}
.wse_c00039{word-spacing:-13.266720px;}
.ws5_c00039{word-spacing:-10.950480px;}
.ws4_c00039{word-spacing:-10.902240px;}
.ws2_c00039{word-spacing:-10.757520px;}
.ws1_c00039{word-spacing:-10.661040px;}
.wsa_c00039{word-spacing:-10.612800px;}
.ws3_c00039{word-spacing:-10.564560px;}
.ws9_c00039{word-spacing:-8.514720px;}
.ws16_c00039{word-spacing:-0.289440px;}
.ws20_c00039{word-spacing:-0.239040px;}
.ws1a_c00039{word-spacing:-0.192960px;}
.ws24_c00039{word-spacing:-0.179280px;}
.ws14_c00039{word-spacing:-0.144720px;}
.ws33_c00039{word-spacing:-0.119520px;}
.ws1d_c00039{word-spacing:-0.048240px;}
.ws12_c00039{word-spacing:0.000000px;}
.ws17_c00039{word-spacing:0.048240px;}
.ws25_c00039{word-spacing:0.059760px;}
.ws11_c00039{word-spacing:0.072000px;}
.ws15_c00039{word-spacing:0.144720px;}
.ws13_c00039{word-spacing:0.192960px;}
.ws21_c00039{word-spacing:0.211680px;}
.ws29_c00039{word-spacing:0.239040px;}
.ws1f_c00039{word-spacing:0.240480px;}
.ws1e_c00039{word-spacing:0.289440px;}
.ws22_c00039{word-spacing:0.418320px;}
.ws1b_c00039{word-spacing:0.675360px;}
.ws35_c00039{word-spacing:0.956160px;}
.ws2d_c00039{word-spacing:1.135440px;}
.ws23_c00039{word-spacing:1.314720px;}
.ws2e_c00039{word-spacing:1.673280px;}
.ws2a_c00039{word-spacing:1.852560px;}
.ws2c_c00039{word-spacing:2.151360px;}
.ws31_c00039{word-spacing:2.748960px;}
.ws32_c00039{word-spacing:3.107520px;}
.ws2b_c00039{word-spacing:4.900320px;}
.ws34_c00039{word-spacing:5.258880px;}
.ws30_c00039{word-spacing:5.438160px;}
.ws36_c00039{word-spacing:5.617440px;}
.ws2f_c00039{word-spacing:6.155280px;}
.ws26_c00039{word-spacing:6.334560px;}
.ws27_c00039{word-spacing:8.485920px;}
.ws18_c00039{word-spacing:8.490240px;}
.ws19_c00039{word-spacing:8.779680px;}
.ws1c_c00039{word-spacing:8.876160px;}
.ws28_c00039{word-spacing:9.023760px;}
._0_c00039{margin-left:-1.512000px;}
._1_c00039{width:1.296000px;}
._7_c00039{width:2.476728px;}
._8_c00039{width:6.151680px;}
._6_c00039{width:8.072640px;}
._5_c00039{width:9.509760px;}
._2_c00039{width:92.048400px;}
._4_c00039{width:135.457920px;}
._3_c00039{width:158.999040px;}
.fc2_c00039{color:transparent;}
.fc1_c00039{color:rgb(0,0,0);}
.fc0_c00039{color:rgb(0,0,255);}
.fs6_c00039{font-size:30.240000px;}
.fs5_c00039{font-size:38.880000px;}
.fs1_c00039{font-size:48.240000px;}
.fs2_c00039{font-size:54.000000px;}
.fs3_c00039{font-size:59.760000px;}
.fs0_c00039{font-size:72.000000px;}
.fs4_c00039{font-size:120.240000px;}
.y0_c00039{bottom:0.000000px;}
.y2_c00039{bottom:15.300000px;}
.ye_c00039{bottom:67.680000px;}
.yd_c00039{bottom:85.320000px;}
.yc_c00039{bottom:100.080000px;}
.yb_c00039{bottom:114.660000px;}
.ya_c00039{bottom:129.240000px;}
.y9_c00039{bottom:147.420000px;}
.y36_c00039{bottom:169.879500px;}
.y35_c00039{bottom:192.020580px;}
.y34_c00039{bottom:213.982380px;}
.y33_c00039{bottom:235.944180px;}
.y32_c00039{bottom:257.905980px;}
.y31_c00039{bottom:279.867780px;}
.y30_c00039{bottom:301.829580px;}
.y2f_c00039{bottom:323.791380px;}
.y2e_c00039{bottom:345.753180px;}
.y2d_c00039{bottom:367.714980px;}
.y2c_c00039{bottom:389.676780px;}
.y2b_c00039{bottom:411.638580px;}
.y2a_c00039{bottom:433.600380px;}
.y29_c00039{bottom:455.562180px;}
.y28_c00039{bottom:477.523980px;}
.y27_c00039{bottom:499.665060px;}
.y26_c00039{bottom:521.626860px;}
.y25_c00039{bottom:543.588660px;}
.y24_c00039{bottom:565.550460px;}
.y23_c00039{bottom:587.512260px;}
.y22_c00039{bottom:609.474060px;}
.y21_c00039{bottom:631.435860px;}
.y20_c00039{bottom:649.080000px;}
.y1f_c00039{bottom:674.460000px;}
.y1e_c00039{bottom:703.980000px;}
.y1d_c00039{bottom:724.316760px;}
.y1c_c00039{bottom:745.920000px;}
.y1b_c00039{bottom:775.620000px;}
.y1a_c00039{bottom:796.140000px;}
.y19_c00039{bottom:818.640000px;}
.y18_c00039{bottom:836.459460px;}
.y17_c00039{bottom:851.040000px;}
.y16_c00039{bottom:865.797480px;}
.y15_c00039{bottom:880.378020px;}
.y14_c00039{bottom:894.958560px;}
.y13_c00039{bottom:909.720000px;}
.y12_c00039{bottom:924.298560px;}
.y11_c00039{bottom:942.840000px;}
.y10_c00039{bottom:954.360000px;}
.yf_c00039{bottom:1006.380000px;}
.y8_c00039{bottom:1060.915500px;}
.y7_c00039{bottom:1075.496040px;}
.y6_c00039{bottom:1090.257480px;}
.y5_c00039{bottom:1104.838020px;}
.y4_c00039{bottom:1119.418560px;}
.y3_c00039{bottom:1134.180000px;}
.y1_c00039{bottom:1145.520000px;}
.ha_c00039{height:21.705469px;}
.h2_c00039{height:32.400000px;}
.h4_c00039{height:34.625391px;}
.hb_c00039{height:34.631151px;}
.hc_c00039{height:34.635471px;}
.h6_c00039{height:35.025820px;}
.h5_c00039{height:35.991211px;}
.he_c00039{height:41.522695px;}
.hd_c00039{height:42.894141px;}
.h7_c00039{height:43.390195px;}
.h9_c00039{height:48.787031px;}
.h3_c00039{height:52.277344px;}
.h8_c00039{height:87.303164px;}
.h0_c00039{height:1262.880000px;}
.h1_c00039{height:1263.000000px;}
.w2_c00039{width:739.078500px;}
.w0_c00039{width:892.980000px;}
.w1_c00039{width:893.250000px;}
.x0_c00039{left:0.000000px;}
.x2_c00039{left:7.920000px;}
.x1_c00039{left:77.040000px;}
.x3_c00039{left:84.960000px;}
.x5_c00039{left:99.885060px;}
.x4_c00039{left:442.620000px;}
@media print{
.v2_c00039{vertical-align:-13.440000pt;}
.v0_c00039{vertical-align:0.000000pt;}
.v1_c00039{vertical-align:18.560000pt;}
.ls14_c00039{letter-spacing:-0.600320pt;}
.ls1b_c00039{letter-spacing:-0.448000pt;}
.ls15_c00039{letter-spacing:-0.300160pt;}
.ls10_c00039{letter-spacing:-0.257280pt;}
.ls19_c00039{letter-spacing:-0.241920pt;}
.lsf_c00039{letter-spacing:-0.214400pt;}
.ls1c_c00039{letter-spacing:-0.212480pt;}
.lse_c00039{letter-spacing:-0.192000pt;}
.ls1a_c00039{letter-spacing:-0.188160pt;}
.ls1e_c00039{letter-spacing:-0.159360pt;}
.ls12_c00039{letter-spacing:-0.128640pt;}
.ls16_c00039{letter-spacing:-0.053120pt;}
.lsd_c00039{letter-spacing:0.000000pt;}
.ls11_c00039{letter-spacing:0.042880pt;}
.ls5_c00039{letter-spacing:0.085760pt;}
.ls7_c00039{letter-spacing:0.090304pt;}
.ls1d_c00039{letter-spacing:0.106240pt;}
.ls3_c00039{letter-spacing:0.128640pt;}
.ls6_c00039{letter-spacing:0.159360pt;}
.ls13_c00039{letter-spacing:0.171520pt;}
.lsc_c00039{letter-spacing:0.192000pt;}
.ls17_c00039{letter-spacing:0.212480pt;}
.ls18_c00039{letter-spacing:0.265600pt;}
.ls0_c00039{letter-spacing:0.300160pt;}
.ls4_c00039{letter-spacing:0.343040pt;}
.ls8_c00039{letter-spacing:1.434240pt;}
.lsa_c00039{letter-spacing:5.258880pt;}
.lsb_c00039{letter-spacing:5.312000pt;}
.ls2_c00039{letter-spacing:7.589760pt;}
.ls9_c00039{letter-spacing:7.808640pt;}
.ls1_c00039{letter-spacing:81.171840pt;}
.wsf_c00039{word-spacing:-14.656000pt;}
.ws0_c00039{word-spacing:-14.272000pt;}
.wsb_c00039{word-spacing:-14.016000pt;}
.ws8_c00039{word-spacing:-12.270720pt;}
.wsc_c00039{word-spacing:-12.164480pt;}
.wsd_c00039{word-spacing:-12.111360pt;}
.ws6_c00039{word-spacing:-12.005120pt;}
.ws7_c00039{word-spacing:-11.952000pt;}
.ws10_c00039{word-spacing:-11.845760pt;}
.wse_c00039{word-spacing:-11.792640pt;}
.ws5_c00039{word-spacing:-9.733760pt;}
.ws4_c00039{word-spacing:-9.690880pt;}
.ws2_c00039{word-spacing:-9.562240pt;}
.ws1_c00039{word-spacing:-9.476480pt;}
.wsa_c00039{word-spacing:-9.433600pt;}
.ws3_c00039{word-spacing:-9.390720pt;}
.ws9_c00039{word-spacing:-7.568640pt;}
.ws16_c00039{word-spacing:-0.257280pt;}
.ws20_c00039{word-spacing:-0.212480pt;}
.ws1a_c00039{word-spacing:-0.171520pt;}
.ws24_c00039{word-spacing:-0.159360pt;}
.ws14_c00039{word-spacing:-0.128640pt;}
.ws33_c00039{word-spacing:-0.106240pt;}
.ws1d_c00039{word-spacing:-0.042880pt;}
.ws12_c00039{word-spacing:0.000000pt;}
.ws17_c00039{word-spacing:0.042880pt;}
.ws25_c00039{word-spacing:0.053120pt;}
.ws11_c00039{word-spacing:0.064000pt;}
.ws15_c00039{word-spacing:0.128640pt;}
.ws13_c00039{word-spacing:0.171520pt;}
.ws21_c00039{word-spacing:0.188160pt;}
.ws29_c00039{word-spacing:0.212480pt;}
.ws1f_c00039{word-spacing:0.213760pt;}
.ws1e_c00039{word-spacing:0.257280pt;}
.ws22_c00039{word-spacing:0.371840pt;}
.ws1b_c00039{word-spacing:0.600320pt;}
.ws35_c00039{word-spacing:0.849920pt;}
.ws2d_c00039{word-spacing:1.009280pt;}
.ws23_c00039{word-spacing:1.168640pt;}
.ws2e_c00039{word-spacing:1.487360pt;}
.ws2a_c00039{word-spacing:1.646720pt;}
.ws2c_c00039{word-spacing:1.912320pt;}
.ws31_c00039{word-spacing:2.443520pt;}
.ws32_c00039{word-spacing:2.762240pt;}
.ws2b_c00039{word-spacing:4.355840pt;}
.ws34_c00039{word-spacing:4.674560pt;}
.ws30_c00039{word-spacing:4.833920pt;}
.ws36_c00039{word-spacing:4.993280pt;}
.ws2f_c00039{word-spacing:5.471360pt;}
.ws26_c00039{word-spacing:5.630720pt;}
.ws27_c00039{word-spacing:7.543040pt;}
.ws18_c00039{word-spacing:7.546880pt;}
.ws19_c00039{word-spacing:7.804160pt;}
.ws1c_c00039{word-spacing:7.889920pt;}
.ws28_c00039{word-spacing:8.021120pt;}
._0_c00039{margin-left:-1.344000pt;}
._1_c00039{width:1.152000pt;}
._7_c00039{width:2.201536pt;}
._8_c00039{width:5.468160pt;}
._6_c00039{width:7.175680pt;}
._5_c00039{width:8.453120pt;}
._2_c00039{width:81.820800pt;}
._4_c00039{width:120.407040pt;}
._3_c00039{width:141.332480pt;}
.fs6_c00039{font-size:26.880000pt;}
.fs5_c00039{font-size:34.560000pt;}
.fs1_c00039{font-size:42.880000pt;}
.fs2_c00039{font-size:48.000000pt;}
.fs3_c00039{font-size:53.120000pt;}
.fs0_c00039{font-size:64.000000pt;}
.fs4_c00039{font-size:106.880000pt;}
.y0_c00039{bottom:0.000000pt;}
.y2_c00039{bottom:13.600000pt;}
.ye_c00039{bottom:60.160000pt;}
.yd_c00039{bottom:75.840000pt;}
.yc_c00039{bottom:88.960000pt;}
.yb_c00039{bottom:101.920000pt;}
.ya_c00039{bottom:114.880000pt;}
.y9_c00039{bottom:131.040000pt;}
.y36_c00039{bottom:151.004000pt;}
.y35_c00039{bottom:170.684960pt;}
.y34_c00039{bottom:190.206560pt;}
.y33_c00039{bottom:209.728160pt;}
.y32_c00039{bottom:229.249760pt;}
.y31_c00039{bottom:248.771360pt;}
.y30_c00039{bottom:268.292960pt;}
.y2f_c00039{bottom:287.814560pt;}
.y2e_c00039{bottom:307.336160pt;}
.y2d_c00039{bottom:326.857760pt;}
.y2c_c00039{bottom:346.379360pt;}
.y2b_c00039{bottom:365.900960pt;}
.y2a_c00039{bottom:385.422560pt;}
.y29_c00039{bottom:404.944160pt;}
.y28_c00039{bottom:424.465760pt;}
.y27_c00039{bottom:444.146720pt;}
.y26_c00039{bottom:463.668320pt;}
.y25_c00039{bottom:483.189920pt;}
.y24_c00039{bottom:502.711520pt;}
.y23_c00039{bottom:522.233120pt;}
.y22_c00039{bottom:541.754720pt;}
.y21_c00039{bottom:561.276320pt;}
.y20_c00039{bottom:576.960000pt;}
.y1f_c00039{bottom:599.520000pt;}
.y1e_c00039{bottom:625.760000pt;}
.y1d_c00039{bottom:643.837120pt;}
.y1c_c00039{bottom:663.040000pt;}
.y1b_c00039{bottom:689.440000pt;}
.y1a_c00039{bottom:707.680000pt;}
.y19_c00039{bottom:727.680000pt;}
.y18_c00039{bottom:743.519520pt;}
.y17_c00039{bottom:756.480000pt;}
.y16_c00039{bottom:769.597760pt;}
.y15_c00039{bottom:782.558240pt;}
.y14_c00039{bottom:795.518720pt;}
.y13_c00039{bottom:808.640000pt;}
.y12_c00039{bottom:821.598720pt;}
.y11_c00039{bottom:838.080000pt;}
.y10_c00039{bottom:848.320000pt;}
.yf_c00039{bottom:894.560000pt;}
.y8_c00039{bottom:943.036000pt;}
.y7_c00039{bottom:955.996480pt;}
.y6_c00039{bottom:969.117760pt;}
.y5_c00039{bottom:982.078240pt;}
.y4_c00039{bottom:995.038720pt;}
.y3_c00039{bottom:1008.160000pt;}
.y1_c00039{bottom:1018.240000pt;}
.ha_c00039{height:19.293750pt;}
.h2_c00039{height:28.800000pt;}
.h4_c00039{height:30.778125pt;}
.hb_c00039{height:30.783245pt;}
.hc_c00039{height:30.787085pt;}
.h6_c00039{height:31.134062pt;}
.h5_c00039{height:31.992188pt;}
.he_c00039{height:36.909063pt;}
.hd_c00039{height:38.128125pt;}
.h7_c00039{height:38.569063pt;}
.h9_c00039{height:43.366250pt;}
.h3_c00039{height:46.468750pt;}
.h8_c00039{height:77.602812pt;}
.h0_c00039{height:1122.560000pt;}
.h1_c00039{height:1122.666667pt;}
.w2_c00039{width:656.958667pt;}
.w0_c00039{width:793.760000pt;}
.w1_c00039{width:794.000000pt;}
.x0_c00039{left:0.000000pt;}
.x2_c00039{left:7.040000pt;}
.x1_c00039{left:68.480000pt;}
.x3_c00039{left:75.520000pt;}
.x5_c00039{left:88.786720pt;}
.x4_c00039{left:393.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dc2d3d3d706c8c7ae03ee35e.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00040;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00040;src:url('chunks/assets/font_2696efc9a8c595f00f313b1d.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00040;src:url('chunks/assets/font_42556cec865d67717e2c976f.woff2')format("woff");}.ff4_c00040{font-family:ff4_c00040;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00040{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.ls13_c00040{letter-spacing:-0.675360px;}
.ls15_c00040{letter-spacing:-0.537840px;}
.ls11_c00040{letter-spacing:-0.434160px;}
.lse_c00040{letter-spacing:-0.337680px;}
.lsf_c00040{letter-spacing:-0.289440px;}
.ls10_c00040{letter-spacing:-0.241200px;}
.ls8_c00040{letter-spacing:-0.239040px;}
.lsc_c00040{letter-spacing:-0.216000px;}
.ls12_c00040{letter-spacing:-0.144720px;}
.lsb_c00040{letter-spacing:-0.059760px;}
.ls7_c00040{letter-spacing:0.000000px;}
.ls6_c00040{letter-spacing:0.024120px;}
.lsd_c00040{letter-spacing:0.048240px;}
.lsa_c00040{letter-spacing:0.059760px;}
.ls4_c00040{letter-spacing:0.096480px;}
.ls2_c00040{letter-spacing:0.179280px;}
.ls14_c00040{letter-spacing:0.216000px;}
.ls9_c00040{letter-spacing:0.298800px;}
.ls3_c00040{letter-spacing:0.337680px;}
.ls0_c00040{letter-spacing:0.406368px;}
.ls1_c00040{letter-spacing:1.613520px;}
.ls5_c00040{letter-spacing:74.048400px;}
.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;}
}
.ws1_c00040{word-spacing:-13.565520px;}
.ws0_c00040{word-spacing:-13.505760px;}
.wsb_c00040{word-spacing:-11.239920px;}
.ws6_c00040{word-spacing:-10.950480px;}
.ws9_c00040{word-spacing:-10.926360px;}
.ws4_c00040{word-spacing:-10.902240px;}
.ws8_c00040{word-spacing:-10.757520px;}
.ws3_c00040{word-spacing:-10.661040px;}
.ws7_c00040{word-spacing:-10.612800px;}
.ws2_c00040{word-spacing:-10.564560px;}
.ws5_c00040{word-spacing:-10.468080px;}
.wsa_c00040{word-spacing:-10.226880px;}
.ws28_c00040{word-spacing:-0.916560px;}
.ws27_c00040{word-spacing:-0.144720px;}
.wse_c00040{word-spacing:-0.119520px;}
.ws23_c00040{word-spacing:-0.048240px;}
.wsc_c00040{word-spacing:0.000000px;}
.ws2a_c00040{word-spacing:0.072000px;}
.ws26_c00040{word-spacing:0.192960px;}
.ws1e_c00040{word-spacing:0.239040px;}
.ws29_c00040{word-spacing:0.241200px;}
.wsf_c00040{word-spacing:0.418320px;}
.ws21_c00040{word-spacing:0.504000px;}
.ws11_c00040{word-spacing:1.135440px;}
.ws12_c00040{word-spacing:1.314720px;}
.ws18_c00040{word-spacing:1.434240px;}
.ws1b_c00040{word-spacing:1.673280px;}
.wsd_c00040{word-spacing:1.852560px;}
.ws22_c00040{word-spacing:1.977840px;}
.ws24_c00040{word-spacing:2.026080px;}
.ws16_c00040{word-spacing:2.031840px;}
.ws17_c00040{word-spacing:2.151360px;}
.ws25_c00040{word-spacing:2.412000px;}
.ws10_c00040{word-spacing:2.569680px;}
.ws1d_c00040{word-spacing:2.748960px;}
.ws15_c00040{word-spacing:3.286800px;}
.ws13_c00040{word-spacing:3.466080px;}
.ws1c_c00040{word-spacing:3.585600px;}
.ws14_c00040{word-spacing:4.003920px;}
.ws1f_c00040{word-spacing:4.721040px;}
.ws1a_c00040{word-spacing:4.900320px;}
.ws19_c00040{word-spacing:5.438160px;}
.ws20_c00040{word-spacing:6.334560px;}
.ws2b_c00040{word-spacing:6.454080px;}
.ws2c_c00040{word-spacing:6.872400px;}
._0_c00040{margin-left:-1.189224px;}
._1_c00040{width:1.159344px;}
._2_c00040{width:5.223024px;}
.fc1_c00040{color:rgb(0,0,0);}
.fc0_c00040{color:rgb(0,0,255);}
.fs3_c00040{font-size:48.240000px;}
.fs1_c00040{font-size:54.000000px;}
.fs0_c00040{font-size:59.760000px;}
.fs2_c00040{font-size:72.000000px;}
.y0_c00040{bottom:0.000000px;}
.y3_c00040{bottom:71.280000px;}
.y2_c00040{bottom:88.740000px;}
.y24_c00040{bottom:415.616400px;}
.y23_c00040{bottom:437.578200px;}
.y22_c00040{bottom:459.540000px;}
.y21_c00040{bottom:489.240000px;}
.y20_c00040{bottom:513.900000px;}
.y1f_c00040{bottom:536.040180px;}
.y1e_c00040{bottom:555.300000px;}
.y1d_c00040{bottom:574.379640px;}
.y1c_c00040{bottom:593.639460px;}
.y1b_c00040{bottom:608.220000px;}
.y1a_c00040{bottom:634.860000px;}
.y19_c00040{bottom:659.482740px;}
.y18_c00040{bottom:681.444540px;}
.y17_c00040{bottom:703.406340px;}
.y16_c00040{bottom:725.368140px;}
.y15_c00040{bottom:747.329940px;}
.y14_c00040{bottom:769.291740px;}
.y13_c00040{bottom:791.253540px;}
.y12_c00040{bottom:813.215340px;}
.y11_c00040{bottom:835.177140px;}
.y10_c00040{bottom:857.138940px;}
.yf_c00040{bottom:879.100740px;}
.ye_c00040{bottom:901.241820px;}
.yd_c00040{bottom:923.203620px;}
.yc_c00040{bottom:945.165420px;}
.yb_c00040{bottom:967.127220px;}
.ya_c00040{bottom:989.089020px;}
.y9_c00040{bottom:1011.050820px;}
.y8_c00040{bottom:1033.012620px;}
.y7_c00040{bottom:1054.974420px;}
.y6_c00040{bottom:1076.936220px;}
.y5_c00040{bottom:1098.898020px;}
.y4_c00040{bottom:1120.859820px;}
.y1_c00040{bottom:1163.520000px;}
.h6_c00040{height:34.625391px;}
.h7_c00040{height:34.626831px;}
.h3_c00040{height:35.991211px;}
.h4_c00040{height:42.894141px;}
.h2_c00040{height:43.390195px;}
.h5_c00040{height:52.277344px;}
.h0_c00040{height:1262.880000px;}
.h1_c00040{height:1263.000000px;}
.w0_c00040{width:892.980000px;}
.w1_c00040{width:893.250000px;}
.x0_c00040{left:0.000000px;}
.x1_c00040{left:84.960000px;}
.x4_c00040{left:99.896400px;}
.x5_c00040{left:106.197660px;}
.x3_c00040{left:442.620000px;}
.x2_c00040{left:446.400000px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls13_c00040{letter-spacing:-0.600320pt;}
.ls15_c00040{letter-spacing:-0.478080pt;}
.ls11_c00040{letter-spacing:-0.385920pt;}
.lse_c00040{letter-spacing:-0.300160pt;}
.lsf_c00040{letter-spacing:-0.257280pt;}
.ls10_c00040{letter-spacing:-0.214400pt;}
.ls8_c00040{letter-spacing:-0.212480pt;}
.lsc_c00040{letter-spacing:-0.192000pt;}
.ls12_c00040{letter-spacing:-0.128640pt;}
.lsb_c00040{letter-spacing:-0.053120pt;}
.ls7_c00040{letter-spacing:0.000000pt;}
.ls6_c00040{letter-spacing:0.021440pt;}
.lsd_c00040{letter-spacing:0.042880pt;}
.lsa_c00040{letter-spacing:0.053120pt;}
.ls4_c00040{letter-spacing:0.085760pt;}
.ls2_c00040{letter-spacing:0.159360pt;}
.ls14_c00040{letter-spacing:0.192000pt;}
.ls9_c00040{letter-spacing:0.265600pt;}
.ls3_c00040{letter-spacing:0.300160pt;}
.ls0_c00040{letter-spacing:0.361216pt;}
.ls1_c00040{letter-spacing:1.434240pt;}
.ls5_c00040{letter-spacing:65.820800pt;}
.ws1_c00040{word-spacing:-12.058240pt;}
.ws0_c00040{word-spacing:-12.005120pt;}
.wsb_c00040{word-spacing:-9.991040pt;}
.ws6_c00040{word-spacing:-9.733760pt;}
.ws9_c00040{word-spacing:-9.712320pt;}
.ws4_c00040{word-spacing:-9.690880pt;}
.ws8_c00040{word-spacing:-9.562240pt;}
.ws3_c00040{word-spacing:-9.476480pt;}
.ws7_c00040{word-spacing:-9.433600pt;}
.ws2_c00040{word-spacing:-9.390720pt;}
.ws5_c00040{word-spacing:-9.304960pt;}
.wsa_c00040{word-spacing:-9.090560pt;}
.ws28_c00040{word-spacing:-0.814720pt;}
.ws27_c00040{word-spacing:-0.128640pt;}
.wse_c00040{word-spacing:-0.106240pt;}
.ws23_c00040{word-spacing:-0.042880pt;}
.wsc_c00040{word-spacing:0.000000pt;}
.ws2a_c00040{word-spacing:0.064000pt;}
.ws26_c00040{word-spacing:0.171520pt;}
.ws1e_c00040{word-spacing:0.212480pt;}
.ws29_c00040{word-spacing:0.214400pt;}
.wsf_c00040{word-spacing:0.371840pt;}
.ws21_c00040{word-spacing:0.448000pt;}
.ws11_c00040{word-spacing:1.009280pt;}
.ws12_c00040{word-spacing:1.168640pt;}
.ws18_c00040{word-spacing:1.274880pt;}
.ws1b_c00040{word-spacing:1.487360pt;}
.wsd_c00040{word-spacing:1.646720pt;}
.ws22_c00040{word-spacing:1.758080pt;}
.ws24_c00040{word-spacing:1.800960pt;}
.ws16_c00040{word-spacing:1.806080pt;}
.ws17_c00040{word-spacing:1.912320pt;}
.ws25_c00040{word-spacing:2.144000pt;}
.ws10_c00040{word-spacing:2.284160pt;}
.ws1d_c00040{word-spacing:2.443520pt;}
.ws15_c00040{word-spacing:2.921600pt;}
.ws13_c00040{word-spacing:3.080960pt;}
.ws1c_c00040{word-spacing:3.187200pt;}
.ws14_c00040{word-spacing:3.559040pt;}
.ws1f_c00040{word-spacing:4.196480pt;}
.ws1a_c00040{word-spacing:4.355840pt;}
.ws19_c00040{word-spacing:4.833920pt;}
.ws20_c00040{word-spacing:5.630720pt;}
.ws2b_c00040{word-spacing:5.736960pt;}
.ws2c_c00040{word-spacing:6.108800pt;}
._0_c00040{margin-left:-1.057088pt;}
._1_c00040{width:1.030528pt;}
._2_c00040{width:4.642688pt;}
.fs3_c00040{font-size:42.880000pt;}
.fs1_c00040{font-size:48.000000pt;}
.fs0_c00040{font-size:53.120000pt;}
.fs2_c00040{font-size:64.000000pt;}
.y0_c00040{bottom:0.000000pt;}
.y3_c00040{bottom:63.360000pt;}
.y2_c00040{bottom:78.880000pt;}
.y24_c00040{bottom:369.436800pt;}
.y23_c00040{bottom:388.958400pt;}
.y22_c00040{bottom:408.480000pt;}
.y21_c00040{bottom:434.880000pt;}
.y20_c00040{bottom:456.800000pt;}
.y1f_c00040{bottom:476.480160pt;}
.y1e_c00040{bottom:493.600000pt;}
.y1d_c00040{bottom:510.559680pt;}
.y1c_c00040{bottom:527.679520pt;}
.y1b_c00040{bottom:540.640000pt;}
.y1a_c00040{bottom:564.320000pt;}
.y19_c00040{bottom:586.206880pt;}
.y18_c00040{bottom:605.728480pt;}
.y17_c00040{bottom:625.250080pt;}
.y16_c00040{bottom:644.771680pt;}
.y15_c00040{bottom:664.293280pt;}
.y14_c00040{bottom:683.814880pt;}
.y13_c00040{bottom:703.336480pt;}
.y12_c00040{bottom:722.858080pt;}
.y11_c00040{bottom:742.379680pt;}
.y10_c00040{bottom:761.901280pt;}
.yf_c00040{bottom:781.422880pt;}
.ye_c00040{bottom:801.103840pt;}
.yd_c00040{bottom:820.625440pt;}
.yc_c00040{bottom:840.147040pt;}
.yb_c00040{bottom:859.668640pt;}
.ya_c00040{bottom:879.190240pt;}
.y9_c00040{bottom:898.711840pt;}
.y8_c00040{bottom:918.233440pt;}
.y7_c00040{bottom:937.755040pt;}
.y6_c00040{bottom:957.276640pt;}
.y5_c00040{bottom:976.798240pt;}
.y4_c00040{bottom:996.319840pt;}
.y1_c00040{bottom:1034.240000pt;}
.h6_c00040{height:30.778125pt;}
.h7_c00040{height:30.779405pt;}
.h3_c00040{height:31.992188pt;}
.h4_c00040{height:38.128125pt;}
.h2_c00040{height:38.569063pt;}
.h5_c00040{height:46.468750pt;}
.h0_c00040{height:1122.560000pt;}
.h1_c00040{height:1122.666667pt;}
.w0_c00040{width:793.760000pt;}
.w1_c00040{width:794.000000pt;}
.x0_c00040{left:0.000000pt;}
.x1_c00040{left:75.520000pt;}
.x4_c00040{left:88.796800pt;}
.x5_c00040{left:94.397920pt;}
.x3_c00040{left:393.440000pt;}
.x2_c00040{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_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_ba0735fec79bde169ded228f.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00041;src:url('chunks/assets/font_9624244f2dfbdfcfc20994aa.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00041;src:url('chunks/assets/font_3abe64981ed8dcb74ebdd978.woff2')format("woff");}.ff3_c00041{font-family:ff3_c00041;line-height:0.936000;font-style:normal;font-weight:normal;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_506d1c4050cababb1905d8d5.woff2')format("woff");}.ff4_c00041{font-family:ff4_c00041;line-height:0.720000;font-style: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;}
.ls1_c00041{letter-spacing:-0.172800px;}
.ls2_c00041{letter-spacing:0.000000px;}
.ls0_c00041{letter-spacing:0.642000px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00041{word-spacing:0.000000px;}
.ws0_c00041{word-spacing:1.008000px;}
._0_c00041{margin-left:-1.040256px;}
._1_c00041{width:1.152000px;}
.fc2_c00041{color:rgb(0,0,0);}
.fc1_c00041{color:rgb(255,255,255);}
.fc0_c00041{color:rgb(238,35,12);}
.fs2_c00041{font-size:144.000000px;}
.fs1_c00041{font-size:192.000000px;}
.fs0_c00041{font-size:432.000000px;}
.y0_c00041{bottom:0.000000px;}
.y4_c00041{bottom:33.120000px;}
.y3_c00041{bottom:147.240000px;}
.y2_c00041{bottom:1385.076000px;}
.y1_c00041{bottom:1516.080000px;}
.h3_c00041{height:101.664000px;}
.h2_c00041{height:140.352000px;}
.h1_c00041{height:380.160000px;}
.h0_c00041{height:1620.000000px;}
.w0_c00041{width:2880.000000px;}
.x0_c00041{left:0.000000px;}
.x1_c00041{left:323.388000px;}
.x2_c00041{left:577.392000px;}
.x3_c00041{left:947.770050px;}
.x4_c00041{left:1429.218750px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls1_c00041{letter-spacing:-0.153600pt;}
.ls2_c00041{letter-spacing:0.000000pt;}
.ls0_c00041{letter-spacing:0.570667pt;}
.ws1_c00041{word-spacing:0.000000pt;}
.ws0_c00041{word-spacing:0.896000pt;}
._0_c00041{margin-left:-0.924672pt;}
._1_c00041{width:1.024000pt;}
.fs2_c00041{font-size:128.000000pt;}
.fs1_c00041{font-size:170.666667pt;}
.fs0_c00041{font-size:384.000000pt;}
.y0_c00041{bottom:0.000000pt;}
.y4_c00041{bottom:29.440000pt;}
.y3_c00041{bottom:130.880000pt;}
.y2_c00041{bottom:1231.178667pt;}
.y1_c00041{bottom:1347.626667pt;}
.h3_c00041{height:90.368000pt;}
.h2_c00041{height:124.757333pt;}
.h1_c00041{height:337.920000pt;}
.h0_c00041{height:1440.000000pt;}
.w0_c00041{width:2560.000000pt;}
.x0_c00041{left:0.000000pt;}
.x1_c00041{left:287.456000pt;}
.x2_c00041{left:513.237333pt;}
.x3_c00041{left:842.462267pt;}
.x4_c00041{left:1270.416667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_054869507fcf461b3c1651fa.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:0.940000;font-style:normal;font-weight:normal;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_92b1178ab5a214a9be73ba7a.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:0.720000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00042{vertical-align:0.000000px;}
.ls0_c00042{letter-spacing:0.000000px;}
.ls1_c00042{letter-spacing:0.147600px;}
.sc__c00042{text-shadow:none;}
.sc0_c00042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00042{-webkit-text-stroke:0px transparent;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00042{word-spacing:0.000000px;}
._0_c00042{margin-left:-1.008600px;}
.fc1_c00042{color:rgb(0,0,0);}
.fc0_c00042{color:rgb(255,255,255);}
.fs1_c00042{font-size:144.000000px;}
.fs0_c00042{font-size:246.000000px;}
.y0_c00042{bottom:0.000000px;}
.y5_c00042{bottom:33.120000px;}
.y4_c00042{bottom:639.387000px;}
.y3_c00042{bottom:712.818000px;}
.y2_c00042{bottom:786.249000px;}
.y1_c00042{bottom:859.680000px;}
.h2_c00042{height:101.664000px;}
.h1_c00042{height:179.826000px;}
.h0_c00042{height:1620.000000px;}
.w0_c00042{width:2880.000000px;}
.x0_c00042{left:0.000000px;}
.x2_c00042{left:304.185000px;}
.x3_c00042{left:312.733500px;}
.x1_c00042{left:333.828000px;}
.x4_c00042{left:506.028000px;}
.x5_c00042{left:1429.218750px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls0_c00042{letter-spacing:0.000000pt;}
.ls1_c00042{letter-spacing:0.131200pt;}
.ws0_c00042{word-spacing:0.000000pt;}
._0_c00042{margin-left:-0.896533pt;}
.fs1_c00042{font-size:128.000000pt;}
.fs0_c00042{font-size:218.666667pt;}
.y0_c00042{bottom:0.000000pt;}
.y5_c00042{bottom:29.440000pt;}
.y4_c00042{bottom:568.344000pt;}
.y3_c00042{bottom:633.616000pt;}
.y2_c00042{bottom:698.888000pt;}
.y1_c00042{bottom:764.160000pt;}
.h2_c00042{height:90.368000pt;}
.h1_c00042{height:159.845333pt;}
.h0_c00042{height:1440.000000pt;}
.w0_c00042{width:2560.000000pt;}
.x0_c00042{left:0.000000pt;}
.x2_c00042{left:270.386667pt;}
.x3_c00042{left:277.985333pt;}
.x1_c00042{left:296.736000pt;}
.x4_c00042{left:449.802667pt;}
.x5_c00042{left:1270.416667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_24d41f708d8ce35602833635.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:0.936000;font-style:normal;font-weight:normal;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_4eeb9db65239f462024da4cf.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:0.720000;font-style: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;}
.ls0_c00043{letter-spacing:0.000000px;}
.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:0.000000px;}
._1_c00043{margin-left:-1.076400px;}
._0_c00043{width:1.021200px;}
.fc1_c00043{color:rgb(0,0,0);}
.fc0_c00043{color:rgb(255,255,255);}
.fs1_c00043{font-size:144.000000px;}
.fs0_c00043{font-size:276.000000px;}
.y0_c00043{bottom:0.000000px;}
.y8_c00043{bottom:33.120000px;}
.y7_c00043{bottom:41.292000px;}
.y6_c00043{bottom:125.196000px;}
.y5_c00043{bottom:290.451000px;}
.y4_c00043{bottom:372.906000px;}
.y3_c00043{bottom:455.361000px;}
.y2_c00043{bottom:539.265000px;}
.y1_c00043{bottom:621.720000px;}
.h2_c00043{height:101.664000px;}
.h1_c00043{height:201.756000px;}
.h0_c00043{height:1620.000000px;}
.w0_c00043{width:2880.000000px;}
.x0_c00043{left:0.000000px;}
.x1_c00043{left:127.781250px;}
.x6_c00043{left:156.830250px;}
.x4_c00043{left:178.979250px;}
.x5_c00043{left:240.941250px;}
.x2_c00043{left:713.246250px;}
.x3_c00043{left:787.490250px;}
.x7_c00043{left:1115.792250px;}
.x8_c00043{left:1429.218750px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls0_c00043{letter-spacing:0.000000pt;}
.ws0_c00043{word-spacing:0.000000pt;}
._1_c00043{margin-left:-0.956800pt;}
._0_c00043{width:0.907733pt;}
.fs1_c00043{font-size:128.000000pt;}
.fs0_c00043{font-size:245.333333pt;}
.y0_c00043{bottom:0.000000pt;}
.y8_c00043{bottom:29.440000pt;}
.y7_c00043{bottom:36.704000pt;}
.y6_c00043{bottom:111.285333pt;}
.y5_c00043{bottom:258.178667pt;}
.y4_c00043{bottom:331.472000pt;}
.y3_c00043{bottom:404.765333pt;}
.y2_c00043{bottom:479.346667pt;}
.y1_c00043{bottom:552.640000pt;}
.h2_c00043{height:90.368000pt;}
.h1_c00043{height:179.338667pt;}
.h0_c00043{height:1440.000000pt;}
.w0_c00043{width:2560.000000pt;}
.x0_c00043{left:0.000000pt;}
.x1_c00043{left:113.583333pt;}
.x6_c00043{left:139.404667pt;}
.x4_c00043{left:159.092667pt;}
.x5_c00043{left:214.170000pt;}
.x2_c00043{left:633.996667pt;}
.x3_c00043{left:699.991333pt;}
.x7_c00043{left:991.815333pt;}
.x8_c00043{left:1270.416667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f4809f8631ce80bb9db3e5a1.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:0.940000;font-style:normal;font-weight:normal;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_04506f46198129c3a44bc92d.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:0.720000;font-style: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;}
.ls0_c00044{letter-spacing:0.000000px;}
.sc__c00044{text-shadow:none;}
.sc0_c00044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00044{-webkit-text-stroke:0px transparent;}
.sc0_c00044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00044{word-spacing:-41.700000px;}
.ws1_c00044{word-spacing:0.000000px;}
._1_c00044{margin-left:-1.050000px;}
._0_c00044{width:1.050000px;}
.fc1_c00044{color:rgb(0,0,0);}
.fc0_c00044{color:rgb(255,255,255);}
.fs1_c00044{font-size:144.000000px;}
.fs0_c00044{font-size:150.000000px;}
.y0_c00044{bottom:0.000000px;}
.y6_c00044{bottom:33.120000px;}
.y5_c00044{bottom:1186.560000px;}
.y4_c00044{bottom:1231.560000px;}
.y3_c00044{bottom:1321.560000px;}
.y2_c00044{bottom:1366.560000px;}
.y1_c00044{bottom:1411.560000px;}
.h2_c00044{height:101.664000px;}
.h1_c00044{height:109.650000px;}
.h0_c00044{height:1620.000000px;}
.w0_c00044{width:2880.000000px;}
.x0_c00044{left:0.000000px;}
.x6_c00044{left:1429.218750px;}
.x2_c00044{left:1792.590000px;}
.x1_c00044{left:1800.915000px;}
.x4_c00044{left:1875.652500px;}
.x3_c00044{left:1987.027500px;}
.x5_c00044{left:2235.165000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls0_c00044{letter-spacing:0.000000pt;}
.ws0_c00044{word-spacing:-37.066667pt;}
.ws1_c00044{word-spacing:0.000000pt;}
._1_c00044{margin-left:-0.933333pt;}
._0_c00044{width:0.933333pt;}
.fs1_c00044{font-size:128.000000pt;}
.fs0_c00044{font-size:133.333333pt;}
.y0_c00044{bottom:0.000000pt;}
.y6_c00044{bottom:29.440000pt;}
.y5_c00044{bottom:1054.720000pt;}
.y4_c00044{bottom:1094.720000pt;}
.y3_c00044{bottom:1174.720000pt;}
.y2_c00044{bottom:1214.720000pt;}
.y1_c00044{bottom:1254.720000pt;}
.h2_c00044{height:90.368000pt;}
.h1_c00044{height:97.466667pt;}
.h0_c00044{height:1440.000000pt;}
.w0_c00044{width:2560.000000pt;}
.x0_c00044{left:0.000000pt;}
.x6_c00044{left:1270.416667pt;}
.x2_c00044{left:1593.413333pt;}
.x1_c00044{left:1600.813333pt;}
.x4_c00044{left:1667.246667pt;}
.x3_c00044{left:1766.246667pt;}
.x5_c00044{left:1986.813333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bbcd126e1e65d8a3e028ab25.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:0.936000;font-style:normal;font-weight:normal;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_6f5f6b1dda012ad314715c01.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:0.720000;font-style: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;}
.ls3_c00045{letter-spacing:0.000000px;}
.ls2_c00045{letter-spacing:0.038400px;}
.ls1_c00045{letter-spacing:0.153600px;}
.ls0_c00045{letter-spacing:0.192000px;}
.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:-53.568000px;}
.ws1_c00045{word-spacing:0.000000px;}
._0_c00045{margin-left:-1.344000px;}
._1_c00045{width:2.496000px;}
.fc2_c00045{color:transparent;}
.fc1_c00045{color:rgb(0,0,0);}
.fc0_c00045{color:rgb(255,255,255);}
.fs1_c00045{font-size:144.000000px;}
.fs0_c00045{font-size:192.000000px;}
.y0_c00045{bottom:0.000000px;}
.y2_c00045{bottom:33.120000px;}
.y1_c00045{bottom:716.400000px;}
.h2_c00045{height:101.664000px;}
.h1_c00045{height:140.352000px;}
.h0_c00045{height:1620.000000px;}
.w0_c00045{width:2880.000000px;}
.x1_c00045{left:-2481.187500px;}
.x0_c00045{left:0.000000px;}
.x2_c00045{left:1429.218750px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls3_c00045{letter-spacing:0.000000pt;}
.ls2_c00045{letter-spacing:0.034133pt;}
.ls1_c00045{letter-spacing:0.136533pt;}
.ls0_c00045{letter-spacing:0.170667pt;}
.ws0_c00045{word-spacing:-47.616000pt;}
.ws1_c00045{word-spacing:0.000000pt;}
._0_c00045{margin-left:-1.194667pt;}
._1_c00045{width:2.218667pt;}
.fs1_c00045{font-size:128.000000pt;}
.fs0_c00045{font-size:170.666667pt;}
.y0_c00045{bottom:0.000000pt;}
.y2_c00045{bottom:29.440000pt;}
.y1_c00045{bottom:636.800000pt;}
.h2_c00045{height:90.368000pt;}
.h1_c00045{height:124.757333pt;}
.h0_c00045{height:1440.000000pt;}
.w0_c00045{width:2560.000000pt;}
.x1_c00045{left:-2205.500000pt;}
.x0_c00045{left:0.000000pt;}
.x2_c00045{left:1270.416667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6932bd8d31f76b7afb64ad98.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:0.936000;font-style:normal;font-weight:normal;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_e097dc07a4a3b2deabe0efe2.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:0.720000;font-style: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.318000px;}
.ls7_c00046{letter-spacing:-0.159000px;}
.ls2_c00046{letter-spacing:-0.127200px;}
.ls0_c00046{letter-spacing:-0.095400px;}
.ls4_c00046{letter-spacing:-0.063600px;}
.ls6_c00046{letter-spacing:-0.031800px;}
.ls8_c00046{letter-spacing:0.000000px;}
.ls3_c00046{letter-spacing:0.190800px;}
.ls5_c00046{letter-spacing:0.318000px;}
.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:-88.594800px;}
.ws1_c00046{word-spacing:0.000000px;}
._1_c00046{margin-left:-1.272000px;}
._0_c00046{width:1.272000px;}
.fc1_c00046{color:rgb(0,0,0);}
.fc0_c00046{color:rgb(255,255,255);}
.fs1_c00046{font-size:144.000000px;}
.fs0_c00046{font-size:318.000000px;}
.y0_c00046{bottom:0.000000px;}
.yf_c00046{bottom:33.120000px;}
.ye_c00046{bottom:159.082500px;}
.yd_c00046{bottom:255.198000px;}
.yc_c00046{bottom:349.882500px;}
.yb_c00046{bottom:445.680000px;}
.ya_c00046{bottom:541.795500px;}
.y9_c00046{bottom:636.082500px;}
.y8_c00046{bottom:732.198000px;}
.y7_c00046{bottom:826.882500px;}
.y6_c00046{bottom:922.680000px;}
.y5_c00046{bottom:1018.795500px;}
.y4_c00046{bottom:1113.082500px;}
.y3_c00046{bottom:1209.198000px;}
.y2_c00046{bottom:1303.882500px;}
.y1_c00046{bottom:1399.680000px;}
.h2_c00046{height:101.664000px;}
.h1_c00046{height:232.458000px;}
.h0_c00046{height:1620.000000px;}
.w0_c00046{width:2880.000000px;}
.x0_c00046{left:0.000000px;}
.x7_c00046{left:174.754050px;}
.x9_c00046{left:182.942550px;}
.x4_c00046{left:185.009550px;}
.x2_c00046{left:191.767050px;}
.x8_c00046{left:193.277550px;}
.x1_c00046{left:197.570550px;}
.xa_c00046{left:234.220050px;}
.xc_c00046{left:241.852050px;}
.x5_c00046{left:251.392050px;}
.x3_c00046{left:334.549050px;}
.xb_c00046{left:338.285550px;}
.x6_c00046{left:358.081050px;}
.xd_c00046{left:399.262050px;}
.xe_c00046{left:1429.218750px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls1_c00046{letter-spacing:-0.282667pt;}
.ls7_c00046{letter-spacing:-0.141333pt;}
.ls2_c00046{letter-spacing:-0.113067pt;}
.ls0_c00046{letter-spacing:-0.084800pt;}
.ls4_c00046{letter-spacing:-0.056533pt;}
.ls6_c00046{letter-spacing:-0.028267pt;}
.ls8_c00046{letter-spacing:0.000000pt;}
.ls3_c00046{letter-spacing:0.169600pt;}
.ls5_c00046{letter-spacing:0.282667pt;}
.ws0_c00046{word-spacing:-78.750933pt;}
.ws1_c00046{word-spacing:0.000000pt;}
._1_c00046{margin-left:-1.130667pt;}
._0_c00046{width:1.130667pt;}
.fs1_c00046{font-size:128.000000pt;}
.fs0_c00046{font-size:282.666667pt;}
.y0_c00046{bottom:0.000000pt;}
.yf_c00046{bottom:29.440000pt;}
.ye_c00046{bottom:141.406667pt;}
.yd_c00046{bottom:226.842667pt;}
.yc_c00046{bottom:311.006667pt;}
.yb_c00046{bottom:396.160000pt;}
.ya_c00046{bottom:481.596000pt;}
.y9_c00046{bottom:565.406667pt;}
.y8_c00046{bottom:650.842667pt;}
.y7_c00046{bottom:735.006667pt;}
.y6_c00046{bottom:820.160000pt;}
.y5_c00046{bottom:905.596000pt;}
.y4_c00046{bottom:989.406667pt;}
.y3_c00046{bottom:1074.842667pt;}
.y2_c00046{bottom:1159.006667pt;}
.y1_c00046{bottom:1244.160000pt;}
.h2_c00046{height:90.368000pt;}
.h1_c00046{height:206.629333pt;}
.h0_c00046{height:1440.000000pt;}
.w0_c00046{width:2560.000000pt;}
.x0_c00046{left:0.000000pt;}
.x7_c00046{left:155.336933pt;}
.x9_c00046{left:162.615600pt;}
.x4_c00046{left:164.452933pt;}
.x2_c00046{left:170.459600pt;}
.x8_c00046{left:171.802267pt;}
.x1_c00046{left:175.618267pt;}
.xa_c00046{left:208.195600pt;}
.xc_c00046{left:214.979600pt;}
.x5_c00046{left:223.459600pt;}
.x3_c00046{left:297.376933pt;}
.xb_c00046{left:300.698267pt;}
.x6_c00046{left:318.294267pt;}
.xd_c00046{left:354.899600pt;}
.xe_c00046{left:1270.416667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c0b31215714c7a23985f6c98.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:0.936000;font-style:normal;font-weight:normal;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_f34490be07a82d724aaabb3f.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:0.720000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00047{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00047{vertical-align:0.000000px;}
.ls2_c00047{letter-spacing:-0.307200px;}
.ls1_c00047{letter-spacing:-0.249600px;}
.ls5_c00047{letter-spacing:-0.230400px;}
.ls7_c00047{letter-spacing:-0.211200px;}
.ls6_c00047{letter-spacing:-0.172800px;}
.ls0_c00047{letter-spacing:-0.134400px;}
.ls8_c00047{letter-spacing:0.000000px;}
.ls3_c00047{letter-spacing:0.096000px;}
.ls4_c00047{letter-spacing:0.153600px;}
.sc__c00047{text-shadow:none;}
.sc0_c00047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00047{-webkit-text-stroke:0px transparent;}
.sc0_c00047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00047{word-spacing:-53.068800px;}
.ws1_c00047{word-spacing:0.000000px;}
._1_c00047{margin-left:-1.152000px;}
._0_c00047{width:1.286400px;}
.fc1_c00047{color:rgb(0,0,255);}
.fc2_c00047{color:rgb(0,0,0);}
.fc0_c00047{color:rgb(255,255,255);}
.fs1_c00047{font-size:144.000000px;}
.fs0_c00047{font-size:192.000000px;}
.y0_c00047{bottom:0.000000px;}
.yd_c00047{bottom:33.120000px;}
.yc_c00047{bottom:71.376000px;}
.yb_c00047{bottom:129.696000px;}
.ya_c00047{bottom:186.912000px;}
.y9_c00047{bottom:243.792000px;}
.y8_c00047{bottom:302.448000px;}
.y7_c00047{bottom:359.328000px;}
.y6_c00047{bottom:417.648000px;}
.y5_c00047{bottom:474.864000px;}
.y4_c00047{bottom:531.744000px;}
.y3_c00047{bottom:590.400000px;}
.y2_c00047{bottom:647.280000px;}
.y1_c00047{bottom:705.600000px;}
.h2_c00047{height:101.664000px;}
.h1_c00047{height:140.352000px;}
.h0_c00047{height:1620.000000px;}
.w0_c00047{width:2880.000000px;}
.x0_c00047{left:0.000000px;}
.xd_c00047{left:1429.218750px;}
.xa_c00047{left:1871.298000px;}
.x4_c00047{left:1877.970000px;}
.x1_c00047{left:1881.687000px;}
.xb_c00047{left:1891.458000px;}
.x8_c00047{left:1904.418000px;}
.x9_c00047{left:1907.778000px;}
.x2_c00047{left:1914.495000px;}
.x7_c00047{left:1919.394000px;}
.x5_c00047{left:1925.586000px;}
.x6_c00047{left:1927.362000px;}
.xc_c00047{left:1941.810000px;}
.x3_c00047{left:2015.298000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls2_c00047{letter-spacing:-0.273067pt;}
.ls1_c00047{letter-spacing:-0.221867pt;}
.ls5_c00047{letter-spacing:-0.204800pt;}
.ls7_c00047{letter-spacing:-0.187733pt;}
.ls6_c00047{letter-spacing:-0.153600pt;}
.ls0_c00047{letter-spacing:-0.119467pt;}
.ls8_c00047{letter-spacing:0.000000pt;}
.ls3_c00047{letter-spacing:0.085333pt;}
.ls4_c00047{letter-spacing:0.136533pt;}
.ws0_c00047{word-spacing:-47.172267pt;}
.ws1_c00047{word-spacing:0.000000pt;}
._1_c00047{margin-left:-1.024000pt;}
._0_c00047{width:1.143467pt;}
.fs1_c00047{font-size:128.000000pt;}
.fs0_c00047{font-size:170.666667pt;}
.y0_c00047{bottom:0.000000pt;}
.yd_c00047{bottom:29.440000pt;}
.yc_c00047{bottom:63.445333pt;}
.yb_c00047{bottom:115.285333pt;}
.ya_c00047{bottom:166.144000pt;}
.y9_c00047{bottom:216.704000pt;}
.y8_c00047{bottom:268.842667pt;}
.y7_c00047{bottom:319.402667pt;}
.y6_c00047{bottom:371.242667pt;}
.y5_c00047{bottom:422.101333pt;}
.y4_c00047{bottom:472.661333pt;}
.y3_c00047{bottom:524.800000pt;}
.y2_c00047{bottom:575.360000pt;}
.y1_c00047{bottom:627.200000pt;}
.h2_c00047{height:90.368000pt;}
.h1_c00047{height:124.757333pt;}
.h0_c00047{height:1440.000000pt;}
.w0_c00047{width:2560.000000pt;}
.x0_c00047{left:0.000000pt;}
.xd_c00047{left:1270.416667pt;}
.xa_c00047{left:1663.376000pt;}
.x4_c00047{left:1669.306667pt;}
.x1_c00047{left:1672.610667pt;}
.xb_c00047{left:1681.296000pt;}
.x8_c00047{left:1692.816000pt;}
.x9_c00047{left:1695.802667pt;}
.x2_c00047{left:1701.773333pt;}
.x7_c00047{left:1706.128000pt;}
.x5_c00047{left:1711.632000pt;}
.x6_c00047{left:1713.210667pt;}
.xc_c00047{left:1726.053333pt;}
.x3_c00047{left:1791.376000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_296fbabb5addbb3d45967150.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:0.936000;font-style:normal;font-weight:normal;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_cca61ac2adc3570d648cf776.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:0.720000;font-style: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);}
.v1_c00048{vertical-align:-89.280000px;}
.v0_c00048{vertical-align:0.000000px;}
.ls1_c00048{letter-spacing:-0.351000px;}
.ls6_c00048{letter-spacing:-0.108000px;}
.ls4_c00048{letter-spacing:-0.081000px;}
.ls8_c00048{letter-spacing:0.000000px;}
.ls2_c00048{letter-spacing:0.027000px;}
.ls3_c00048{letter-spacing:0.081000px;}
.ls0_c00048{letter-spacing:0.162000px;}
.ls7_c00048{letter-spacing:0.216000px;}
.ls5_c00048{letter-spacing:0.270000px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00048{word-spacing:-75.222000px;}
.ws1_c00048{word-spacing:0.000000px;}
._1_c00048{margin-left:-1.350000px;}
._0_c00048{width:1.080000px;}
._2_c00048{width:1373.403600px;}
.fc1_c00048{color:rgb(0,0,0);}
.fc0_c00048{color:rgb(255,255,255);}
.fs1_c00048{font-size:144.000000px;}
.fs0_c00048{font-size:270.000000px;}
.y0_c00048{bottom:0.000000px;}
.y12_c00048{bottom:55.440000px;}
.y11_c00048{bottom:136.440000px;}
.y10_c00048{bottom:217.440000px;}
.yf_c00048{bottom:298.440000px;}
.ye_c00048{bottom:379.440000px;}
.yd_c00048{bottom:460.440000px;}
.yc_c00048{bottom:541.440000px;}
.yb_c00048{bottom:703.440000px;}
.ya_c00048{bottom:784.440000px;}
.y9_c00048{bottom:865.440000px;}
.y8_c00048{bottom:946.440000px;}
.y7_c00048{bottom:1027.440000px;}
.y6_c00048{bottom:1108.440000px;}
.y5_c00048{bottom:1189.440000px;}
.y4_c00048{bottom:1270.440000px;}
.y3_c00048{bottom:1351.440000px;}
.y2_c00048{bottom:1432.440000px;}
.y1_c00048{bottom:1513.440000px;}
.h1_c00048{height:197.370000px;}
.h0_c00048{height:1620.000000px;}
.w0_c00048{width:2880.000000px;}
.x0_c00048{left:0.000000px;}
.x5_c00048{left:273.248850px;}
.x2_c00048{left:282.226350px;}
.x4_c00048{left:287.491350px;}
.x9_c00048{left:294.511350px;}
.xc_c00048{left:295.523850px;}
.x7_c00048{left:297.076350px;}
.x1_c00048{left:302.003850px;}
.xf_c00048{left:315.098850px;}
.x8_c00048{left:336.428850px;}
.xa_c00048{left:358.568850px;}
.xe_c00048{left:361.876350px;}
.x3_c00048{left:371.461350px;}
.x6_c00048{left:373.216350px;}
.x10_c00048{left:390.158850px;}
.x11_c00048{left:410.881350px;}
.xd_c00048{left:450.098850px;}
.xb_c00048{left:635.858850px;}
@media print{
.v1_c00048{vertical-align:-79.360000pt;}
.v0_c00048{vertical-align:0.000000pt;}
.ls1_c00048{letter-spacing:-0.312000pt;}
.ls6_c00048{letter-spacing:-0.096000pt;}
.ls4_c00048{letter-spacing:-0.072000pt;}
.ls8_c00048{letter-spacing:0.000000pt;}
.ls2_c00048{letter-spacing:0.024000pt;}
.ls3_c00048{letter-spacing:0.072000pt;}
.ls0_c00048{letter-spacing:0.144000pt;}
.ls7_c00048{letter-spacing:0.192000pt;}
.ls5_c00048{letter-spacing:0.240000pt;}
.ws0_c00048{word-spacing:-66.864000pt;}
.ws1_c00048{word-spacing:0.000000pt;}
._1_c00048{margin-left:-1.200000pt;}
._0_c00048{width:0.960000pt;}
._2_c00048{width:1220.803200pt;}
.fs1_c00048{font-size:128.000000pt;}
.fs0_c00048{font-size:240.000000pt;}
.y0_c00048{bottom:0.000000pt;}
.y12_c00048{bottom:49.280000pt;}
.y11_c00048{bottom:121.280000pt;}
.y10_c00048{bottom:193.280000pt;}
.yf_c00048{bottom:265.280000pt;}
.ye_c00048{bottom:337.280000pt;}
.yd_c00048{bottom:409.280000pt;}
.yc_c00048{bottom:481.280000pt;}
.yb_c00048{bottom:625.280000pt;}
.ya_c00048{bottom:697.280000pt;}
.y9_c00048{bottom:769.280000pt;}
.y8_c00048{bottom:841.280000pt;}
.y7_c00048{bottom:913.280000pt;}
.y6_c00048{bottom:985.280000pt;}
.y5_c00048{bottom:1057.280000pt;}
.y4_c00048{bottom:1129.280000pt;}
.y3_c00048{bottom:1201.280000pt;}
.y2_c00048{bottom:1273.280000pt;}
.y1_c00048{bottom:1345.280000pt;}
.h1_c00048{height:175.440000pt;}
.h0_c00048{height:1440.000000pt;}
.w0_c00048{width:2560.000000pt;}
.x0_c00048{left:0.000000pt;}
.x5_c00048{left:242.887867pt;}
.x2_c00048{left:250.867867pt;}
.x4_c00048{left:255.547867pt;}
.x9_c00048{left:261.787867pt;}
.xc_c00048{left:262.687867pt;}
.x7_c00048{left:264.067867pt;}
.x1_c00048{left:268.447867pt;}
.xf_c00048{left:280.087867pt;}
.x8_c00048{left:299.047867pt;}
.xa_c00048{left:318.727867pt;}
.xe_c00048{left:321.667867pt;}
.x3_c00048{left:330.187867pt;}
.x6_c00048{left:331.747867pt;}
.x10_c00048{left:346.807867pt;}
.x11_c00048{left:365.227867pt;}
.xd_c00048{left:400.087867pt;}
.xb_c00048{left:565.207867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4bdda535cdebd78aaa317d41.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:0.919000;font-style:normal;font-weight:normal;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_5d5f2e27e36c33953e76b885.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:0.720000;font-style: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;}
.ls3_c00049{letter-spacing:-0.042600px;}
.ls4_c00049{letter-spacing:0.000000px;}
.ls0_c00049{letter-spacing:0.085200px;}
.ls2_c00049{letter-spacing:0.170400px;}
.ls1_c00049{letter-spacing:0.298200px;}
.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:-118.598400px;}
.ws1_c00049{word-spacing:0.000000px;}
._0_c00049{margin-left:-1.278000px;}
.fc1_c00049{color:rgb(0,0,0);}
.fc0_c00049{color:rgb(255,255,255);}
.fs1_c00049{font-size:144.000000px;}
.fs0_c00049{font-size:426.000000px;}
.y0_c00049{bottom:0.000000px;}
.y6_c00049{bottom:33.120000px;}
.y5_c00049{bottom:491.998500px;}
.y4_c00049{bottom:619.798500px;}
.y3_c00049{bottom:747.279000px;}
.y2_c00049{bottom:874.759500px;}
.y1_c00049{bottom:1002.240000px;}
.h2_c00049{height:101.664000px;}
.h1_c00049{height:304.164000px;}
.h0_c00049{height:1620.000000px;}
.w0_c00049{width:2880.000000px;}
.x0_c00049{left:0.000000px;}
.x1_c00049{left:1309.486650px;}
.x3_c00049{left:1356.985650px;}
.x2_c00049{left:1358.902650px;}
.x4_c00049{left:1375.729650px;}
.x6_c00049{left:1429.218750px;}
.x5_c00049{left:1838.365650px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls3_c00049{letter-spacing:-0.037867pt;}
.ls4_c00049{letter-spacing:0.000000pt;}
.ls0_c00049{letter-spacing:0.075733pt;}
.ls2_c00049{letter-spacing:0.151467pt;}
.ls1_c00049{letter-spacing:0.265067pt;}
.ws0_c00049{word-spacing:-105.420800pt;}
.ws1_c00049{word-spacing:0.000000pt;}
._0_c00049{margin-left:-1.136000pt;}
.fs1_c00049{font-size:128.000000pt;}
.fs0_c00049{font-size:378.666667pt;}
.y0_c00049{bottom:0.000000pt;}
.y6_c00049{bottom:29.440000pt;}
.y5_c00049{bottom:437.332000pt;}
.y4_c00049{bottom:550.932000pt;}
.y3_c00049{bottom:664.248000pt;}
.y2_c00049{bottom:777.564000pt;}
.y1_c00049{bottom:890.880000pt;}
.h2_c00049{height:90.368000pt;}
.h1_c00049{height:270.368000pt;}
.h0_c00049{height:1440.000000pt;}
.w0_c00049{width:2560.000000pt;}
.x0_c00049{left:0.000000pt;}
.x1_c00049{left:1163.988133pt;}
.x3_c00049{left:1206.209467pt;}
.x2_c00049{left:1207.913467pt;}
.x4_c00049{left:1222.870800pt;}
.x6_c00049{left:1270.416667pt;}
.x5_c00049{left:1634.102800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e55034d34671ad44a3745fd1.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:0.929000;font-style:normal;font-weight:normal;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_e873d747970e5ef210ef305b.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:0.720000;font-style: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;}
.ls6_c00050{letter-spacing:-0.216000px;}
.ls4_c00050{letter-spacing:-0.072000px;}
.ls5_c00050{letter-spacing:0.000000px;}
.ls3_c00050{letter-spacing:0.036000px;}
.ls1_c00050{letter-spacing:0.108000px;}
.ls7_c00050{letter-spacing:0.187200px;}
.ls0_c00050{letter-spacing:0.216000px;}
.ls2_c00050{letter-spacing:0.288000px;}
.sc__c00050{text-shadow:none;}
.sc0_c00050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00050{-webkit-text-stroke:0px transparent;}
.sc0_c00050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00050{word-spacing:0.000000px;}
._0_c00050{margin-left:-1.080000px;}
._1_c00050{width:1.080000px;}
.fc1_c00050{color:rgb(0,0,0);}
.fc0_c00050{color:rgb(255,255,255);}
.fs1_c00050{font-size:144.000000px;}
.fs0_c00050{font-size:360.000000px;}
.y0_c00050{bottom:0.000000px;}
.yc_c00050{bottom:33.120000px;}
.yb_c00050{bottom:54.720000px;}
.ya_c00050{bottom:162.720000px;}
.y9_c00050{bottom:270.720000px;}
.y8_c00050{bottom:378.720000px;}
.y7_c00050{bottom:486.720000px;}
.y6_c00050{bottom:594.720000px;}
.y5_c00050{bottom:702.720000px;}
.y4_c00050{bottom:810.720000px;}
.y3_c00050{bottom:918.720000px;}
.y2_c00050{bottom:1026.720000px;}
.y1_c00050{bottom:1134.720000px;}
.h2_c00050{height:101.664000px;}
.h1_c00050{height:260.640000px;}
.h0_c00050{height:1620.000000px;}
.w0_c00050{width:2880.000000px;}
.x0_c00050{left:0.000000px;}
.xb_c00050{left:1419.187350px;}
.x3_c00050{left:2144.664150px;}
.x9_c00050{left:2154.024150px;}
.x6_c00050{left:2160.594150px;}
.x2_c00050{left:2204.874150px;}
.x4_c00050{left:2221.434150px;}
.x5_c00050{left:2223.144150px;}
.x7_c00050{left:2227.284150px;}
.x1_c00050{left:2273.184150px;}
.x8_c00050{left:2286.594150px;}
.xa_c00050{left:2290.734150px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls6_c00050{letter-spacing:-0.192000pt;}
.ls4_c00050{letter-spacing:-0.064000pt;}
.ls5_c00050{letter-spacing:0.000000pt;}
.ls3_c00050{letter-spacing:0.032000pt;}
.ls1_c00050{letter-spacing:0.096000pt;}
.ls7_c00050{letter-spacing:0.166400pt;}
.ls0_c00050{letter-spacing:0.192000pt;}
.ls2_c00050{letter-spacing:0.256000pt;}
.ws0_c00050{word-spacing:0.000000pt;}
._0_c00050{margin-left:-0.960000pt;}
._1_c00050{width:0.960000pt;}
.fs1_c00050{font-size:128.000000pt;}
.fs0_c00050{font-size:320.000000pt;}
.y0_c00050{bottom:0.000000pt;}
.yc_c00050{bottom:29.440000pt;}
.yb_c00050{bottom:48.640000pt;}
.ya_c00050{bottom:144.640000pt;}
.y9_c00050{bottom:240.640000pt;}
.y8_c00050{bottom:336.640000pt;}
.y7_c00050{bottom:432.640000pt;}
.y6_c00050{bottom:528.640000pt;}
.y5_c00050{bottom:624.640000pt;}
.y4_c00050{bottom:720.640000pt;}
.y3_c00050{bottom:816.640000pt;}
.y2_c00050{bottom:912.640000pt;}
.y1_c00050{bottom:1008.640000pt;}
.h2_c00050{height:90.368000pt;}
.h1_c00050{height:231.680000pt;}
.h0_c00050{height:1440.000000pt;}
.w0_c00050{width:2560.000000pt;}
.x0_c00050{left:0.000000pt;}
.xb_c00050{left:1261.499867pt;}
.x3_c00050{left:1906.368133pt;}
.x9_c00050{left:1914.688133pt;}
.x6_c00050{left:1920.528133pt;}
.x2_c00050{left:1959.888133pt;}
.x4_c00050{left:1974.608133pt;}
.x5_c00050{left:1976.128133pt;}
.x7_c00050{left:1979.808133pt;}
.x1_c00050{left:2020.608133pt;}
.x8_c00050{left:2032.528133pt;}
.xa_c00050{left:2036.208133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_94a645b52b8905934dd8cd91.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:0.936000;font-style:normal;font-weight:normal;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_506d1c4050cababb1905d8d5.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:0.720000;font-style: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;}
.ls2_c00051{letter-spacing:-0.182400px;}
.ls3_c00051{letter-spacing:-0.022800px;}
.ls1_c00051{letter-spacing:0.000000px;}
.ls4_c00051{letter-spacing:0.187200px;}
.ls0_c00051{letter-spacing:0.364800px;}
.sc__c00051{text-shadow:none;}
.sc0_c00051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00051{-webkit-text-stroke:0px transparent;}
.sc0_c00051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00051{word-spacing:-63.361200px;}
.ws1_c00051{word-spacing:0.000000px;}
._0_c00051{margin-left:-1.368000px;}
._1_c00051{width:1.140000px;}
.fc1_c00051{color:rgb(0,0,0);}
.fc0_c00051{color:rgb(255,255,255);}
.fs1_c00051{font-size:144.000000px;}
.fs0_c00051{font-size:228.000000px;}
.y0_c00051{bottom:0.000000px;}
.yf_c00051{bottom:33.120000px;}
.ye_c00051{bottom:260.298000px;}
.yd_c00051{bottom:327.957000px;}
.yc_c00051{bottom:396.699000px;}
.yb_c00051{bottom:465.840000px;}
.ya_c00051{bottom:533.157000px;}
.y9_c00051{bottom:602.298000px;}
.y8_c00051{bottom:669.957000px;}
.y7_c00051{bottom:738.699000px;}
.y6_c00051{bottom:807.840000px;}
.y5_c00051{bottom:875.157000px;}
.y4_c00051{bottom:944.298000px;}
.y3_c00051{bottom:1011.957000px;}
.y2_c00051{bottom:1080.699000px;}
.y1_c00051{bottom:1149.840000px;}
.h2_c00051{height:101.664000px;}
.h1_c00051{height:166.668000px;}
.h0_c00051{height:1620.000000px;}
.w0_c00051{width:2880.000000px;}
.x0_c00051{left:0.000000px;}
.xe_c00051{left:1419.187350px;}
.x6_c00051{left:1788.895500px;}
.x3_c00051{left:1800.637500px;}
.x9_c00051{left:1828.681500px;}
.x7_c00051{left:1832.215500px;}
.x8_c00051{left:1847.035500px;}
.x2_c00051{left:1848.802500px;}
.x5_c00051{left:1857.352500px;}
.x4_c00051{left:1868.239500px;}
.xa_c00051{left:1873.939500px;}
.x1_c00051{left:1904.092500px;}
.xc_c00051{left:1906.771500px;}
.xb_c00051{left:1926.721500px;}
.xd_c00051{left:1998.199500px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls2_c00051{letter-spacing:-0.162133pt;}
.ls3_c00051{letter-spacing:-0.020267pt;}
.ls1_c00051{letter-spacing:0.000000pt;}
.ls4_c00051{letter-spacing:0.166400pt;}
.ls0_c00051{letter-spacing:0.324267pt;}
.ws0_c00051{word-spacing:-56.321067pt;}
.ws1_c00051{word-spacing:0.000000pt;}
._0_c00051{margin-left:-1.216000pt;}
._1_c00051{width:1.013333pt;}
.fs1_c00051{font-size:128.000000pt;}
.fs0_c00051{font-size:202.666667pt;}
.y0_c00051{bottom:0.000000pt;}
.yf_c00051{bottom:29.440000pt;}
.ye_c00051{bottom:231.376000pt;}
.yd_c00051{bottom:291.517333pt;}
.yc_c00051{bottom:352.621333pt;}
.yb_c00051{bottom:414.080000pt;}
.ya_c00051{bottom:473.917333pt;}
.y9_c00051{bottom:535.376000pt;}
.y8_c00051{bottom:595.517333pt;}
.y7_c00051{bottom:656.621333pt;}
.y6_c00051{bottom:718.080000pt;}
.y5_c00051{bottom:777.917333pt;}
.y4_c00051{bottom:839.376000pt;}
.y3_c00051{bottom:899.517333pt;}
.y2_c00051{bottom:960.621333pt;}
.y1_c00051{bottom:1022.080000pt;}
.h2_c00051{height:90.368000pt;}
.h1_c00051{height:148.149333pt;}
.h0_c00051{height:1440.000000pt;}
.w0_c00051{width:2560.000000pt;}
.x0_c00051{left:0.000000pt;}
.xe_c00051{left:1261.499867pt;}
.x6_c00051{left:1590.129333pt;}
.x3_c00051{left:1600.566667pt;}
.x9_c00051{left:1625.494667pt;}
.x7_c00051{left:1628.636000pt;}
.x8_c00051{left:1641.809333pt;}
.x2_c00051{left:1643.380000pt;}
.x5_c00051{left:1650.980000pt;}
.x4_c00051{left:1660.657333pt;}
.xa_c00051{left:1665.724000pt;}
.x1_c00051{left:1692.526667pt;}
.xc_c00051{left:1694.908000pt;}
.xb_c00051{left:1712.641333pt;}
.xd_c00051{left:1776.177333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_be7cba948c234b14e0fc9e7c.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:0.894000;font-style:normal;font-weight:normal;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_54b6cd5e59ac332da46c451a.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:0.936000;font-style:normal;font-weight:normal;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_57eb8551a2b9dd0b0b2a8c4f.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:0.720000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00052{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.ls5_c00052{letter-spacing:-0.249600px;}
.ls2_c00052{letter-spacing:-0.230400px;}
.ls0_c00052{letter-spacing:0.000000px;}
.ls3_c00052{letter-spacing:0.038400px;}
.ls6_c00052{letter-spacing:0.187200px;}
.ls1_c00052{letter-spacing:0.192000px;}
.ls4_c00052{letter-spacing:0.307200px;}
.sc__c00052{text-shadow:none;}
.sc0_c00052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00052{-webkit-text-stroke:0px transparent;}
.sc0_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00052{word-spacing:-53.414400px;}
.ws1_c00052{word-spacing:0.000000px;}
._1_c00052{margin-left:-1.344000px;}
._0_c00052{width:1.222200px;}
.fc2_c00052{color:rgb(0,0,255);}
.fc3_c00052{color:rgb(0,0,0);}
.fc1_c00052{color:rgb(255,255,255);}
.fc0_c00052{color:rgb(0,77,128);}
.fs2_c00052{font-size:144.000000px;}
.fs1_c00052{font-size:192.000000px;}
.fs0_c00052{font-size:582.000000px;}
.y0_c00052{bottom:0.000000px;}
.ya_c00052{bottom:33.120000px;}
.y9_c00052{bottom:89.304000px;}
.y8_c00052{bottom:146.520000px;}
.y7_c00052{bottom:203.400000px;}
.y6_c00052{bottom:261.744000px;}
.y5_c00052{bottom:318.960000px;}
.y4_c00052{bottom:377.280000px;}
.y3_c00052{bottom:1058.698500px;}
.y2_c00052{bottom:1232.571000px;}
.y1_c00052{bottom:1406.880000px;}
.h3_c00052{height:101.664000px;}
.h2_c00052{height:140.352000px;}
.h1_c00052{height:394.596000px;}
.h0_c00052{height:1620.000000px;}
.w0_c00052{width:2880.000000px;}
.x0_c00052{left:0.000000px;}
.x2_c00052{left:255.385200px;}
.x1_c00052{left:373.822200px;}
.x3_c00052{left:794.753700px;}
.x9_c00052{left:1419.187350px;}
.x8_c00052{left:2107.342500px;}
.x4_c00052{left:2115.766500px;}
.x5_c00052{left:2117.734500px;}
.x6_c00052{left:2120.086500px;}
.x7_c00052{left:2212.606500px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls5_c00052{letter-spacing:-0.221867pt;}
.ls2_c00052{letter-spacing:-0.204800pt;}
.ls0_c00052{letter-spacing:0.000000pt;}
.ls3_c00052{letter-spacing:0.034133pt;}
.ls6_c00052{letter-spacing:0.166400pt;}
.ls1_c00052{letter-spacing:0.170667pt;}
.ls4_c00052{letter-spacing:0.273067pt;}
.ws0_c00052{word-spacing:-47.479467pt;}
.ws1_c00052{word-spacing:0.000000pt;}
._1_c00052{margin-left:-1.194667pt;}
._0_c00052{width:1.086400pt;}
.fs2_c00052{font-size:128.000000pt;}
.fs1_c00052{font-size:170.666667pt;}
.fs0_c00052{font-size:517.333333pt;}
.y0_c00052{bottom:0.000000pt;}
.ya_c00052{bottom:29.440000pt;}
.y9_c00052{bottom:79.381333pt;}
.y8_c00052{bottom:130.240000pt;}
.y7_c00052{bottom:180.800000pt;}
.y6_c00052{bottom:232.661333pt;}
.y5_c00052{bottom:283.520000pt;}
.y4_c00052{bottom:335.360000pt;}
.y3_c00052{bottom:941.065333pt;}
.y2_c00052{bottom:1095.618667pt;}
.y1_c00052{bottom:1250.560000pt;}
.h3_c00052{height:90.368000pt;}
.h2_c00052{height:124.757333pt;}
.h1_c00052{height:350.752000pt;}
.h0_c00052{height:1440.000000pt;}
.w0_c00052{width:2560.000000pt;}
.x0_c00052{left:0.000000pt;}
.x2_c00052{left:227.009067pt;}
.x1_c00052{left:332.286400pt;}
.x3_c00052{left:706.447733pt;}
.x9_c00052{left:1261.499867pt;}
.x8_c00052{left:1873.193333pt;}
.x4_c00052{left:1880.681333pt;}
.x5_c00052{left:1882.430667pt;}
.x6_c00052{left:1884.521333pt;}
.x7_c00052{left:1966.761333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_544145fad5ace887ce2abaad.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00053{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me_c00053{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1_c00053{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mc_c00053{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4_c00053{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mf_c00053{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.md_c00053{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m2_c00053{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma_c00053{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,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);}
.m7_c00053{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m10_c00053{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m9_c00053{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m5_c00053{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mb_c00053{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m8_c00053{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m6_c00053{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);}
.m11_c00053{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00053{vertical-align:-17.358000px;}
.v0_c00053{vertical-align:0.000000px;}
.v1_c00053{vertical-align:21.702000px;}
.ls1_c00053{letter-spacing:0.000000px;}
.ls0_c00053{letter-spacing:69.933600px;}
.sc__c00053{text-shadow:none;}
.sc0_c00053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00053{-webkit-text-stroke:0px transparent;}
.sc0_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00053{word-spacing:-17.933400px;}
.ws0_c00053{word-spacing:-13.623947px;}
.ws18_c00053{word-spacing:-8.847024px;}
.ws16_c00053{word-spacing:-7.292976px;}
.ws10_c00053{word-spacing:-6.563381px;}
.ws12_c00053{word-spacing:-6.562789px;}
.ws5_c00053{word-spacing:-6.037817px;}
.wsb_c00053{word-spacing:-5.833801px;}
.wsf_c00053{word-spacing:-5.433611px;}
.wse_c00053{word-spacing:-5.433019px;}
.ws7_c00053{word-spacing:-5.104801px;}
.wsc_c00053{word-spacing:-4.830011px;}
.ws8_c00053{word-spacing:-4.226411px;}
.ws15_c00053{word-spacing:-2.690369px;}
.ws14_c00053{word-spacing:-2.420981px;}
.ws9_c00053{word-spacing:-2.301587px;}
.wsa_c00053{word-spacing:-1.882813px;}
.ws4_c00053{word-spacing:-1.526416px;}
.ws17_c00053{word-spacing:-1.135782px;}
.ws13_c00053{word-spacing:-1.022393px;}
.ws11_c00053{word-spacing:-1.021801px;}
.wsd_c00053{word-spacing:-0.908389px;}
.ws6_c00053{word-spacing:-0.794994px;}
.ws19_c00053{word-spacing:0.000000px;}
.ws3_c00053{word-spacing:0.597601px;}
.ws2_c00053{word-spacing:1.075765px;}
._10_c00053{margin-left:-15.278916px;}
._30_c00053{margin-left:-10.191873px;}
._2f_c00053{margin-left:-8.814665px;}
._27_c00053{margin-left:-7.007476px;}
._b_c00053{margin-left:-5.379577px;}
._2c_c00053{margin-left:-3.615460px;}
._1c_c00053{margin-left:-2.460663px;}
._4_c00053{margin-left:-1.315176px;}
._3_c00053{width:1.913374px;}
._6_c00053{width:3.443351px;}
._2_c00053{width:5.260225px;}
._5_c00053{width:6.336588px;}
._1a_c00053{width:7.448399px;}
._f_c00053{width:9.468624px;}
._1b_c00053{width:10.628436px;}
._1_c00053{width:11.870370px;}
._19_c00053{width:13.139969px;}
._15_c00053{width:14.349010px;}
._a_c00053{width:15.386406px;}
._29_c00053{width:16.676975px;}
._17_c00053{width:17.773248px;}
._0_c00053{width:19.289351px;}
._9_c00053{width:21.412217px;}
._21_c00053{width:22.673712px;}
._1f_c00053{width:23.695811px;}
._1d_c00053{width:25.119601px;}
._20_c00053{width:26.157667px;}
._d_c00053{width:27.437382px;}
._26_c00053{width:28.851543px;}
._12_c00053{width:30.342636px;}
._2a_c00053{width:31.558451px;}
._18_c00053{width:33.051019px;}
._22_c00053{width:35.052564px;}
._31_c00053{width:36.303202px;}
._1e_c00053{width:37.808551px;}
._13_c00053{width:39.063561px;}
._2b_c00053{width:40.687705px;}
._25_c00053{width:41.764362px;}
._14_c00053{width:43.458008px;}
._23_c00053{width:44.981061px;}
._2e_c00053{width:46.465661px;}
._11_c00053{width:48.311394px;}
._2d_c00053{width:50.674879px;}
._c_c00053{width:54.336560px;}
._24_c00053{width:55.700417px;}
._e_c00053{width:60.254450px;}
._8_c00053{width:63.267624px;}
._32_c00053{width:67.245448px;}
._28_c00053{width:71.207997px;}
._16_c00053{width:78.275410px;}
._7_c00053{width:84.459050px;}
._33_c00053{width:800.536189px;}
.fc0_c00053{color:transparent;}
.fs5_c00053{font-size:35.868000px;}
.fs4_c00053{font-size:41.844000px;}
.fs3_c00053{font-size:45.432000px;}
.fs6_c00053{font-size:47.820000px;}
.fs7_c00053{font-size:53.796000px;}
.fs1_c00053{font-size:59.778000px;}
.fs2_c00053{font-size:107.598000px;}
.fs0_c00053{font-size:134.890565px;}
.y0_c00053{bottom:0.000000px;}
.y44_c00053{bottom:31.890000px;}
.y18_c00053{bottom:102.823500px;}
.y43_c00053{bottom:110.487000px;}
.y17_c00053{bottom:120.711000px;}
.y42_c00053{bottom:129.316500px;}
.y16_c00053{bottom:138.600000px;}
.y41_c00053{bottom:148.146000px;}
.y15_c00053{bottom:156.487500px;}
.y40_c00053{bottom:166.975500px;}
.y14_c00053{bottom:174.375000px;}
.y3f_c00053{bottom:185.805000px;}
.y13_c00053{bottom:192.264000px;}
.y3e_c00053{bottom:204.634500px;}
.y12_c00053{bottom:210.151500px;}
.y3d_c00053{bottom:223.464000px;}
.y11_c00053{bottom:228.039000px;}
.y3c_c00053{bottom:242.292000px;}
.y3b_c00053{bottom:261.121500px;}
.y3a_c00053{bottom:279.951000px;}
.y39_c00053{bottom:298.780500px;}
.y10_c00053{bottom:307.299000px;}
.y38_c00053{bottom:317.610000px;}
.yf_c00053{bottom:325.186500px;}
.y37_c00053{bottom:336.439500px;}
.ye_c00053{bottom:343.074000px;}
.y36_c00053{bottom:355.269000px;}
.yd_c00053{bottom:360.963000px;}
.y35_c00053{bottom:374.098500px;}
.y34_c00053{bottom:392.928000px;}
.yc_c00053{bottom:399.024000px;}
.y33_c00053{bottom:411.757500px;}
.yb_c00053{bottom:416.913000px;}
.y32_c00053{bottom:430.587000px;}
.ya_c00053{bottom:434.800500px;}
.y31_c00053{bottom:449.416500px;}
.y30_c00053{bottom:468.246000px;}
.y9_c00053{bottom:470.622000px;}
.y2f_c00053{bottom:487.075500px;}
.y8_c00053{bottom:506.442000px;}
.y2e_c00053{bottom:510.388500px;}
.y7_c00053{bottom:524.329500px;}
.y6_c00053{bottom:542.218500px;}
.y5_c00053{bottom:560.106000px;}
.y2d_c00053{bottom:585.538500px;}
.y2c_c00053{bottom:622.927500px;}
.y2b_c00053{bottom:642.385500px;}
.y2a_c00053{bottom:661.842000px;}
.y29_c00053{bottom:681.298500px;}
.y28_c00053{bottom:700.756500px;}
.y27_c00053{bottom:720.213000px;}
.y26_c00053{bottom:739.671000px;}
.y25_c00053{bottom:759.127500px;}
.y24_c00053{bottom:778.584150px;}
.y23_c00053{bottom:798.042000px;}
.y22_c00053{bottom:817.498650px;}
.y21_c00053{bottom:836.955000px;}
.y20_c00053{bottom:856.413000px;}
.y1e_c00053{bottom:875.869500px;}
.y1f_c00053{bottom:875.869650px;}
.y1d_c00053{bottom:914.455500px;}
.y1c_c00053{bottom:930.595500px;}
.y1b_c00053{bottom:951.073500px;}
.y1a_c00053{bottom:962.874000px;}
.y19_c00053{bottom:983.353500px;}
.y4_c00053{bottom:1023.546000px;}
.y3_c00053{bottom:1069.443000px;}
.y2_c00053{bottom:1097.688000px;}
.y1_c00053{bottom:1159.398150px;}
.h7_c00053{height:35.868000px;}
.h6_c00053{height:41.844000px;}
.h8_c00053{height:47.820000px;}
.h9_c00053{height:53.796000px;}
.h3_c00053{height:59.778000px;}
.h5_c00053{height:67.134000px;}
.h4_c00053{height:107.598000px;}
.h2_c00053{height:134.890565px;}
.h0_c00053{height:1262.835000px;}
.h1_c00053{height:1263.000000px;}
.w0_c00053{width:892.914000px;}
.w1_c00053{width:893.250000px;}
.x0_c00053{left:0.000000px;}
.x2_c00053{left:53.461500px;}
.x1_c00053{left:110.323200px;}
.x8_c00053{left:248.655000px;}
.x5_c00053{left:249.832500px;}
.x3_c00053{left:250.897500px;}
.x4_c00053{left:271.221000px;}
.x7_c00053{left:282.786000px;}
.x6_c00053{left:309.441000px;}
.x9_c00053{left:735.561000px;}
.xa_c00053{left:743.034000px;}
.xd_c00053{left:768.522000px;}
.xe_c00053{left:775.993500px;}
.xf_c00053{left:783.391500px;}
.x10_c00053{left:798.334500px;}
.xb_c00053{left:825.510000px;}
.xc_c00053{left:832.981500px;}
@media print{
.v2_c00053{vertical-align:-15.429333pt;}
.v0_c00053{vertical-align:0.000000pt;}
.v1_c00053{vertical-align:19.290667pt;}
.ls1_c00053{letter-spacing:0.000000pt;}
.ls0_c00053{letter-spacing:62.163200pt;}
.ws1_c00053{word-spacing:-15.940800pt;}
.ws0_c00053{word-spacing:-12.110175pt;}
.ws18_c00053{word-spacing:-7.864022pt;}
.ws16_c00053{word-spacing:-6.482645pt;}
.ws10_c00053{word-spacing:-5.834116pt;}
.ws12_c00053{word-spacing:-5.833590pt;}
.ws5_c00053{word-spacing:-5.366949pt;}
.wsb_c00053{word-spacing:-5.185601pt;}
.wsf_c00053{word-spacing:-4.829877pt;}
.wse_c00053{word-spacing:-4.829351pt;}
.ws7_c00053{word-spacing:-4.537601pt;}
.wsc_c00053{word-spacing:-4.293343pt;}
.ws8_c00053{word-spacing:-3.756810pt;}
.ws15_c00053{word-spacing:-2.391439pt;}
.ws14_c00053{word-spacing:-2.151983pt;}
.ws9_c00053{word-spacing:-2.045855pt;}
.wsa_c00053{word-spacing:-1.673611pt;}
.ws4_c00053{word-spacing:-1.356814pt;}
.ws17_c00053{word-spacing:-1.009584pt;}
.ws13_c00053{word-spacing:-0.908794pt;}
.ws11_c00053{word-spacing:-0.908268pt;}
.wsd_c00053{word-spacing:-0.807457pt;}
.ws6_c00053{word-spacing:-0.706661pt;}
.ws19_c00053{word-spacing:0.000000pt;}
.ws3_c00053{word-spacing:0.531201pt;}
.ws2_c00053{word-spacing:0.956235pt;}
._10_c00053{margin-left:-13.581259pt;}
._30_c00053{margin-left:-9.059443pt;}
._2f_c00053{margin-left:-7.835258pt;}
._27_c00053{margin-left:-6.228868pt;}
._b_c00053{margin-left:-4.781846pt;}
._2c_c00053{margin-left:-3.213742pt;}
._1c_c00053{margin-left:-2.187256pt;}
._4_c00053{margin-left:-1.169045pt;}
._3_c00053{width:1.700777pt;}
._6_c00053{width:3.060757pt;}
._2_c00053{width:4.675755pt;}
._5_c00053{width:5.632522pt;}
._1a_c00053{width:6.620799pt;}
._f_c00053{width:8.416555pt;}
._1b_c00053{width:9.447498pt;}
._1_c00053{width:10.551440pt;}
._19_c00053{width:11.679972pt;}
._15_c00053{width:12.754676pt;}
._a_c00053{width:13.676806pt;}
._29_c00053{width:14.823978pt;}
._17_c00053{width:15.798443pt;}
._0_c00053{width:17.146090pt;}
._9_c00053{width:19.033082pt;}
._21_c00053{width:20.154410pt;}
._1f_c00053{width:21.062943pt;}
._1d_c00053{width:22.328534pt;}
._20_c00053{width:23.251260pt;}
._d_c00053{width:24.388784pt;}
._26_c00053{width:25.645816pt;}
._12_c00053{width:26.971232pt;}
._2a_c00053{width:28.051957pt;}
._18_c00053{width:29.378684pt;}
._22_c00053{width:31.157835pt;}
._31_c00053{width:32.269513pt;}
._1e_c00053{width:33.607601pt;}
._13_c00053{width:34.723166pt;}
._2b_c00053{width:36.166849pt;}
._25_c00053{width:37.123877pt;}
._14_c00053{width:38.629341pt;}
._23_c00053{width:39.983166pt;}
._2e_c00053{width:41.302810pt;}
._11_c00053{width:42.943462pt;}
._2d_c00053{width:45.044337pt;}
._c_c00053{width:48.299164pt;}
._24_c00053{width:49.511482pt;}
._e_c00053{width:53.559511pt;}
._8_c00053{width:56.237888pt;}
._32_c00053{width:59.773731pt;}
._28_c00053{width:63.295997pt;}
._16_c00053{width:69.578142pt;}
._7_c00053{width:75.074711pt;}
._33_c00053{width:711.587724pt;}
.fs5_c00053{font-size:31.882667pt;}
.fs4_c00053{font-size:37.194667pt;}
.fs3_c00053{font-size:40.384000pt;}
.fs6_c00053{font-size:42.506667pt;}
.fs7_c00053{font-size:47.818667pt;}
.fs1_c00053{font-size:53.136000pt;}
.fs2_c00053{font-size:95.642667pt;}
.fs0_c00053{font-size:119.902725pt;}
.y0_c00053{bottom:0.000000pt;}
.y44_c00053{bottom:28.346667pt;}
.y18_c00053{bottom:91.398667pt;}
.y43_c00053{bottom:98.210667pt;}
.y17_c00053{bottom:107.298667pt;}
.y42_c00053{bottom:114.948000pt;}
.y16_c00053{bottom:123.200000pt;}
.y41_c00053{bottom:131.685333pt;}
.y15_c00053{bottom:139.100000pt;}
.y40_c00053{bottom:148.422667pt;}
.y14_c00053{bottom:155.000000pt;}
.y3f_c00053{bottom:165.160000pt;}
.y13_c00053{bottom:170.901333pt;}
.y3e_c00053{bottom:181.897333pt;}
.y12_c00053{bottom:186.801333pt;}
.y3d_c00053{bottom:198.634667pt;}
.y11_c00053{bottom:202.701333pt;}
.y3c_c00053{bottom:215.370667pt;}
.y3b_c00053{bottom:232.108000pt;}
.y3a_c00053{bottom:248.845333pt;}
.y39_c00053{bottom:265.582667pt;}
.y10_c00053{bottom:273.154667pt;}
.y38_c00053{bottom:282.320000pt;}
.yf_c00053{bottom:289.054667pt;}
.y37_c00053{bottom:299.057333pt;}
.ye_c00053{bottom:304.954667pt;}
.y36_c00053{bottom:315.794667pt;}
.yd_c00053{bottom:320.856000pt;}
.y35_c00053{bottom:332.532000pt;}
.y34_c00053{bottom:349.269333pt;}
.yc_c00053{bottom:354.688000pt;}
.y33_c00053{bottom:366.006667pt;}
.yb_c00053{bottom:370.589333pt;}
.y32_c00053{bottom:382.744000pt;}
.ya_c00053{bottom:386.489333pt;}
.y31_c00053{bottom:399.481333pt;}
.y30_c00053{bottom:416.218667pt;}
.y9_c00053{bottom:418.330667pt;}
.y2f_c00053{bottom:432.956000pt;}
.y8_c00053{bottom:450.170667pt;}
.y2e_c00053{bottom:453.678667pt;}
.y7_c00053{bottom:466.070667pt;}
.y6_c00053{bottom:481.972000pt;}
.y5_c00053{bottom:497.872000pt;}
.y2d_c00053{bottom:520.478667pt;}
.y2c_c00053{bottom:553.713333pt;}
.y2b_c00053{bottom:571.009333pt;}
.y2a_c00053{bottom:588.304000pt;}
.y29_c00053{bottom:605.598667pt;}
.y28_c00053{bottom:622.894667pt;}
.y27_c00053{bottom:640.189333pt;}
.y26_c00053{bottom:657.485333pt;}
.y25_c00053{bottom:674.780000pt;}
.y24_c00053{bottom:692.074800pt;}
.y23_c00053{bottom:709.370667pt;}
.y22_c00053{bottom:726.665467pt;}
.y21_c00053{bottom:743.960000pt;}
.y20_c00053{bottom:761.256000pt;}
.y1e_c00053{bottom:778.550667pt;}
.y1f_c00053{bottom:778.550800pt;}
.y1d_c00053{bottom:812.849333pt;}
.y1c_c00053{bottom:827.196000pt;}
.y1b_c00053{bottom:845.398667pt;}
.y1a_c00053{bottom:855.888000pt;}
.y19_c00053{bottom:874.092000pt;}
.y4_c00053{bottom:909.818667pt;}
.y3_c00053{bottom:950.616000pt;}
.y2_c00053{bottom:975.722667pt;}
.y1_c00053{bottom:1030.576133pt;}
.h7_c00053{height:31.882667pt;}
.h6_c00053{height:37.194667pt;}
.h8_c00053{height:42.506667pt;}
.h9_c00053{height:47.818667pt;}
.h3_c00053{height:53.136000pt;}
.h5_c00053{height:59.674667pt;}
.h4_c00053{height:95.642667pt;}
.h2_c00053{height:119.902725pt;}
.h0_c00053{height:1122.520000pt;}
.h1_c00053{height:1122.666667pt;}
.w0_c00053{width:793.701333pt;}
.w1_c00053{width:794.000000pt;}
.x0_c00053{left:0.000000pt;}
.x2_c00053{left:47.521333pt;}
.x1_c00053{left:98.065067pt;}
.x8_c00053{left:221.026667pt;}
.x5_c00053{left:222.073333pt;}
.x3_c00053{left:223.020000pt;}
.x4_c00053{left:241.085333pt;}
.x7_c00053{left:251.365333pt;}
.x6_c00053{left:275.058667pt;}
.x9_c00053{left:653.832000pt;}
.xa_c00053{left:660.474667pt;}
.xd_c00053{left:683.130667pt;}
.xe_c00053{left:689.772000pt;}
.xf_c00053{left:696.348000pt;}
.x10_c00053{left:709.630667pt;}
.xb_c00053{left:733.786667pt;}
.xc_c00053{left:740.428000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_378673dbfb0e5d53d626987f.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.009000;font-style:normal;font-weight:normal;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_cf7ea65dfa1953a574339616.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:0.989000;font-style:normal;font-weight:normal;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_5cde4b52ac9ec6db19d1c319.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9_c00054{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc_c00054{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7_c00054{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mf_c00054{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb_c00054{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma_c00054{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1_c00054{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m4_c00054{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m8_c00054{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,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);}
.m2_c00054{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.md_c00054{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.me_c00054{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6_c00054{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m5_c00054{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3_c00054{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);}
.m10_c00054{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.v1_c00054{vertical-align:32.874000px;}
.ls1_c00054{letter-spacing:0.000000px;}
.ls0_c00054{letter-spacing:11.955000px;}
.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;}
}
.ws18_c00054{word-spacing:-14.944500px;}
.ws3_c00054{word-spacing:-3.526484px;}
.ws17_c00054{word-spacing:-2.033110px;}
.ws19_c00054{word-spacing:-2.032512px;}
.ws16_c00054{word-spacing:-1.793699px;}
.ws22_c00054{word-spacing:-1.673724px;}
.ws21_c00054{word-spacing:-1.016106px;}
.wse_c00054{word-spacing:-0.358489px;}
.wsa_c00054{word-spacing:-0.239112px;}
.ws20_c00054{word-spacing:-0.179095px;}
.ws1f_c00054{word-spacing:-0.119676px;}
.ws7_c00054{word-spacing:-0.059718px;}
.ws5_c00054{word-spacing:-0.000299px;}
.ws14_c00054{word-spacing:0.000000px;}
.ws4_c00054{word-spacing:0.000299px;}
.ws1_c00054{word-spacing:0.000622px;}
.ws0_c00054{word-spacing:0.001139px;}
.ws10_c00054{word-spacing:0.059718px;}
.ws2_c00054{word-spacing:0.119676px;}
.ws13_c00054{word-spacing:0.179095px;}
.ws1d_c00054{word-spacing:0.214807px;}
.wsf_c00054{word-spacing:0.239112px;}
.ws11_c00054{word-spacing:0.358489px;}
.ws25_c00054{word-spacing:0.597900px;}
.ws9_c00054{word-spacing:0.896730px;}
.ws8_c00054{word-spacing:1.554288px;}
.ws6_c00054{word-spacing:2.331282px;}
.ws24_c00054{word-spacing:2.450719px;}
.ws23_c00054{word-spacing:2.510676px;}
.ws15_c00054{word-spacing:2.868926px;}
.ws12_c00054{word-spacing:2.869523px;}
.wsb_c00054{word-spacing:3.347090px;}
.wsc_c00054{word-spacing:3.466526px;}
.wsd_c00054{word-spacing:3.526484px;}
.ws1e_c00054{word-spacing:4.483529px;}
.ws1b_c00054{word-spacing:213.923761px;}
.ws1a_c00054{word-spacing:218.624424px;}
.ws1c_c00054{word-spacing:241.795992px;}
._3_c00054{margin-left:-6.871900px;}
._4_c00054{margin-left:-5.202539px;}
._25_c00054{margin-left:-3.588055px;}
._8_c00054{margin-left:-2.331581px;}
._1_c00054{margin-left:-1.075825px;}
._a_c00054{width:16.146516px;}
._2_c00054{width:18.531598px;}
._9_c00054{width:19.970574px;}
._5_c00054{width:21.819030px;}
._26_c00054{width:26.481594px;}
._6_c00054{width:28.277445px;}
._7_c00054{width:29.355960px;}
._1b_c00054{width:102.572923px;}
._1c_c00054{width:123.407970px;}
._21_c00054{width:126.851345px;}
._16_c00054{width:136.641571px;}
._1a_c00054{width:139.169929px;}
._12_c00054{width:140.569163px;}
._1f_c00054{width:142.384239px;}
._1d_c00054{width:144.334722px;}
._13_c00054{width:145.771057px;}
._1e_c00054{width:157.460354px;}
._20_c00054{width:159.181718px;}
._11_c00054{width:163.754916px;}
._23_c00054{width:175.536509px;}
._24_c00054{width:178.293448px;}
._d_c00054{width:184.348895px;}
._14_c00054{width:198.130722px;}
._b_c00054{width:203.231220px;}
._17_c00054{width:211.148923px;}
._15_c00054{width:212.493567px;}
._22_c00054{width:214.861116px;}
._f_c00054{width:227.556488px;}
._10_c00054{width:231.053928px;}
._e_c00054{width:245.041103px;}
._19_c00054{width:256.929481px;}
._18_c00054{width:302.931954px;}
._c_c00054{width:342.006576px;}
._0_c00054{width:2557.874379px;}
.fc1_c00054{color:rgb(8,117,183);}
.fc0_c00054{color:rgb(0,0,0);}
.fs0_c00054{font-size:47.820000px;}
.fs2_c00054{font-size:53.796000px;}
.fs1_c00054{font-size:59.778000px;}
.y0_c00054{bottom:0.000000px;}
.y34_c00054{bottom:128.304000px;}
.y33_c00054{bottom:147.133500px;}
.y32_c00054{bottom:165.963000px;}
.y31_c00054{bottom:184.792500px;}
.y30_c00054{bottom:203.622000px;}
.y2f_c00054{bottom:222.451500px;}
.y2e_c00054{bottom:241.281000px;}
.y2d_c00054{bottom:260.110500px;}
.y2c_c00054{bottom:278.940000px;}
.y2b_c00054{bottom:297.769500px;}
.y2a_c00054{bottom:316.599000px;}
.y29_c00054{bottom:335.428500px;}
.y28_c00054{bottom:354.256500px;}
.y27_c00054{bottom:373.086000px;}
.y26_c00054{bottom:391.915500px;}
.y25_c00054{bottom:410.745000px;}
.y24_c00054{bottom:447.241500px;}
.y23_c00054{bottom:463.680000px;}
.y22_c00054{bottom:480.118500px;}
.y21_c00054{bottom:496.555500px;}
.y20_c00054{bottom:512.994000px;}
.y1f_c00054{bottom:521.214000px;}
.y1e_c00054{bottom:545.871000px;}
.y1d_c00054{bottom:562.309500px;}
.y1c_c00054{bottom:578.748000px;}
.y1b_c00054{bottom:595.186500px;}
.y1a_c00054{bottom:611.625000px;}
.y19_c00054{bottom:635.265000px;}
.y18_c00054{bottom:643.485000px;}
.y17_c00054{bottom:683.323500px;}
.y16_c00054{bottom:711.460500px;}
.y15_c00054{bottom:730.290000px;}
.y14_c00054{bottom:749.119500px;}
.y13_c00054{bottom:772.432500px;}
.y12_c00054{bottom:806.056500px;}
.y11_c00054{bottom:824.886000px;}
.y10_c00054{bottom:843.715500px;}
.yf_c00054{bottom:862.545000px;}
.ye_c00054{bottom:881.374500px;}
.yd_c00054{bottom:900.204000px;}
.yc_c00054{bottom:919.033500px;}
.yb_c00054{bottom:937.863000px;}
.ya_c00054{bottom:956.692500px;}
.y9_c00054{bottom:975.522000px;}
.y8_c00054{bottom:994.351500px;}
.y7_c00054{bottom:1013.181000px;}
.y6_c00054{bottom:1032.010500px;}
.y5_c00054{bottom:1050.840000px;}
.y4_c00054{bottom:1069.669500px;}
.y3_c00054{bottom:1088.499000px;}
.y2_c00054{bottom:1107.327000px;}
.y1_c00054{bottom:1173.397500px;}
.h2_c00054{height:35.052060px;}
.h8_c00054{height:38.894508px;}
.h5_c00054{height:39.163488px;}
.h4_c00054{height:43.219494px;}
.h3_c00054{height:43.518384px;}
.h6_c00054{height:71.768508px;}
.h9_c00054{height:72.037488px;}
.ha_c00054{height:72.043488px;}
.h7_c00054{height:104.648508px;}
.h0_c00054{height:1262.835000px;}
.h1_c00054{height:1263.000000px;}
.w0_c00054{width:892.914000px;}
.w1_c00054{width:893.250000px;}
.x0_c00054{left:0.000000px;}
.x1_c00054{left:53.569500px;}
.x2_c00054{left:250.897500px;}
.x13_c00054{left:262.867500px;}
.x11_c00054{left:282.600000px;}
.x5_c00054{left:284.934000px;}
.x1a_c00054{left:286.773000px;}
.x16_c00054{left:290.136000px;}
.xf_c00054{left:295.381500px;}
.x6_c00054{left:299.877000px;}
.x10_c00054{left:310.326000px;}
.x14_c00054{left:345.192000px;}
.x3_c00054{left:416.833500px;}
.x4_c00054{left:440.187000px;}
.x17_c00054{left:488.665500px;}
.xd_c00054{left:551.580000px;}
.xe_c00054{left:566.524500px;}
.x18_c00054{left:601.876500px;}
.x9_c00054{left:649.339500px;}
.xa_c00054{left:664.284000px;}
.x1b_c00054{left:694.171500px;}
.x1c_c00054{left:709.116000px;}
.x19_c00054{left:771.211500px;}
.x15_c00054{left:782.589000px;}
.xb_c00054{left:796.659000px;}
.xc_c00054{left:811.603500px;}
.x7_c00054{left:818.893500px;}
.x12_c00054{left:825.961500px;}
.x8_c00054{left:833.838000px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.v1_c00054{vertical-align:29.221333pt;}
.ls1_c00054{letter-spacing:0.000000pt;}
.ls0_c00054{letter-spacing:10.626667pt;}
.ws18_c00054{word-spacing:-13.284000pt;}
.ws3_c00054{word-spacing:-3.134652pt;}
.ws17_c00054{word-spacing:-1.807208pt;}
.ws19_c00054{word-spacing:-1.806677pt;}
.ws16_c00054{word-spacing:-1.594399pt;}
.ws22_c00054{word-spacing:-1.487755pt;}
.ws21_c00054{word-spacing:-0.903206pt;}
.wse_c00054{word-spacing:-0.318657pt;}
.wsa_c00054{word-spacing:-0.212544pt;}
.ws20_c00054{word-spacing:-0.159195pt;}
.ws1f_c00054{word-spacing:-0.106378pt;}
.ws7_c00054{word-spacing:-0.053083pt;}
.ws5_c00054{word-spacing:-0.000266pt;}
.ws14_c00054{word-spacing:0.000000pt;}
.ws4_c00054{word-spacing:0.000266pt;}
.ws1_c00054{word-spacing:0.000553pt;}
.ws0_c00054{word-spacing:0.001013pt;}
.ws10_c00054{word-spacing:0.053083pt;}
.ws2_c00054{word-spacing:0.106378pt;}
.ws13_c00054{word-spacing:0.159195pt;}
.ws1d_c00054{word-spacing:0.190940pt;}
.wsf_c00054{word-spacing:0.212544pt;}
.ws11_c00054{word-spacing:0.318657pt;}
.ws25_c00054{word-spacing:0.531466pt;}
.ws9_c00054{word-spacing:0.797093pt;}
.ws8_c00054{word-spacing:1.381589pt;}
.ws6_c00054{word-spacing:2.072251pt;}
.ws24_c00054{word-spacing:2.178417pt;}
.ws23_c00054{word-spacing:2.231712pt;}
.ws15_c00054{word-spacing:2.550156pt;}
.ws12_c00054{word-spacing:2.550687pt;}
.wsb_c00054{word-spacing:2.975191pt;}
.wsc_c00054{word-spacing:3.081357pt;}
.wsd_c00054{word-spacing:3.134652pt;}
.ws1e_c00054{word-spacing:3.985359pt;}
.ws1b_c00054{word-spacing:190.154454pt;}
.ws1a_c00054{word-spacing:194.332821pt;}
.ws1c_c00054{word-spacing:214.929771pt;}
._3_c00054{margin-left:-6.108355pt;}
._4_c00054{margin-left:-4.624479pt;}
._25_c00054{margin-left:-3.189382pt;}
._8_c00054{margin-left:-2.072517pt;}
._1_c00054{margin-left:-0.956289pt;}
._a_c00054{width:14.352459pt;}
._2_c00054{width:16.472532pt;}
._9_c00054{width:17.751622pt;}
._5_c00054{width:19.394693pt;}
._26_c00054{width:23.539195pt;}
._6_c00054{width:25.135507pt;}
._7_c00054{width:26.094186pt;}
._1b_c00054{width:91.175931pt;}
._1c_c00054{width:109.695974pt;}
._21_c00054{width:112.756751pt;}
._16_c00054{width:121.459174pt;}
._1a_c00054{width:123.706604pt;}
._12_c00054{width:124.950367pt;}
._1f_c00054{width:126.563768pt;}
._1d_c00054{width:128.297530pt;}
._13_c00054{width:129.574273pt;}
._1e_c00054{width:139.964759pt;}
._20_c00054{width:141.494861pt;}
._11_c00054{width:145.559926pt;}
._23_c00054{width:156.032453pt;}
._24_c00054{width:158.483065pt;}
._d_c00054{width:163.865685pt;}
._14_c00054{width:176.116197pt;}
._b_c00054{width:180.649973pt;}
._17_c00054{width:187.687932pt;}
._15_c00054{width:188.883170pt;}
._22_c00054{width:190.987659pt;}
._f_c00054{width:202.272434pt;}
._10_c00054{width:205.381269pt;}
._e_c00054{width:217.814314pt;}
._19_c00054{width:228.381761pt;}
._18_c00054{width:269.272848pt;}
._c_c00054{width:304.005845pt;}
._0_c00054{width:2273.666115pt;}
.fs0_c00054{font-size:42.506667pt;}
.fs2_c00054{font-size:47.818667pt;}
.fs1_c00054{font-size:53.136000pt;}
.y0_c00054{bottom:0.000000pt;}
.y34_c00054{bottom:114.048000pt;}
.y33_c00054{bottom:130.785333pt;}
.y32_c00054{bottom:147.522667pt;}
.y31_c00054{bottom:164.260000pt;}
.y30_c00054{bottom:180.997333pt;}
.y2f_c00054{bottom:197.734667pt;}
.y2e_c00054{bottom:214.472000pt;}
.y2d_c00054{bottom:231.209333pt;}
.y2c_c00054{bottom:247.946667pt;}
.y2b_c00054{bottom:264.684000pt;}
.y2a_c00054{bottom:281.421333pt;}
.y29_c00054{bottom:298.158667pt;}
.y28_c00054{bottom:314.894667pt;}
.y27_c00054{bottom:331.632000pt;}
.y26_c00054{bottom:348.369333pt;}
.y25_c00054{bottom:365.106667pt;}
.y24_c00054{bottom:397.548000pt;}
.y23_c00054{bottom:412.160000pt;}
.y22_c00054{bottom:426.772000pt;}
.y21_c00054{bottom:441.382667pt;}
.y20_c00054{bottom:455.994667pt;}
.y1f_c00054{bottom:463.301333pt;}
.y1e_c00054{bottom:485.218667pt;}
.y1d_c00054{bottom:499.830667pt;}
.y1c_c00054{bottom:514.442667pt;}
.y1b_c00054{bottom:529.054667pt;}
.y1a_c00054{bottom:543.666667pt;}
.y19_c00054{bottom:564.680000pt;}
.y18_c00054{bottom:571.986667pt;}
.y17_c00054{bottom:607.398667pt;}
.y16_c00054{bottom:632.409333pt;}
.y15_c00054{bottom:649.146667pt;}
.y14_c00054{bottom:665.884000pt;}
.y13_c00054{bottom:686.606667pt;}
.y12_c00054{bottom:716.494667pt;}
.y11_c00054{bottom:733.232000pt;}
.y10_c00054{bottom:749.969333pt;}
.yf_c00054{bottom:766.706667pt;}
.ye_c00054{bottom:783.444000pt;}
.yd_c00054{bottom:800.181333pt;}
.yc_c00054{bottom:816.918667pt;}
.yb_c00054{bottom:833.656000pt;}
.ya_c00054{bottom:850.393333pt;}
.y9_c00054{bottom:867.130667pt;}
.y8_c00054{bottom:883.868000pt;}
.y7_c00054{bottom:900.605333pt;}
.y6_c00054{bottom:917.342667pt;}
.y5_c00054{bottom:934.080000pt;}
.y4_c00054{bottom:950.817333pt;}
.y3_c00054{bottom:967.554667pt;}
.y2_c00054{bottom:984.290667pt;}
.y1_c00054{bottom:1043.020000pt;}
.h2_c00054{height:31.157387pt;}
.h8_c00054{height:34.572896pt;}
.h5_c00054{height:34.811989pt;}
.h4_c00054{height:38.417328pt;}
.h3_c00054{height:38.683008pt;}
.h6_c00054{height:63.794229pt;}
.h9_c00054{height:64.033323pt;}
.ha_c00054{height:64.038656pt;}
.h7_c00054{height:93.020896pt;}
.h0_c00054{height:1122.520000pt;}
.h1_c00054{height:1122.666667pt;}
.w0_c00054{width:793.701333pt;}
.w1_c00054{width:794.000000pt;}
.x0_c00054{left:0.000000pt;}
.x1_c00054{left:47.617333pt;}
.x2_c00054{left:223.020000pt;}
.x13_c00054{left:233.660000pt;}
.x11_c00054{left:251.200000pt;}
.x5_c00054{left:253.274667pt;}
.x1a_c00054{left:254.909333pt;}
.x16_c00054{left:257.898667pt;}
.xf_c00054{left:262.561333pt;}
.x6_c00054{left:266.557333pt;}
.x10_c00054{left:275.845333pt;}
.x14_c00054{left:306.837333pt;}
.x3_c00054{left:370.518667pt;}
.x4_c00054{left:391.277333pt;}
.x17_c00054{left:434.369333pt;}
.xd_c00054{left:490.293333pt;}
.xe_c00054{left:503.577333pt;}
.x18_c00054{left:535.001333pt;}
.x9_c00054{left:577.190667pt;}
.xa_c00054{left:590.474667pt;}
.x1b_c00054{left:617.041333pt;}
.x1c_c00054{left:630.325333pt;}
.x19_c00054{left:685.521333pt;}
.x15_c00054{left:695.634667pt;}
.xb_c00054{left:708.141333pt;}
.xc_c00054{left:721.425333pt;}
.x7_c00054{left:727.905333pt;}
.x12_c00054{left:734.188000pt;}
.x8_c00054{left:741.189333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_378673dbfb0e5d53d626987f.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.009000;font-style:normal;font-weight:normal;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_cf7ea65dfa1953a574339616.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:0.989000;font-style:normal;font-weight:normal;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_5cde4b52ac9ec6db19d1c319.woff2')format("woff");}.ff3_c00055{font-family:ff3_c00055;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00055{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3_c00055{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m2_c00055{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1_c00055{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,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);}
.m5_c00055{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m6_c00055{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.v1_c00055{vertical-align:32.880000px;}
.ls1_c00055{letter-spacing:0.000000px;}
.ls0_c00055{letter-spacing:11.955000px;}
.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;}
}
.ws5_c00055{word-spacing:-13.449000px;}
.wsd_c00055{word-spacing:-0.095401px;}
.wsc_c00055{word-spacing:-0.048011px;}
.ws2_c00055{word-spacing:0.000000px;}
.ws1_c00055{word-spacing:0.000622px;}
.ws0_c00055{word-spacing:0.001139px;}
.ws3_c00055{word-spacing:0.054011px;}
.ws6_c00055{word-spacing:0.161388px;}
.ws8_c00055{word-spacing:0.268819px;}
.wsa_c00055{word-spacing:104.517503px;}
.wsb_c00055{word-spacing:201.680935px;}
.ws7_c00055{word-spacing:206.038734px;}
.ws9_c00055{word-spacing:207.275934px;}
.ws4_c00055{word-spacing:214.807105px;}
._1_c00055{margin-left:-5.971195px;}
._5_c00055{margin-left:-4.949393px;}
._4_c00055{margin-left:-2.958619px;}
._a_c00055{margin-left:-1.398588px;}
._15_c00055{width:14.646115px;}
._2_c00055{width:16.685839px;}
._3_c00055{width:106.025220px;}
._8_c00055{width:136.588743px;}
._c_c00055{width:137.825352px;}
._13_c00055{width:150.360455px;}
._10_c00055{width:154.769766px;}
._7_c00055{width:187.371522px;}
._f_c00055{width:193.073952px;}
._12_c00055{width:200.927899px;}
._b_c00055{width:203.133535px;}
._14_c00055{width:224.006329px;}
._e_c00055{width:261.975624px;}
._6_c00055{width:267.639576px;}
._d_c00055{width:310.732397px;}
._9_c00055{width:313.341428px;}
._11_c00055{width:349.930049px;}
._0_c00055{width:2557.874379px;}
.fc0_c00055{color:rgb(0,0,0);}
.fs0_c00055{font-size:47.820000px;}
.fs1_c00055{font-size:53.796000px;}
.y0_c00055{bottom:0.000000px;}
.y42_c00055{bottom:244.504500px;}
.y41_c00055{bottom:258.700500px;}
.y40_c00055{bottom:272.898000px;}
.y3f_c00055{bottom:295.644000px;}
.y3b_c00055{bottom:303.864000px;}
.y3d_c00055{bottom:312.082500px;}
.y39_c00055{bottom:320.302500px;}
.y3c_c00055{bottom:328.521000px;}
.y3a_c00055{bottom:336.741000px;}
.y3e_c00055{bottom:344.959500px;}
.y36_c00055{bottom:368.599500px;}
.y38_c00055{bottom:376.819500px;}
.y34_c00055{bottom:385.038000px;}
.y37_c00055{bottom:393.258000px;}
.y35_c00055{bottom:401.476500px;}
.y33_c00055{bottom:425.118000px;}
.y30_c00055{bottom:433.336500px;}
.y2f_c00055{bottom:441.556500px;}
.y31_c00055{bottom:449.775000px;}
.y32_c00055{bottom:457.995000px;}
.y2e_c00055{bottom:481.635000px;}
.y2b_c00055{bottom:498.073500px;}
.y2a_c00055{bottom:506.292000px;}
.y2c_c00055{bottom:514.512000px;}
.y2d_c00055{bottom:530.950500px;}
.y28_c00055{bottom:554.590500px;}
.y27_c00055{bottom:562.810500px;}
.y29_c00055{bottom:571.029000px;}
.y24_c00055{bottom:594.670500px;}
.y26_c00055{bottom:602.889000px;}
.y22_c00055{bottom:611.109000px;}
.y25_c00055{bottom:619.327500px;}
.y23_c00055{bottom:627.546000px;}
.y21_c00055{bottom:651.187500px;}
.y20_c00055{bottom:667.626000px;}
.y1c_c00055{bottom:684.064500px;}
.y1b_c00055{bottom:692.283000px;}
.y1f_c00055{bottom:700.503000px;}
.y1e_c00055{bottom:716.941500px;}
.y1d_c00055{bottom:733.378500px;}
.y1a_c00055{bottom:757.020000px;}
.y19_c00055{bottom:773.458500px;}
.y18_c00055{bottom:789.897000px;}
.y12_c00055{bottom:798.115500px;}
.y14_c00055{bottom:806.335500px;}
.y10_c00055{bottom:814.554000px;}
.y13_c00055{bottom:822.774000px;}
.y11_c00055{bottom:830.992500px;}
.y17_c00055{bottom:839.211000px;}
.y16_c00055{bottom:855.649500px;}
.y15_c00055{bottom:872.088000px;}
.yf_c00055{bottom:895.729500px;}
.yd_c00055{bottom:912.168000px;}
.yb_c00055{bottom:928.606500px;}
.yc_c00055{bottom:945.043500px;}
.ye_c00055{bottom:961.482000px;}
.ya_c00055{bottom:985.123500px;}
.y7_c00055{bottom:1001.562000px;}
.y6_c00055{bottom:1009.780500px;}
.y9_c00055{bottom:1018.000500px;}
.y8_c00055{bottom:1034.439000px;}
.y4_c00055{bottom:1058.079000px;}
.y3_c00055{bottom:1066.297500px;}
.y5_c00055{bottom:1074.517500px;}
.y2_c00055{bottom:1106.137500px;}
.y1_c00055{bottom:1173.397500px;}
.h9_c00055{height:34.812960px;}
.h2_c00055{height:35.052060px;}
.h5_c00055{height:38.894508px;}
.h3_c00055{height:39.163488px;}
.h6_c00055{height:71.768508px;}
.h4_c00055{height:71.774508px;}
.h8_c00055{height:72.037488px;}
.h7_c00055{height:72.043488px;}
.h0_c00055{height:1262.835000px;}
.h1_c00055{height:1263.000000px;}
.w0_c00055{width:892.914000px;}
.w1_c00055{width:893.250000px;}
.x0_c00055{left:0.000000px;}
.x1_c00055{left:53.569500px;}
.x3_c00055{left:67.179000px;}
.x35_c00055{left:85.890000px;}
.xb_c00055{left:87.534000px;}
.x25_c00055{left:90.150000px;}
.x11_c00055{left:94.447500px;}
.x4_c00055{left:185.208000px;}
.x2_c00055{left:209.800500px;}
.x13_c00055{left:261.072000px;}
.x28_c00055{left:263.392500px;}
.x1c_c00055{left:265.161000px;}
.x5_c00055{left:267.441000px;}
.x30_c00055{left:271.489500px;}
.x27_c00055{left:276.565500px;}
.x31_c00055{left:282.430500px;}
.x1b_c00055{left:284.616000px;}
.x12_c00055{left:290.035500px;}
.x6_c00055{left:291.723000px;}
.x1d_c00055{left:303.525000px;}
.x14_c00055{left:307.359000px;}
.x2e_c00055{left:322.798500px;}
.x7_c00055{left:427.573500px;}
.x29_c00055{left:429.174000px;}
.x8_c00055{left:433.518000px;}
.x15_c00055{left:445.204500px;}
.x16_c00055{left:452.892000px;}
.x1f_c00055{left:460.638000px;}
.xc_c00055{left:464.337000px;}
.x17_c00055{left:466.018500px;}
.x1e_c00055{left:471.901500px;}
.xd_c00055{left:554.263500px;}
.x19_c00055{left:555.385500px;}
.x2c_c00055{left:556.858500px;}
.x2f_c00055{left:557.881500px;}
.x1a_c00055{left:559.555500px;}
.x33_c00055{left:560.577000px;}
.x9_c00055{left:562.642500px;}
.x22_c00055{left:563.805000px;}
.xe_c00055{left:565.573500px;}
.x18_c00055{left:566.596500px;}
.x2b_c00055{left:568.183500px;}
.x23_c00055{left:569.473500px;}
.xf_c00055{left:570.765000px;}
.x21_c00055{left:572.844000px;}
.x20_c00055{left:574.209000px;}
.x2a_c00055{left:580.866000px;}
.x34_c00055{left:588.633000px;}
.x32_c00055{left:592.963500px;}
.x26_c00055{left:594.079500px;}
.xa_c00055{left:602.136000px;}
.x24_c00055{left:618.780000px;}
.x2d_c00055{left:627.205500px;}
.x10_c00055{left:780.943500px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.v1_c00055{vertical-align:29.226667pt;}
.ls1_c00055{letter-spacing:0.000000pt;}
.ls0_c00055{letter-spacing:10.626667pt;}
.ws5_c00055{word-spacing:-11.954667pt;}
.wsd_c00055{word-spacing:-0.084801pt;}
.wsc_c00055{word-spacing:-0.042677pt;}
.ws2_c00055{word-spacing:0.000000pt;}
.ws1_c00055{word-spacing:0.000553pt;}
.ws0_c00055{word-spacing:0.001013pt;}
.ws3_c00055{word-spacing:0.048010pt;}
.ws6_c00055{word-spacing:0.143456pt;}
.ws8_c00055{word-spacing:0.238950pt;}
.wsa_c00055{word-spacing:92.904447pt;}
.wsb_c00055{word-spacing:179.271942pt;}
.ws7_c00055{word-spacing:183.145541pt;}
.ws9_c00055{word-spacing:184.245275pt;}
.ws4_c00055{word-spacing:190.939649pt;}
._1_c00055{margin-left:-5.307729pt;}
._5_c00055{margin-left:-4.399461pt;}
._4_c00055{margin-left:-2.629883pt;}
._a_c00055{margin-left:-1.243190pt;}
._15_c00055{width:13.018769pt;}
._2_c00055{width:14.831857pt;}
._3_c00055{width:94.244640pt;}
._8_c00055{width:121.412216pt;}
._c_c00055{width:122.511424pt;}
._13_c00055{width:133.653738pt;}
._10_c00055{width:137.573125pt;}
._7_c00055{width:166.552464pt;}
._f_c00055{width:171.621290pt;}
._12_c00055{width:178.602577pt;}
._b_c00055{width:180.563142pt;}
._14_c00055{width:199.116737pt;}
._e_c00055{width:232.867221pt;}
._6_c00055{width:237.901845pt;}
._d_c00055{width:276.206575pt;}
._9_c00055{width:278.525714pt;}
._11_c00055{width:311.048933pt;}
._0_c00055{width:2273.666115pt;}
.fs0_c00055{font-size:42.506667pt;}
.fs1_c00055{font-size:47.818667pt;}
.y0_c00055{bottom:0.000000pt;}
.y42_c00055{bottom:217.337333pt;}
.y41_c00055{bottom:229.956000pt;}
.y40_c00055{bottom:242.576000pt;}
.y3f_c00055{bottom:262.794667pt;}
.y3b_c00055{bottom:270.101333pt;}
.y3d_c00055{bottom:277.406667pt;}
.y39_c00055{bottom:284.713333pt;}
.y3c_c00055{bottom:292.018667pt;}
.y3a_c00055{bottom:299.325333pt;}
.y3e_c00055{bottom:306.630667pt;}
.y36_c00055{bottom:327.644000pt;}
.y38_c00055{bottom:334.950667pt;}
.y34_c00055{bottom:342.256000pt;}
.y37_c00055{bottom:349.562667pt;}
.y35_c00055{bottom:356.868000pt;}
.y33_c00055{bottom:377.882667pt;}
.y30_c00055{bottom:385.188000pt;}
.y2f_c00055{bottom:392.494667pt;}
.y31_c00055{bottom:399.800000pt;}
.y32_c00055{bottom:407.106667pt;}
.y2e_c00055{bottom:428.120000pt;}
.y2b_c00055{bottom:442.732000pt;}
.y2a_c00055{bottom:450.037333pt;}
.y2c_c00055{bottom:457.344000pt;}
.y2d_c00055{bottom:471.956000pt;}
.y28_c00055{bottom:492.969333pt;}
.y27_c00055{bottom:500.276000pt;}
.y29_c00055{bottom:507.581333pt;}
.y24_c00055{bottom:528.596000pt;}
.y26_c00055{bottom:535.901333pt;}
.y22_c00055{bottom:543.208000pt;}
.y25_c00055{bottom:550.513333pt;}
.y23_c00055{bottom:557.818667pt;}
.y21_c00055{bottom:578.833333pt;}
.y20_c00055{bottom:593.445333pt;}
.y1c_c00055{bottom:608.057333pt;}
.y1b_c00055{bottom:615.362667pt;}
.y1f_c00055{bottom:622.669333pt;}
.y1e_c00055{bottom:637.281333pt;}
.y1d_c00055{bottom:651.892000pt;}
.y1a_c00055{bottom:672.906667pt;}
.y19_c00055{bottom:687.518667pt;}
.y18_c00055{bottom:702.130667pt;}
.y12_c00055{bottom:709.436000pt;}
.y14_c00055{bottom:716.742667pt;}
.y10_c00055{bottom:724.048000pt;}
.y13_c00055{bottom:731.354667pt;}
.y11_c00055{bottom:738.660000pt;}
.y17_c00055{bottom:745.965333pt;}
.y16_c00055{bottom:760.577333pt;}
.y15_c00055{bottom:775.189333pt;}
.yf_c00055{bottom:796.204000pt;}
.yd_c00055{bottom:810.816000pt;}
.yb_c00055{bottom:825.428000pt;}
.yc_c00055{bottom:840.038667pt;}
.ye_c00055{bottom:854.650667pt;}
.ya_c00055{bottom:875.665333pt;}
.y7_c00055{bottom:890.277333pt;}
.y6_c00055{bottom:897.582667pt;}
.y9_c00055{bottom:904.889333pt;}
.y8_c00055{bottom:919.501333pt;}
.y4_c00055{bottom:940.514667pt;}
.y3_c00055{bottom:947.820000pt;}
.y5_c00055{bottom:955.126667pt;}
.y2_c00055{bottom:983.233333pt;}
.y1_c00055{bottom:1043.020000pt;}
.h9_c00055{height:30.944853pt;}
.h2_c00055{height:31.157387pt;}
.h5_c00055{height:34.572896pt;}
.h3_c00055{height:34.811989pt;}
.h6_c00055{height:63.794229pt;}
.h4_c00055{height:63.799563pt;}
.h8_c00055{height:64.033323pt;}
.h7_c00055{height:64.038656pt;}
.h0_c00055{height:1122.520000pt;}
.h1_c00055{height:1122.666667pt;}
.w0_c00055{width:793.701333pt;}
.w1_c00055{width:794.000000pt;}
.x0_c00055{left:0.000000pt;}
.x1_c00055{left:47.617333pt;}
.x3_c00055{left:59.714667pt;}
.x35_c00055{left:76.346667pt;}
.xb_c00055{left:77.808000pt;}
.x25_c00055{left:80.133333pt;}
.x11_c00055{left:83.953333pt;}
.x4_c00055{left:164.629333pt;}
.x2_c00055{left:186.489333pt;}
.x13_c00055{left:232.064000pt;}
.x28_c00055{left:234.126667pt;}
.x1c_c00055{left:235.698667pt;}
.x5_c00055{left:237.725333pt;}
.x30_c00055{left:241.324000pt;}
.x27_c00055{left:245.836000pt;}
.x31_c00055{left:251.049333pt;}
.x1b_c00055{left:252.992000pt;}
.x12_c00055{left:257.809333pt;}
.x6_c00055{left:259.309333pt;}
.x1d_c00055{left:269.800000pt;}
.x14_c00055{left:273.208000pt;}
.x2e_c00055{left:286.932000pt;}
.x7_c00055{left:380.065333pt;}
.x29_c00055{left:381.488000pt;}
.x8_c00055{left:385.349333pt;}
.x15_c00055{left:395.737333pt;}
.x16_c00055{left:402.570667pt;}
.x1f_c00055{left:409.456000pt;}
.xc_c00055{left:412.744000pt;}
.x17_c00055{left:414.238667pt;}
.x1e_c00055{left:419.468000pt;}
.xd_c00055{left:492.678667pt;}
.x19_c00055{left:493.676000pt;}
.x2c_c00055{left:494.985333pt;}
.x2f_c00055{left:495.894667pt;}
.x1a_c00055{left:497.382667pt;}
.x33_c00055{left:498.290667pt;}
.x9_c00055{left:500.126667pt;}
.x22_c00055{left:501.160000pt;}
.xe_c00055{left:502.732000pt;}
.x18_c00055{left:503.641333pt;}
.x2b_c00055{left:505.052000pt;}
.x23_c00055{left:506.198667pt;}
.xf_c00055{left:507.346667pt;}
.x21_c00055{left:509.194667pt;}
.x20_c00055{left:510.408000pt;}
.x2a_c00055{left:516.325333pt;}
.x34_c00055{left:523.229333pt;}
.x32_c00055{left:527.078667pt;}
.x26_c00055{left:528.070667pt;}
.xa_c00055{left:535.232000pt;}
.x24_c00055{left:550.026667pt;}
.x2d_c00055{left:557.516000pt;}
.x10_c00055{left:694.172000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_378673dbfb0e5d53d626987f.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.009000;font-style:normal;font-weight:normal;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_c7f248dde2d095a11978514d.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:0.989000;font-style:normal;font-weight:normal;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_5cde4b52ac9ec6db19d1c319.woff2')format("woff");}.ff3_c00056{font-family:ff3_c00056;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00056{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma_c00056{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mb_c00056{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9_c00056{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.md_c00056{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2_c00056{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m5_c00056{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m7_c00056{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m8_c00056{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,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);}
.m3_c00056{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mc_c00056{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m4_c00056{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1_c00056{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);}
.me_c00056{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.v1_c00056{vertical-align:32.874000px;}
.ls1_c00056{letter-spacing:0.000000px;}
.ls0_c00056{letter-spacing:11.955000px;}
.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;}
}
.wsf_c00056{word-spacing:-13.449000px;}
.ws14_c00056{word-spacing:-2.295025px;}
.wsa_c00056{word-spacing:-0.239112px;}
.ws15_c00056{word-spacing:-0.095401px;}
.ws9_c00056{word-spacing:-0.059718px;}
.wsc_c00056{word-spacing:-0.000299px;}
.ws2_c00056{word-spacing:0.000000px;}
.ws1_c00056{word-spacing:0.000622px;}
.ws0_c00056{word-spacing:0.001139px;}
.ws10_c00056{word-spacing:0.054011px;}
.ws7_c00056{word-spacing:0.059718px;}
.ws8_c00056{word-spacing:0.060316px;}
.ws13_c00056{word-spacing:0.107377px;}
.wsb_c00056{word-spacing:0.119676px;}
.ws11_c00056{word-spacing:0.161388px;}
.ws16_c00056{word-spacing:0.191376px;}
.ws12_c00056{word-spacing:0.268819px;}
.ws6_c00056{word-spacing:3.526484px;}
.wsd_c00056{word-spacing:196.946941px;}
.wse_c00056{word-spacing:318.387139px;}
.ws5_c00056{word-spacing:408.333000px;}
.ws4_c00056{word-spacing:433.244424px;}
.ws3_c00056{word-spacing:448.251000px;}
._1_c00056{margin-left:-5.971195px;}
._13_c00056{margin-left:-4.949393px;}
._17_c00056{margin-left:-3.539445px;}
._3_c00056{margin-left:-1.936764px;}
._16_c00056{width:8.652694px;}
._14_c00056{width:10.328993px;}
._18_c00056{width:14.033980px;}
._2_c00056{width:16.679839px;}
._11_c00056{width:18.738804px;}
._15_c00056{width:23.024365px;}
._4_c00056{width:214.311127px;}
._f_c00056{width:337.160004px;}
._9_c00056{width:382.997676px;}
._8_c00056{width:412.369932px;}
._e_c00056{width:420.382812px;}
._10_c00056{width:433.957236px;}
._a_c00056{width:453.429744px;}
._d_c00056{width:498.074004px;}
._12_c00056{width:503.970035px;}
._5_c00056{width:524.435676px;}
._6_c00056{width:594.850908px;}
._b_c00056{width:603.832908px;}
._7_c00056{width:644.775636px;}
._c_c00056{width:653.654112px;}
._0_c00056{width:2557.874379px;}
.fc1_c00056{color:rgb(8,117,183);}
.fc0_c00056{color:rgb(0,0,0);}
.fs0_c00056{font-size:47.820000px;}
.fs1_c00056{font-size:53.796000px;}
.fs2_c00056{font-size:59.778000px;}
.y0_c00056{bottom:0.000000px;}
.y41_c00056{bottom:116.227500px;}
.y40_c00056{bottom:130.423500px;}
.y3f_c00056{bottom:144.621000px;}
.y3e_c00056{bottom:158.817000px;}
.y3d_c00056{bottom:177.661500px;}
.y39_c00056{bottom:185.880000px;}
.y3c_c00056{bottom:194.098500px;}
.y38_c00056{bottom:202.318500px;}
.y3b_c00056{bottom:210.537000px;}
.y37_c00056{bottom:218.757000px;}
.y3a_c00056{bottom:226.975500px;}
.y36_c00056{bottom:250.617000px;}
.y33_c00056{bottom:267.055500px;}
.y32_c00056{bottom:283.494000px;}
.y34_c00056{bottom:291.712500px;}
.y31_c00056{bottom:299.931000px;}
.y30_c00056{bottom:316.369500px;}
.y35_c00056{bottom:332.808000px;}
.y2f_c00056{bottom:356.449500px;}
.y2e_c00056{bottom:372.888000px;}
.y29_c00056{bottom:381.106500px;}
.y2d_c00056{bottom:389.326500px;}
.y28_c00056{bottom:397.545000px;}
.y2c_c00056{bottom:405.763500px;}
.y27_c00056{bottom:413.983500px;}
.y2b_c00056{bottom:422.202000px;}
.y2a_c00056{bottom:438.640500px;}
.y26_c00056{bottom:462.282000px;}
.y25_c00056{bottom:478.720500px;}
.y22_c00056{bottom:495.159000px;}
.y21_c00056{bottom:511.596000px;}
.y20_c00056{bottom:528.034500px;}
.y24_c00056{bottom:544.473000px;}
.y23_c00056{bottom:560.911500px;}
.y1f_c00056{bottom:584.553000px;}
.y1c_c00056{bottom:592.771500px;}
.y1d_c00056{bottom:600.991500px;}
.y1b_c00056{bottom:609.210000px;}
.y1e_c00056{bottom:617.428500px;}
.y1a_c00056{bottom:641.070000px;}
.y18_c00056{bottom:657.508500px;}
.y17_c00056{bottom:673.947000px;}
.y19_c00056{bottom:690.385500px;}
.y16_c00056{bottom:714.025500px;}
.y15_c00056{bottom:745.645500px;}
.y14_c00056{bottom:782.749500px;}
.y13_c00056{bottom:801.579000px;}
.y12_c00056{bottom:820.408500px;}
.y11_c00056{bottom:839.238000px;}
.y10_c00056{bottom:858.067500px;}
.yf_c00056{bottom:876.897000px;}
.ye_c00056{bottom:919.369500px;}
.yd_c00056{bottom:935.808000px;}
.yc_c00056{bottom:952.246500px;}
.yb_c00056{bottom:968.685000px;}
.ya_c00056{bottom:985.123500px;}
.y9_c00056{bottom:1001.562000px;}
.y8_c00056{bottom:1018.000500px;}
.y7_c00056{bottom:1041.640500px;}
.y4_c00056{bottom:1049.860500px;}
.y3_c00056{bottom:1058.079000px;}
.y5_c00056{bottom:1066.297500px;}
.y6_c00056{bottom:1074.517500px;}
.y2_c00056{bottom:1106.137500px;}
.y1_c00056{bottom:1173.397500px;}
.h8_c00056{height:34.812960px;}
.h2_c00056{height:35.052060px;}
.h5_c00056{height:38.894508px;}
.h3_c00056{height:39.163488px;}
.h6_c00056{height:43.518384px;}
.h4_c00056{height:71.768508px;}
.h7_c00056{height:72.037488px;}
.h0_c00056{height:1262.835000px;}
.h1_c00056{height:1263.000000px;}
.w0_c00056{width:892.914000px;}
.w1_c00056{width:893.250000px;}
.x0_c00056{left:0.000000px;}
.x1_c00056{left:53.569500px;}
.x3_c00056{left:85.863000px;}
.xd_c00056{left:95.203500px;}
.xe_c00056{left:103.791000px;}
.xc_c00056{left:107.529000px;}
.x2_c00056{left:196.789500px;}
.x4_c00056{left:210.231000px;}
.x10_c00056{left:250.897500px;}
.x16_c00056{left:259.863000px;}
.x19_c00056{left:261.889500px;}
.x1f_c00056{left:265.365000px;}
.x20_c00056{left:267.450000px;}
.x12_c00056{left:268.707000px;}
.x18_c00056{left:270.523500px;}
.x1b_c00056{left:272.958000px;}
.x1a_c00056{left:277.584000px;}
.xf_c00056{left:282.786000px;}
.x21_c00056{left:284.961000px;}
.x13_c00056{left:287.119500px;}
.x11_c00056{left:293.307000px;}
.x15_c00056{left:300.852000px;}
.x1c_c00056{left:302.769000px;}
.x1e_c00056{left:305.619000px;}
.x5_c00056{left:362.916000px;}
.x6_c00056{left:370.945500px;}
.x1d_c00056{left:439.003500px;}
.x17_c00056{left:448.419000px;}
.x7_c00056{left:496.839000px;}
.x14_c00056{left:543.874500px;}
.x8_c00056{left:554.235000px;}
.x9_c00056{left:696.402000px;}
.xb_c00056{left:712.273500px;}
.xa_c00056{left:721.977000px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.v1_c00056{vertical-align:29.221333pt;}
.ls1_c00056{letter-spacing:0.000000pt;}
.ls0_c00056{letter-spacing:10.626667pt;}
.wsf_c00056{word-spacing:-11.954667pt;}
.ws14_c00056{word-spacing:-2.040022pt;}
.wsa_c00056{word-spacing:-0.212544pt;}
.ws15_c00056{word-spacing:-0.084801pt;}
.ws9_c00056{word-spacing:-0.053083pt;}
.wsc_c00056{word-spacing:-0.000266pt;}
.ws2_c00056{word-spacing:0.000000pt;}
.ws1_c00056{word-spacing:0.000553pt;}
.ws0_c00056{word-spacing:0.001013pt;}
.ws10_c00056{word-spacing:0.048010pt;}
.ws7_c00056{word-spacing:0.053083pt;}
.ws8_c00056{word-spacing:0.053614pt;}
.ws13_c00056{word-spacing:0.095446pt;}
.wsb_c00056{word-spacing:0.106378pt;}
.ws11_c00056{word-spacing:0.143456pt;}
.ws16_c00056{word-spacing:0.170112pt;}
.ws12_c00056{word-spacing:0.238950pt;}
.ws6_c00056{word-spacing:3.134652pt;}
.wsd_c00056{word-spacing:175.063947pt;}
.wse_c00056{word-spacing:283.010790pt;}
.ws5_c00056{word-spacing:362.962667pt;}
.ws4_c00056{word-spacing:385.106155pt;}
.ws3_c00056{word-spacing:398.445333pt;}
._1_c00056{margin-left:-5.307729pt;}
._13_c00056{margin-left:-4.399461pt;}
._17_c00056{margin-left:-3.146173pt;}
._3_c00056{margin-left:-1.721568pt;}
._16_c00056{width:7.691284pt;}
._14_c00056{width:9.181327pt;}
._18_c00056{width:12.474649pt;}
._2_c00056{width:14.826523pt;}
._11_c00056{width:16.656715pt;}
._15_c00056{width:20.466102pt;}
._4_c00056{width:190.498779pt;}
._f_c00056{width:299.697781pt;}
._9_c00056{width:340.442379pt;}
._8_c00056{width:366.551051pt;}
._e_c00056{width:373.673611pt;}
._10_c00056{width:385.739765pt;}
._a_c00056{width:403.048661pt;}
._d_c00056{width:442.732448pt;}
._12_c00056{width:447.973365pt;}
._5_c00056{width:466.165045pt;}
._6_c00056{width:528.756363pt;}
._b_c00056{width:536.740363pt;}
._7_c00056{width:573.133899pt;}
._c_c00056{width:581.025877pt;}
._0_c00056{width:2273.666115pt;}
.fs0_c00056{font-size:42.506667pt;}
.fs1_c00056{font-size:47.818667pt;}
.fs2_c00056{font-size:53.136000pt;}
.y0_c00056{bottom:0.000000pt;}
.y41_c00056{bottom:103.313333pt;}
.y40_c00056{bottom:115.932000pt;}
.y3f_c00056{bottom:128.552000pt;}
.y3e_c00056{bottom:141.170667pt;}
.y3d_c00056{bottom:157.921333pt;}
.y39_c00056{bottom:165.226667pt;}
.y3c_c00056{bottom:172.532000pt;}
.y38_c00056{bottom:179.838667pt;}
.y3b_c00056{bottom:187.144000pt;}
.y37_c00056{bottom:194.450667pt;}
.y3a_c00056{bottom:201.756000pt;}
.y36_c00056{bottom:222.770667pt;}
.y33_c00056{bottom:237.382667pt;}
.y32_c00056{bottom:251.994667pt;}
.y34_c00056{bottom:259.300000pt;}
.y31_c00056{bottom:266.605333pt;}
.y30_c00056{bottom:281.217333pt;}
.y35_c00056{bottom:295.829333pt;}
.y2f_c00056{bottom:316.844000pt;}
.y2e_c00056{bottom:331.456000pt;}
.y29_c00056{bottom:338.761333pt;}
.y2d_c00056{bottom:346.068000pt;}
.y28_c00056{bottom:353.373333pt;}
.y2c_c00056{bottom:360.678667pt;}
.y27_c00056{bottom:367.985333pt;}
.y2b_c00056{bottom:375.290667pt;}
.y2a_c00056{bottom:389.902667pt;}
.y26_c00056{bottom:410.917333pt;}
.y25_c00056{bottom:425.529333pt;}
.y22_c00056{bottom:440.141333pt;}
.y21_c00056{bottom:454.752000pt;}
.y20_c00056{bottom:469.364000pt;}
.y24_c00056{bottom:483.976000pt;}
.y23_c00056{bottom:498.588000pt;}
.y1f_c00056{bottom:519.602667pt;}
.y1c_c00056{bottom:526.908000pt;}
.y1d_c00056{bottom:534.214667pt;}
.y1b_c00056{bottom:541.520000pt;}
.y1e_c00056{bottom:548.825333pt;}
.y1a_c00056{bottom:569.840000pt;}
.y18_c00056{bottom:584.452000pt;}
.y17_c00056{bottom:599.064000pt;}
.y19_c00056{bottom:613.676000pt;}
.y16_c00056{bottom:634.689333pt;}
.y15_c00056{bottom:662.796000pt;}
.y14_c00056{bottom:695.777333pt;}
.y13_c00056{bottom:712.514667pt;}
.y12_c00056{bottom:729.252000pt;}
.y11_c00056{bottom:745.989333pt;}
.y10_c00056{bottom:762.726667pt;}
.yf_c00056{bottom:779.464000pt;}
.ye_c00056{bottom:817.217333pt;}
.yd_c00056{bottom:831.829333pt;}
.yc_c00056{bottom:846.441333pt;}
.yb_c00056{bottom:861.053333pt;}
.ya_c00056{bottom:875.665333pt;}
.y9_c00056{bottom:890.277333pt;}
.y8_c00056{bottom:904.889333pt;}
.y7_c00056{bottom:925.902667pt;}
.y4_c00056{bottom:933.209333pt;}
.y3_c00056{bottom:940.514667pt;}
.y5_c00056{bottom:947.820000pt;}
.y6_c00056{bottom:955.126667pt;}
.y2_c00056{bottom:983.233333pt;}
.y1_c00056{bottom:1043.020000pt;}
.h8_c00056{height:30.944853pt;}
.h2_c00056{height:31.157387pt;}
.h5_c00056{height:34.572896pt;}
.h3_c00056{height:34.811989pt;}
.h6_c00056{height:38.683008pt;}
.h4_c00056{height:63.794229pt;}
.h7_c00056{height:64.033323pt;}
.h0_c00056{height:1122.520000pt;}
.h1_c00056{height:1122.666667pt;}
.w0_c00056{width:793.701333pt;}
.w1_c00056{width:794.000000pt;}
.x0_c00056{left:0.000000pt;}
.x1_c00056{left:47.617333pt;}
.x3_c00056{left:76.322667pt;}
.xd_c00056{left:84.625333pt;}
.xe_c00056{left:92.258667pt;}
.xc_c00056{left:95.581333pt;}
.x2_c00056{left:174.924000pt;}
.x4_c00056{left:186.872000pt;}
.x10_c00056{left:223.020000pt;}
.x16_c00056{left:230.989333pt;}
.x19_c00056{left:232.790667pt;}
.x1f_c00056{left:235.880000pt;}
.x20_c00056{left:237.733333pt;}
.x12_c00056{left:238.850667pt;}
.x18_c00056{left:240.465333pt;}
.x1b_c00056{left:242.629333pt;}
.x1a_c00056{left:246.741333pt;}
.xf_c00056{left:251.365333pt;}
.x21_c00056{left:253.298667pt;}
.x13_c00056{left:255.217333pt;}
.x11_c00056{left:260.717333pt;}
.x15_c00056{left:267.424000pt;}
.x1c_c00056{left:269.128000pt;}
.x1e_c00056{left:271.661333pt;}
.x5_c00056{left:322.592000pt;}
.x6_c00056{left:329.729333pt;}
.x1d_c00056{left:390.225333pt;}
.x17_c00056{left:398.594667pt;}
.x7_c00056{left:441.634667pt;}
.x14_c00056{left:483.444000pt;}
.x8_c00056{left:492.653333pt;}
.x9_c00056{left:619.024000pt;}
.xb_c00056{left:633.132000pt;}
.xa_c00056{left:641.757333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_378673dbfb0e5d53d626987f.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.009000;font-style:normal;font-weight:normal;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_cf7ea65dfa1953a574339616.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:0.989000;font-style:normal;font-weight:normal;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_5cde4b52ac9ec6db19d1c319.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m10_c00057{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8_c00057{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mb_c00057{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m6_c00057{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.md_c00057{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma_c00057{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7_c00057{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mc_c00057{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m9_c00057{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,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);}
.mf_c00057{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m3_c00057{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2_c00057{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.me_c00057{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m5_c00057{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1_c00057{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4_c00057{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);}
.m11_c00057{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.ls4_c00057{letter-spacing:0.000000px;}
.ls0_c00057{letter-spacing:11.955000px;}
.ls1_c00057{letter-spacing:14.883000px;}
.ls2_c00057{letter-spacing:15.183000px;}
.ls3_c00057{letter-spacing:20.445000px;}
.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;}
}
.ws1d_c00057{word-spacing:-1.374894px;}
.ws2_c00057{word-spacing:-0.299069px;}
.ws19_c00057{word-spacing:-0.239112px;}
.wsb_c00057{word-spacing:-0.179095px;}
.ws6_c00057{word-spacing:-0.119676px;}
.ws7_c00057{word-spacing:-0.081143px;}
.ws8_c00057{word-spacing:-0.066654px;}
.ws9_c00057{word-spacing:-0.059718px;}
.ws3_c00057{word-spacing:-0.000299px;}
.ws5_c00057{word-spacing:0.000000px;}
.ws1_c00057{word-spacing:0.000622px;}
.ws0_c00057{word-spacing:0.001139px;}
.wsf_c00057{word-spacing:0.054011px;}
.ws11_c00057{word-spacing:0.107377px;}
.ws13_c00057{word-spacing:0.161388px;}
.wse_c00057{word-spacing:0.179693px;}
.ws10_c00057{word-spacing:0.215399px;}
.wsd_c00057{word-spacing:0.233346px;}
.wsc_c00057{word-spacing:0.239112px;}
.ws12_c00057{word-spacing:0.268819px;}
.ws1c_c00057{word-spacing:0.657319px;}
.wsa_c00057{word-spacing:1.913075px;}
.ws1a_c00057{word-spacing:2.211906px;}
.ws4_c00057{word-spacing:3.586680px;}
.ws1b_c00057{word-spacing:4.004708px;}
.ws15_c00057{word-spacing:5.429948px;}
.ws16_c00057{word-spacing:5.495346px;}
.ws17_c00057{word-spacing:5.499277px;}
.ws18_c00057{word-spacing:6.276331px;}
.ws14_c00057{word-spacing:13.449930px;}
._1_c00057{margin-left:-6.515384px;}
._4_c00057{margin-left:-5.456727px;}
._7_c00057{margin-left:-4.088980px;}
._a_c00057{margin-left:-2.473193px;}
._2_c00057{margin-left:-1.075825px;}
._c_c00057{width:10.328993px;}
._9_c00057{width:12.426607px;}
._b_c00057{width:14.631035px;}
._8_c00057{width:15.975637px;}
._5_c00057{width:17.230028px;}
._3_c00057{width:18.531180px;}
._f_c00057{width:21.719332px;}
._d_c00057{width:23.078376px;}
._11_c00057{width:25.764019px;}
._e_c00057{width:32.000500px;}
._10_c00057{width:37.567171px;}
._6_c00057{width:653.879220px;}
._0_c00057{width:2557.874379px;}
.fc1_c00057{color:rgb(8,117,183);}
.fc0_c00057{color:rgb(0,0,0);}
.fs0_c00057{font-size:47.820000px;}
.fs2_c00057{font-size:53.796000px;}
.fs1_c00057{font-size:59.778000px;}
.y0_c00057{bottom:0.000000px;}
.y37_c00057{bottom:92.518500px;}
.y36_c00057{bottom:111.348000px;}
.y35_c00057{bottom:130.177500px;}
.y34_c00057{bottom:149.007000px;}
.y33_c00057{bottom:167.836500px;}
.y32_c00057{bottom:186.666000px;}
.y31_c00057{bottom:205.495500px;}
.y30_c00057{bottom:224.325000px;}
.y2f_c00057{bottom:243.154500px;}
.y2e_c00057{bottom:261.984000px;}
.y2d_c00057{bottom:307.446000px;}
.y2c_c00057{bottom:323.884500px;}
.y2b_c00057{bottom:340.323000px;}
.y2a_c00057{bottom:356.761500px;}
.y25_c00057{bottom:373.200000px;}
.y29_c00057{bottom:389.638500px;}
.y28_c00057{bottom:406.075500px;}
.y27_c00057{bottom:422.514000px;}
.y26_c00057{bottom:438.952500px;}
.y24_c00057{bottom:462.594000px;}
.y23_c00057{bottom:479.032500px;}
.y22_c00057{bottom:495.471000px;}
.y1e_c00057{bottom:511.908000px;}
.y21_c00057{bottom:528.346500px;}
.y20_c00057{bottom:544.785000px;}
.y1f_c00057{bottom:561.223500px;}
.y1d_c00057{bottom:584.865000px;}
.y1c_c00057{bottom:601.303500px;}
.y1b_c00057{bottom:617.740500px;}
.y1a_c00057{bottom:634.179000px;}
.y15_c00057{bottom:642.399000px;}
.y19_c00057{bottom:650.617500px;}
.y18_c00057{bottom:667.056000px;}
.y17_c00057{bottom:683.494500px;}
.y16_c00057{bottom:699.933000px;}
.y14_c00057{bottom:723.573000px;}
.y13_c00057{bottom:740.011500px;}
.y12_c00057{bottom:756.450000px;}
.ye_c00057{bottom:772.888500px;}
.y11_c00057{bottom:789.327000px;}
.y10_c00057{bottom:805.765500px;}
.yf_c00057{bottom:822.204000px;}
.yd_c00057{bottom:845.844000px;}
.yc_c00057{bottom:877.464000px;}
.yb_c00057{bottom:914.568000px;}
.ya_c00057{bottom:933.397500px;}
.y9_c00057{bottom:952.227000px;}
.y8_c00057{bottom:971.056500px;}
.y7_c00057{bottom:989.886000px;}
.y6_c00057{bottom:1008.715500px;}
.y5_c00057{bottom:1032.028500px;}
.y4_c00057{bottom:1052.202000px;}
.y3_c00057{bottom:1085.826000px;}
.y2_c00057{bottom:1104.655500px;}
.y1_c00057{bottom:1173.397500px;}
.h2_c00057{height:35.052060px;}
.h7_c00057{height:38.894508px;}
.h6_c00057{height:39.163488px;}
.h4_c00057{height:43.219494px;}
.h3_c00057{height:43.518384px;}
.h5_c00057{height:43.817274px;}
.h0_c00057{height:1262.835000px;}
.h1_c00057{height:1263.000000px;}
.w0_c00057{width:892.914000px;}
.w1_c00057{width:893.250000px;}
.x0_c00057{left:0.000000px;}
.x1_c00057{left:53.569500px;}
.x3_c00057{left:250.897500px;}
.x4_c00057{left:270.069000px;}
.x2_c00057{left:282.786000px;}
.x5_c00057{left:297.339000px;}
.x6_c00057{left:359.470500px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls4_c00057{letter-spacing:0.000000pt;}
.ls0_c00057{letter-spacing:10.626667pt;}
.ls1_c00057{letter-spacing:13.229333pt;}
.ls2_c00057{letter-spacing:13.496000pt;}
.ls3_c00057{letter-spacing:18.173333pt;}
.ws1d_c00057{word-spacing:-1.222128pt;}
.ws2_c00057{word-spacing:-0.265839pt;}
.ws19_c00057{word-spacing:-0.212544pt;}
.wsb_c00057{word-spacing:-0.159195pt;}
.ws6_c00057{word-spacing:-0.106378pt;}
.ws7_c00057{word-spacing:-0.072127pt;}
.ws8_c00057{word-spacing:-0.059248pt;}
.ws9_c00057{word-spacing:-0.053083pt;}
.ws3_c00057{word-spacing:-0.000266pt;}
.ws5_c00057{word-spacing:0.000000pt;}
.ws1_c00057{word-spacing:0.000553pt;}
.ws0_c00057{word-spacing:0.001013pt;}
.wsf_c00057{word-spacing:0.048010pt;}
.ws11_c00057{word-spacing:0.095446pt;}
.ws13_c00057{word-spacing:0.143456pt;}
.wse_c00057{word-spacing:0.159727pt;}
.ws10_c00057{word-spacing:0.191466pt;}
.wsd_c00057{word-spacing:0.207419pt;}
.wsc_c00057{word-spacing:0.212544pt;}
.ws12_c00057{word-spacing:0.238950pt;}
.ws1c_c00057{word-spacing:0.584283pt;}
.wsa_c00057{word-spacing:1.700511pt;}
.ws1a_c00057{word-spacing:1.966138pt;}
.ws4_c00057{word-spacing:3.188160pt;}
.ws1b_c00057{word-spacing:3.559740pt;}
.ws15_c00057{word-spacing:4.826620pt;}
.ws16_c00057{word-spacing:4.884752pt;}
.ws17_c00057{word-spacing:4.888246pt;}
.ws18_c00057{word-spacing:5.578961pt;}
.ws14_c00057{word-spacing:11.955494pt;}
._1_c00057{margin-left:-5.791452pt;}
._4_c00057{margin-left:-4.850424pt;}
._7_c00057{margin-left:-3.634649pt;}
._a_c00057{margin-left:-2.198394pt;}
._2_c00057{margin-left:-0.956289pt;}
._c_c00057{width:9.181327pt;}
._9_c00057{width:11.045873pt;}
._b_c00057{width:13.005364pt;}
._8_c00057{width:14.200566pt;}
._5_c00057{width:15.315580pt;}
._3_c00057{width:16.472160pt;}
._f_c00057{width:19.306073pt;}
._d_c00057{width:20.514112pt;}
._11_c00057{width:22.901350pt;}
._e_c00057{width:28.444889pt;}
._10_c00057{width:33.393041pt;}
._6_c00057{width:581.225973pt;}
._0_c00057{width:2273.666115pt;}
.fs0_c00057{font-size:42.506667pt;}
.fs2_c00057{font-size:47.818667pt;}
.fs1_c00057{font-size:53.136000pt;}
.y0_c00057{bottom:0.000000pt;}
.y37_c00057{bottom:82.238667pt;}
.y36_c00057{bottom:98.976000pt;}
.y35_c00057{bottom:115.713333pt;}
.y34_c00057{bottom:132.450667pt;}
.y33_c00057{bottom:149.188000pt;}
.y32_c00057{bottom:165.925333pt;}
.y31_c00057{bottom:182.662667pt;}
.y30_c00057{bottom:199.400000pt;}
.y2f_c00057{bottom:216.137333pt;}
.y2e_c00057{bottom:232.874667pt;}
.y2d_c00057{bottom:273.285333pt;}
.y2c_c00057{bottom:287.897333pt;}
.y2b_c00057{bottom:302.509333pt;}
.y2a_c00057{bottom:317.121333pt;}
.y25_c00057{bottom:331.733333pt;}
.y29_c00057{bottom:346.345333pt;}
.y28_c00057{bottom:360.956000pt;}
.y27_c00057{bottom:375.568000pt;}
.y26_c00057{bottom:390.180000pt;}
.y24_c00057{bottom:411.194667pt;}
.y23_c00057{bottom:425.806667pt;}
.y22_c00057{bottom:440.418667pt;}
.y1e_c00057{bottom:455.029333pt;}
.y21_c00057{bottom:469.641333pt;}
.y20_c00057{bottom:484.253333pt;}
.y1f_c00057{bottom:498.865333pt;}
.y1d_c00057{bottom:519.880000pt;}
.y1c_c00057{bottom:534.492000pt;}
.y1b_c00057{bottom:549.102667pt;}
.y1a_c00057{bottom:563.714667pt;}
.y15_c00057{bottom:571.021333pt;}
.y19_c00057{bottom:578.326667pt;}
.y18_c00057{bottom:592.938667pt;}
.y17_c00057{bottom:607.550667pt;}
.y16_c00057{bottom:622.162667pt;}
.y14_c00057{bottom:643.176000pt;}
.y13_c00057{bottom:657.788000pt;}
.y12_c00057{bottom:672.400000pt;}
.ye_c00057{bottom:687.012000pt;}
.y11_c00057{bottom:701.624000pt;}
.y10_c00057{bottom:716.236000pt;}
.yf_c00057{bottom:730.848000pt;}
.yd_c00057{bottom:751.861333pt;}
.yc_c00057{bottom:779.968000pt;}
.yb_c00057{bottom:812.949333pt;}
.ya_c00057{bottom:829.686667pt;}
.y9_c00057{bottom:846.424000pt;}
.y8_c00057{bottom:863.161333pt;}
.y7_c00057{bottom:879.898667pt;}
.y6_c00057{bottom:896.636000pt;}
.y5_c00057{bottom:917.358667pt;}
.y4_c00057{bottom:935.290667pt;}
.y3_c00057{bottom:965.178667pt;}
.y2_c00057{bottom:981.916000pt;}
.y1_c00057{bottom:1043.020000pt;}
.h2_c00057{height:31.157387pt;}
.h7_c00057{height:34.572896pt;}
.h6_c00057{height:34.811989pt;}
.h4_c00057{height:38.417328pt;}
.h3_c00057{height:38.683008pt;}
.h5_c00057{height:38.948688pt;}
.h0_c00057{height:1122.520000pt;}
.h1_c00057{height:1122.666667pt;}
.w0_c00057{width:793.701333pt;}
.w1_c00057{width:794.000000pt;}
.x0_c00057{left:0.000000pt;}
.x1_c00057{left:47.617333pt;}
.x3_c00057{left:223.020000pt;}
.x4_c00057{left:240.061333pt;}
.x2_c00057{left:251.365333pt;}
.x5_c00057{left:264.301333pt;}
.x6_c00057{left:319.529333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_378673dbfb0e5d53d626987f.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.009000;font-style:normal;font-weight:normal;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_cf7ea65dfa1953a574339616.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:0.989000;font-style:normal;font-weight:normal;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_5cde4b52ac9ec6db19d1c319.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:1.011000;font-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_c00058{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1_c00058{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5_c00058{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,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);}
.m7_c00058{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m6_c00058{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8_c00058{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4_c00058{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m3_c00058{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);}
.m9_c00058{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00058{vertical-align:0.000000px;}
.ls1_c00058{letter-spacing:0.000000px;}
.ls0_c00058{letter-spacing:11.955000px;}
.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;}
}
.ws3_c00058{word-spacing:-1.793101px;}
.ws7_c00058{word-spacing:-1.076124px;}
.ws8_c00058{word-spacing:-1.016106px;}
.ws19_c00058{word-spacing:-0.836713px;}
.ws4_c00058{word-spacing:-0.477925px;}
.wsd_c00058{word-spacing:-0.418506px;}
.ws5_c00058{word-spacing:-0.359086px;}
.wsc_c00058{word-spacing:-0.299069px;}
.wse_c00058{word-spacing:-0.239112px;}
.ws18_c00058{word-spacing:-0.119676px;}
.ws14_c00058{word-spacing:-0.107431px;}
.ws1c_c00058{word-spacing:-0.059718px;}
.ws6_c00058{word-spacing:0.000000px;}
.ws11_c00058{word-spacing:0.000299px;}
.ws1_c00058{word-spacing:0.000622px;}
.ws0_c00058{word-spacing:0.001139px;}
.ws10_c00058{word-spacing:0.059718px;}
.ws2_c00058{word-spacing:0.239112px;}
.ws13_c00058{word-spacing:0.268819px;}
.ws16_c00058{word-spacing:0.537882px;}
.ws12_c00058{word-spacing:0.538175px;}
.ws9_c00058{word-spacing:0.657319px;}
.ws17_c00058{word-spacing:1.076124px;}
.wsf_c00058{word-spacing:2.271325px;}
.ws1b_c00058{word-spacing:2.750087px;}
.ws15_c00058{word-spacing:3.227975px;}
.ws1a_c00058{word-spacing:3.765894px;}
.wsb_c00058{word-spacing:4.304076px;}
.wsa_c00058{word-spacing:4.841719px;}
._3_c00058{margin-left:-5.281087px;}
._a_c00058{margin-left:-3.844024px;}
._2_c00058{margin-left:-2.371513px;}
._1_c00058{margin-left:-1.315295px;}
._c_c00058{width:12.480618px;}
._5_c00058{width:15.625132px;}
._b_c00058{width:17.111449px;}
._4_c00058{width:18.531180px;}
._6_c00058{width:20.027423px;}
._8_c00058{width:21.161950px;}
._d_c00058{width:22.297194px;}
._9_c00058{width:25.985814px;}
._e_c00058{width:30.887113px;}
._7_c00058{width:32.821171px;}
._0_c00058{width:2557.874379px;}
.fc1_c00058{color:rgb(8,117,183);}
.fc0_c00058{color:rgb(0,0,0);}
.fs0_c00058{font-size:47.820000px;}
.fs2_c00058{font-size:53.796000px;}
.fs1_c00058{font-size:59.778000px;}
.y0_c00058{bottom:0.000000px;}
.y1e_c00058{bottom:97.537500px;}
.y1d_c00058{bottom:116.367000px;}
.y1c_c00058{bottom:135.196500px;}
.y1b_c00058{bottom:154.026000px;}
.y1a_c00058{bottom:172.855500px;}
.y19_c00058{bottom:191.685000px;}
.y18_c00058{bottom:210.514500px;}
.y17_c00058{bottom:229.344000px;}
.y16_c00058{bottom:248.173500px;}
.y15_c00058{bottom:281.739000px;}
.y14_c00058{bottom:300.972000px;}
.y13_c00058{bottom:320.205000px;}
.y12_c00058{bottom:784.107000px;}
.y11_c00058{bottom:802.936500px;}
.y10_c00058{bottom:821.766000px;}
.yf_c00058{bottom:840.595500px;}
.ye_c00058{bottom:859.425000px;}
.yd_c00058{bottom:878.254500px;}
.yc_c00058{bottom:897.084000px;}
.yb_c00058{bottom:915.913500px;}
.ya_c00058{bottom:934.743000px;}
.y9_c00058{bottom:953.572500px;}
.y8_c00058{bottom:972.402000px;}
.y7_c00058{bottom:991.231500px;}
.y6_c00058{bottom:1014.543000px;}
.y5_c00058{bottom:1048.167000px;}
.y4_c00058{bottom:1066.996500px;}
.y3_c00058{bottom:1085.826000px;}
.y2_c00058{bottom:1104.655500px;}
.y1_c00058{bottom:1173.397500px;}
.h2_c00058{height:35.052060px;}
.h5_c00058{height:38.894508px;}
.h6_c00058{height:39.163488px;}
.h3_c00058{height:43.518384px;}
.h4_c00058{height:43.817274px;}
.h0_c00058{height:1262.835000px;}
.h1_c00058{height:1263.000000px;}
.w0_c00058{width:892.914000px;}
.w1_c00058{width:893.250000px;}
.x0_c00058{left:0.000000px;}
.x1_c00058{left:53.569500px;}
.x4_c00058{left:85.890000px;}
.x5_c00058{left:143.674500px;}
.x2_c00058{left:250.897500px;}
.x3_c00058{left:282.786000px;}
.x6_c00058{left:416.727000px;}
.x7_c00058{left:430.176000px;}
.x8_c00058{left:695.364000px;}
.x9_c00058{left:710.308500px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls1_c00058{letter-spacing:0.000000pt;}
.ls0_c00058{letter-spacing:10.626667pt;}
.ws3_c00058{word-spacing:-1.593867pt;}
.ws7_c00058{word-spacing:-0.956554pt;}
.ws8_c00058{word-spacing:-0.903206pt;}
.ws19_c00058{word-spacing:-0.743745pt;}
.ws4_c00058{word-spacing:-0.424822pt;}
.wsd_c00058{word-spacing:-0.372005pt;}
.ws5_c00058{word-spacing:-0.319188pt;}
.wsc_c00058{word-spacing:-0.265839pt;}
.wse_c00058{word-spacing:-0.212544pt;}
.ws18_c00058{word-spacing:-0.106378pt;}
.ws14_c00058{word-spacing:-0.095494pt;}
.ws1c_c00058{word-spacing:-0.053083pt;}
.ws6_c00058{word-spacing:0.000000pt;}
.ws11_c00058{word-spacing:0.000266pt;}
.ws1_c00058{word-spacing:0.000553pt;}
.ws0_c00058{word-spacing:0.001013pt;}
.ws10_c00058{word-spacing:0.053083pt;}
.ws2_c00058{word-spacing:0.212544pt;}
.ws13_c00058{word-spacing:0.238950pt;}
.ws16_c00058{word-spacing:0.478118pt;}
.ws12_c00058{word-spacing:0.478378pt;}
.ws9_c00058{word-spacing:0.584283pt;}
.ws17_c00058{word-spacing:0.956554pt;}
.wsf_c00058{word-spacing:2.018955pt;}
.ws1b_c00058{word-spacing:2.444522pt;}
.ws15_c00058{word-spacing:2.869311pt;}
.ws1a_c00058{word-spacing:3.347462pt;}
.wsb_c00058{word-spacing:3.825845pt;}
.wsa_c00058{word-spacing:4.303750pt;}
._3_c00058{margin-left:-4.694300pt;}
._a_c00058{margin-left:-3.416910pt;}
._2_c00058{margin-left:-2.108011pt;}
._1_c00058{margin-left:-1.169151pt;}
._c_c00058{width:11.093883pt;}
._5_c00058{width:13.889006pt;}
._b_c00058{width:15.210177pt;}
._4_c00058{width:16.472160pt;}
._6_c00058{width:17.802154pt;}
._8_c00058{width:18.810622pt;}
._d_c00058{width:19.819728pt;}
._9_c00058{width:23.098502pt;}
._e_c00058{width:27.455212pt;}
._7_c00058{width:29.174374pt;}
._0_c00058{width:2273.666115pt;}
.fs0_c00058{font-size:42.506667pt;}
.fs2_c00058{font-size:47.818667pt;}
.fs1_c00058{font-size:53.136000pt;}
.y0_c00058{bottom:0.000000pt;}
.y1e_c00058{bottom:86.700000pt;}
.y1d_c00058{bottom:103.437333pt;}
.y1c_c00058{bottom:120.174667pt;}
.y1b_c00058{bottom:136.912000pt;}
.y1a_c00058{bottom:153.649333pt;}
.y19_c00058{bottom:170.386667pt;}
.y18_c00058{bottom:187.124000pt;}
.y17_c00058{bottom:203.861333pt;}
.y16_c00058{bottom:220.598667pt;}
.y15_c00058{bottom:250.434667pt;}
.y14_c00058{bottom:267.530667pt;}
.y13_c00058{bottom:284.626667pt;}
.y12_c00058{bottom:696.984000pt;}
.y11_c00058{bottom:713.721333pt;}
.y10_c00058{bottom:730.458667pt;}
.yf_c00058{bottom:747.196000pt;}
.ye_c00058{bottom:763.933333pt;}
.yd_c00058{bottom:780.670667pt;}
.yc_c00058{bottom:797.408000pt;}
.yb_c00058{bottom:814.145333pt;}
.ya_c00058{bottom:830.882667pt;}
.y9_c00058{bottom:847.620000pt;}
.y8_c00058{bottom:864.357333pt;}
.y7_c00058{bottom:881.094667pt;}
.y6_c00058{bottom:901.816000pt;}
.y5_c00058{bottom:931.704000pt;}
.y4_c00058{bottom:948.441333pt;}
.y3_c00058{bottom:965.178667pt;}
.y2_c00058{bottom:981.916000pt;}
.y1_c00058{bottom:1043.020000pt;}
.h2_c00058{height:31.157387pt;}
.h5_c00058{height:34.572896pt;}
.h6_c00058{height:34.811989pt;}
.h3_c00058{height:38.683008pt;}
.h4_c00058{height:38.948688pt;}
.h0_c00058{height:1122.520000pt;}
.h1_c00058{height:1122.666667pt;}
.w0_c00058{width:793.701333pt;}
.w1_c00058{width:794.000000pt;}
.x0_c00058{left:0.000000pt;}
.x1_c00058{left:47.617333pt;}
.x4_c00058{left:76.346667pt;}
.x5_c00058{left:127.710667pt;}
.x2_c00058{left:223.020000pt;}
.x3_c00058{left:251.365333pt;}
.x6_c00058{left:370.424000pt;}
.x7_c00058{left:382.378667pt;}
.x8_c00058{left:618.101333pt;}
.x9_c00058{left:631.385333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_378673dbfb0e5d53d626987f.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.009000;font-style:normal;font-weight:normal;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_cf7ea65dfa1953a574339616.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:0.989000;font-style:normal;font-weight:normal;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_b1e6db6a9799a6615d443b05.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:1.011000;font-style:normal;font-weight:normal;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_2afe9205ff2200b5e7423846.woff2')format("woff");}.ff4_c00059{font-family:ff4_c00059;line-height:0.388000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00059{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3_c00059{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2_c00059{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m0_c00059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00059{transform:matrix(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);}
.m5_c00059{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.v1_c00059{vertical-align:21.702000px;}
.ls3_c00059{letter-spacing:0.000000px;}
.ls1_c00059{letter-spacing:3.558000px;}
.ls0_c00059{letter-spacing:11.955000px;}
.ls2_c00059{letter-spacing:15.183000px;}
.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;}
}
.wse_c00059{word-spacing:-2.630112px;}
.wsb_c00059{word-spacing:-0.059718px;}
.ws6_c00059{word-spacing:-0.005315px;}
.ws4_c00059{word-spacing:-0.000299px;}
.ws7_c00059{word-spacing:0.000000px;}
.ws9_c00059{word-spacing:0.000299px;}
.ws1_c00059{word-spacing:0.000622px;}
.ws0_c00059{word-spacing:0.001139px;}
.ws3_c00059{word-spacing:0.059718px;}
.wsf_c00059{word-spacing:0.119078px;}
.ws8_c00059{word-spacing:0.239112px;}
.wsa_c00059{word-spacing:0.358489px;}
.wsc_c00059{word-spacing:0.478523px;}
.ws5_c00059{word-spacing:1.314877px;}
.ws2_c00059{word-spacing:2.271325px;}
.wsd_c00059{word-spacing:5.559294px;}
._6_c00059{margin-left:-7.172702px;}
._7_c00059{margin-left:-2.460104px;}
._3_c00059{margin-left:-1.015867px;}
._5_c00059{width:16.680780px;}
._2_c00059{width:18.950224px;}
._4_c00059{width:22.119056px;}
._1_c00059{width:25.824036px;}
._0_c00059{width:2557.874379px;}
.fc1_c00059{color:rgb(8,117,183);}
.fc0_c00059{color:rgb(0,0,0);}
.fs2_c00059{font-size:47.340000px;}
.fs0_c00059{font-size:47.820000px;}
.fs3_c00059{font-size:53.796000px;}
.fs1_c00059{font-size:59.778000px;}
.y0_c00059{bottom:0.000000px;}
.y10_c00059{bottom:96.999000px;}
.yf_c00059{bottom:115.828500px;}
.ye_c00059{bottom:134.658000px;}
.yd_c00059{bottom:153.487500px;}
.yc_c00059{bottom:172.315500px;}
.yb_c00059{bottom:191.145000px;}
.ya_c00059{bottom:224.712000px;}
.y9_c00059{bottom:756.273000px;}
.y8_c00059{bottom:775.102500px;}
.y7_c00059{bottom:808.668000px;}
.y6_c00059{bottom:1029.337500px;}
.y5_c00059{bottom:1048.167000px;}
.y4_c00059{bottom:1066.996500px;}
.y3_c00059{bottom:1085.826000px;}
.y2_c00059{bottom:1104.655500px;}
.y1_c00059{bottom:1173.397500px;}
.h2_c00059{height:35.052060px;}
.h4_c00059{height:39.163488px;}
.h3_c00059{height:43.518384px;}
.h0_c00059{height:1262.835000px;}
.h1_c00059{height:1263.000000px;}
.w0_c00059{width:892.914000px;}
.w1_c00059{width:893.250000px;}
.x0_c00059{left:0.000000px;}
.x1_c00059{left:53.569500px;}
.x2_c00059{left:250.897500px;}
.x5_c00059{left:282.786000px;}
.x3_c00059{left:604.396500px;}
.x4_c00059{left:611.869500px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.v1_c00059{vertical-align:19.290667pt;}
.ls3_c00059{letter-spacing:0.000000pt;}
.ls1_c00059{letter-spacing:3.162667pt;}
.ls0_c00059{letter-spacing:10.626667pt;}
.ls2_c00059{letter-spacing:13.496000pt;}
.wse_c00059{word-spacing:-2.337878pt;}
.wsb_c00059{word-spacing:-0.053083pt;}
.ws6_c00059{word-spacing:-0.004725pt;}
.ws4_c00059{word-spacing:-0.000266pt;}
.ws7_c00059{word-spacing:0.000000pt;}
.ws9_c00059{word-spacing:0.000266pt;}
.ws1_c00059{word-spacing:0.000553pt;}
.ws0_c00059{word-spacing:0.001013pt;}
.ws3_c00059{word-spacing:0.053083pt;}
.wsf_c00059{word-spacing:0.105847pt;}
.ws8_c00059{word-spacing:0.212544pt;}
.wsa_c00059{word-spacing:0.318657pt;}
.wsc_c00059{word-spacing:0.425354pt;}
.ws5_c00059{word-spacing:1.168779pt;}
.ws2_c00059{word-spacing:2.018955pt;}
.wsd_c00059{word-spacing:4.941595pt;}
._6_c00059{margin-left:-6.375736pt;}
._7_c00059{margin-left:-2.186759pt;}
._3_c00059{margin-left:-0.902993pt;}
._5_c00059{width:14.827360pt;}
._2_c00059{width:16.844643pt;}
._4_c00059{width:19.661383pt;}
._1_c00059{width:22.954699pt;}
._0_c00059{width:2273.666115pt;}
.fs2_c00059{font-size:42.080000pt;}
.fs0_c00059{font-size:42.506667pt;}
.fs3_c00059{font-size:47.818667pt;}
.fs1_c00059{font-size:53.136000pt;}
.y0_c00059{bottom:0.000000pt;}
.y10_c00059{bottom:86.221333pt;}
.yf_c00059{bottom:102.958667pt;}
.ye_c00059{bottom:119.696000pt;}
.yd_c00059{bottom:136.433333pt;}
.yc_c00059{bottom:153.169333pt;}
.yb_c00059{bottom:169.906667pt;}
.ya_c00059{bottom:199.744000pt;}
.y9_c00059{bottom:672.242667pt;}
.y8_c00059{bottom:688.980000pt;}
.y7_c00059{bottom:718.816000pt;}
.y6_c00059{bottom:914.966667pt;}
.y5_c00059{bottom:931.704000pt;}
.y4_c00059{bottom:948.441333pt;}
.y3_c00059{bottom:965.178667pt;}
.y2_c00059{bottom:981.916000pt;}
.y1_c00059{bottom:1043.020000pt;}
.h2_c00059{height:31.157387pt;}
.h4_c00059{height:34.811989pt;}
.h3_c00059{height:38.683008pt;}
.h0_c00059{height:1122.520000pt;}
.h1_c00059{height:1122.666667pt;}
.w0_c00059{width:793.701333pt;}
.w1_c00059{width:794.000000pt;}
.x0_c00059{left:0.000000pt;}
.x1_c00059{left:47.617333pt;}
.x2_c00059{left:223.020000pt;}
.x5_c00059{left:251.365333pt;}
.x3_c00059{left:537.241333pt;}
.x4_c00059{left:543.884000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_378673dbfb0e5d53d626987f.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.009000;font-style:normal;font-weight:normal;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_cf7ea65dfa1953a574339616.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:0.989000;font-style:normal;font-weight:normal;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_5cde4b52ac9ec6db19d1c319.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;line-height:1.011000;font-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_c00060{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9_c00060{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4_c00060{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc_c00060{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m6_c00060{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8_c00060{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m7_c00060{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,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);}
.ma_c00060{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb_c00060{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m2_c00060{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m3_c00060{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m5_c00060{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);}
.md_c00060{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls2_c00060{letter-spacing:0.000000px;}
.ls0_c00060{letter-spacing:11.955000px;}
.ls1_c00060{letter-spacing:14.943000px;}
.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;}
}
.ws3_c00060{word-spacing:-14.944500px;}
.wsb_c00060{word-spacing:-13.449000px;}
.ws11_c00060{word-spacing:-2.988900px;}
.wsc_c00060{word-spacing:-2.367024px;}
.wsd_c00060{word-spacing:-2.259593px;}
.ws2_c00060{word-spacing:-0.836713px;}
.ws4_c00060{word-spacing:-0.777293px;}
.ws17_c00060{word-spacing:-0.359086px;}
.ws5_c00060{word-spacing:-0.239112px;}
.ws15_c00060{word-spacing:-0.119676px;}
.ws14_c00060{word-spacing:-0.059718px;}
.ws1a_c00060{word-spacing:-0.005315px;}
.ws7_c00060{word-spacing:-0.000299px;}
.ws10_c00060{word-spacing:0.000000px;}
.ws8_c00060{word-spacing:0.000299px;}
.ws1_c00060{word-spacing:0.000622px;}
.ws0_c00060{word-spacing:0.001139px;}
.ws6_c00060{word-spacing:0.119676px;}
.ws18_c00060{word-spacing:0.179095px;}
.ws13_c00060{word-spacing:0.299129px;}
.ws12_c00060{word-spacing:0.358489px;}
.ws16_c00060{word-spacing:1.733682px;}
.ws19_c00060{word-spacing:2.032512px;}
.wsa_c00060{word-spacing:5.002813px;}
.wsf_c00060{word-spacing:5.218212px;}
.wse_c00060{word-spacing:5.594999px;}
.ws9_c00060{word-spacing:7.746570px;}
._6_c00060{margin-left:-6.867649px;}
._4_c00060{margin-left:-3.119407px;}
._1_c00060{margin-left:-1.793400px;}
._7_c00060{width:14.470801px;}
._8_c00060{width:16.079445px;}
._2_c00060{width:17.754664px;}
._3_c00060{width:19.308533px;}
._9_c00060{width:25.284062px;}
._5_c00060{width:36.563963px;}
._0_c00060{width:2557.874379px;}
.fc1_c00060{color:rgb(8,117,183);}
.fc0_c00060{color:rgb(0,0,0);}
.fs0_c00060{font-size:47.820000px;}
.fs2_c00060{font-size:53.796000px;}
.fs1_c00060{font-size:59.778000px;}
.y0_c00060{bottom:0.000000px;}
.y18_c00060{bottom:112.345500px;}
.y17_c00060{bottom:131.175000px;}
.y16_c00060{bottom:150.004500px;}
.y15_c00060{bottom:168.834000px;}
.y14_c00060{bottom:187.663500px;}
.y13_c00060{bottom:206.493000px;}
.y12_c00060{bottom:225.322500px;}
.y11_c00060{bottom:244.152000px;}
.y10_c00060{bottom:262.981500px;}
.yf_c00060{bottom:281.811000px;}
.ye_c00060{bottom:300.640500px;}
.yd_c00060{bottom:319.470000px;}
.yc_c00060{bottom:338.299500px;}
.yb_c00060{bottom:371.865000px;}
.ya_c00060{bottom:391.098000px;}
.y9_c00060{bottom:687.952500px;}
.y8_c00060{bottom:707.185500px;}
.y7_c00060{bottom:1010.508000px;}
.y6_c00060{bottom:1029.337500px;}
.y5_c00060{bottom:1048.167000px;}
.y4_c00060{bottom:1066.996500px;}
.y3_c00060{bottom:1085.826000px;}
.y2_c00060{bottom:1104.655500px;}
.y1_c00060{bottom:1173.397500px;}
.h2_c00060{height:35.052060px;}
.h4_c00060{height:38.894508px;}
.h5_c00060{height:39.163488px;}
.h3_c00060{height:43.518384px;}
.h0_c00060{height:1262.835000px;}
.h1_c00060{height:1263.000000px;}
.w0_c00060{width:892.914000px;}
.w1_c00060{width:893.250000px;}
.x0_c00060{left:0.000000px;}
.x1_c00060{left:53.569500px;}
.x2_c00060{left:250.905000px;}
.xa_c00060{left:282.786000px;}
.x9_c00060{left:313.708500px;}
.x5_c00060{left:315.630000px;}
.x8_c00060{left:321.847500px;}
.xb_c00060{left:487.929000px;}
.xc_c00060{left:502.872000px;}
.xd_c00060{left:624.444000px;}
.xe_c00060{left:639.387000px;}
.x6_c00060{left:724.519500px;}
.x3_c00060{left:729.811500px;}
.x7_c00060{left:737.028000px;}
.x4_c00060{left:744.306000px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls2_c00060{letter-spacing:0.000000pt;}
.ls0_c00060{letter-spacing:10.626667pt;}
.ls1_c00060{letter-spacing:13.282667pt;}
.ws3_c00060{word-spacing:-13.284000pt;}
.wsb_c00060{word-spacing:-11.954667pt;}
.ws11_c00060{word-spacing:-2.656800pt;}
.wsc_c00060{word-spacing:-2.104021pt;}
.wsd_c00060{word-spacing:-2.008527pt;}
.ws2_c00060{word-spacing:-0.743745pt;}
.ws4_c00060{word-spacing:-0.690927pt;}
.ws17_c00060{word-spacing:-0.319188pt;}
.ws5_c00060{word-spacing:-0.212544pt;}
.ws15_c00060{word-spacing:-0.106378pt;}
.ws14_c00060{word-spacing:-0.053083pt;}
.ws1a_c00060{word-spacing:-0.004725pt;}
.ws7_c00060{word-spacing:-0.000266pt;}
.ws10_c00060{word-spacing:0.000000pt;}
.ws8_c00060{word-spacing:0.000266pt;}
.ws1_c00060{word-spacing:0.000553pt;}
.ws0_c00060{word-spacing:0.001013pt;}
.ws6_c00060{word-spacing:0.106378pt;}
.ws18_c00060{word-spacing:0.159195pt;}
.ws13_c00060{word-spacing:0.265893pt;}
.ws12_c00060{word-spacing:0.318657pt;}
.ws16_c00060{word-spacing:1.541050pt;}
.ws19_c00060{word-spacing:1.806677pt;}
.wsa_c00060{word-spacing:4.446945pt;}
.wsf_c00060{word-spacing:4.638411pt;}
.wse_c00060{word-spacing:4.973333pt;}
.ws9_c00060{word-spacing:6.885840pt;}
._6_c00060{margin-left:-6.104577pt;}
._4_c00060{margin-left:-2.772806pt;}
._1_c00060{margin-left:-1.594133pt;}
._7_c00060{width:12.862934pt;}
._8_c00060{width:14.292840pt;}
._2_c00060{width:15.781923pt;}
._3_c00060{width:17.163141pt;}
._9_c00060{width:22.474721pt;}
._5_c00060{width:32.501300pt;}
._0_c00060{width:2273.666115pt;}
.fs0_c00060{font-size:42.506667pt;}
.fs2_c00060{font-size:47.818667pt;}
.fs1_c00060{font-size:53.136000pt;}
.y0_c00060{bottom:0.000000pt;}
.y18_c00060{bottom:99.862667pt;}
.y17_c00060{bottom:116.600000pt;}
.y16_c00060{bottom:133.337333pt;}
.y15_c00060{bottom:150.074667pt;}
.y14_c00060{bottom:166.812000pt;}
.y13_c00060{bottom:183.549333pt;}
.y12_c00060{bottom:200.286667pt;}
.y11_c00060{bottom:217.024000pt;}
.y10_c00060{bottom:233.761333pt;}
.yf_c00060{bottom:250.498667pt;}
.ye_c00060{bottom:267.236000pt;}
.yd_c00060{bottom:283.973333pt;}
.yc_c00060{bottom:300.710667pt;}
.yb_c00060{bottom:330.546667pt;}
.ya_c00060{bottom:347.642667pt;}
.y9_c00060{bottom:611.513333pt;}
.y8_c00060{bottom:628.609333pt;}
.y7_c00060{bottom:898.229333pt;}
.y6_c00060{bottom:914.966667pt;}
.y5_c00060{bottom:931.704000pt;}
.y4_c00060{bottom:948.441333pt;}
.y3_c00060{bottom:965.178667pt;}
.y2_c00060{bottom:981.916000pt;}
.y1_c00060{bottom:1043.020000pt;}
.h2_c00060{height:31.157387pt;}
.h4_c00060{height:34.572896pt;}
.h5_c00060{height:34.811989pt;}
.h3_c00060{height:38.683008pt;}
.h0_c00060{height:1122.520000pt;}
.h1_c00060{height:1122.666667pt;}
.w0_c00060{width:793.701333pt;}
.w1_c00060{width:794.000000pt;}
.x0_c00060{left:0.000000pt;}
.x1_c00060{left:47.617333pt;}
.x2_c00060{left:223.026667pt;}
.xa_c00060{left:251.365333pt;}
.x9_c00060{left:278.852000pt;}
.x5_c00060{left:280.560000pt;}
.x8_c00060{left:286.086667pt;}
.xb_c00060{left:433.714667pt;}
.xc_c00060{left:446.997333pt;}
.xd_c00060{left:555.061333pt;}
.xe_c00060{left:568.344000pt;}
.x6_c00060{left:644.017333pt;}
.x3_c00060{left:648.721333pt;}
.x7_c00060{left:655.136000pt;}
.x4_c00060{left:661.605333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_378673dbfb0e5d53d626987f.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.009000;font-style:normal;font-weight:normal;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_cf7ea65dfa1953a574339616.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:0.989000;font-style:normal;font-weight:normal;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_b1e6db6a9799a6615d443b05.woff2')format("woff");}.ff3_c00061{font-family:ff3_c00061;line-height:1.011000;font-style:normal;font-weight:normal;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_2afe9205ff2200b5e7423846.woff2')format("woff");}.ff4_c00061{font-family:ff4_c00061;line-height:0.388000;font-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_c00061{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1_c00061{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9_c00061{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3_c00061{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,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);}
.m5_c00061{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m6_c00061{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m8_c00061{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma_c00061{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m4_c00061{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m7_c00061{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);}
.mb_c00061{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls1_c00061{letter-spacing:0.000000px;}
.ls0_c00061{letter-spacing:11.955000px;}
.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;}
}
.ws4_c00061{word-spacing:-13.449000px;}
.ws12_c00061{word-spacing:-3.526484px;}
.ws6_c00061{word-spacing:-3.012630px;}
.ws5_c00061{word-spacing:-2.743811px;}
.ws3_c00061{word-spacing:-1.775429px;}
.wsa_c00061{word-spacing:-0.299069px;}
.ws1b_c00061{word-spacing:-0.179693px;}
.wsd_c00061{word-spacing:-0.179095px;}
.wsc_c00061{word-spacing:-0.059718px;}
.ws2_c00061{word-spacing:-0.054011px;}
.wsf_c00061{word-spacing:-0.000299px;}
.ws7_c00061{word-spacing:0.000000px;}
.wsb_c00061{word-spacing:0.000299px;}
.ws1_c00061{word-spacing:0.000622px;}
.ws0_c00061{word-spacing:0.001139px;}
.ws8_c00061{word-spacing:0.107377px;}
.ws9_c00061{word-spacing:0.119676px;}
.ws16_c00061{word-spacing:0.179693px;}
.ws1a_c00061{word-spacing:0.239112px;}
.wse_c00061{word-spacing:1.076124px;}
.ws15_c00061{word-spacing:2.928883px;}
.ws17_c00061{word-spacing:4.423512px;}
.ws14_c00061{word-spacing:4.842317px;}
.ws11_c00061{word-spacing:5.259926px;}
.ws13_c00061{word-spacing:5.261122px;}
.ws19_c00061{word-spacing:6.096878px;}
.ws18_c00061{word-spacing:6.157134px;}
.ws10_c00061{word-spacing:7.053924px;}
._7_c00061{margin-left:-5.689106px;}
._6_c00061{margin-left:-4.186272px;}
._2_c00061{margin-left:-2.793465px;}
._1_c00061{margin-left:-1.613988px;}
._3_c00061{width:14.955611px;}
._4_c00061{width:17.110894px;}
._5_c00061{width:19.124996px;}
._9_c00061{width:21.639576px;}
._8_c00061{width:23.910542px;}
._a_c00061{width:27.737410px;}
._0_c00061{width:2557.874379px;}
.fc1_c00061{color:rgb(8,117,183);}
.fc0_c00061{color:rgb(0,0,0);}
.fs0_c00061{font-size:47.820000px;}
.fs1_c00061{font-size:53.796000px;}
.fs2_c00061{font-size:59.778000px;}
.fs3_c00061{font-size:62.286000px;}
.y0_c00061{bottom:0.000000px;}
.y19_c00061{bottom:119.622000px;}
.y18_c00061{bottom:138.451500px;}
.y17_c00061{bottom:157.281000px;}
.y16_c00061{bottom:176.110500px;}
.y15_c00061{bottom:194.940000px;}
.y14_c00061{bottom:213.769500px;}
.y13_c00061{bottom:232.599000px;}
.y12_c00061{bottom:251.428500px;}
.y11_c00061{bottom:270.258000px;}
.y10_c00061{bottom:289.087500px;}
.yf_c00061{bottom:307.917000px;}
.ye_c00061{bottom:326.746500px;}
.yd_c00061{bottom:345.576000px;}
.yc_c00061{bottom:364.405500px;}
.yb_c00061{bottom:383.235000px;}
.ya_c00061{bottom:402.064500px;}
.y9_c00061{bottom:420.894000px;}
.y8_c00061{bottom:439.723500px;}
.y7_c00061{bottom:458.553000px;}
.y6_c00061{bottom:477.382500px;}
.y5_c00061{bottom:510.948000px;}
.y4_c00061{bottom:530.181000px;}
.y3_c00061{bottom:828.459000px;}
.y2_c00061{bottom:847.690500px;}
.y1_c00061{bottom:1173.397500px;}
.h6_c00061{height:27.654984px;}
.h2_c00061{height:35.052060px;}
.h3_c00061{height:38.894508px;}
.h4_c00061{height:39.163488px;}
.h5_c00061{height:43.518384px;}
.h0_c00061{height:1262.835000px;}
.h1_c00061{height:1263.000000px;}
.w0_c00061{width:892.914000px;}
.w1_c00061{width:893.250000px;}
.x0_c00061{left:0.000000px;}
.x1_c00061{left:53.569500px;}
.x2_c00061{left:85.890000px;}
.x3_c00061{left:142.905000px;}
.xb_c00061{left:250.897500px;}
.x6_c00061{left:270.445500px;}
.xa_c00061{left:282.786000px;}
.x7_c00061{left:328.879500px;}
.x8_c00061{left:461.086500px;}
.x12_c00061{left:497.763000px;}
.x13_c00061{left:512.707500px;}
.x9_c00061{left:528.087000px;}
.x10_c00061{left:542.355000px;}
.x11_c00061{left:567.340500px;}
.x4_c00061{left:590.658000px;}
.x5_c00061{left:603.301500px;}
.xe_c00061{left:701.272500px;}
.xf_c00061{left:726.043500px;}
.xc_c00061{left:783.285000px;}
.xd_c00061{left:795.576000px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls1_c00061{letter-spacing:0.000000pt;}
.ls0_c00061{letter-spacing:10.626667pt;}
.ws4_c00061{word-spacing:-11.954667pt;}
.ws12_c00061{word-spacing:-3.134652pt;}
.ws6_c00061{word-spacing:-2.677893pt;}
.ws5_c00061{word-spacing:-2.438943pt;}
.ws3_c00061{word-spacing:-1.578159pt;}
.wsa_c00061{word-spacing:-0.265839pt;}
.ws1b_c00061{word-spacing:-0.159727pt;}
.wsd_c00061{word-spacing:-0.159195pt;}
.wsc_c00061{word-spacing:-0.053083pt;}
.ws2_c00061{word-spacing:-0.048010pt;}
.wsf_c00061{word-spacing:-0.000266pt;}
.ws7_c00061{word-spacing:0.000000pt;}
.wsb_c00061{word-spacing:0.000266pt;}
.ws1_c00061{word-spacing:0.000553pt;}
.ws0_c00061{word-spacing:0.001013pt;}
.ws8_c00061{word-spacing:0.095446pt;}
.ws9_c00061{word-spacing:0.106378pt;}
.ws16_c00061{word-spacing:0.159727pt;}
.ws1a_c00061{word-spacing:0.212544pt;}
.wse_c00061{word-spacing:0.956554pt;}
.ws15_c00061{word-spacing:2.603451pt;}
.ws17_c00061{word-spacing:3.932011pt;}
.ws14_c00061{word-spacing:4.304282pt;}
.ws11_c00061{word-spacing:4.675490pt;}
.ws13_c00061{word-spacing:4.676552pt;}
.ws19_c00061{word-spacing:5.419447pt;}
.ws18_c00061{word-spacing:5.473008pt;}
.ws10_c00061{word-spacing:6.270154pt;}
._7_c00061{margin-left:-5.056983pt;}
._6_c00061{margin-left:-3.721130pt;}
._2_c00061{margin-left:-2.483080pt;}
._1_c00061{margin-left:-1.434656pt;}
._3_c00061{width:13.293876pt;}
._4_c00061{width:15.209683pt;}
._5_c00061{width:16.999997pt;}
._9_c00061{width:19.235179pt;}
._8_c00061{width:21.253816pt;}
._a_c00061{width:24.655476pt;}
._0_c00061{width:2273.666115pt;}
.fs0_c00061{font-size:42.506667pt;}
.fs1_c00061{font-size:47.818667pt;}
.fs2_c00061{font-size:53.136000pt;}
.fs3_c00061{font-size:55.365333pt;}
.y0_c00061{bottom:0.000000pt;}
.y19_c00061{bottom:106.330667pt;}
.y18_c00061{bottom:123.068000pt;}
.y17_c00061{bottom:139.805333pt;}
.y16_c00061{bottom:156.542667pt;}
.y15_c00061{bottom:173.280000pt;}
.y14_c00061{bottom:190.017333pt;}
.y13_c00061{bottom:206.754667pt;}
.y12_c00061{bottom:223.492000pt;}
.y11_c00061{bottom:240.229333pt;}
.y10_c00061{bottom:256.966667pt;}
.yf_c00061{bottom:273.704000pt;}
.ye_c00061{bottom:290.441333pt;}
.yd_c00061{bottom:307.178667pt;}
.yc_c00061{bottom:323.916000pt;}
.yb_c00061{bottom:340.653333pt;}
.ya_c00061{bottom:357.390667pt;}
.y9_c00061{bottom:374.128000pt;}
.y8_c00061{bottom:390.865333pt;}
.y7_c00061{bottom:407.602667pt;}
.y6_c00061{bottom:424.340000pt;}
.y5_c00061{bottom:454.176000pt;}
.y4_c00061{bottom:471.272000pt;}
.y3_c00061{bottom:736.408000pt;}
.y2_c00061{bottom:753.502667pt;}
.y1_c00061{bottom:1043.020000pt;}
.h6_c00061{height:24.582208pt;}
.h2_c00061{height:31.157387pt;}
.h3_c00061{height:34.572896pt;}
.h4_c00061{height:34.811989pt;}
.h5_c00061{height:38.683008pt;}
.h0_c00061{height:1122.520000pt;}
.h1_c00061{height:1122.666667pt;}
.w0_c00061{width:793.701333pt;}
.w1_c00061{width:794.000000pt;}
.x0_c00061{left:0.000000pt;}
.x1_c00061{left:47.617333pt;}
.x2_c00061{left:76.346667pt;}
.x3_c00061{left:127.026667pt;}
.xb_c00061{left:223.020000pt;}
.x6_c00061{left:240.396000pt;}
.xa_c00061{left:251.365333pt;}
.x7_c00061{left:292.337333pt;}
.x8_c00061{left:409.854667pt;}
.x12_c00061{left:442.456000pt;}
.x13_c00061{left:455.740000pt;}
.x9_c00061{left:469.410667pt;}
.x10_c00061{left:482.093333pt;}
.x11_c00061{left:504.302667pt;}
.x4_c00061{left:525.029333pt;}
.x5_c00061{left:536.268000pt;}
.xe_c00061{left:623.353333pt;}
.xf_c00061{left:645.372000pt;}
.xc_c00061{left:696.253333pt;}
.xd_c00061{left:707.178667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_378673dbfb0e5d53d626987f.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.009000;font-style:normal;font-weight:normal;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_cf7ea65dfa1953a574339616.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:0.989000;font-style:normal;font-weight:normal;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_5cde4b52ac9ec6db19d1c319.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00062{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mb_c00062{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2_c00062{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m7_c00062{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc_c00062{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.ma_c00062{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6_c00062{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,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);}
.m4_c00062{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m9_c00062{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m8_c00062{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1_c00062{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3_c00062{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);}
.md_c00062{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.v1_c00062{vertical-align:32.874000px;}
.ls1_c00062{letter-spacing:0.000000px;}
.ls0_c00062{letter-spacing:11.955000px;}
.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;}
}
.wsa_c00062{word-spacing:-1.494271px;}
.wsc_c00062{word-spacing:-0.657917px;}
.ws10_c00062{word-spacing:-0.358489px;}
.ws7_c00062{word-spacing:-0.299129px;}
.wsf_c00062{word-spacing:-0.299069px;}
.ws3_c00062{word-spacing:-0.239112px;}
.ws9_c00062{word-spacing:-0.179095px;}
.ws16_c00062{word-spacing:-0.054011px;}
.ws2_c00062{word-spacing:-0.000299px;}
.ws12_c00062{word-spacing:0.000000px;}
.wsb_c00062{word-spacing:0.000299px;}
.ws1_c00062{word-spacing:0.000622px;}
.ws0_c00062{word-spacing:0.001139px;}
.ws4_c00062{word-spacing:0.059718px;}
.ws14_c00062{word-spacing:0.119078px;}
.ws13_c00062{word-spacing:0.119676px;}
.ws17_c00062{word-spacing:0.161388px;}
.wsd_c00062{word-spacing:0.179095px;}
.ws15_c00062{word-spacing:0.268819px;}
.ws5_c00062{word-spacing:0.299129px;}
.ws6_c00062{word-spacing:0.537882px;}
.ws19_c00062{word-spacing:1.076124px;}
.ws8_c00062{word-spacing:4.244118px;}
.wse_c00062{word-spacing:7.053924px;}
.ws11_c00062{word-spacing:7.830320px;}
.ws18_c00062{word-spacing:151.539000px;}
._2_c00062{margin-left:-6.634222px;}
._8_c00062{margin-left:-5.499397px;}
._5_c00062{margin-left:-4.482573px;}
._3_c00062{margin-left:-1.075825px;}
._b_c00062{width:15.708593px;}
._9_c00062{width:17.348866px;}
._1_c00062{width:18.531001px;}
._4_c00062{width:20.742607px;}
._7_c00062{width:24.810022px;}
._6_c00062{width:41.907008px;}
._a_c00062{width:621.614866px;}
._0_c00062{width:2533.964379px;}
.fc1_c00062{color:rgb(8,117,183);}
.fc0_c00062{color:rgb(0,0,0);}
.fs0_c00062{font-size:47.820000px;}
.fs2_c00062{font-size:53.796000px;}
.fs1_c00062{font-size:59.778000px;}
.y0_c00062{bottom:0.000000px;}
.y37_c00062{bottom:89.770500px;}
.y36_c00062{bottom:108.600000px;}
.y35_c00062{bottom:127.429500px;}
.y34_c00062{bottom:150.741000px;}
.y33_c00062{bottom:193.065000px;}
.y32_c00062{bottom:209.503500px;}
.y2f_c00062{bottom:217.723500px;}
.y31_c00062{bottom:225.942000px;}
.y30_c00062{bottom:242.380500px;}
.y2e_c00062{bottom:266.022000px;}
.y2d_c00062{bottom:274.240500px;}
.y2c_c00062{bottom:306.100500px;}
.y2a_c00062{bottom:322.539000px;}
.y2b_c00062{bottom:338.977500px;}
.y29_c00062{bottom:362.617500px;}
.y28_c00062{bottom:379.056000px;}
.y25_c00062{bottom:387.276000px;}
.y27_c00062{bottom:395.494500px;}
.y26_c00062{bottom:411.933000px;}
.y24_c00062{bottom:435.573000px;}
.y23_c00062{bottom:452.011500px;}
.y20_c00062{bottom:468.450000px;}
.y22_c00062{bottom:484.888500px;}
.y21_c00062{bottom:501.327000px;}
.y1f_c00062{bottom:524.967000px;}
.y1e_c00062{bottom:541.405500px;}
.y1b_c00062{bottom:549.625500px;}
.y1d_c00062{bottom:557.844000px;}
.y1c_c00062{bottom:574.282500px;}
.y1a_c00062{bottom:597.924000px;}
.y19_c00062{bottom:629.542500px;}
.y18_c00062{bottom:666.646500px;}
.y17_c00062{bottom:685.476000px;}
.y16_c00062{bottom:704.305500px;}
.y15_c00062{bottom:727.618500px;}
.y14_c00062{bottom:761.242500px;}
.y13_c00062{bottom:780.072000px;}
.y12_c00062{bottom:798.901500px;}
.y11_c00062{bottom:817.731000px;}
.y10_c00062{bottom:836.560500px;}
.yf_c00062{bottom:855.390000px;}
.ye_c00062{bottom:874.219500px;}
.yd_c00062{bottom:893.049000px;}
.yc_c00062{bottom:911.878500px;}
.yb_c00062{bottom:930.708000px;}
.ya_c00062{bottom:949.537500px;}
.y9_c00062{bottom:968.367000px;}
.y8_c00062{bottom:987.196500px;}
.y7_c00062{bottom:1006.026000px;}
.y6_c00062{bottom:1024.855500px;}
.y5_c00062{bottom:1043.685000px;}
.y4_c00062{bottom:1062.513000px;}
.y3_c00062{bottom:1081.342500px;}
.y2_c00062{bottom:1104.655500px;}
.y1_c00062{bottom:1173.397500px;}
.h2_c00062{height:35.052060px;}
.h6_c00062{height:38.894508px;}
.h5_c00062{height:39.163488px;}
.h4_c00062{height:43.518384px;}
.h3_c00062{height:43.817274px;}
.h7_c00062{height:72.037488px;}
.h0_c00062{height:1262.835000px;}
.h1_c00062{height:1263.000000px;}
.w0_c00062{width:892.914000px;}
.w1_c00062{width:893.250000px;}
.x0_c00062{left:0.000000px;}
.x1_c00062{left:53.569500px;}
.x4_c00062{left:248.655000px;}
.x2_c00062{left:250.897500px;}
.x7_c00062{left:263.002500px;}
.xa_c00062{left:274.212000px;}
.x8_c00062{left:279.814500px;}
.x3_c00062{left:282.786000px;}
.xb_c00062{left:286.539000px;}
.x9_c00062{left:337.872000px;}
.x5_c00062{left:341.737500px;}
.x6_c00062{left:356.682000px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.v1_c00062{vertical-align:29.221333pt;}
.ls1_c00062{letter-spacing:0.000000pt;}
.ls0_c00062{letter-spacing:10.626667pt;}
.wsa_c00062{word-spacing:-1.328241pt;}
.wsc_c00062{word-spacing:-0.584815pt;}
.ws10_c00062{word-spacing:-0.318657pt;}
.ws7_c00062{word-spacing:-0.265893pt;}
.wsf_c00062{word-spacing:-0.265839pt;}
.ws3_c00062{word-spacing:-0.212544pt;}
.ws9_c00062{word-spacing:-0.159195pt;}
.ws16_c00062{word-spacing:-0.048010pt;}
.ws2_c00062{word-spacing:-0.000266pt;}
.ws12_c00062{word-spacing:0.000000pt;}
.wsb_c00062{word-spacing:0.000266pt;}
.ws1_c00062{word-spacing:0.000553pt;}
.ws0_c00062{word-spacing:0.001013pt;}
.ws4_c00062{word-spacing:0.053083pt;}
.ws14_c00062{word-spacing:0.105847pt;}
.ws13_c00062{word-spacing:0.106378pt;}
.ws17_c00062{word-spacing:0.143456pt;}
.wsd_c00062{word-spacing:0.159195pt;}
.ws15_c00062{word-spacing:0.238950pt;}
.ws5_c00062{word-spacing:0.265893pt;}
.ws6_c00062{word-spacing:0.478118pt;}
.ws19_c00062{word-spacing:0.956554pt;}
.ws8_c00062{word-spacing:3.772550pt;}
.wse_c00062{word-spacing:6.270154pt;}
.ws11_c00062{word-spacing:6.960285pt;}
.ws18_c00062{word-spacing:134.701333pt;}
._2_c00062{margin-left:-5.897086pt;}
._8_c00062{margin-left:-4.888353pt;}
._5_c00062{margin-left:-3.984509pt;}
._3_c00062{margin-left:-0.956289pt;}
._b_c00062{width:13.963194pt;}
._9_c00062{width:15.421214pt;}
._1_c00062{width:16.472001pt;}
._4_c00062{width:18.437873pt;}
._7_c00062{width:22.053353pt;}
._6_c00062{width:37.250674pt;}
._a_c00062{width:552.546548pt;}
._0_c00062{width:2252.412782pt;}
.fs0_c00062{font-size:42.506667pt;}
.fs2_c00062{font-size:47.818667pt;}
.fs1_c00062{font-size:53.136000pt;}
.y0_c00062{bottom:0.000000pt;}
.y37_c00062{bottom:79.796000pt;}
.y36_c00062{bottom:96.533333pt;}
.y35_c00062{bottom:113.270667pt;}
.y34_c00062{bottom:133.992000pt;}
.y33_c00062{bottom:171.613333pt;}
.y32_c00062{bottom:186.225333pt;}
.y2f_c00062{bottom:193.532000pt;}
.y31_c00062{bottom:200.837333pt;}
.y30_c00062{bottom:215.449333pt;}
.y2e_c00062{bottom:236.464000pt;}
.y2d_c00062{bottom:243.769333pt;}
.y2c_c00062{bottom:272.089333pt;}
.y2a_c00062{bottom:286.701333pt;}
.y2b_c00062{bottom:301.313333pt;}
.y29_c00062{bottom:322.326667pt;}
.y28_c00062{bottom:336.938667pt;}
.y25_c00062{bottom:344.245333pt;}
.y27_c00062{bottom:351.550667pt;}
.y26_c00062{bottom:366.162667pt;}
.y24_c00062{bottom:387.176000pt;}
.y23_c00062{bottom:401.788000pt;}
.y20_c00062{bottom:416.400000pt;}
.y22_c00062{bottom:431.012000pt;}
.y21_c00062{bottom:445.624000pt;}
.y1f_c00062{bottom:466.637333pt;}
.y1e_c00062{bottom:481.249333pt;}
.y1b_c00062{bottom:488.556000pt;}
.y1d_c00062{bottom:495.861333pt;}
.y1c_c00062{bottom:510.473333pt;}
.y1a_c00062{bottom:531.488000pt;}
.y19_c00062{bottom:559.593333pt;}
.y18_c00062{bottom:592.574667pt;}
.y17_c00062{bottom:609.312000pt;}
.y16_c00062{bottom:626.049333pt;}
.y15_c00062{bottom:646.772000pt;}
.y14_c00062{bottom:676.660000pt;}
.y13_c00062{bottom:693.397333pt;}
.y12_c00062{bottom:710.134667pt;}
.y11_c00062{bottom:726.872000pt;}
.y10_c00062{bottom:743.609333pt;}
.yf_c00062{bottom:760.346667pt;}
.ye_c00062{bottom:777.084000pt;}
.yd_c00062{bottom:793.821333pt;}
.yc_c00062{bottom:810.558667pt;}
.yb_c00062{bottom:827.296000pt;}
.ya_c00062{bottom:844.033333pt;}
.y9_c00062{bottom:860.770667pt;}
.y8_c00062{bottom:877.508000pt;}
.y7_c00062{bottom:894.245333pt;}
.y6_c00062{bottom:910.982667pt;}
.y5_c00062{bottom:927.720000pt;}
.y4_c00062{bottom:944.456000pt;}
.y3_c00062{bottom:961.193333pt;}
.y2_c00062{bottom:981.916000pt;}
.y1_c00062{bottom:1043.020000pt;}
.h2_c00062{height:31.157387pt;}
.h6_c00062{height:34.572896pt;}
.h5_c00062{height:34.811989pt;}
.h4_c00062{height:38.683008pt;}
.h3_c00062{height:38.948688pt;}
.h7_c00062{height:64.033323pt;}
.h0_c00062{height:1122.520000pt;}
.h1_c00062{height:1122.666667pt;}
.w0_c00062{width:793.701333pt;}
.w1_c00062{width:794.000000pt;}
.x0_c00062{left:0.000000pt;}
.x1_c00062{left:47.617333pt;}
.x4_c00062{left:221.026667pt;}
.x2_c00062{left:223.020000pt;}
.x7_c00062{left:233.780000pt;}
.xa_c00062{left:243.744000pt;}
.x8_c00062{left:248.724000pt;}
.x3_c00062{left:251.365333pt;}
.xb_c00062{left:254.701333pt;}
.x9_c00062{left:300.330667pt;}
.x5_c00062{left:303.766667pt;}
.x6_c00062{left:317.050667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_378673dbfb0e5d53d626987f.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.009000;font-style:normal;font-weight:normal;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_cf7ea65dfa1953a574339616.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:0.989000;font-style:normal;font-weight:normal;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_5cde4b52ac9ec6db19d1c319.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:1.011000;font-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_c00063{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma_c00063{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf_c00063{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m9_c00063{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.md_c00063{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m10_c00063{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,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);}
.m5_c00063{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m3_c00063{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mb_c00063{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mc_c00063{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.me_c00063{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6_c00063{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m8_c00063{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m4_c00063{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m7_c00063{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1_c00063{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);}
.m11_c00063{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.ls1_c00063{letter-spacing:0.000000px;}
.ls0_c00063{letter-spacing:11.955000px;}
.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;}
}
.ws17_c00063{word-spacing:-14.944500px;}
.ws8_c00063{word-spacing:-3.526484px;}
.ws1f_c00063{word-spacing:-3.347688px;}
.ws1e_c00063{word-spacing:-2.809506px;}
.ws7_c00063{word-spacing:-1.793699px;}
.ws9_c00063{word-spacing:-1.793101px;}
.ws21_c00063{word-spacing:-1.374894px;}
.ws22_c00063{word-spacing:-1.374296px;}
.ws25_c00063{word-spacing:-1.136081px;}
.ws24_c00063{word-spacing:-1.135483px;}
.ws20_c00063{word-spacing:-1.016106px;}
.ws23_c00063{word-spacing:-0.956687px;}
.ws1d_c00063{word-spacing:-0.777293px;}
.wse_c00063{word-spacing:-0.717276px;}
.wsc_c00063{word-spacing:-0.239112px;}
.ws12_c00063{word-spacing:-0.179693px;}
.wsa_c00063{word-spacing:-0.179095px;}
.wsb_c00063{word-spacing:-0.059718px;}
.ws6_c00063{word-spacing:-0.000299px;}
.ws26_c00063{word-spacing:0.000000px;}
.ws4_c00063{word-spacing:0.000299px;}
.ws1_c00063{word-spacing:0.000622px;}
.ws0_c00063{word-spacing:0.001139px;}
.ws18_c00063{word-spacing:0.050611px;}
.wsd_c00063{word-spacing:0.059718px;}
.ws10_c00063{word-spacing:0.119676px;}
.ws11_c00063{word-spacing:0.239112px;}
.ws5_c00063{word-spacing:0.358489px;}
.ws13_c00063{word-spacing:0.777293px;}
.ws1c_c00063{word-spacing:2.450719px;}
.ws1b_c00063{word-spacing:2.570095px;}
.ws1a_c00063{word-spacing:2.928883px;}
.ws16_c00063{word-spacing:3.586620px;}
.wsf_c00063{word-spacing:3.586680px;}
.ws2_c00063{word-spacing:4.781702px;}
.ws3_c00063{word-spacing:4.782300px;}
.ws14_c00063{word-spacing:4.961096px;}
.ws15_c00063{word-spacing:5.021113px;}
.ws19_c00063{word-spacing:5.140490px;}
._7_c00063{margin-left:-6.754794px;}
._5_c00063{margin-left:-5.497783px;}
._8_c00063{margin-left:-4.361556px;}
._b_c00063{margin-left:-2.213878px;}
._1_c00063{margin-left:-1.075825px;}
._a_c00063{width:14.047292px;}
._6_c00063{width:17.395219px;}
._4_c00063{width:18.591018px;}
._3_c00063{width:20.981420px;}
._9_c00063{width:22.171814px;}
._2_c00063{width:33.416380px;}
._0_c00063{width:2533.964379px;}
.fc1_c00063{color:rgb(8,117,183);}
.fc0_c00063{color:rgb(0,0,0);}
.fs0_c00063{font-size:47.820000px;}
.fs1_c00063{font-size:59.778000px;}
.y0_c00063{bottom:0.000000px;}
.y34_c00063{bottom:123.283500px;}
.y33_c00063{bottom:142.113000px;}
.y32_c00063{bottom:160.942500px;}
.y31_c00063{bottom:179.772000px;}
.y30_c00063{bottom:198.601500px;}
.y2f_c00063{bottom:217.431000px;}
.y2e_c00063{bottom:236.260500px;}
.y2d_c00063{bottom:255.090000px;}
.y2c_c00063{bottom:273.919500px;}
.y2b_c00063{bottom:292.747500px;}
.y2a_c00063{bottom:311.577000px;}
.y29_c00063{bottom:330.406500px;}
.y28_c00063{bottom:349.236000px;}
.y27_c00063{bottom:368.065500px;}
.y26_c00063{bottom:386.895000px;}
.y25_c00063{bottom:405.724500px;}
.y24_c00063{bottom:424.554000px;}
.y23_c00063{bottom:443.383500px;}
.y22_c00063{bottom:462.213000px;}
.y21_c00063{bottom:481.042500px;}
.y20_c00063{bottom:499.872000px;}
.y1f_c00063{bottom:523.185000px;}
.y1e_c00063{bottom:543.358500px;}
.y1d_c00063{bottom:576.982500px;}
.y1c_c00063{bottom:595.812000px;}
.y1b_c00063{bottom:614.641500px;}
.y1a_c00063{bottom:633.471000px;}
.y19_c00063{bottom:652.300500px;}
.y18_c00063{bottom:671.130000px;}
.y17_c00063{bottom:689.959500px;}
.y16_c00063{bottom:708.789000px;}
.y15_c00063{bottom:727.618500px;}
.y14_c00063{bottom:746.448000px;}
.y13_c00063{bottom:769.761000px;}
.y12_c00063{bottom:803.385000px;}
.y11_c00063{bottom:822.214500px;}
.y10_c00063{bottom:841.044000px;}
.yf_c00063{bottom:859.873500px;}
.ye_c00063{bottom:878.703000px;}
.yd_c00063{bottom:897.532500px;}
.yc_c00063{bottom:916.362000px;}
.yb_c00063{bottom:935.191500px;}
.ya_c00063{bottom:954.021000px;}
.y9_c00063{bottom:972.849000px;}
.y8_c00063{bottom:991.678500px;}
.y7_c00063{bottom:1010.508000px;}
.y6_c00063{bottom:1029.337500px;}
.y5_c00063{bottom:1048.167000px;}
.y4_c00063{bottom:1066.996500px;}
.y3_c00063{bottom:1085.826000px;}
.y2_c00063{bottom:1104.655500px;}
.y1_c00063{bottom:1173.397500px;}
.h2_c00063{height:35.052060px;}
.h5_c00063{height:43.219494px;}
.h3_c00063{height:43.518384px;}
.h4_c00063{height:43.817274px;}
.h0_c00063{height:1262.835000px;}
.h1_c00063{height:1263.000000px;}
.w0_c00063{width:892.914000px;}
.w1_c00063{width:893.250000px;}
.x0_c00063{left:0.000000px;}
.x1_c00063{left:53.569500px;}
.x14_c00063{left:248.654850px;}
.x2_c00063{left:250.449000px;}
.x5_c00063{left:282.786000px;}
.x19_c00063{left:379.702500px;}
.x17_c00063{left:395.250000px;}
.xe_c00063{left:415.798500px;}
.x18_c00063{left:437.268000px;}
.xf_c00063{left:439.144500px;}
.x10_c00063{left:455.523000px;}
.x11_c00063{left:470.467500px;}
.x3_c00063{left:485.905500px;}
.x4_c00063{left:500.850000px;}
.x6_c00063{left:551.545500px;}
.xa_c00063{left:556.186500px;}
.x7_c00063{left:566.490000px;}
.xb_c00063{left:579.535500px;}
.xc_c00063{left:595.744500px;}
.xd_c00063{left:610.689000px;}
.x8_c00063{left:661.960500px;}
.x9_c00063{left:684.802500px;}
.x12_c00063{left:771.342000px;}
.x15_c00063{left:777.715500px;}
.x13_c00063{left:786.285000px;}
.x1a_c00063{left:817.698000px;}
.x16_c00063{left:819.417000px;}
.x1b_c00063{left:832.642500px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls1_c00063{letter-spacing:0.000000pt;}
.ls0_c00063{letter-spacing:10.626667pt;}
.ws17_c00063{word-spacing:-13.284000pt;}
.ws8_c00063{word-spacing:-3.134652pt;}
.ws1f_c00063{word-spacing:-2.975722pt;}
.ws1e_c00063{word-spacing:-2.497339pt;}
.ws7_c00063{word-spacing:-1.594399pt;}
.ws9_c00063{word-spacing:-1.593867pt;}
.ws21_c00063{word-spacing:-1.222128pt;}
.ws22_c00063{word-spacing:-1.221597pt;}
.ws25_c00063{word-spacing:-1.009850pt;}
.ws24_c00063{word-spacing:-1.009318pt;}
.ws20_c00063{word-spacing:-0.903206pt;}
.ws23_c00063{word-spacing:-0.850389pt;}
.ws1d_c00063{word-spacing:-0.690927pt;}
.wse_c00063{word-spacing:-0.637579pt;}
.wsc_c00063{word-spacing:-0.212544pt;}
.ws12_c00063{word-spacing:-0.159727pt;}
.wsa_c00063{word-spacing:-0.159195pt;}
.wsb_c00063{word-spacing:-0.053083pt;}
.ws6_c00063{word-spacing:-0.000266pt;}
.ws26_c00063{word-spacing:0.000000pt;}
.ws4_c00063{word-spacing:0.000266pt;}
.ws1_c00063{word-spacing:0.000553pt;}
.ws0_c00063{word-spacing:0.001013pt;}
.ws18_c00063{word-spacing:0.044987pt;}
.wsd_c00063{word-spacing:0.053083pt;}
.ws10_c00063{word-spacing:0.106378pt;}
.ws11_c00063{word-spacing:0.212544pt;}
.ws5_c00063{word-spacing:0.318657pt;}
.ws13_c00063{word-spacing:0.690927pt;}
.ws1c_c00063{word-spacing:2.178417pt;}
.ws1b_c00063{word-spacing:2.284529pt;}
.ws1a_c00063{word-spacing:2.603451pt;}
.ws16_c00063{word-spacing:3.188107pt;}
.wsf_c00063{word-spacing:3.188160pt;}
.ws2_c00063{word-spacing:4.250402pt;}
.ws3_c00063{word-spacing:4.250933pt;}
.ws14_c00063{word-spacing:4.409863pt;}
.ws15_c00063{word-spacing:4.463211pt;}
.ws19_c00063{word-spacing:4.569324pt;}
._7_c00063{margin-left:-6.004262pt;}
._5_c00063{margin-left:-4.886918pt;}
._8_c00063{margin-left:-3.876938pt;}
._b_c00063{margin-left:-1.967892pt;}
._1_c00063{margin-left:-0.956289pt;}
._a_c00063{width:12.486482pt;}
._6_c00063{width:15.462417pt;}
._4_c00063{width:16.525349pt;}
._3_c00063{width:18.650152pt;}
._9_c00063{width:19.708279pt;}
._2_c00063{width:29.703449pt;}
._0_c00063{width:2252.412782pt;}
.fs0_c00063{font-size:42.506667pt;}
.fs1_c00063{font-size:53.136000pt;}
.y0_c00063{bottom:0.000000pt;}
.y34_c00063{bottom:109.585333pt;}
.y33_c00063{bottom:126.322667pt;}
.y32_c00063{bottom:143.060000pt;}
.y31_c00063{bottom:159.797333pt;}
.y30_c00063{bottom:176.534667pt;}
.y2f_c00063{bottom:193.272000pt;}
.y2e_c00063{bottom:210.009333pt;}
.y2d_c00063{bottom:226.746667pt;}
.y2c_c00063{bottom:243.484000pt;}
.y2b_c00063{bottom:260.220000pt;}
.y2a_c00063{bottom:276.957333pt;}
.y29_c00063{bottom:293.694667pt;}
.y28_c00063{bottom:310.432000pt;}
.y27_c00063{bottom:327.169333pt;}
.y26_c00063{bottom:343.906667pt;}
.y25_c00063{bottom:360.644000pt;}
.y24_c00063{bottom:377.381333pt;}
.y23_c00063{bottom:394.118667pt;}
.y22_c00063{bottom:410.856000pt;}
.y21_c00063{bottom:427.593333pt;}
.y20_c00063{bottom:444.330667pt;}
.y1f_c00063{bottom:465.053333pt;}
.y1e_c00063{bottom:482.985333pt;}
.y1d_c00063{bottom:512.873333pt;}
.y1c_c00063{bottom:529.610667pt;}
.y1b_c00063{bottom:546.348000pt;}
.y1a_c00063{bottom:563.085333pt;}
.y19_c00063{bottom:579.822667pt;}
.y18_c00063{bottom:596.560000pt;}
.y17_c00063{bottom:613.297333pt;}
.y16_c00063{bottom:630.034667pt;}
.y15_c00063{bottom:646.772000pt;}
.y14_c00063{bottom:663.509333pt;}
.y13_c00063{bottom:684.232000pt;}
.y12_c00063{bottom:714.120000pt;}
.y11_c00063{bottom:730.857333pt;}
.y10_c00063{bottom:747.594667pt;}
.yf_c00063{bottom:764.332000pt;}
.ye_c00063{bottom:781.069333pt;}
.yd_c00063{bottom:797.806667pt;}
.yc_c00063{bottom:814.544000pt;}
.yb_c00063{bottom:831.281333pt;}
.ya_c00063{bottom:848.018667pt;}
.y9_c00063{bottom:864.754667pt;}
.y8_c00063{bottom:881.492000pt;}
.y7_c00063{bottom:898.229333pt;}
.y6_c00063{bottom:914.966667pt;}
.y5_c00063{bottom:931.704000pt;}
.y4_c00063{bottom:948.441333pt;}
.y3_c00063{bottom:965.178667pt;}
.y2_c00063{bottom:981.916000pt;}
.y1_c00063{bottom:1043.020000pt;}
.h2_c00063{height:31.157387pt;}
.h5_c00063{height:38.417328pt;}
.h3_c00063{height:38.683008pt;}
.h4_c00063{height:38.948688pt;}
.h0_c00063{height:1122.520000pt;}
.h1_c00063{height:1122.666667pt;}
.w0_c00063{width:793.701333pt;}
.w1_c00063{width:794.000000pt;}
.x0_c00063{left:0.000000pt;}
.x1_c00063{left:47.617333pt;}
.x14_c00063{left:221.026533pt;}
.x2_c00063{left:222.621333pt;}
.x5_c00063{left:251.365333pt;}
.x19_c00063{left:337.513333pt;}
.x17_c00063{left:351.333333pt;}
.xe_c00063{left:369.598667pt;}
.x18_c00063{left:388.682667pt;}
.xf_c00063{left:390.350667pt;}
.x10_c00063{left:404.909333pt;}
.x11_c00063{left:418.193333pt;}
.x3_c00063{left:431.916000pt;}
.x4_c00063{left:445.200000pt;}
.x6_c00063{left:490.262667pt;}
.xa_c00063{left:494.388000pt;}
.x7_c00063{left:503.546667pt;}
.xb_c00063{left:515.142667pt;}
.xc_c00063{left:529.550667pt;}
.xd_c00063{left:542.834667pt;}
.x8_c00063{left:588.409333pt;}
.x9_c00063{left:608.713333pt;}
.x12_c00063{left:685.637333pt;}
.x15_c00063{left:691.302667pt;}
.x13_c00063{left:698.920000pt;}
.x1a_c00063{left:726.842667pt;}
.x16_c00063{left:728.370667pt;}
.x1b_c00063{left:740.126667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_378673dbfb0e5d53d626987f.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.009000;font-style:normal;font-weight:normal;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_cf7ea65dfa1953a574339616.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:0.989000;font-style:normal;font-weight:normal;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_5cde4b52ac9ec6db19d1c319.woff2')format("woff");}.ff3_c00064{font-family:ff3_c00064;line-height:1.011000;font-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_c00064{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8_c00064{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9_c00064{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.md_c00064{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m4_c00064{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma_c00064{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1_c00064{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mc_c00064{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,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);}
.m7_c00064{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.me_c00064{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mb_c00064{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m6_c00064{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m2_c00064{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m5_c00064{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);}
.mf_c00064{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.ls1_c00064{letter-spacing:0.000000px;}
.ls0_c00064{letter-spacing:11.955000px;}
.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;}
}
.ws6_c00064{word-spacing:-14.944500px;}
.ws4_c00064{word-spacing:-1.434911px;}
.wsa_c00064{word-spacing:-1.314877px;}
.wsb_c00064{word-spacing:-1.135483px;}
.ws3_c00064{word-spacing:-1.076124px;}
.ws5_c00064{word-spacing:-0.896670px;}
.ws8_c00064{word-spacing:-0.837310px;}
.ws7_c00064{word-spacing:-0.836713px;}
.ws17_c00064{word-spacing:-0.717276px;}
.ws20_c00064{word-spacing:-0.299069px;}
.ws1b_c00064{word-spacing:-0.239112px;}
.ws14_c00064{word-spacing:-0.179095px;}
.wsc_c00064{word-spacing:-0.119676px;}
.wsd_c00064{word-spacing:-0.059718px;}
.wse_c00064{word-spacing:-0.000299px;}
.ws2_c00064{word-spacing:0.000000px;}
.ws1f_c00064{word-spacing:0.000299px;}
.ws1_c00064{word-spacing:0.000622px;}
.ws0_c00064{word-spacing:0.001139px;}
.ws1a_c00064{word-spacing:0.059718px;}
.ws18_c00064{word-spacing:0.119676px;}
.ws19_c00064{word-spacing:0.179095px;}
.ws16_c00064{word-spacing:0.239112px;}
.ws11_c00064{word-spacing:0.358489px;}
.ws13_c00064{word-spacing:0.418506px;}
.ws9_c00064{word-spacing:1.076124px;}
.ws1e_c00064{word-spacing:1.374894px;}
.ws1d_c00064{word-spacing:1.613707px;}
.ws1c_c00064{word-spacing:1.614305px;}
.ws21_c00064{word-spacing:2.390702px;}
.ws15_c00064{word-spacing:2.450719px;}
.ws10_c00064{word-spacing:3.885331px;}
.wsf_c00064{word-spacing:6.874530px;}
.ws12_c00064{word-spacing:7.113881px;}
._4_c00064{margin-left:-6.703326px;}
._3_c00064{margin-left:-4.730412px;}
._5_c00064{margin-left:-2.935100px;}
._2_c00064{margin-left:-1.792742px;}
._6_c00064{width:13.083611px;}
._1_c00064{width:16.680780px;}
._b_c00064{width:18.292188px;}
._8_c00064{width:19.366757px;}
._a_c00064{width:21.764213px;}
._7_c00064{width:24.269330px;}
._9_c00064{width:26.722081px;}
._0_c00064{width:2533.964379px;}
.fc1_c00064{color:rgb(8,117,183);}
.fc0_c00064{color:rgb(0,0,0);}
.fs0_c00064{font-size:47.820000px;}
.fs1_c00064{font-size:53.796000px;}
.fs2_c00064{font-size:59.778000px;}
.y0_c00064{bottom:0.000000px;}
.y27_c00064{bottom:90.708000px;}
.y26_c00064{bottom:109.537500px;}
.y25_c00064{bottom:128.367000px;}
.y24_c00064{bottom:147.196500px;}
.y23_c00064{bottom:166.026000px;}
.y22_c00064{bottom:184.855500px;}
.y21_c00064{bottom:203.685000px;}
.y20_c00064{bottom:222.514500px;}
.y1f_c00064{bottom:241.344000px;}
.y1e_c00064{bottom:260.173500px;}
.y1d_c00064{bottom:279.003000px;}
.y1c_c00064{bottom:297.832500px;}
.y1b_c00064{bottom:316.660500px;}
.y1a_c00064{bottom:335.490000px;}
.y19_c00064{bottom:354.319500px;}
.y18_c00064{bottom:373.149000px;}
.y17_c00064{bottom:391.978500px;}
.y16_c00064{bottom:410.808000px;}
.y15_c00064{bottom:429.637500px;}
.y14_c00064{bottom:448.467000px;}
.y13_c00064{bottom:467.296500px;}
.y12_c00064{bottom:486.126000px;}
.y11_c00064{bottom:504.955500px;}
.y10_c00064{bottom:523.785000px;}
.yf_c00064{bottom:542.614500px;}
.ye_c00064{bottom:561.444000px;}
.yd_c00064{bottom:580.273500px;}
.yc_c00064{bottom:599.103000px;}
.yb_c00064{bottom:617.932500px;}
.ya_c00064{bottom:636.762000px;}
.y9_c00064{bottom:655.591500px;}
.y8_c00064{bottom:674.421000px;}
.y7_c00064{bottom:693.250500px;}
.y6_c00064{bottom:712.080000px;}
.y5_c00064{bottom:730.909500px;}
.y4_c00064{bottom:749.739000px;}
.y3_c00064{bottom:768.568500px;}
.y2_c00064{bottom:802.134000px;}
.y1_c00064{bottom:1173.397500px;}
.h2_c00064{height:35.052060px;}
.h3_c00064{height:39.163488px;}
.h4_c00064{height:43.518384px;}
.h0_c00064{height:1262.835000px;}
.h1_c00064{height:1263.000000px;}
.w0_c00064{width:892.914000px;}
.w1_c00064{width:893.250000px;}
.x0_c00064{left:0.000000px;}
.x1_c00064{left:53.569500px;}
.x2_c00064{left:197.380500px;}
.x4_c00064{left:250.905000px;}
.x3_c00064{left:282.675000px;}
.x9_c00064{left:320.382000px;}
.xa_c00064{left:335.326500px;}
.x7_c00064{left:369.339000px;}
.x8_c00064{left:384.283500px;}
.x11_c00064{left:385.975500px;}
.x12_c00064{left:400.920000px;}
.xf_c00064{left:540.490500px;}
.x10_c00064{left:555.433500px;}
.xd_c00064{left:612.009000px;}
.xe_c00064{left:626.952000px;}
.x5_c00064{left:798.541500px;}
.x6_c00064{left:813.037500px;}
.xb_c00064{left:817.698000px;}
.xc_c00064{left:832.642500px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls1_c00064{letter-spacing:0.000000pt;}
.ls0_c00064{letter-spacing:10.626667pt;}
.ws6_c00064{word-spacing:-13.284000pt;}
.ws4_c00064{word-spacing:-1.275477pt;}
.wsa_c00064{word-spacing:-1.168779pt;}
.wsb_c00064{word-spacing:-1.009318pt;}
.ws3_c00064{word-spacing:-0.956554pt;}
.ws5_c00064{word-spacing:-0.797040pt;}
.ws8_c00064{word-spacing:-0.744276pt;}
.ws7_c00064{word-spacing:-0.743745pt;}
.ws17_c00064{word-spacing:-0.637579pt;}
.ws20_c00064{word-spacing:-0.265839pt;}
.ws1b_c00064{word-spacing:-0.212544pt;}
.ws14_c00064{word-spacing:-0.159195pt;}
.wsc_c00064{word-spacing:-0.106378pt;}
.wsd_c00064{word-spacing:-0.053083pt;}
.wse_c00064{word-spacing:-0.000266pt;}
.ws2_c00064{word-spacing:0.000000pt;}
.ws1f_c00064{word-spacing:0.000266pt;}
.ws1_c00064{word-spacing:0.000553pt;}
.ws0_c00064{word-spacing:0.001013pt;}
.ws1a_c00064{word-spacing:0.053083pt;}
.ws18_c00064{word-spacing:0.106378pt;}
.ws19_c00064{word-spacing:0.159195pt;}
.ws16_c00064{word-spacing:0.212544pt;}
.ws11_c00064{word-spacing:0.318657pt;}
.ws13_c00064{word-spacing:0.372005pt;}
.ws9_c00064{word-spacing:0.956554pt;}
.ws1e_c00064{word-spacing:1.222128pt;}
.ws1d_c00064{word-spacing:1.434406pt;}
.ws1c_c00064{word-spacing:1.434938pt;}
.ws21_c00064{word-spacing:2.125068pt;}
.ws15_c00064{word-spacing:2.178417pt;}
.ws10_c00064{word-spacing:3.453627pt;}
.wsf_c00064{word-spacing:6.110693pt;}
.ws12_c00064{word-spacing:6.323450pt;}
._4_c00064{margin-left:-5.958512pt;}
._3_c00064{margin-left:-4.204811pt;}
._5_c00064{margin-left:-2.608978pt;}
._2_c00064{margin-left:-1.593549pt;}
._6_c00064{width:11.629876pt;}
._1_c00064{width:14.827360pt;}
._b_c00064{width:16.259722pt;}
._8_c00064{width:17.214895pt;}
._a_c00064{width:19.345967pt;}
._7_c00064{width:21.572738pt;}
._9_c00064{width:23.752961pt;}
._0_c00064{width:2252.412782pt;}
.fs0_c00064{font-size:42.506667pt;}
.fs1_c00064{font-size:47.818667pt;}
.fs2_c00064{font-size:53.136000pt;}
.y0_c00064{bottom:0.000000pt;}
.y27_c00064{bottom:80.629333pt;}
.y26_c00064{bottom:97.366667pt;}
.y25_c00064{bottom:114.104000pt;}
.y24_c00064{bottom:130.841333pt;}
.y23_c00064{bottom:147.578667pt;}
.y22_c00064{bottom:164.316000pt;}
.y21_c00064{bottom:181.053333pt;}
.y20_c00064{bottom:197.790667pt;}
.y1f_c00064{bottom:214.528000pt;}
.y1e_c00064{bottom:231.265333pt;}
.y1d_c00064{bottom:248.002667pt;}
.y1c_c00064{bottom:264.740000pt;}
.y1b_c00064{bottom:281.476000pt;}
.y1a_c00064{bottom:298.213333pt;}
.y19_c00064{bottom:314.950667pt;}
.y18_c00064{bottom:331.688000pt;}
.y17_c00064{bottom:348.425333pt;}
.y16_c00064{bottom:365.162667pt;}
.y15_c00064{bottom:381.900000pt;}
.y14_c00064{bottom:398.637333pt;}
.y13_c00064{bottom:415.374667pt;}
.y12_c00064{bottom:432.112000pt;}
.y11_c00064{bottom:448.849333pt;}
.y10_c00064{bottom:465.586667pt;}
.yf_c00064{bottom:482.324000pt;}
.ye_c00064{bottom:499.061333pt;}
.yd_c00064{bottom:515.798667pt;}
.yc_c00064{bottom:532.536000pt;}
.yb_c00064{bottom:549.273333pt;}
.ya_c00064{bottom:566.010667pt;}
.y9_c00064{bottom:582.748000pt;}
.y8_c00064{bottom:599.485333pt;}
.y7_c00064{bottom:616.222667pt;}
.y6_c00064{bottom:632.960000pt;}
.y5_c00064{bottom:649.697333pt;}
.y4_c00064{bottom:666.434667pt;}
.y3_c00064{bottom:683.172000pt;}
.y2_c00064{bottom:713.008000pt;}
.y1_c00064{bottom:1043.020000pt;}
.h2_c00064{height:31.157387pt;}
.h3_c00064{height:34.811989pt;}
.h4_c00064{height:38.683008pt;}
.h0_c00064{height:1122.520000pt;}
.h1_c00064{height:1122.666667pt;}
.w0_c00064{width:793.701333pt;}
.w1_c00064{width:794.000000pt;}
.x0_c00064{left:0.000000pt;}
.x1_c00064{left:47.617333pt;}
.x2_c00064{left:175.449333pt;}
.x4_c00064{left:223.026667pt;}
.x3_c00064{left:251.266667pt;}
.x9_c00064{left:284.784000pt;}
.xa_c00064{left:298.068000pt;}
.x7_c00064{left:328.301333pt;}
.x8_c00064{left:341.585333pt;}
.x11_c00064{left:343.089333pt;}
.x12_c00064{left:356.373333pt;}
.xf_c00064{left:480.436000pt;}
.x10_c00064{left:493.718667pt;}
.xd_c00064{left:544.008000pt;}
.xe_c00064{left:557.290667pt;}
.x5_c00064{left:709.814667pt;}
.x6_c00064{left:722.700000pt;}
.xb_c00064{left:726.842667pt;}
.xc_c00064{left:740.126667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_378673dbfb0e5d53d626987f.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.009000;font-style:normal;font-weight:normal;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_cf7ea65dfa1953a574339616.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:0.989000;font-style:normal;font-weight:normal;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_5cde4b52ac9ec6db19d1c319.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8_c00065{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc_c00065{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m3_c00065{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me_c00065{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m10_c00065{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m0_c00065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6_c00065{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m7_c00065{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.ma_c00065{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m11_c00065{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb_c00065{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1_c00065{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9_c00065{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m4_c00065{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m5_c00065{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m12_c00065{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mf_c00065{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.md_c00065{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m13_c00065{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2_c00065{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);}
.m14_c00065{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.ls1_c00065{letter-spacing:0.000000px;}
.ls0_c00065{letter-spacing:11.955000px;}
.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;}
}
.ws1b_c00065{word-spacing:-2.092469px;}
.ws13_c00065{word-spacing:-1.853118px;}
.ws1e_c00065{word-spacing:-1.016106px;}
.ws18_c00065{word-spacing:-0.358489px;}
.ws25_c00065{word-spacing:-0.299069px;}
.ws2_c00065{word-spacing:-0.239112px;}
.wsf_c00065{word-spacing:-0.179693px;}
.ws9_c00065{word-spacing:-0.179095px;}
.ws14_c00065{word-spacing:-0.119676px;}
.ws24_c00065{word-spacing:-0.119078px;}
.ws12_c00065{word-spacing:-0.059718px;}
.ws15_c00065{word-spacing:-0.000299px;}
.ws16_c00065{word-spacing:0.000000px;}
.wsa_c00065{word-spacing:0.000299px;}
.ws1_c00065{word-spacing:0.000622px;}
.ws0_c00065{word-spacing:0.001139px;}
.wsb_c00065{word-spacing:0.059718px;}
.ws6_c00065{word-spacing:0.119676px;}
.ws17_c00065{word-spacing:0.179095px;}
.ws1c_c00065{word-spacing:0.239112px;}
.ws23_c00065{word-spacing:0.299129px;}
.ws1a_c00065{word-spacing:0.657319px;}
.ws19_c00065{word-spacing:0.717276px;}
.ws1d_c00065{word-spacing:1.494330px;}
.wsc_c00065{word-spacing:1.913075px;}
.ws7_c00065{word-spacing:2.271325px;}
.wse_c00065{word-spacing:2.809506px;}
.wsd_c00065{word-spacing:2.809626px;}
.ws8_c00065{word-spacing:4.244118px;}
.ws4_c00065{word-spacing:5.798705px;}
.ws1f_c00065{word-spacing:5.858124px;}
.ws10_c00065{word-spacing:7.053326px;}
.ws11_c00065{word-spacing:7.113283px;}
.ws5_c00065{word-spacing:7.352096px;}
.ws22_c00065{word-spacing:7.472130px;}
.ws3_c00065{word-spacing:7.711482px;}
.ws21_c00065{word-spacing:8.487878px;}
.ws20_c00065{word-spacing:8.548254px;}
._e_c00065{margin-left:-6.515384px;}
._d_c00065{margin-left:-5.440157px;}
._6_c00065{margin-left:-4.363794px;}
._2_c00065{margin-left:-2.032213px;}
._1_c00065{margin-left:-1.016405px;}
._8_c00065{width:15.781213px;}
._c_c00065{width:18.172213px;}
._b_c00065{width:19.368012px;}
._5_c00065{width:22.056647px;}
._9_c00065{width:23.851781px;}
._4_c00065{width:25.584685px;}
._7_c00065{width:27.497880px;}
._a_c00065{width:40.290611px;}
._3_c00065{width:42.979246px;}
._f_c00065{width:44.658709px;}
._0_c00065{width:2533.964379px;}
.fc1_c00065{color:rgb(8,117,183);}
.fc0_c00065{color:rgb(0,0,0);}
.fs0_c00065{font-size:47.820000px;}
.fs1_c00065{font-size:59.778000px;}
.y0_c00065{bottom:0.000000px;}
.y35_c00065{bottom:105.799500px;}
.y34_c00065{bottom:124.627500px;}
.y33_c00065{bottom:147.940500px;}
.y32_c00065{bottom:181.564500px;}
.y31_c00065{bottom:200.394000px;}
.y30_c00065{bottom:219.223500px;}
.y2f_c00065{bottom:238.053000px;}
.y2e_c00065{bottom:256.882500px;}
.y2d_c00065{bottom:275.712000px;}
.y2c_c00065{bottom:294.541500px;}
.y2b_c00065{bottom:313.371000px;}
.y2a_c00065{bottom:332.200500px;}
.y29_c00065{bottom:351.030000px;}
.y28_c00065{bottom:369.859500px;}
.y27_c00065{bottom:388.689000px;}
.y26_c00065{bottom:407.518500px;}
.y25_c00065{bottom:426.348000px;}
.y24_c00065{bottom:445.177500px;}
.y23_c00065{bottom:464.007000px;}
.y22_c00065{bottom:482.836500px;}
.y21_c00065{bottom:501.666000px;}
.y20_c00065{bottom:520.495500px;}
.y1f_c00065{bottom:539.323500px;}
.y1e_c00065{bottom:558.153000px;}
.y1d_c00065{bottom:576.982500px;}
.y1c_c00065{bottom:595.812000px;}
.y1b_c00065{bottom:614.641500px;}
.y1a_c00065{bottom:633.471000px;}
.y19_c00065{bottom:652.300500px;}
.y18_c00065{bottom:675.613500px;}
.y17_c00065{bottom:709.237500px;}
.y16_c00065{bottom:728.067000px;}
.y15_c00065{bottom:746.896500px;}
.y14_c00065{bottom:765.726000px;}
.y13_c00065{bottom:784.555500px;}
.y12_c00065{bottom:803.385000px;}
.y11_c00065{bottom:822.214500px;}
.y10_c00065{bottom:841.044000px;}
.yf_c00065{bottom:859.873500px;}
.ye_c00065{bottom:878.703000px;}
.yd_c00065{bottom:897.532500px;}
.yc_c00065{bottom:916.362000px;}
.yb_c00065{bottom:935.191500px;}
.ya_c00065{bottom:954.021000px;}
.y9_c00065{bottom:972.849000px;}
.y8_c00065{bottom:991.678500px;}
.y7_c00065{bottom:1010.508000px;}
.y6_c00065{bottom:1029.337500px;}
.y5_c00065{bottom:1048.167000px;}
.y4_c00065{bottom:1066.996500px;}
.y3_c00065{bottom:1085.826000px;}
.y2_c00065{bottom:1104.655500px;}
.y1_c00065{bottom:1173.397500px;}
.h2_c00065{height:35.052060px;}
.h3_c00065{height:43.518384px;}
.h4_c00065{height:43.817274px;}
.h0_c00065{height:1262.835000px;}
.h1_c00065{height:1263.000000px;}
.w0_c00065{width:892.914000px;}
.w1_c00065{width:893.250000px;}
.x0_c00065{left:0.000000px;}
.x1_c00065{left:53.569500px;}
.x3_c00065{left:248.655000px;}
.x2_c00065{left:250.314000px;}
.x4_c00065{left:282.786000px;}
.xb_c00065{left:308.731500px;}
.x17_c00065{left:311.272500px;}
.x18_c00065{left:318.744000px;}
.x19_c00065{left:322.554000px;}
.xc_c00065{left:323.674500px;}
.x1a_c00065{left:330.027000px;}
.xd_c00065{left:393.055500px;}
.xe_c00065{left:407.998500px;}
.x1b_c00065{left:409.141500px;}
.x1c_c00065{left:424.086000px;}
.x1d_c00065{left:439.132500px;}
.xf_c00065{left:520.389000px;}
.x10_c00065{left:535.332000px;}
.x1e_c00065{left:571.321500px;}
.x1f_c00065{left:586.266000px;}
.x11_c00065{left:594.456000px;}
.x20_c00065{left:595.669500px;}
.x12_c00065{left:601.927500px;}
.x21_c00065{left:610.614000px;}
.x13_c00065{left:676.341000px;}
.x14_c00065{left:691.284000px;}
.x22_c00065{left:698.470500px;}
.x5_c00065{left:704.124000px;}
.x23_c00065{left:713.413500px;}
.x6_c00065{left:719.068500px;}
.x7_c00065{left:722.878500px;}
.x8_c00065{left:737.823000px;}
.x15_c00065{left:793.281000px;}
.x16_c00065{left:800.754000px;}
.x9_c00065{left:824.422500px;}
.xa_c00065{left:831.894000px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls1_c00065{letter-spacing:0.000000pt;}
.ls0_c00065{letter-spacing:10.626667pt;}
.ws1b_c00065{word-spacing:-1.859973pt;}
.ws13_c00065{word-spacing:-1.647216pt;}
.ws1e_c00065{word-spacing:-0.903206pt;}
.ws18_c00065{word-spacing:-0.318657pt;}
.ws25_c00065{word-spacing:-0.265839pt;}
.ws2_c00065{word-spacing:-0.212544pt;}
.wsf_c00065{word-spacing:-0.159727pt;}
.ws9_c00065{word-spacing:-0.159195pt;}
.ws14_c00065{word-spacing:-0.106378pt;}
.ws24_c00065{word-spacing:-0.105847pt;}
.ws12_c00065{word-spacing:-0.053083pt;}
.ws15_c00065{word-spacing:-0.000266pt;}
.ws16_c00065{word-spacing:0.000000pt;}
.wsa_c00065{word-spacing:0.000266pt;}
.ws1_c00065{word-spacing:0.000553pt;}
.ws0_c00065{word-spacing:0.001013pt;}
.wsb_c00065{word-spacing:0.053083pt;}
.ws6_c00065{word-spacing:0.106378pt;}
.ws17_c00065{word-spacing:0.159195pt;}
.ws1c_c00065{word-spacing:0.212544pt;}
.ws23_c00065{word-spacing:0.265893pt;}
.ws1a_c00065{word-spacing:0.584283pt;}
.ws19_c00065{word-spacing:0.637579pt;}
.ws1d_c00065{word-spacing:1.328294pt;}
.wsc_c00065{word-spacing:1.700511pt;}
.ws7_c00065{word-spacing:2.018955pt;}
.wse_c00065{word-spacing:2.497339pt;}
.wsd_c00065{word-spacing:2.497445pt;}
.ws8_c00065{word-spacing:3.772550pt;}
.ws4_c00065{word-spacing:5.154405pt;}
.ws1f_c00065{word-spacing:5.207222pt;}
.ws10_c00065{word-spacing:6.269623pt;}
.ws11_c00065{word-spacing:6.322918pt;}
.ws5_c00065{word-spacing:6.535197pt;}
.ws22_c00065{word-spacing:6.641894pt;}
.ws3_c00065{word-spacing:6.854650pt;}
.ws21_c00065{word-spacing:7.544781pt;}
.ws20_c00065{word-spacing:7.598448pt;}
._e_c00065{margin-left:-5.791452pt;}
._d_c00065{margin-left:-4.835695pt;}
._6_c00065{margin-left:-3.878928pt;}
._2_c00065{margin-left:-1.806411pt;}
._1_c00065{margin-left:-0.903471pt;}
._8_c00065{width:14.027745pt;}
._c_c00065{width:16.153078pt;}
._b_c00065{width:17.216011pt;}
._5_c00065{width:19.605909pt;}
._9_c00065{width:21.201583pt;}
._4_c00065{width:22.741942pt;}
._7_c00065{width:24.442560pt;}
._a_c00065{width:35.813877pt;}
._3_c00065{width:38.203774pt;}
._f_c00065{width:39.696630pt;}
._0_c00065{width:2252.412782pt;}
.fs0_c00065{font-size:42.506667pt;}
.fs1_c00065{font-size:53.136000pt;}
.y0_c00065{bottom:0.000000pt;}
.y35_c00065{bottom:94.044000pt;}
.y34_c00065{bottom:110.780000pt;}
.y33_c00065{bottom:131.502667pt;}
.y32_c00065{bottom:161.390667pt;}
.y31_c00065{bottom:178.128000pt;}
.y30_c00065{bottom:194.865333pt;}
.y2f_c00065{bottom:211.602667pt;}
.y2e_c00065{bottom:228.340000pt;}
.y2d_c00065{bottom:245.077333pt;}
.y2c_c00065{bottom:261.814667pt;}
.y2b_c00065{bottom:278.552000pt;}
.y2a_c00065{bottom:295.289333pt;}
.y29_c00065{bottom:312.026667pt;}
.y28_c00065{bottom:328.764000pt;}
.y27_c00065{bottom:345.501333pt;}
.y26_c00065{bottom:362.238667pt;}
.y25_c00065{bottom:378.976000pt;}
.y24_c00065{bottom:395.713333pt;}
.y23_c00065{bottom:412.450667pt;}
.y22_c00065{bottom:429.188000pt;}
.y21_c00065{bottom:445.925333pt;}
.y20_c00065{bottom:462.662667pt;}
.y1f_c00065{bottom:479.398667pt;}
.y1e_c00065{bottom:496.136000pt;}
.y1d_c00065{bottom:512.873333pt;}
.y1c_c00065{bottom:529.610667pt;}
.y1b_c00065{bottom:546.348000pt;}
.y1a_c00065{bottom:563.085333pt;}
.y19_c00065{bottom:579.822667pt;}
.y18_c00065{bottom:600.545333pt;}
.y17_c00065{bottom:630.433333pt;}
.y16_c00065{bottom:647.170667pt;}
.y15_c00065{bottom:663.908000pt;}
.y14_c00065{bottom:680.645333pt;}
.y13_c00065{bottom:697.382667pt;}
.y12_c00065{bottom:714.120000pt;}
.y11_c00065{bottom:730.857333pt;}
.y10_c00065{bottom:747.594667pt;}
.yf_c00065{bottom:764.332000pt;}
.ye_c00065{bottom:781.069333pt;}
.yd_c00065{bottom:797.806667pt;}
.yc_c00065{bottom:814.544000pt;}
.yb_c00065{bottom:831.281333pt;}
.ya_c00065{bottom:848.018667pt;}
.y9_c00065{bottom:864.754667pt;}
.y8_c00065{bottom:881.492000pt;}
.y7_c00065{bottom:898.229333pt;}
.y6_c00065{bottom:914.966667pt;}
.y5_c00065{bottom:931.704000pt;}
.y4_c00065{bottom:948.441333pt;}
.y3_c00065{bottom:965.178667pt;}
.y2_c00065{bottom:981.916000pt;}
.y1_c00065{bottom:1043.020000pt;}
.h2_c00065{height:31.157387pt;}
.h3_c00065{height:38.683008pt;}
.h4_c00065{height:38.948688pt;}
.h0_c00065{height:1122.520000pt;}
.h1_c00065{height:1122.666667pt;}
.w0_c00065{width:793.701333pt;}
.w1_c00065{width:794.000000pt;}
.x0_c00065{left:0.000000pt;}
.x1_c00065{left:47.617333pt;}
.x3_c00065{left:221.026667pt;}
.x2_c00065{left:222.501333pt;}
.x4_c00065{left:251.365333pt;}
.xb_c00065{left:274.428000pt;}
.x17_c00065{left:276.686667pt;}
.x18_c00065{left:283.328000pt;}
.x19_c00065{left:286.714667pt;}
.xc_c00065{left:287.710667pt;}
.x1a_c00065{left:293.357333pt;}
.xd_c00065{left:349.382667pt;}
.xe_c00065{left:362.665333pt;}
.x1b_c00065{left:363.681333pt;}
.x1c_c00065{left:376.965333pt;}
.x1d_c00065{left:390.340000pt;}
.xf_c00065{left:462.568000pt;}
.x10_c00065{left:475.850667pt;}
.x1e_c00065{left:507.841333pt;}
.x1f_c00065{left:521.125333pt;}
.x11_c00065{left:528.405333pt;}
.x20_c00065{left:529.484000pt;}
.x12_c00065{left:535.046667pt;}
.x21_c00065{left:542.768000pt;}
.x13_c00065{left:601.192000pt;}
.x14_c00065{left:614.474667pt;}
.x22_c00065{left:620.862667pt;}
.x5_c00065{left:625.888000pt;}
.x23_c00065{left:634.145333pt;}
.x6_c00065{left:639.172000pt;}
.x7_c00065{left:642.558667pt;}
.x8_c00065{left:655.842667pt;}
.x15_c00065{left:705.138667pt;}
.x16_c00065{left:711.781333pt;}
.x9_c00065{left:732.820000pt;}
.xa_c00065{left:739.461333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_378673dbfb0e5d53d626987f.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.009000;font-style:normal;font-weight:normal;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_cf7ea65dfa1953a574339616.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:0.989000;font-style:normal;font-weight:normal;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_5cde4b52ac9ec6db19d1c319.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00066;src:url('chunks/assets/font_2afe9205ff2200b5e7423846.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:0.388000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00066{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8_c00066{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.me_c00066{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.ma_c00066{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m10_c00066{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m11_c00066{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m13_c00066{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mc_c00066{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m9_c00066{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m6_c00066{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mb_c00066{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5_c00066{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m0_c00066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mf_c00066{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m12_c00066{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.md_c00066{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4_c00066{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m3_c00066{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1_c00066{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m2_c00066{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);}
.m14_c00066{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls1_c00066{letter-spacing:0.000000px;}
.ls0_c00066{letter-spacing:11.955000px;}
.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;}
}
.ws16_c00066{word-spacing:-3.526484px;}
.wsb_c00066{word-spacing:-2.690070px;}
.ws10_c00066{word-spacing:-2.271325px;}
.ws26_c00066{word-spacing:-1.195500px;}
.ws24_c00066{word-spacing:-1.076124px;}
.ws6_c00066{word-spacing:-0.358489px;}
.ws2_c00066{word-spacing:-0.239112px;}
.ws4_c00066{word-spacing:-0.119676px;}
.ws1c_c00066{word-spacing:-0.059718px;}
.ws8_c00066{word-spacing:-0.000299px;}
.ws28_c00066{word-spacing:0.000000px;}
.ws18_c00066{word-spacing:0.000299px;}
.ws1_c00066{word-spacing:0.000622px;}
.ws0_c00066{word-spacing:0.001139px;}
.ws5_c00066{word-spacing:0.059718px;}
.ws17_c00066{word-spacing:0.119676px;}
.wsa_c00066{word-spacing:0.179095px;}
.ws23_c00066{word-spacing:0.239112px;}
.ws15_c00066{word-spacing:0.299129px;}
.wse_c00066{word-spacing:0.358489px;}
.wsd_c00066{word-spacing:0.418506px;}
.ws13_c00066{word-spacing:1.135483px;}
.ws12_c00066{word-spacing:1.135543px;}
.ws1a_c00066{word-spacing:1.613707px;}
.ws3_c00066{word-spacing:1.673724px;}
.ws14_c00066{word-spacing:2.091931px;}
.ws1b_c00066{word-spacing:2.151888px;}
.ws11_c00066{word-spacing:2.211906px;}
.wsc_c00066{word-spacing:2.809506px;}
.ws7_c00066{word-spacing:2.988900px;}
.ws1f_c00066{word-spacing:3.347688px;}
.ws9_c00066{word-spacing:3.467124px;}
.wsf_c00066{word-spacing:3.586501px;}
.ws22_c00066{word-spacing:3.586680px;}
.ws1e_c00066{word-spacing:4.363495px;}
.ws1d_c00066{word-spacing:4.364093px;}
.ws20_c00066{word-spacing:5.439499px;}
.ws21_c00066{word-spacing:5.439918px;}
.ws25_c00066{word-spacing:5.678731px;}
.ws27_c00066{word-spacing:5.738688px;}
.ws19_c00066{word-spacing:6.096878px;}
._b_c00066{margin-left:-7.592165px;}
._6_c00066{margin-left:-6.515981px;}
._4_c00066{margin-left:-4.423213px;}
._1_c00066{margin-left:-1.075825px;}
._3_c00066{width:18.830309px;}
._7_c00066{width:20.205024px;}
._8_c00066{width:22.536605px;}
._2_c00066{width:23.971217px;}
._5_c00066{width:28.035643px;}
._9_c00066{width:32.220581px;}
._a_c00066{width:35.328619px;}
._0_c00066{width:2533.964379px;}
.fc1_c00066{color:rgb(8,117,183);}
.fc0_c00066{color:rgb(0,0,0);}
.fs2_c00066{font-size:47.340000px;}
.fs0_c00066{font-size:47.820000px;}
.fs1_c00066{font-size:59.778000px;}
.y0_c00066{bottom:0.000000px;}
.y3a_c00066{bottom:106.246500px;}
.y39_c00066{bottom:125.076000px;}
.y38_c00066{bottom:143.905500px;}
.y37_c00066{bottom:162.735000px;}
.y36_c00066{bottom:181.564500px;}
.y35_c00066{bottom:200.394000px;}
.y34_c00066{bottom:219.223500px;}
.y33_c00066{bottom:238.053000px;}
.y32_c00066{bottom:256.882500px;}
.y31_c00066{bottom:275.712000px;}
.y30_c00066{bottom:294.541500px;}
.y2f_c00066{bottom:313.371000px;}
.y2e_c00066{bottom:332.200500px;}
.y2d_c00066{bottom:351.030000px;}
.y2c_c00066{bottom:369.859500px;}
.y2b_c00066{bottom:393.172500px;}
.y2a_c00066{bottom:426.796500px;}
.y29_c00066{bottom:445.626000px;}
.y28_c00066{bottom:464.454000px;}
.y27_c00066{bottom:483.283500px;}
.y26_c00066{bottom:502.113000px;}
.y25_c00066{bottom:520.942500px;}
.y24_c00066{bottom:539.772000px;}
.y23_c00066{bottom:558.601500px;}
.y22_c00066{bottom:577.431000px;}
.y20_c00066{bottom:596.260500px;}
.y21_c00066{bottom:601.686000px;}
.y1e_c00066{bottom:615.090000px;}
.y1f_c00066{bottom:620.515500px;}
.y1d_c00066{bottom:633.919500px;}
.y1c_c00066{bottom:652.749000px;}
.y1b_c00066{bottom:671.578500px;}
.y1a_c00066{bottom:690.408000px;}
.y19_c00066{bottom:709.237500px;}
.y18_c00066{bottom:728.067000px;}
.y17_c00066{bottom:746.896500px;}
.y16_c00066{bottom:765.726000px;}
.y15_c00066{bottom:784.555500px;}
.y14_c00066{bottom:803.385000px;}
.y13_c00066{bottom:822.214500px;}
.y12_c00066{bottom:841.044000px;}
.y10_c00066{bottom:859.873500px;}
.y11_c00066{bottom:865.297500px;}
.ye_c00066{bottom:878.703000px;}
.yf_c00066{bottom:884.127000px;}
.yd_c00066{bottom:897.532500px;}
.yc_c00066{bottom:916.362000px;}
.yb_c00066{bottom:935.191500px;}
.ya_c00066{bottom:954.021000px;}
.y9_c00066{bottom:972.849000px;}
.y8_c00066{bottom:991.678500px;}
.y7_c00066{bottom:1010.508000px;}
.y6_c00066{bottom:1029.337500px;}
.y5_c00066{bottom:1048.167000px;}
.y4_c00066{bottom:1066.996500px;}
.y3_c00066{bottom:1085.826000px;}
.y2_c00066{bottom:1104.655500px;}
.y1_c00066{bottom:1173.397500px;}
.h4_c00066{height:21.018960px;}
.h2_c00066{height:35.052060px;}
.h3_c00066{height:43.518384px;}
.h5_c00066{height:43.817274px;}
.h0_c00066{height:1262.835000px;}
.h1_c00066{height:1263.000000px;}
.w0_c00066{width:892.914000px;}
.w1_c00066{width:893.250000px;}
.x0_c00066{left:0.000000px;}
.x1_c00066{left:53.569500px;}
.x24_c00066{left:248.655000px;}
.x2_c00066{left:250.897500px;}
.x4_c00066{left:278.136000px;}
.x3_c00066{left:282.786000px;}
.x5_c00066{left:284.943000px;}
.x10_c00066{left:292.650000px;}
.x6_c00066{left:305.059500px;}
.x13_c00066{left:313.149000px;}
.x7_c00066{left:320.004000px;}
.x14_c00066{left:328.092000px;}
.x8_c00066{left:450.978000px;}
.x19_c00066{left:453.384000px;}
.x9_c00066{left:457.785000px;}
.x1a_c00066{left:468.327000px;}
.x1b_c00066{left:474.957000px;}
.xa_c00066{left:477.574500px;}
.x17_c00066{left:486.885000px;}
.x1c_c00066{left:489.900000px;}
.xb_c00066{left:492.519000px;}
.x18_c00066{left:493.692000px;}
.x11_c00066{left:573.937500px;}
.x12_c00066{left:588.880500px;}
.x1d_c00066{left:600.726000px;}
.x15_c00066{left:613.959000px;}
.x1e_c00066{left:615.670500px;}
.x16_c00066{left:620.764500px;}
.x1f_c00066{left:776.377500px;}
.xc_c00066{left:792.297000px;}
.x20_c00066{left:795.132000px;}
.xd_c00066{left:799.102500px;}
.x21_c00066{left:810.076500px;}
.x22_c00066{left:817.698000px;}
.xe_c00066{left:818.893500px;}
.x23_c00066{left:832.642500px;}
.xf_c00066{left:833.838000px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls1_c00066{letter-spacing:0.000000pt;}
.ls0_c00066{letter-spacing:10.626667pt;}
.ws16_c00066{word-spacing:-3.134652pt;}
.wsb_c00066{word-spacing:-2.391173pt;}
.ws10_c00066{word-spacing:-2.018955pt;}
.ws26_c00066{word-spacing:-1.062667pt;}
.ws24_c00066{word-spacing:-0.956554pt;}
.ws6_c00066{word-spacing:-0.318657pt;}
.ws2_c00066{word-spacing:-0.212544pt;}
.ws4_c00066{word-spacing:-0.106378pt;}
.ws1c_c00066{word-spacing:-0.053083pt;}
.ws8_c00066{word-spacing:-0.000266pt;}
.ws28_c00066{word-spacing:0.000000pt;}
.ws18_c00066{word-spacing:0.000266pt;}
.ws1_c00066{word-spacing:0.000553pt;}
.ws0_c00066{word-spacing:0.001013pt;}
.ws5_c00066{word-spacing:0.053083pt;}
.ws17_c00066{word-spacing:0.106378pt;}
.wsa_c00066{word-spacing:0.159195pt;}
.ws23_c00066{word-spacing:0.212544pt;}
.ws15_c00066{word-spacing:0.265893pt;}
.wse_c00066{word-spacing:0.318657pt;}
.wsd_c00066{word-spacing:0.372005pt;}
.ws13_c00066{word-spacing:1.009318pt;}
.ws12_c00066{word-spacing:1.009371pt;}
.ws1a_c00066{word-spacing:1.434406pt;}
.ws3_c00066{word-spacing:1.487755pt;}
.ws14_c00066{word-spacing:1.859494pt;}
.ws1b_c00066{word-spacing:1.912790pt;}
.ws11_c00066{word-spacing:1.966138pt;}
.wsc_c00066{word-spacing:2.497339pt;}
.ws7_c00066{word-spacing:2.656800pt;}
.ws1f_c00066{word-spacing:2.975722pt;}
.ws9_c00066{word-spacing:3.081888pt;}
.wsf_c00066{word-spacing:3.188001pt;}
.ws22_c00066{word-spacing:3.188160pt;}
.ws1e_c00066{word-spacing:3.878662pt;}
.ws1d_c00066{word-spacing:3.879194pt;}
.ws20_c00066{word-spacing:4.835110pt;}
.ws21_c00066{word-spacing:4.835482pt;}
.ws25_c00066{word-spacing:5.047761pt;}
.ws27_c00066{word-spacing:5.101056pt;}
.ws19_c00066{word-spacing:5.419447pt;}
._b_c00066{margin-left:-6.748591pt;}
._6_c00066{margin-left:-5.791983pt;}
._4_c00066{margin-left:-3.931745pt;}
._1_c00066{margin-left:-0.956289pt;}
._3_c00066{width:16.738053pt;}
._7_c00066{width:17.960021pt;}
._8_c00066{width:20.032538pt;}
._2_c00066{width:21.307749pt;}
._5_c00066{width:24.920571pt;}
._9_c00066{width:28.640517pt;}
._a_c00066{width:31.403217pt;}
._0_c00066{width:2252.412782pt;}
.fs2_c00066{font-size:42.080000pt;}
.fs0_c00066{font-size:42.506667pt;}
.fs1_c00066{font-size:53.136000pt;}
.y0_c00066{bottom:0.000000pt;}
.y3a_c00066{bottom:94.441333pt;}
.y39_c00066{bottom:111.178667pt;}
.y38_c00066{bottom:127.916000pt;}
.y37_c00066{bottom:144.653333pt;}
.y36_c00066{bottom:161.390667pt;}
.y35_c00066{bottom:178.128000pt;}
.y34_c00066{bottom:194.865333pt;}
.y33_c00066{bottom:211.602667pt;}
.y32_c00066{bottom:228.340000pt;}
.y31_c00066{bottom:245.077333pt;}
.y30_c00066{bottom:261.814667pt;}
.y2f_c00066{bottom:278.552000pt;}
.y2e_c00066{bottom:295.289333pt;}
.y2d_c00066{bottom:312.026667pt;}
.y2c_c00066{bottom:328.764000pt;}
.y2b_c00066{bottom:349.486667pt;}
.y2a_c00066{bottom:379.374667pt;}
.y29_c00066{bottom:396.112000pt;}
.y28_c00066{bottom:412.848000pt;}
.y27_c00066{bottom:429.585333pt;}
.y26_c00066{bottom:446.322667pt;}
.y25_c00066{bottom:463.060000pt;}
.y24_c00066{bottom:479.797333pt;}
.y23_c00066{bottom:496.534667pt;}
.y22_c00066{bottom:513.272000pt;}
.y20_c00066{bottom:530.009333pt;}
.y21_c00066{bottom:534.832000pt;}
.y1e_c00066{bottom:546.746667pt;}
.y1f_c00066{bottom:551.569333pt;}
.y1d_c00066{bottom:563.484000pt;}
.y1c_c00066{bottom:580.221333pt;}
.y1b_c00066{bottom:596.958667pt;}
.y1a_c00066{bottom:613.696000pt;}
.y19_c00066{bottom:630.433333pt;}
.y18_c00066{bottom:647.170667pt;}
.y17_c00066{bottom:663.908000pt;}
.y16_c00066{bottom:680.645333pt;}
.y15_c00066{bottom:697.382667pt;}
.y14_c00066{bottom:714.120000pt;}
.y13_c00066{bottom:730.857333pt;}
.y12_c00066{bottom:747.594667pt;}
.y10_c00066{bottom:764.332000pt;}
.y11_c00066{bottom:769.153333pt;}
.ye_c00066{bottom:781.069333pt;}
.yf_c00066{bottom:785.890667pt;}
.yd_c00066{bottom:797.806667pt;}
.yc_c00066{bottom:814.544000pt;}
.yb_c00066{bottom:831.281333pt;}
.ya_c00066{bottom:848.018667pt;}
.y9_c00066{bottom:864.754667pt;}
.y8_c00066{bottom:881.492000pt;}
.y7_c00066{bottom:898.229333pt;}
.y6_c00066{bottom:914.966667pt;}
.y5_c00066{bottom:931.704000pt;}
.y4_c00066{bottom:948.441333pt;}
.y3_c00066{bottom:965.178667pt;}
.y2_c00066{bottom:981.916000pt;}
.y1_c00066{bottom:1043.020000pt;}
.h4_c00066{height:18.683520pt;}
.h2_c00066{height:31.157387pt;}
.h3_c00066{height:38.683008pt;}
.h5_c00066{height:38.948688pt;}
.h0_c00066{height:1122.520000pt;}
.h1_c00066{height:1122.666667pt;}
.w0_c00066{width:793.701333pt;}
.w1_c00066{width:794.000000pt;}
.x0_c00066{left:0.000000pt;}
.x1_c00066{left:47.617333pt;}
.x24_c00066{left:221.026667pt;}
.x2_c00066{left:223.020000pt;}
.x4_c00066{left:247.232000pt;}
.x3_c00066{left:251.365333pt;}
.x5_c00066{left:253.282667pt;}
.x10_c00066{left:260.133333pt;}
.x6_c00066{left:271.164000pt;}
.x13_c00066{left:278.354667pt;}
.x7_c00066{left:284.448000pt;}
.x14_c00066{left:291.637333pt;}
.x8_c00066{left:400.869333pt;}
.x19_c00066{left:403.008000pt;}
.x9_c00066{left:406.920000pt;}
.x1a_c00066{left:416.290667pt;}
.x1b_c00066{left:422.184000pt;}
.xa_c00066{left:424.510667pt;}
.x17_c00066{left:432.786667pt;}
.x1c_c00066{left:435.466667pt;}
.xb_c00066{left:437.794667pt;}
.x18_c00066{left:438.837333pt;}
.x11_c00066{left:510.166667pt;}
.x12_c00066{left:523.449333pt;}
.x1d_c00066{left:533.978667pt;}
.x15_c00066{left:545.741333pt;}
.x1e_c00066{left:547.262667pt;}
.x16_c00066{left:551.790667pt;}
.x1f_c00066{left:690.113333pt;}
.xc_c00066{left:704.264000pt;}
.x20_c00066{left:706.784000pt;}
.xd_c00066{left:710.313333pt;}
.x21_c00066{left:720.068000pt;}
.x22_c00066{left:726.842667pt;}
.xe_c00066{left:727.905333pt;}
.x23_c00066{left:740.126667pt;}
.xf_c00066{left:741.189333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_378673dbfb0e5d53d626987f.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.009000;font-style:normal;font-weight:normal;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_cf7ea65dfa1953a574339616.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:0.989000;font-style:normal;font-weight:normal;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_5cde4b52ac9ec6db19d1c319.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00067{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf_c00067{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma_c00067{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m9_c00067{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m8_c00067{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m6_c00067{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m12_c00067{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m10_c00067{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m7_c00067{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me_c00067{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,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);}
.m11_c00067{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m4_c00067{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mc_c00067{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md_c00067{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1_c00067{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb_c00067{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m3_c00067{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2_c00067{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);}
.m13_c00067{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00067{vertical-align:0.000000px;}
.ls1_c00067{letter-spacing:0.000000px;}
.ls0_c00067{letter-spacing:11.955000px;}
.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;}
}
.ws17_c00067{word-spacing:-1.374894px;}
.ws18_c00067{word-spacing:-1.016106px;}
.ws1d_c00067{word-spacing:-0.597900px;}
.ws15_c00067{word-spacing:-0.418506px;}
.ws1c_c00067{word-spacing:-0.299069px;}
.ws5_c00067{word-spacing:-0.239112px;}
.ws6_c00067{word-spacing:-0.179095px;}
.ws2_c00067{word-spacing:-0.119676px;}
.ws19_c00067{word-spacing:-0.059718px;}
.ws11_c00067{word-spacing:-0.000299px;}
.ws1e_c00067{word-spacing:0.000000px;}
.ws3_c00067{word-spacing:0.000299px;}
.ws1_c00067{word-spacing:0.000622px;}
.ws0_c00067{word-spacing:0.001139px;}
.wsa_c00067{word-spacing:0.059718px;}
.ws9_c00067{word-spacing:0.119676px;}
.wsd_c00067{word-spacing:0.179095px;}
.ws8_c00067{word-spacing:0.239112px;}
.ws1a_c00067{word-spacing:0.298531px;}
.wsc_c00067{word-spacing:0.299129px;}
.ws7_c00067{word-spacing:0.836713px;}
.wsf_c00067{word-spacing:1.673724px;}
.wse_c00067{word-spacing:2.151888px;}
.ws4_c00067{word-spacing:2.271325px;}
.ws10_c00067{word-spacing:2.630112px;}
.ws14_c00067{word-spacing:2.749489px;}
.wsb_c00067{word-spacing:2.809506px;}
.ws12_c00067{word-spacing:2.869523px;}
.ws1b_c00067{word-spacing:4.542889px;}
.ws16_c00067{word-spacing:4.662325px;}
.ws13_c00067{word-spacing:4.901676px;}
._4_c00067{margin-left:-6.695375px;}
._9_c00067{margin-left:-5.558995px;}
._5_c00067{margin-left:-4.542590px;}
._1_c00067{margin-left:-1.135244px;}
._8_c00067{width:14.585952px;}
._3_c00067{width:18.829233px;}
._2_c00067{width:21.461976px;}
._6_c00067{width:27.378623px;}
._7_c00067{width:33.056995px;}
._0_c00067{width:2533.964379px;}
.fc1_c00067{color:rgb(8,117,183);}
.fc0_c00067{color:rgb(0,0,0);}
.fs0_c00067{font-size:47.820000px;}
.fs1_c00067{font-size:59.778000px;}
.y0_c00067{bottom:0.000000px;}
.y35_c00067{bottom:125.076000px;}
.y34_c00067{bottom:143.905500px;}
.y33_c00067{bottom:162.735000px;}
.y32_c00067{bottom:181.564500px;}
.y31_c00067{bottom:200.394000px;}
.y30_c00067{bottom:219.223500px;}
.y2f_c00067{bottom:238.053000px;}
.y2e_c00067{bottom:256.882500px;}
.y2d_c00067{bottom:275.712000px;}
.y2c_c00067{bottom:294.541500px;}
.y2b_c00067{bottom:313.371000px;}
.y2a_c00067{bottom:332.200500px;}
.y29_c00067{bottom:351.030000px;}
.y28_c00067{bottom:369.859500px;}
.y27_c00067{bottom:388.689000px;}
.y26_c00067{bottom:412.002000px;}
.y25_c00067{bottom:445.626000px;}
.y24_c00067{bottom:464.454000px;}
.y23_c00067{bottom:483.283500px;}
.y22_c00067{bottom:502.113000px;}
.y21_c00067{bottom:520.942500px;}
.y20_c00067{bottom:539.772000px;}
.y1f_c00067{bottom:558.601500px;}
.y1e_c00067{bottom:577.431000px;}
.y1d_c00067{bottom:596.260500px;}
.y1c_c00067{bottom:615.090000px;}
.y1b_c00067{bottom:633.919500px;}
.y1a_c00067{bottom:652.749000px;}
.y19_c00067{bottom:671.578500px;}
.y18_c00067{bottom:690.408000px;}
.y17_c00067{bottom:709.237500px;}
.y16_c00067{bottom:728.067000px;}
.y15_c00067{bottom:746.896500px;}
.y14_c00067{bottom:765.726000px;}
.y13_c00067{bottom:784.555500px;}
.y12_c00067{bottom:803.385000px;}
.y11_c00067{bottom:822.214500px;}
.y10_c00067{bottom:841.044000px;}
.yf_c00067{bottom:859.873500px;}
.ye_c00067{bottom:878.703000px;}
.yd_c00067{bottom:897.532500px;}
.yc_c00067{bottom:916.362000px;}
.yb_c00067{bottom:935.191500px;}
.ya_c00067{bottom:954.021000px;}
.y9_c00067{bottom:972.849000px;}
.y8_c00067{bottom:991.678500px;}
.y7_c00067{bottom:1010.508000px;}
.y6_c00067{bottom:1029.337500px;}
.y5_c00067{bottom:1048.167000px;}
.y4_c00067{bottom:1066.996500px;}
.y3_c00067{bottom:1085.826000px;}
.y2_c00067{bottom:1104.655500px;}
.y1_c00067{bottom:1173.397500px;}
.h2_c00067{height:35.052060px;}
.h3_c00067{height:43.518384px;}
.h4_c00067{height:43.817274px;}
.h0_c00067{height:1262.835000px;}
.h1_c00067{height:1263.000000px;}
.w0_c00067{width:892.914000px;}
.w1_c00067{width:893.250000px;}
.x0_c00067{left:0.000000px;}
.x1_c00067{left:53.569500px;}
.x17_c00067{left:248.655000px;}
.x2_c00067{left:250.897500px;}
.xb_c00067{left:282.786000px;}
.x16_c00067{left:312.471000px;}
.x10_c00067{left:327.292500px;}
.x11_c00067{left:342.237000px;}
.x12_c00067{left:427.272000px;}
.x13_c00067{left:442.216500px;}
.xe_c00067{left:449.044500px;}
.xf_c00067{left:463.989000px;}
.x14_c00067{left:554.035500px;}
.x18_c00067{left:557.949000px;}
.x15_c00067{left:568.980000px;}
.x19_c00067{left:572.893500px;}
.x3_c00067{left:694.869000px;}
.x4_c00067{left:709.812000px;}
.x5_c00067{left:713.596500px;}
.x6_c00067{left:728.541000px;}
.x7_c00067{left:732.325500px;}
.x8_c00067{left:747.270000px;}
.x9_c00067{left:751.054500px;}
.xa_c00067{left:765.997500px;}
.xc_c00067{left:818.893500px;}
.xd_c00067{left:833.838000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls1_c00067{letter-spacing:0.000000pt;}
.ls0_c00067{letter-spacing:10.626667pt;}
.ws17_c00067{word-spacing:-1.222128pt;}
.ws18_c00067{word-spacing:-0.903206pt;}
.ws1d_c00067{word-spacing:-0.531466pt;}
.ws15_c00067{word-spacing:-0.372005pt;}
.ws1c_c00067{word-spacing:-0.265839pt;}
.ws5_c00067{word-spacing:-0.212544pt;}
.ws6_c00067{word-spacing:-0.159195pt;}
.ws2_c00067{word-spacing:-0.106378pt;}
.ws19_c00067{word-spacing:-0.053083pt;}
.ws11_c00067{word-spacing:-0.000266pt;}
.ws1e_c00067{word-spacing:0.000000pt;}
.ws3_c00067{word-spacing:0.000266pt;}
.ws1_c00067{word-spacing:0.000553pt;}
.ws0_c00067{word-spacing:0.001013pt;}
.wsa_c00067{word-spacing:0.053083pt;}
.ws9_c00067{word-spacing:0.106378pt;}
.wsd_c00067{word-spacing:0.159195pt;}
.ws8_c00067{word-spacing:0.212544pt;}
.ws1a_c00067{word-spacing:0.265361pt;}
.wsc_c00067{word-spacing:0.265893pt;}
.ws7_c00067{word-spacing:0.743745pt;}
.wsf_c00067{word-spacing:1.487755pt;}
.wse_c00067{word-spacing:1.912790pt;}
.ws4_c00067{word-spacing:2.018955pt;}
.ws10_c00067{word-spacing:2.337878pt;}
.ws14_c00067{word-spacing:2.443990pt;}
.wsb_c00067{word-spacing:2.497339pt;}
.ws12_c00067{word-spacing:2.550687pt;}
.ws1b_c00067{word-spacing:4.038123pt;}
.ws16_c00067{word-spacing:4.144289pt;}
.ws13_c00067{word-spacing:4.357046pt;}
._4_c00067{margin-left:-5.951445pt;}
._9_c00067{margin-left:-4.941329pt;}
._5_c00067{margin-left:-4.037858pt;}
._1_c00067{margin-left:-1.009106pt;}
._8_c00067{width:12.965290pt;}
._3_c00067{width:16.737096pt;}
._2_c00067{width:19.077312pt;}
._6_c00067{width:24.336554pt;}
._7_c00067{width:29.383995pt;}
._0_c00067{width:2252.412782pt;}
.fs0_c00067{font-size:42.506667pt;}
.fs1_c00067{font-size:53.136000pt;}
.y0_c00067{bottom:0.000000pt;}
.y35_c00067{bottom:111.178667pt;}
.y34_c00067{bottom:127.916000pt;}
.y33_c00067{bottom:144.653333pt;}
.y32_c00067{bottom:161.390667pt;}
.y31_c00067{bottom:178.128000pt;}
.y30_c00067{bottom:194.865333pt;}
.y2f_c00067{bottom:211.602667pt;}
.y2e_c00067{bottom:228.340000pt;}
.y2d_c00067{bottom:245.077333pt;}
.y2c_c00067{bottom:261.814667pt;}
.y2b_c00067{bottom:278.552000pt;}
.y2a_c00067{bottom:295.289333pt;}
.y29_c00067{bottom:312.026667pt;}
.y28_c00067{bottom:328.764000pt;}
.y27_c00067{bottom:345.501333pt;}
.y26_c00067{bottom:366.224000pt;}
.y25_c00067{bottom:396.112000pt;}
.y24_c00067{bottom:412.848000pt;}
.y23_c00067{bottom:429.585333pt;}
.y22_c00067{bottom:446.322667pt;}
.y21_c00067{bottom:463.060000pt;}
.y20_c00067{bottom:479.797333pt;}
.y1f_c00067{bottom:496.534667pt;}
.y1e_c00067{bottom:513.272000pt;}
.y1d_c00067{bottom:530.009333pt;}
.y1c_c00067{bottom:546.746667pt;}
.y1b_c00067{bottom:563.484000pt;}
.y1a_c00067{bottom:580.221333pt;}
.y19_c00067{bottom:596.958667pt;}
.y18_c00067{bottom:613.696000pt;}
.y17_c00067{bottom:630.433333pt;}
.y16_c00067{bottom:647.170667pt;}
.y15_c00067{bottom:663.908000pt;}
.y14_c00067{bottom:680.645333pt;}
.y13_c00067{bottom:697.382667pt;}
.y12_c00067{bottom:714.120000pt;}
.y11_c00067{bottom:730.857333pt;}
.y10_c00067{bottom:747.594667pt;}
.yf_c00067{bottom:764.332000pt;}
.ye_c00067{bottom:781.069333pt;}
.yd_c00067{bottom:797.806667pt;}
.yc_c00067{bottom:814.544000pt;}
.yb_c00067{bottom:831.281333pt;}
.ya_c00067{bottom:848.018667pt;}
.y9_c00067{bottom:864.754667pt;}
.y8_c00067{bottom:881.492000pt;}
.y7_c00067{bottom:898.229333pt;}
.y6_c00067{bottom:914.966667pt;}
.y5_c00067{bottom:931.704000pt;}
.y4_c00067{bottom:948.441333pt;}
.y3_c00067{bottom:965.178667pt;}
.y2_c00067{bottom:981.916000pt;}
.y1_c00067{bottom:1043.020000pt;}
.h2_c00067{height:31.157387pt;}
.h3_c00067{height:38.683008pt;}
.h4_c00067{height:38.948688pt;}
.h0_c00067{height:1122.520000pt;}
.h1_c00067{height:1122.666667pt;}
.w0_c00067{width:793.701333pt;}
.w1_c00067{width:794.000000pt;}
.x0_c00067{left:0.000000pt;}
.x1_c00067{left:47.617333pt;}
.x17_c00067{left:221.026667pt;}
.x2_c00067{left:223.020000pt;}
.xb_c00067{left:251.365333pt;}
.x16_c00067{left:277.752000pt;}
.x10_c00067{left:290.926667pt;}
.x11_c00067{left:304.210667pt;}
.x12_c00067{left:379.797333pt;}
.x13_c00067{left:393.081333pt;}
.xe_c00067{left:399.150667pt;}
.xf_c00067{left:412.434667pt;}
.x14_c00067{left:492.476000pt;}
.x18_c00067{left:495.954667pt;}
.x15_c00067{left:505.760000pt;}
.x19_c00067{left:509.238667pt;}
.x3_c00067{left:617.661333pt;}
.x4_c00067{left:630.944000pt;}
.x5_c00067{left:634.308000pt;}
.x6_c00067{left:647.592000pt;}
.x7_c00067{left:650.956000pt;}
.x8_c00067{left:664.240000pt;}
.x9_c00067{left:667.604000pt;}
.xa_c00067{left:680.886667pt;}
.xc_c00067{left:727.905333pt;}
.xd_c00067{left:741.189333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_378673dbfb0e5d53d626987f.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.009000;font-style:normal;font-weight:normal;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_cf7ea65dfa1953a574339616.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:0.989000;font-style:normal;font-weight:normal;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_5cde4b52ac9ec6db19d1c319.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;line-height:1.011000;font-style:normal;font-weight:normal;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_2afe9205ff2200b5e7423846.woff2')format("woff");}.ff4_c00068{font-family:ff4_c00068;line-height:0.388000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00068{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mb_c00068{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mc_c00068{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1_c00068{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m5_c00068{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me_c00068{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mf_c00068{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2_c00068{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m9_c00068{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma_c00068{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m7_c00068{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,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);}
.md_c00068{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m8_c00068{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m6_c00068{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3_c00068{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);}
.m10_c00068{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.ls3_c00068{letter-spacing:0.000000px;}
.ls0_c00068{letter-spacing:11.955000px;}
.ls1_c00068{letter-spacing:15.183000px;}
.ls2_c00068{letter-spacing:94.293000px;}
.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;}
}
.ws20_c00068{word-spacing:-4.064725px;}
.ws8_c00068{word-spacing:-2.988900px;}
.ws19_c00068{word-spacing:-2.450719px;}
.ws1e_c00068{word-spacing:-2.331282px;}
.ws18_c00068{word-spacing:-2.151888px;}
.ws12_c00068{word-spacing:-1.315475px;}
.ws17_c00068{word-spacing:-1.255517px;}
.ws23_c00068{word-spacing:-1.136081px;}
.ws22_c00068{word-spacing:-1.135483px;}
.ws21_c00068{word-spacing:-1.016106px;}
.ws1f_c00068{word-spacing:-0.358489px;}
.wsb_c00068{word-spacing:-0.179095px;}
.ws6_c00068{word-spacing:-0.059718px;}
.ws13_c00068{word-spacing:-0.000299px;}
.ws24_c00068{word-spacing:0.000000px;}
.wse_c00068{word-spacing:0.000299px;}
.ws1_c00068{word-spacing:0.000622px;}
.ws0_c00068{word-spacing:0.001139px;}
.ws4_c00068{word-spacing:0.059718px;}
.ws3_c00068{word-spacing:0.119676px;}
.wsa_c00068{word-spacing:0.179095px;}
.ws1d_c00068{word-spacing:0.179693px;}
.ws16_c00068{word-spacing:0.233346px;}
.ws15_c00068{word-spacing:0.239112px;}
.ws7_c00068{word-spacing:0.298531px;}
.ws9_c00068{word-spacing:0.299129px;}
.wsc_c00068{word-spacing:1.972495px;}
.ws11_c00068{word-spacing:2.391299px;}
.ws2_c00068{word-spacing:3.586501px;}
.ws1b_c00068{word-spacing:3.586680px;}
.ws1c_c00068{word-spacing:4.184101px;}
.wsd_c00068{word-spacing:4.781881px;}
.ws1a_c00068{word-spacing:4.782300px;}
.wsf_c00068{word-spacing:4.841719px;}
.ws10_c00068{word-spacing:4.842317px;}
.ws14_c00068{word-spacing:5.439918px;}
.ws5_c00068{word-spacing:7.770901px;}
._a_c00068{margin-left:-6.663606px;}
._9_c00068{margin-left:-5.379602px;}
._5_c00068{margin-left:-4.303179px;}
._1_c00068{margin-left:-1.911880px;}
._d_c00068{width:12.348043px;}
._c_c00068{width:13.507317px;}
._b_c00068{width:16.199121px;}
._2_c00068{width:18.650377px;}
._4_c00068{width:20.025630px;}
._8_c00068{width:21.876835px;}
._3_c00068{width:23.731507px;}
._7_c00068{width:33.130362px;}
._6_c00068{width:34.372529px;}
._0_c00068{width:2533.964379px;}
.fc1_c00068{color:rgb(8,117,183);}
.fc0_c00068{color:rgb(0,0,0);}
.fs0_c00068{font-size:47.820000px;}
.fs1_c00068{font-size:59.778000px;}
.fs2_c00068{font-size:62.286000px;}
.y0_c00068{bottom:0.000000px;}
.y36_c00068{bottom:101.764500px;}
.y35_c00068{bottom:120.594000px;}
.y34_c00068{bottom:139.422000px;}
.y33_c00068{bottom:158.251500px;}
.y32_c00068{bottom:177.081000px;}
.y31_c00068{bottom:195.910500px;}
.y30_c00068{bottom:214.740000px;}
.y2f_c00068{bottom:233.569500px;}
.y2e_c00068{bottom:252.399000px;}
.y2d_c00068{bottom:271.228500px;}
.y2c_c00068{bottom:290.058000px;}
.y2b_c00068{bottom:308.887500px;}
.y2a_c00068{bottom:327.717000px;}
.y29_c00068{bottom:346.546500px;}
.y28_c00068{bottom:365.376000px;}
.y27_c00068{bottom:384.205500px;}
.y26_c00068{bottom:403.035000px;}
.y25_c00068{bottom:426.348000px;}
.y24_c00068{bottom:459.972000px;}
.y23_c00068{bottom:478.801500px;}
.y22_c00068{bottom:497.631000px;}
.y21_c00068{bottom:516.460500px;}
.y20_c00068{bottom:535.290000px;}
.y1f_c00068{bottom:554.118000px;}
.y1e_c00068{bottom:572.947500px;}
.y1d_c00068{bottom:591.777000px;}
.y1c_c00068{bottom:610.606500px;}
.y1b_c00068{bottom:629.436000px;}
.y1a_c00068{bottom:648.265500px;}
.y19_c00068{bottom:667.095000px;}
.y18_c00068{bottom:685.924500px;}
.y17_c00068{bottom:704.754000px;}
.y16_c00068{bottom:723.583500px;}
.y15_c00068{bottom:742.413000px;}
.y14_c00068{bottom:761.242500px;}
.y13_c00068{bottom:780.072000px;}
.y12_c00068{bottom:798.901500px;}
.y11_c00068{bottom:817.731000px;}
.y10_c00068{bottom:836.560500px;}
.yf_c00068{bottom:855.390000px;}
.ye_c00068{bottom:874.219500px;}
.yd_c00068{bottom:893.049000px;}
.yc_c00068{bottom:911.878500px;}
.yb_c00068{bottom:930.708000px;}
.ya_c00068{bottom:949.537500px;}
.y9_c00068{bottom:968.367000px;}
.y8_c00068{bottom:987.196500px;}
.y7_c00068{bottom:1006.026000px;}
.y6_c00068{bottom:1024.855500px;}
.y5_c00068{bottom:1043.685000px;}
.y4_c00068{bottom:1062.513000px;}
.y3_c00068{bottom:1081.342500px;}
.y2_c00068{bottom:1104.655500px;}
.y1_c00068{bottom:1173.397500px;}
.h5_c00068{height:27.654984px;}
.h2_c00068{height:35.052060px;}
.h3_c00068{height:43.219494px;}
.h4_c00068{height:43.518384px;}
.h0_c00068{height:1262.835000px;}
.h1_c00068{height:1263.000000px;}
.w0_c00068{width:892.914000px;}
.w1_c00068{width:893.250000px;}
.x0_c00068{left:0.000000px;}
.x1_c00068{left:53.569500px;}
.x4_c00068{left:248.655000px;}
.x2_c00068{left:250.897500px;}
.x3_c00068{left:282.786000px;}
.x5_c00068{left:463.687500px;}
.x6_c00068{left:478.630500px;}
.x7_c00068{left:819.093000px;}
.x8_c00068{left:834.036000px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls3_c00068{letter-spacing:0.000000pt;}
.ls0_c00068{letter-spacing:10.626667pt;}
.ls1_c00068{letter-spacing:13.496000pt;}
.ls2_c00068{letter-spacing:83.816000pt;}
.ws20_c00068{word-spacing:-3.613089pt;}
.ws8_c00068{word-spacing:-2.656800pt;}
.ws19_c00068{word-spacing:-2.178417pt;}
.ws1e_c00068{word-spacing:-2.072251pt;}
.ws18_c00068{word-spacing:-1.912790pt;}
.ws12_c00068{word-spacing:-1.169311pt;}
.ws17_c00068{word-spacing:-1.116015pt;}
.ws23_c00068{word-spacing:-1.009850pt;}
.ws22_c00068{word-spacing:-1.009318pt;}
.ws21_c00068{word-spacing:-0.903206pt;}
.ws1f_c00068{word-spacing:-0.318657pt;}
.wsb_c00068{word-spacing:-0.159195pt;}
.ws6_c00068{word-spacing:-0.053083pt;}
.ws13_c00068{word-spacing:-0.000266pt;}
.ws24_c00068{word-spacing:0.000000pt;}
.wse_c00068{word-spacing:0.000266pt;}
.ws1_c00068{word-spacing:0.000553pt;}
.ws0_c00068{word-spacing:0.001013pt;}
.ws4_c00068{word-spacing:0.053083pt;}
.ws3_c00068{word-spacing:0.106378pt;}
.wsa_c00068{word-spacing:0.159195pt;}
.ws1d_c00068{word-spacing:0.159727pt;}
.ws16_c00068{word-spacing:0.207419pt;}
.ws15_c00068{word-spacing:0.212544pt;}
.ws7_c00068{word-spacing:0.265361pt;}
.ws9_c00068{word-spacing:0.265893pt;}
.wsc_c00068{word-spacing:1.753329pt;}
.ws11_c00068{word-spacing:2.125599pt;}
.ws2_c00068{word-spacing:3.188001pt;}
.ws1b_c00068{word-spacing:3.188160pt;}
.ws1c_c00068{word-spacing:3.719201pt;}
.wsd_c00068{word-spacing:4.250561pt;}
.ws1a_c00068{word-spacing:4.250933pt;}
.wsf_c00068{word-spacing:4.303750pt;}
.ws10_c00068{word-spacing:4.304282pt;}
.ws14_c00068{word-spacing:4.835482pt;}
.ws5_c00068{word-spacing:6.907467pt;}
._a_c00068{margin-left:-5.923205pt;}
._9_c00068{margin-left:-4.781868pt;}
._5_c00068{margin-left:-3.825048pt;}
._1_c00068{margin-left:-1.699449pt;}
._d_c00068{width:10.976038pt;}
._c_c00068{width:12.006504pt;}
._b_c00068{width:14.399218pt;}
._2_c00068{width:16.578113pt;}
._4_c00068{width:17.800560pt;}
._8_c00068{width:19.446076pt;}
._3_c00068{width:21.094673pt;}
._7_c00068{width:29.449211pt;}
._6_c00068{width:30.553359pt;}
._0_c00068{width:2252.412782pt;}
.fs0_c00068{font-size:42.506667pt;}
.fs1_c00068{font-size:53.136000pt;}
.fs2_c00068{font-size:55.365333pt;}
.y0_c00068{bottom:0.000000pt;}
.y36_c00068{bottom:90.457333pt;}
.y35_c00068{bottom:107.194667pt;}
.y34_c00068{bottom:123.930667pt;}
.y33_c00068{bottom:140.668000pt;}
.y32_c00068{bottom:157.405333pt;}
.y31_c00068{bottom:174.142667pt;}
.y30_c00068{bottom:190.880000pt;}
.y2f_c00068{bottom:207.617333pt;}
.y2e_c00068{bottom:224.354667pt;}
.y2d_c00068{bottom:241.092000pt;}
.y2c_c00068{bottom:257.829333pt;}
.y2b_c00068{bottom:274.566667pt;}
.y2a_c00068{bottom:291.304000pt;}
.y29_c00068{bottom:308.041333pt;}
.y28_c00068{bottom:324.778667pt;}
.y27_c00068{bottom:341.516000pt;}
.y26_c00068{bottom:358.253333pt;}
.y25_c00068{bottom:378.976000pt;}
.y24_c00068{bottom:408.864000pt;}
.y23_c00068{bottom:425.601333pt;}
.y22_c00068{bottom:442.338667pt;}
.y21_c00068{bottom:459.076000pt;}
.y20_c00068{bottom:475.813333pt;}
.y1f_c00068{bottom:492.549333pt;}
.y1e_c00068{bottom:509.286667pt;}
.y1d_c00068{bottom:526.024000pt;}
.y1c_c00068{bottom:542.761333pt;}
.y1b_c00068{bottom:559.498667pt;}
.y1a_c00068{bottom:576.236000pt;}
.y19_c00068{bottom:592.973333pt;}
.y18_c00068{bottom:609.710667pt;}
.y17_c00068{bottom:626.448000pt;}
.y16_c00068{bottom:643.185333pt;}
.y15_c00068{bottom:659.922667pt;}
.y14_c00068{bottom:676.660000pt;}
.y13_c00068{bottom:693.397333pt;}
.y12_c00068{bottom:710.134667pt;}
.y11_c00068{bottom:726.872000pt;}
.y10_c00068{bottom:743.609333pt;}
.yf_c00068{bottom:760.346667pt;}
.ye_c00068{bottom:777.084000pt;}
.yd_c00068{bottom:793.821333pt;}
.yc_c00068{bottom:810.558667pt;}
.yb_c00068{bottom:827.296000pt;}
.ya_c00068{bottom:844.033333pt;}
.y9_c00068{bottom:860.770667pt;}
.y8_c00068{bottom:877.508000pt;}
.y7_c00068{bottom:894.245333pt;}
.y6_c00068{bottom:910.982667pt;}
.y5_c00068{bottom:927.720000pt;}
.y4_c00068{bottom:944.456000pt;}
.y3_c00068{bottom:961.193333pt;}
.y2_c00068{bottom:981.916000pt;}
.y1_c00068{bottom:1043.020000pt;}
.h5_c00068{height:24.582208pt;}
.h2_c00068{height:31.157387pt;}
.h3_c00068{height:38.417328pt;}
.h4_c00068{height:38.683008pt;}
.h0_c00068{height:1122.520000pt;}
.h1_c00068{height:1122.666667pt;}
.w0_c00068{width:793.701333pt;}
.w1_c00068{width:794.000000pt;}
.x0_c00068{left:0.000000pt;}
.x1_c00068{left:47.617333pt;}
.x4_c00068{left:221.026667pt;}
.x2_c00068{left:223.020000pt;}
.x3_c00068{left:251.365333pt;}
.x5_c00068{left:412.166667pt;}
.x6_c00068{left:425.449333pt;}
.x7_c00068{left:728.082667pt;}
.x8_c00068{left:741.365333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_378673dbfb0e5d53d626987f.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.009000;font-style:normal;font-weight:normal;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_c7f248dde2d095a11978514d.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:0.989000;font-style:normal;font-weight:normal;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_5cde4b52ac9ec6db19d1c319.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00069{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2_c00069{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3_c00069{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma_c00069{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m6_c00069{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m7_c00069{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m9_c00069{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mc_c00069{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4_c00069{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8_c00069{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mb_c00069{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1_c00069{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);}
.md_c00069{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00069{vertical-align:0.000000px;}
.ls2_c00069{letter-spacing:0.000000px;}
.ls0_c00069{letter-spacing:11.955000px;}
.ls1_c00069{letter-spacing:13.455000px;}
.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;}
}
.wsb_c00069{word-spacing:-13.449000px;}
.wsd_c00069{word-spacing:-0.914424px;}
.ws20_c00069{word-spacing:-0.376787px;}
.ws1f_c00069{word-spacing:-0.322830px;}
.wsa_c00069{word-spacing:-0.215399px;}
.ws17_c00069{word-spacing:-0.054011px;}
.ws7_c00069{word-spacing:0.000000px;}
.ws3_c00069{word-spacing:0.000299px;}
.ws1_c00069{word-spacing:0.000622px;}
.ws0_c00069{word-spacing:0.001139px;}
.wsc_c00069{word-spacing:0.003408px;}
.ws21_c00069{word-spacing:0.014160px;}
.ws16_c00069{word-spacing:0.026652px;}
.ws12_c00069{word-spacing:0.030110px;}
.ws1d_c00069{word-spacing:0.034550px;}
.wse_c00069{word-spacing:0.035496px;}
.ws18_c00069{word-spacing:0.036206px;}
.ws10_c00069{word-spacing:0.107969px;}
.ws11_c00069{word-spacing:0.161388px;}
.wsf_c00069{word-spacing:0.215399px;}
.ws9_c00069{word-spacing:0.268819px;}
.ws6_c00069{word-spacing:0.322776px;}
.ws1e_c00069{word-spacing:3.227975px;}
.ws8_c00069{word-spacing:3.235356px;}
.ws14_c00069{word-spacing:3.927000px;}
.ws13_c00069{word-spacing:3.981012px;}
.ws15_c00069{word-spacing:4.142400px;}
.ws1a_c00069{word-spacing:4.195819px;}
.ws1b_c00069{word-spacing:4.572606px;}
.ws1c_c00069{word-spacing:4.626617px;}
.ws2_c00069{word-spacing:5.081130px;}
.ws19_c00069{word-spacing:5.218212px;}
.ws5_c00069{word-spacing:8.929813px;}
.ws4_c00069{word-spacing:9.413977px;}
._3_c00069{margin-left:-5.809269px;}
._7_c00069{margin-left:-3.765720px;}
._2_c00069{margin-left:-1.075825px;}
._15_c00069{width:2.758675px;}
._13_c00069{width:3.839215px;}
._8_c00069{width:12.696621px;}
._19_c00069{width:15.526179px;}
._6_c00069{width:16.698084px;}
._16_c00069{width:18.775181px;}
._18_c00069{width:19.811975px;}
._1_c00069{width:21.340806px;}
._4_c00069{width:24.745783px;}
._14_c00069{width:25.757469px;}
._5_c00069{width:27.113991px;}
._17_c00069{width:29.858878px;}
._1a_c00069{width:61.865400px;}
._9_c00069{width:71.710176px;}
._c_c00069{width:75.905995px;}
._f_c00069{width:81.931147px;}
._12_c00069{width:88.763346px;}
._e_c00069{width:90.161988px;}
._d_c00069{width:110.873448px;}
._a_c00069{width:116.737159px;}
._11_c00069{width:120.018553px;}
._10_c00069{width:123.031775px;}
._b_c00069{width:154.340939px;}
._0_c00069{width:2533.964379px;}
.fc1_c00069{color:rgb(8,117,183);}
.fc0_c00069{color:rgb(0,0,0);}
.fs0_c00069{font-size:47.820000px;}
.fs2_c00069{font-size:53.796000px;}
.fs1_c00069{font-size:59.778000px;}
.y0_c00069{bottom:0.000000px;}
.y34_c00069{bottom:111.630000px;}
.y33_c00069{bottom:128.890500px;}
.y32_c00069{bottom:146.151000px;}
.y31_c00069{bottom:163.411500px;}
.y30_c00069{bottom:180.672000px;}
.y2f_c00069{bottom:197.932500px;}
.y2e_c00069{bottom:215.193000px;}
.y2d_c00069{bottom:232.453500px;}
.y2c_c00069{bottom:249.714000px;}
.y2b_c00069{bottom:266.973000px;}
.y2a_c00069{bottom:284.233500px;}
.y29_c00069{bottom:301.494000px;}
.y28_c00069{bottom:318.754500px;}
.y27_c00069{bottom:336.015000px;}
.y26_c00069{bottom:353.275500px;}
.y25_c00069{bottom:370.536000px;}
.y24_c00069{bottom:387.796500px;}
.y23_c00069{bottom:405.057000px;}
.y22_c00069{bottom:422.316000px;}
.y21_c00069{bottom:439.576500px;}
.y20_c00069{bottom:456.837000px;}
.y1f_c00069{bottom:474.097500px;}
.y1e_c00069{bottom:491.358000px;}
.y1d_c00069{bottom:508.618500px;}
.y1c_c00069{bottom:525.879000px;}
.y1b_c00069{bottom:543.139500px;}
.y1a_c00069{bottom:564.882000px;}
.y19_c00069{bottom:605.272500px;}
.y18_c00069{bottom:622.848000px;}
.y17_c00069{bottom:640.422000px;}
.y16_c00069{bottom:657.996000px;}
.y15_c00069{bottom:675.570000px;}
.y14_c00069{bottom:693.144000px;}
.y13_c00069{bottom:710.718000px;}
.y12_c00069{bottom:728.292000px;}
.y11_c00069{bottom:745.866000px;}
.y10_c00069{bottom:763.440000px;}
.yf_c00069{bottom:781.014000px;}
.ye_c00069{bottom:798.588000px;}
.yd_c00069{bottom:825.144000px;}
.yc_c00069{bottom:847.201500px;}
.yb_c00069{bottom:883.963500px;}
.ya_c00069{bottom:910.503000px;}
.y9_c00069{bottom:928.077000px;}
.y8_c00069{bottom:954.618000px;}
.y7_c00069{bottom:981.159000px;}
.y6_c00069{bottom:1007.698500px;}
.y5_c00069{bottom:1025.274000px;}
.y4_c00069{bottom:1042.848000px;}
.y3_c00069{bottom:1085.826000px;}
.y2_c00069{bottom:1104.655500px;}
.y1_c00069{bottom:1173.397500px;}
.h2_c00069{height:35.052060px;}
.h4_c00069{height:38.894508px;}
.h5_c00069{height:39.163488px;}
.h7_c00069{height:39.432468px;}
.h6_c00069{height:43.219494px;}
.h3_c00069{height:43.518384px;}
.h0_c00069{height:1262.835000px;}
.h1_c00069{height:1263.000000px;}
.w0_c00069{width:892.914000px;}
.w1_c00069{width:893.250000px;}
.x0_c00069{left:0.000000px;}
.x1_c00069{left:53.569500px;}
.x7_c00069{left:84.645000px;}
.x6_c00069{left:86.272500px;}
.x3_c00069{left:250.372500px;}
.x2_c00069{left:282.442500px;}
.x4_c00069{left:399.070500px;}
.x5_c00069{left:429.309000px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls2_c00069{letter-spacing:0.000000pt;}
.ls0_c00069{letter-spacing:10.626667pt;}
.ls1_c00069{letter-spacing:11.960000pt;}
.wsb_c00069{word-spacing:-11.954667pt;}
.wsd_c00069{word-spacing:-0.812822pt;}
.ws20_c00069{word-spacing:-0.334922pt;}
.ws1f_c00069{word-spacing:-0.286960pt;}
.wsa_c00069{word-spacing:-0.191466pt;}
.ws17_c00069{word-spacing:-0.048010pt;}
.ws7_c00069{word-spacing:0.000000pt;}
.ws3_c00069{word-spacing:0.000266pt;}
.ws1_c00069{word-spacing:0.000553pt;}
.ws0_c00069{word-spacing:0.001013pt;}
.wsc_c00069{word-spacing:0.003029pt;}
.ws21_c00069{word-spacing:0.012587pt;}
.ws16_c00069{word-spacing:0.023691pt;}
.ws12_c00069{word-spacing:0.026764pt;}
.ws1d_c00069{word-spacing:0.030711pt;}
.wse_c00069{word-spacing:0.031552pt;}
.ws18_c00069{word-spacing:0.032183pt;}
.ws10_c00069{word-spacing:0.095972pt;}
.ws11_c00069{word-spacing:0.143456pt;}
.wsf_c00069{word-spacing:0.191466pt;}
.ws9_c00069{word-spacing:0.238950pt;}
.ws6_c00069{word-spacing:0.286912pt;}
.ws1e_c00069{word-spacing:2.869311pt;}
.ws8_c00069{word-spacing:2.875872pt;}
.ws14_c00069{word-spacing:3.490667pt;}
.ws13_c00069{word-spacing:3.538677pt;}
.ws15_c00069{word-spacing:3.682133pt;}
.ws1a_c00069{word-spacing:3.729617pt;}
.ws1b_c00069{word-spacing:4.064539pt;}
.ws1c_c00069{word-spacing:4.112549pt;}
.ws2_c00069{word-spacing:4.516560pt;}
.ws19_c00069{word-spacing:4.638411pt;}
.ws5_c00069{word-spacing:7.937612pt;}
.ws4_c00069{word-spacing:8.367980pt;}
._3_c00069{margin-left:-5.163794pt;}
._7_c00069{margin-left:-3.347307pt;}
._2_c00069{margin-left:-0.956289pt;}
._15_c00069{width:2.452156pt;}
._13_c00069{width:3.412636pt;}
._8_c00069{width:11.285886pt;}
._19_c00069{width:13.801048pt;}
._6_c00069{width:14.842741pt;}
._16_c00069{width:16.689049pt;}
._18_c00069{width:17.610645pt;}
._1_c00069{width:18.969605pt;}
._4_c00069{width:21.996252pt;}
._14_c00069{width:22.895528pt;}
._5_c00069{width:24.101325pt;}
._17_c00069{width:26.541225pt;}
._1a_c00069{width:54.991467pt;}
._9_c00069{width:63.742378pt;}
._c_c00069{width:67.471995pt;}
._f_c00069{width:72.827686pt;}
._12_c00069{width:78.900752pt;}
._e_c00069{width:80.143990pt;}
._d_c00069{width:98.554176pt;}
._a_c00069{width:103.766363pt;}
._11_c00069{width:106.683158pt;}
._10_c00069{width:109.361578pt;}
._b_c00069{width:137.191946pt;}
._0_c00069{width:2252.412782pt;}
.fs0_c00069{font-size:42.506667pt;}
.fs2_c00069{font-size:47.818667pt;}
.fs1_c00069{font-size:53.136000pt;}
.y0_c00069{bottom:0.000000pt;}
.y34_c00069{bottom:99.226667pt;}
.y33_c00069{bottom:114.569333pt;}
.y32_c00069{bottom:129.912000pt;}
.y31_c00069{bottom:145.254667pt;}
.y30_c00069{bottom:160.597333pt;}
.y2f_c00069{bottom:175.940000pt;}
.y2e_c00069{bottom:191.282667pt;}
.y2d_c00069{bottom:206.625333pt;}
.y2c_c00069{bottom:221.968000pt;}
.y2b_c00069{bottom:237.309333pt;}
.y2a_c00069{bottom:252.652000pt;}
.y29_c00069{bottom:267.994667pt;}
.y28_c00069{bottom:283.337333pt;}
.y27_c00069{bottom:298.680000pt;}
.y26_c00069{bottom:314.022667pt;}
.y25_c00069{bottom:329.365333pt;}
.y24_c00069{bottom:344.708000pt;}
.y23_c00069{bottom:360.050667pt;}
.y22_c00069{bottom:375.392000pt;}
.y21_c00069{bottom:390.734667pt;}
.y20_c00069{bottom:406.077333pt;}
.y1f_c00069{bottom:421.420000pt;}
.y1e_c00069{bottom:436.762667pt;}
.y1d_c00069{bottom:452.105333pt;}
.y1c_c00069{bottom:467.448000pt;}
.y1b_c00069{bottom:482.790667pt;}
.y1a_c00069{bottom:502.117333pt;}
.y19_c00069{bottom:538.020000pt;}
.y18_c00069{bottom:553.642667pt;}
.y17_c00069{bottom:569.264000pt;}
.y16_c00069{bottom:584.885333pt;}
.y15_c00069{bottom:600.506667pt;}
.y14_c00069{bottom:616.128000pt;}
.y13_c00069{bottom:631.749333pt;}
.y12_c00069{bottom:647.370667pt;}
.y11_c00069{bottom:662.992000pt;}
.y10_c00069{bottom:678.613333pt;}
.yf_c00069{bottom:694.234667pt;}
.ye_c00069{bottom:709.856000pt;}
.yd_c00069{bottom:733.461333pt;}
.yc_c00069{bottom:753.068000pt;}
.yb_c00069{bottom:785.745333pt;}
.ya_c00069{bottom:809.336000pt;}
.y9_c00069{bottom:824.957333pt;}
.y8_c00069{bottom:848.549333pt;}
.y7_c00069{bottom:872.141333pt;}
.y6_c00069{bottom:895.732000pt;}
.y5_c00069{bottom:911.354667pt;}
.y4_c00069{bottom:926.976000pt;}
.y3_c00069{bottom:965.178667pt;}
.y2_c00069{bottom:981.916000pt;}
.y1_c00069{bottom:1043.020000pt;}
.h2_c00069{height:31.157387pt;}
.h4_c00069{height:34.572896pt;}
.h5_c00069{height:34.811989pt;}
.h7_c00069{height:35.051083pt;}
.h6_c00069{height:38.417328pt;}
.h3_c00069{height:38.683008pt;}
.h0_c00069{height:1122.520000pt;}
.h1_c00069{height:1122.666667pt;}
.w0_c00069{width:793.701333pt;}
.w1_c00069{width:794.000000pt;}
.x0_c00069{left:0.000000pt;}
.x1_c00069{left:47.617333pt;}
.x7_c00069{left:75.240000pt;}
.x6_c00069{left:76.686667pt;}
.x3_c00069{left:222.553333pt;}
.x2_c00069{left:251.060000pt;}
.x4_c00069{left:354.729333pt;}
.x5_c00069{left:381.608000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_378673dbfb0e5d53d626987f.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.009000;font-style:normal;font-weight:normal;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_cf7ea65dfa1953a574339616.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:0.989000;font-style:normal;font-weight:normal;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_5cde4b52ac9ec6db19d1c319.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00070;src:url('chunks/assets/font_9dce7c264ef22f9b8b5d6c4e.woff2')format("woff");}.ff4_c00070{font-family:ff4_c00070;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00070{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me_c00070{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma_c00070{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m11_c00070{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb_c00070{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4_c00070{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3_c00070{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.md_c00070{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m5_c00070{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m9_c00070{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7_c00070{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m12_c00070{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,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);}
.mc_c00070{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mf_c00070{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m10_c00070{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m8_c00070{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m2_c00070{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1_c00070{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);}
.m13_c00070{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00070{vertical-align:0.000000px;}
.ls4_c00070{letter-spacing:0.000000px;}
.ls0_c00070{letter-spacing:11.955000px;}
.ls3_c00070{letter-spacing:13.371000px;}
.ls1_c00070{letter-spacing:13.449000px;}
.ls2_c00070{letter-spacing:13.455000px;}
.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;}
}
.ws5_c00070{word-spacing:-13.449000px;}
.ws25_c00070{word-spacing:-2.205582px;}
.ws26_c00070{word-spacing:-2.152217px;}
.ws28_c00070{word-spacing:-1.721418px;}
.ws29_c00070{word-spacing:-1.687536px;}
.ws1a_c00070{word-spacing:-0.376787px;}
.wsa_c00070{word-spacing:-0.269410px;}
.wsb_c00070{word-spacing:-0.268765px;}
.ws6_c00070{word-spacing:-0.215399px;}
.ws2c_c00070{word-spacing:-0.108022px;}
.ws2a_c00070{word-spacing:-0.107431px;}
.ws17_c00070{word-spacing:-0.054011px;}
.ws18_c00070{word-spacing:-0.018888px;}
.ws3_c00070{word-spacing:0.000000px;}
.ws1_c00070{word-spacing:0.000622px;}
.ws0_c00070{word-spacing:0.001139px;}
.ws12_c00070{word-spacing:0.007896px;}
.ws1c_c00070{word-spacing:0.008274px;}
.ws21_c00070{word-spacing:0.022644px;}
.ws2e_c00070{word-spacing:0.030397px;}
.ws31_c00070{word-spacing:0.030751px;}
.ws1e_c00070{word-spacing:0.032126px;}
.ws27_c00070{word-spacing:0.032243px;}
.ws32_c00070{word-spacing:0.033446px;}
.ws20_c00070{word-spacing:0.034070px;}
.ws34_c00070{word-spacing:0.034145px;}
.ws7_c00070{word-spacing:0.034308px;}
.ws24_c00070{word-spacing:0.035513px;}
.ws1d_c00070{word-spacing:0.054011px;}
.ws33_c00070{word-spacing:0.107377px;}
.ws9_c00070{word-spacing:0.141173px;}
.ws8_c00070{word-spacing:0.161388px;}
.ws1b_c00070{word-spacing:0.192180px;}
.wsd_c00070{word-spacing:0.215399px;}
.wse_c00070{word-spacing:0.246912px;}
.ws19_c00070{word-spacing:0.268819px;}
.ws1f_c00070{word-spacing:0.322776px;}
.ws30_c00070{word-spacing:0.411228px;}
.ws11_c00070{word-spacing:0.860359px;}
.ws10_c00070{word-spacing:1.021801px;}
.wsf_c00070{word-spacing:1.022393px;}
.ws14_c00070{word-spacing:1.237147px;}
.ws16_c00070{word-spacing:1.237200px;}
.ws15_c00070{word-spacing:1.281143px;}
.ws2f_c00070{word-spacing:1.721418px;}
.ws13_c00070{word-spacing:1.882806px;}
.ws2b_c00070{word-spacing:3.174018px;}
.ws23_c00070{word-spacing:3.227383px;}
.ws4_c00070{word-spacing:3.227975px;}
.ws2d_c00070{word-spacing:3.235284px;}
.wsc_c00070{word-spacing:3.657590px;}
.ws2_c00070{word-spacing:3.658182px;}
.ws22_c00070{word-spacing:12.211800px;}
._d_c00070{margin-left:-7.047007px;}
._1_c00070{margin-left:-5.863818px;}
._3_c00070{margin-left:-3.927000px;}
._2_c00070{margin-left:-2.098205px;}
._4_c00070{margin-left:-1.022985px;}
._7_c00070{width:2.197254px;}
._9_c00070{width:3.872989px;}
._11_c00070{width:12.479435px;}
._12_c00070{width:14.301241px;}
._5_c00070{width:15.547205px;}
._6_c00070{width:16.689840px;}
._8_c00070{width:17.740119px;}
._c_c00070{width:18.810960px;}
._b_c00070{width:19.850401px;}
._a_c00070{width:27.328207px;}
._f_c00070{width:28.780806px;}
._10_c00070{width:31.955362px;}
._e_c00070{width:61.865400px;}
._0_c00070{width:2533.964379px;}
.fc1_c00070{color:rgb(8,117,183);}
.fc0_c00070{color:rgb(0,0,0);}
.fs0_c00070{font-size:47.820000px;}
.fs1_c00070{font-size:53.796000px;}
.y0_c00070{bottom:0.000000px;}
.y3a_c00070{bottom:138.078000px;}
.y39_c00070{bottom:155.338500px;}
.y38_c00070{bottom:172.599000px;}
.y37_c00070{bottom:189.858000px;}
.y36_c00070{bottom:207.118500px;}
.y35_c00070{bottom:224.379000px;}
.y34_c00070{bottom:241.639500px;}
.y33_c00070{bottom:258.900000px;}
.y32_c00070{bottom:276.160500px;}
.y31_c00070{bottom:293.421000px;}
.y30_c00070{bottom:310.681500px;}
.y2f_c00070{bottom:327.940500px;}
.y2e_c00070{bottom:345.201000px;}
.y2d_c00070{bottom:362.461500px;}
.y2c_c00070{bottom:379.722000px;}
.y2b_c00070{bottom:396.982500px;}
.y2a_c00070{bottom:414.243000px;}
.y29_c00070{bottom:431.503500px;}
.y28_c00070{bottom:448.764000px;}
.y27_c00070{bottom:466.024500px;}
.y26_c00070{bottom:483.283500px;}
.y25_c00070{bottom:500.544000px;}
.y24_c00070{bottom:517.804500px;}
.y23_c00070{bottom:535.065000px;}
.y22_c00070{bottom:552.325500px;}
.y21_c00070{bottom:569.586000px;}
.y20_c00070{bottom:586.846500px;}
.y1f_c00070{bottom:604.107000px;}
.y1e_c00070{bottom:621.366000px;}
.y1d_c00070{bottom:638.626500px;}
.y1c_c00070{bottom:655.887000px;}
.y1b_c00070{bottom:673.147500px;}
.y1a_c00070{bottom:690.408000px;}
.y19_c00070{bottom:707.668500px;}
.y18_c00070{bottom:724.929000px;}
.y17_c00070{bottom:742.189500px;}
.y16_c00070{bottom:759.450000px;}
.y15_c00070{bottom:776.709000px;}
.y14_c00070{bottom:793.969500px;}
.y13_c00070{bottom:811.230000px;}
.y12_c00070{bottom:828.490500px;}
.y11_c00070{bottom:845.751000px;}
.y10_c00070{bottom:863.011500px;}
.yf_c00070{bottom:880.272000px;}
.ye_c00070{bottom:897.532500px;}
.yd_c00070{bottom:914.793000px;}
.yc_c00070{bottom:932.052000px;}
.yb_c00070{bottom:949.312500px;}
.ya_c00070{bottom:966.573000px;}
.y9_c00070{bottom:983.833500px;}
.y8_c00070{bottom:1001.094000px;}
.y7_c00070{bottom:1018.354500px;}
.y6_c00070{bottom:1035.615000px;}
.y5_c00070{bottom:1052.875500px;}
.y4_c00070{bottom:1070.134500px;}
.y3_c00070{bottom:1087.395000px;}
.y2_c00070{bottom:1104.655500px;}
.y1_c00070{bottom:1173.397500px;}
.h2_c00070{height:35.052060px;}
.h5_c00070{height:38.894508px;}
.h3_c00070{height:39.163488px;}
.h4_c00070{height:39.432468px;}
.h0_c00070{height:1262.835000px;}
.h1_c00070{height:1263.000000px;}
.w0_c00070{width:892.914000px;}
.w1_c00070{width:893.250000px;}
.x0_c00070{left:0.000000px;}
.x1_c00070{left:53.569500px;}
.x7_c00070{left:84.645000px;}
.x2_c00070{left:86.272500px;}
.x5_c00070{left:626.628000px;}
.x6_c00070{left:653.527500px;}
.x3_c00070{left:738.976500px;}
.x4_c00070{left:833.512500px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls4_c00070{letter-spacing:0.000000pt;}
.ls0_c00070{letter-spacing:10.626667pt;}
.ls3_c00070{letter-spacing:11.885333pt;}
.ls1_c00070{letter-spacing:11.954667pt;}
.ls2_c00070{letter-spacing:11.960000pt;}
.ws5_c00070{word-spacing:-11.954667pt;}
.ws25_c00070{word-spacing:-1.960518pt;}
.ws26_c00070{word-spacing:-1.913081pt;}
.ws28_c00070{word-spacing:-1.530150pt;}
.ws29_c00070{word-spacing:-1.500032pt;}
.ws1a_c00070{word-spacing:-0.334922pt;}
.wsa_c00070{word-spacing:-0.239476pt;}
.wsb_c00070{word-spacing:-0.238902pt;}
.ws6_c00070{word-spacing:-0.191466pt;}
.ws2c_c00070{word-spacing:-0.096020pt;}
.ws2a_c00070{word-spacing:-0.095494pt;}
.ws17_c00070{word-spacing:-0.048010pt;}
.ws18_c00070{word-spacing:-0.016789pt;}
.ws3_c00070{word-spacing:0.000000pt;}
.ws1_c00070{word-spacing:0.000553pt;}
.ws0_c00070{word-spacing:0.001013pt;}
.ws12_c00070{word-spacing:0.007019pt;}
.ws1c_c00070{word-spacing:0.007354pt;}
.ws21_c00070{word-spacing:0.020128pt;}
.ws2e_c00070{word-spacing:0.027020pt;}
.ws31_c00070{word-spacing:0.027334pt;}
.ws1e_c00070{word-spacing:0.028556pt;}
.ws27_c00070{word-spacing:0.028660pt;}
.ws32_c00070{word-spacing:0.029729pt;}
.ws20_c00070{word-spacing:0.030284pt;}
.ws34_c00070{word-spacing:0.030351pt;}
.ws7_c00070{word-spacing:0.030496pt;}
.ws24_c00070{word-spacing:0.031567pt;}
.ws1d_c00070{word-spacing:0.048010pt;}
.ws33_c00070{word-spacing:0.095446pt;}
.ws9_c00070{word-spacing:0.125487pt;}
.ws8_c00070{word-spacing:0.143456pt;}
.ws1b_c00070{word-spacing:0.170827pt;}
.wsd_c00070{word-spacing:0.191466pt;}
.wse_c00070{word-spacing:0.219477pt;}
.ws19_c00070{word-spacing:0.238950pt;}
.ws1f_c00070{word-spacing:0.286912pt;}
.ws30_c00070{word-spacing:0.365536pt;}
.ws11_c00070{word-spacing:0.764764pt;}
.ws10_c00070{word-spacing:0.908268pt;}
.wsf_c00070{word-spacing:0.908794pt;}
.ws14_c00070{word-spacing:1.099686pt;}
.ws16_c00070{word-spacing:1.099734pt;}
.ws15_c00070{word-spacing:1.138794pt;}
.ws2f_c00070{word-spacing:1.530150pt;}
.ws13_c00070{word-spacing:1.673606pt;}
.ws2b_c00070{word-spacing:2.821349pt;}
.ws23_c00070{word-spacing:2.868785pt;}
.ws4_c00070{word-spacing:2.869311pt;}
.ws2d_c00070{word-spacing:2.875808pt;}
.wsc_c00070{word-spacing:3.251191pt;}
.ws2_c00070{word-spacing:3.251717pt;}
.ws22_c00070{word-spacing:10.854933pt;}
._d_c00070{margin-left:-6.264006pt;}
._1_c00070{margin-left:-5.212282pt;}
._3_c00070{margin-left:-3.490667pt;}
._2_c00070{margin-left:-1.865071pt;}
._4_c00070{margin-left:-0.909320pt;}
._7_c00070{width:1.953115pt;}
._9_c00070{width:3.442657pt;}
._11_c00070{width:11.092831pt;}
._12_c00070{width:12.712214pt;}
._5_c00070{width:13.819738pt;}
._6_c00070{width:14.835413pt;}
._8_c00070{width:15.768994pt;}
._c_c00070{width:16.720853pt;}
._b_c00070{width:17.644801pt;}
._a_c00070{width:24.291739pt;}
._f_c00070{width:25.582939pt;}
._10_c00070{width:28.404766pt;}
._e_c00070{width:54.991467pt;}
._0_c00070{width:2252.412782pt;}
.fs0_c00070{font-size:42.506667pt;}
.fs1_c00070{font-size:47.818667pt;}
.y0_c00070{bottom:0.000000pt;}
.y3a_c00070{bottom:122.736000pt;}
.y39_c00070{bottom:138.078667pt;}
.y38_c00070{bottom:153.421333pt;}
.y37_c00070{bottom:168.762667pt;}
.y36_c00070{bottom:184.105333pt;}
.y35_c00070{bottom:199.448000pt;}
.y34_c00070{bottom:214.790667pt;}
.y33_c00070{bottom:230.133333pt;}
.y32_c00070{bottom:245.476000pt;}
.y31_c00070{bottom:260.818667pt;}
.y30_c00070{bottom:276.161333pt;}
.y2f_c00070{bottom:291.502667pt;}
.y2e_c00070{bottom:306.845333pt;}
.y2d_c00070{bottom:322.188000pt;}
.y2c_c00070{bottom:337.530667pt;}
.y2b_c00070{bottom:352.873333pt;}
.y2a_c00070{bottom:368.216000pt;}
.y29_c00070{bottom:383.558667pt;}
.y28_c00070{bottom:398.901333pt;}
.y27_c00070{bottom:414.244000pt;}
.y26_c00070{bottom:429.585333pt;}
.y25_c00070{bottom:444.928000pt;}
.y24_c00070{bottom:460.270667pt;}
.y23_c00070{bottom:475.613333pt;}
.y22_c00070{bottom:490.956000pt;}
.y21_c00070{bottom:506.298667pt;}
.y20_c00070{bottom:521.641333pt;}
.y1f_c00070{bottom:536.984000pt;}
.y1e_c00070{bottom:552.325333pt;}
.y1d_c00070{bottom:567.668000pt;}
.y1c_c00070{bottom:583.010667pt;}
.y1b_c00070{bottom:598.353333pt;}
.y1a_c00070{bottom:613.696000pt;}
.y19_c00070{bottom:629.038667pt;}
.y18_c00070{bottom:644.381333pt;}
.y17_c00070{bottom:659.724000pt;}
.y16_c00070{bottom:675.066667pt;}
.y15_c00070{bottom:690.408000pt;}
.y14_c00070{bottom:705.750667pt;}
.y13_c00070{bottom:721.093333pt;}
.y12_c00070{bottom:736.436000pt;}
.y11_c00070{bottom:751.778667pt;}
.y10_c00070{bottom:767.121333pt;}
.yf_c00070{bottom:782.464000pt;}
.ye_c00070{bottom:797.806667pt;}
.yd_c00070{bottom:813.149333pt;}
.yc_c00070{bottom:828.490667pt;}
.yb_c00070{bottom:843.833333pt;}
.ya_c00070{bottom:859.176000pt;}
.y9_c00070{bottom:874.518667pt;}
.y8_c00070{bottom:889.861333pt;}
.y7_c00070{bottom:905.204000pt;}
.y6_c00070{bottom:920.546667pt;}
.y5_c00070{bottom:935.889333pt;}
.y4_c00070{bottom:951.230667pt;}
.y3_c00070{bottom:966.573333pt;}
.y2_c00070{bottom:981.916000pt;}
.y1_c00070{bottom:1043.020000pt;}
.h2_c00070{height:31.157387pt;}
.h5_c00070{height:34.572896pt;}
.h3_c00070{height:34.811989pt;}
.h4_c00070{height:35.051083pt;}
.h0_c00070{height:1122.520000pt;}
.h1_c00070{height:1122.666667pt;}
.w0_c00070{width:793.701333pt;}
.w1_c00070{width:794.000000pt;}
.x0_c00070{left:0.000000pt;}
.x1_c00070{left:47.617333pt;}
.x7_c00070{left:75.240000pt;}
.x2_c00070{left:76.686667pt;}
.x5_c00070{left:557.002667pt;}
.x6_c00070{left:580.913333pt;}
.x3_c00070{left:656.868000pt;}
.x4_c00070{left:740.900000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e3e3146a9315c68c1ffeb64d.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.009000;font-style:normal;font-weight:normal;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_cf7ea65dfa1953a574339616.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:0.989000;font-style:normal;font-weight:normal;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_5cde4b52ac9ec6db19d1c319.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00071{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mb_c00071{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5_c00071{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4_c00071{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2_c00071{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8_c00071{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma_c00071{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m7_c00071{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m3_c00071{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m9_c00071{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,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);}
.mc_c00071{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.md_c00071{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1_c00071{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);}
.me_c00071{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00071{vertical-align:0.000000px;}
.ls4_c00071{letter-spacing:0.000000px;}
.ls0_c00071{letter-spacing:11.955000px;}
.ls1_c00071{letter-spacing:13.455000px;}
.ls3_c00071{letter-spacing:13.533000px;}
.ls2_c00071{letter-spacing:15.603000px;}
.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;}
}
.wsd_c00071{word-spacing:-13.449000px;}
.ws32_c00071{word-spacing:-2.905199px;}
.ws33_c00071{word-spacing:-1.775429px;}
.ws34_c00071{word-spacing:-1.399180px;}
.ws2a_c00071{word-spacing:-0.215399px;}
.ws25_c00071{word-spacing:-0.161388px;}
.ws1b_c00071{word-spacing:-0.107431px;}
.ws6_c00071{word-spacing:0.000000px;}
.ws1_c00071{word-spacing:0.000622px;}
.ws0_c00071{word-spacing:0.001139px;}
.ws14_c00071{word-spacing:0.010831px;}
.ws1d_c00071{word-spacing:0.018605px;}
.ws20_c00071{word-spacing:0.027823px;}
.ws1c_c00071{word-spacing:0.028423px;}
.ws5_c00071{word-spacing:0.032365px;}
.ws28_c00071{word-spacing:0.032618px;}
.ws10_c00071{word-spacing:0.032633px;}
.ws19_c00071{word-spacing:0.032858px;}
.ws9_c00071{word-spacing:0.034373px;}
.ws13_c00071{word-spacing:0.034637px;}
.wsc_c00071{word-spacing:0.034691px;}
.ws26_c00071{word-spacing:0.034788px;}
.ws2c_c00071{word-spacing:0.035195px;}
.ws27_c00071{word-spacing:0.053419px;}
.ws7_c00071{word-spacing:0.054011px;}
.wsb_c00071{word-spacing:0.107377px;}
.wsa_c00071{word-spacing:0.107969px;}
.ws8_c00071{word-spacing:0.161388px;}
.ws3_c00071{word-spacing:0.215399px;}
.ws29_c00071{word-spacing:0.268819px;}
.ws31_c00071{word-spacing:0.322776px;}
.wsf_c00071{word-spacing:0.376195px;}
.wse_c00071{word-spacing:0.376787px;}
.ws24_c00071{word-spacing:0.537583px;}
.ws23_c00071{word-spacing:0.538175px;}
.ws1a_c00071{word-spacing:0.861005px;}
.ws12_c00071{word-spacing:1.237200px;}
.ws11_c00071{word-spacing:1.613988px;}
.ws18_c00071{word-spacing:1.667299px;}
.ws16_c00071{word-spacing:1.667407px;}
.ws17_c00071{word-spacing:1.667999px;}
.ws1f_c00071{word-spacing:2.743811px;}
.ws2b_c00071{word-spacing:3.227975px;}
.ws4_c00071{word-spacing:3.235284px;}
.ws2_c00071{word-spacing:3.712193px;}
.ws15_c00071{word-spacing:4.142400px;}
.ws2e_c00071{word-spacing:4.945087px;}
.ws30_c00071{word-spacing:4.949178px;}
.ws2f_c00071{word-spacing:4.949393px;}
.ws1e_c00071{word-spacing:5.379600px;}
.ws22_c00071{word-spacing:5.433611px;}
.ws21_c00071{word-spacing:6.885619px;}
.ws2d_c00071{word-spacing:18.559781px;}
._d_c00071{margin-left:-7.961378px;}
._c_c00071{margin-left:-6.940168px;}
._3_c00071{margin-left:-5.810936px;}
._9_c00071{margin-left:-4.787952px;}
._6_c00071{margin-left:-3.066695px;}
._a_c00071{margin-left:-2.045378px;}
._7_c00071{margin-left:-1.022393px;}
._5_c00071{width:2.959103px;}
._15_c00071{width:10.652630px;}
._13_c00071{width:12.426607px;}
._f_c00071{width:14.633964px;}
._8_c00071{width:16.469830px;}
._4_c00071{width:17.860164px;}
._2_c00071{width:20.117983px;}
._e_c00071{width:22.378115px;}
._1_c00071{width:24.344364px;}
._10_c00071{width:27.412614px;}
._12_c00071{width:28.718252px;}
._11_c00071{width:33.407477px;}
._14_c00071{width:35.774394px;}
._b_c00071{width:61.865400px;}
._0_c00071{width:2533.964379px;}
.fc1_c00071{color:rgb(8,117,183);}
.fc0_c00071{color:rgb(0,0,0);}
.fs0_c00071{font-size:47.820000px;}
.fs1_c00071{font-size:53.796000px;}
.y0_c00071{bottom:0.000000px;}
.y3b_c00071{bottom:120.817500px;}
.y3a_c00071{bottom:138.078000px;}
.y39_c00071{bottom:155.338500px;}
.y38_c00071{bottom:172.599000px;}
.y37_c00071{bottom:189.858000px;}
.y36_c00071{bottom:207.118500px;}
.y35_c00071{bottom:224.379000px;}
.y34_c00071{bottom:241.639500px;}
.y33_c00071{bottom:258.900000px;}
.y32_c00071{bottom:276.160500px;}
.y31_c00071{bottom:293.421000px;}
.y30_c00071{bottom:310.681500px;}
.y2f_c00071{bottom:327.940500px;}
.y2e_c00071{bottom:345.201000px;}
.y2d_c00071{bottom:362.461500px;}
.y2c_c00071{bottom:379.722000px;}
.y2b_c00071{bottom:396.982500px;}
.y2a_c00071{bottom:414.243000px;}
.y29_c00071{bottom:431.503500px;}
.y28_c00071{bottom:448.764000px;}
.y27_c00071{bottom:466.024500px;}
.y26_c00071{bottom:483.283500px;}
.y25_c00071{bottom:500.544000px;}
.y24_c00071{bottom:517.804500px;}
.y23_c00071{bottom:535.065000px;}
.y22_c00071{bottom:552.325500px;}
.y21_c00071{bottom:569.586000px;}
.y20_c00071{bottom:586.846500px;}
.y1f_c00071{bottom:604.107000px;}
.y1e_c00071{bottom:621.366000px;}
.y1d_c00071{bottom:638.626500px;}
.y1c_c00071{bottom:655.887000px;}
.y1b_c00071{bottom:673.147500px;}
.y1a_c00071{bottom:690.408000px;}
.y19_c00071{bottom:707.668500px;}
.y18_c00071{bottom:724.929000px;}
.y17_c00071{bottom:742.189500px;}
.y16_c00071{bottom:759.450000px;}
.y15_c00071{bottom:776.709000px;}
.y14_c00071{bottom:793.969500px;}
.y13_c00071{bottom:811.230000px;}
.y12_c00071{bottom:828.490500px;}
.y11_c00071{bottom:845.751000px;}
.y10_c00071{bottom:863.011500px;}
.yf_c00071{bottom:880.272000px;}
.ye_c00071{bottom:897.532500px;}
.yd_c00071{bottom:914.793000px;}
.yc_c00071{bottom:932.052000px;}
.yb_c00071{bottom:949.312500px;}
.ya_c00071{bottom:966.573000px;}
.y9_c00071{bottom:983.833500px;}
.y8_c00071{bottom:1001.094000px;}
.y7_c00071{bottom:1018.354500px;}
.y6_c00071{bottom:1035.615000px;}
.y5_c00071{bottom:1052.875500px;}
.y4_c00071{bottom:1070.134500px;}
.y3_c00071{bottom:1087.395000px;}
.y2_c00071{bottom:1104.655500px;}
.y1_c00071{bottom:1173.397500px;}
.h2_c00071{height:35.052060px;}
.h5_c00071{height:38.894508px;}
.h3_c00071{height:39.163488px;}
.h4_c00071{height:39.432468px;}
.h0_c00071{height:1262.835000px;}
.h1_c00071{height:1263.000000px;}
.w0_c00071{width:892.914000px;}
.w1_c00071{width:893.250000px;}
.x0_c00071{left:0.000000px;}
.x1_c00071{left:53.569500px;}
.x5_c00071{left:84.645000px;}
.x2_c00071{left:86.272500px;}
.x6_c00071{left:661.426500px;}
.x3_c00071{left:675.963000px;}
.x7_c00071{left:688.324500px;}
.x4_c00071{left:702.862500px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls4_c00071{letter-spacing:0.000000pt;}
.ls0_c00071{letter-spacing:10.626667pt;}
.ls1_c00071{letter-spacing:11.960000pt;}
.ls3_c00071{letter-spacing:12.029333pt;}
.ls2_c00071{letter-spacing:13.869333pt;}
.wsd_c00071{word-spacing:-11.954667pt;}
.ws32_c00071{word-spacing:-2.582399pt;}
.ws33_c00071{word-spacing:-1.578159pt;}
.ws34_c00071{word-spacing:-1.243716pt;}
.ws2a_c00071{word-spacing:-0.191466pt;}
.ws25_c00071{word-spacing:-0.143456pt;}
.ws1b_c00071{word-spacing:-0.095494pt;}
.ws6_c00071{word-spacing:0.000000pt;}
.ws1_c00071{word-spacing:0.000553pt;}
.ws0_c00071{word-spacing:0.001013pt;}
.ws14_c00071{word-spacing:0.009627pt;}
.ws1d_c00071{word-spacing:0.016538pt;}
.ws20_c00071{word-spacing:0.024732pt;}
.ws1c_c00071{word-spacing:0.025265pt;}
.ws5_c00071{word-spacing:0.028769pt;}
.ws28_c00071{word-spacing:0.028993pt;}
.ws10_c00071{word-spacing:0.029007pt;}
.ws19_c00071{word-spacing:0.029207pt;}
.ws9_c00071{word-spacing:0.030554pt;}
.ws13_c00071{word-spacing:0.030788pt;}
.wsc_c00071{word-spacing:0.030836pt;}
.ws26_c00071{word-spacing:0.030923pt;}
.ws2c_c00071{word-spacing:0.031284pt;}
.ws27_c00071{word-spacing:0.047484pt;}
.ws7_c00071{word-spacing:0.048010pt;}
.wsb_c00071{word-spacing:0.095446pt;}
.wsa_c00071{word-spacing:0.095972pt;}
.ws8_c00071{word-spacing:0.143456pt;}
.ws3_c00071{word-spacing:0.191466pt;}
.ws29_c00071{word-spacing:0.238950pt;}
.ws31_c00071{word-spacing:0.286912pt;}
.wsf_c00071{word-spacing:0.334396pt;}
.wse_c00071{word-spacing:0.334922pt;}
.ws24_c00071{word-spacing:0.477852pt;}
.ws23_c00071{word-spacing:0.478378pt;}
.ws1a_c00071{word-spacing:0.765338pt;}
.ws12_c00071{word-spacing:1.099734pt;}
.ws11_c00071{word-spacing:1.434656pt;}
.ws18_c00071{word-spacing:1.482044pt;}
.ws16_c00071{word-spacing:1.482140pt;}
.ws17_c00071{word-spacing:1.482666pt;}
.ws1f_c00071{word-spacing:2.438943pt;}
.ws2b_c00071{word-spacing:2.869311pt;}
.ws4_c00071{word-spacing:2.875808pt;}
.ws2_c00071{word-spacing:3.299727pt;}
.ws15_c00071{word-spacing:3.682133pt;}
.ws2e_c00071{word-spacing:4.395633pt;}
.ws30_c00071{word-spacing:4.399270pt;}
.ws2f_c00071{word-spacing:4.399461pt;}
.ws1e_c00071{word-spacing:4.781867pt;}
.ws22_c00071{word-spacing:4.829877pt;}
.ws21_c00071{word-spacing:6.120550pt;}
.ws2d_c00071{word-spacing:16.497583pt;}
._d_c00071{margin-left:-7.076780pt;}
._c_c00071{margin-left:-6.169038pt;}
._3_c00071{margin-left:-5.165277pt;}
._9_c00071{margin-left:-4.255957pt;}
._6_c00071{margin-left:-2.725951pt;}
._a_c00071{margin-left:-1.818114pt;}
._7_c00071{margin-left:-0.908794pt;}
._5_c00071{width:2.630314pt;}
._15_c00071{width:9.469005pt;}
._13_c00071{width:11.045873pt;}
._f_c00071{width:13.007968pt;}
._8_c00071{width:14.639848pt;}
._4_c00071{width:15.875702pt;}
._2_c00071{width:17.882651pt;}
._e_c00071{width:19.891657pt;}
._1_c00071{width:21.639435pt;}
._10_c00071{width:24.366768pt;}
._12_c00071{width:25.527335pt;}
._11_c00071{width:29.695535pt;}
._14_c00071{width:31.799461pt;}
._b_c00071{width:54.991467pt;}
._0_c00071{width:2252.412782pt;}
.fs0_c00071{font-size:42.506667pt;}
.fs1_c00071{font-size:47.818667pt;}
.y0_c00071{bottom:0.000000pt;}
.y3b_c00071{bottom:107.393333pt;}
.y3a_c00071{bottom:122.736000pt;}
.y39_c00071{bottom:138.078667pt;}
.y38_c00071{bottom:153.421333pt;}
.y37_c00071{bottom:168.762667pt;}
.y36_c00071{bottom:184.105333pt;}
.y35_c00071{bottom:199.448000pt;}
.y34_c00071{bottom:214.790667pt;}
.y33_c00071{bottom:230.133333pt;}
.y32_c00071{bottom:245.476000pt;}
.y31_c00071{bottom:260.818667pt;}
.y30_c00071{bottom:276.161333pt;}
.y2f_c00071{bottom:291.502667pt;}
.y2e_c00071{bottom:306.845333pt;}
.y2d_c00071{bottom:322.188000pt;}
.y2c_c00071{bottom:337.530667pt;}
.y2b_c00071{bottom:352.873333pt;}
.y2a_c00071{bottom:368.216000pt;}
.y29_c00071{bottom:383.558667pt;}
.y28_c00071{bottom:398.901333pt;}
.y27_c00071{bottom:414.244000pt;}
.y26_c00071{bottom:429.585333pt;}
.y25_c00071{bottom:444.928000pt;}
.y24_c00071{bottom:460.270667pt;}
.y23_c00071{bottom:475.613333pt;}
.y22_c00071{bottom:490.956000pt;}
.y21_c00071{bottom:506.298667pt;}
.y20_c00071{bottom:521.641333pt;}
.y1f_c00071{bottom:536.984000pt;}
.y1e_c00071{bottom:552.325333pt;}
.y1d_c00071{bottom:567.668000pt;}
.y1c_c00071{bottom:583.010667pt;}
.y1b_c00071{bottom:598.353333pt;}
.y1a_c00071{bottom:613.696000pt;}
.y19_c00071{bottom:629.038667pt;}
.y18_c00071{bottom:644.381333pt;}
.y17_c00071{bottom:659.724000pt;}
.y16_c00071{bottom:675.066667pt;}
.y15_c00071{bottom:690.408000pt;}
.y14_c00071{bottom:705.750667pt;}
.y13_c00071{bottom:721.093333pt;}
.y12_c00071{bottom:736.436000pt;}
.y11_c00071{bottom:751.778667pt;}
.y10_c00071{bottom:767.121333pt;}
.yf_c00071{bottom:782.464000pt;}
.ye_c00071{bottom:797.806667pt;}
.yd_c00071{bottom:813.149333pt;}
.yc_c00071{bottom:828.490667pt;}
.yb_c00071{bottom:843.833333pt;}
.ya_c00071{bottom:859.176000pt;}
.y9_c00071{bottom:874.518667pt;}
.y8_c00071{bottom:889.861333pt;}
.y7_c00071{bottom:905.204000pt;}
.y6_c00071{bottom:920.546667pt;}
.y5_c00071{bottom:935.889333pt;}
.y4_c00071{bottom:951.230667pt;}
.y3_c00071{bottom:966.573333pt;}
.y2_c00071{bottom:981.916000pt;}
.y1_c00071{bottom:1043.020000pt;}
.h2_c00071{height:31.157387pt;}
.h5_c00071{height:34.572896pt;}
.h3_c00071{height:34.811989pt;}
.h4_c00071{height:35.051083pt;}
.h0_c00071{height:1122.520000pt;}
.h1_c00071{height:1122.666667pt;}
.w0_c00071{width:793.701333pt;}
.w1_c00071{width:794.000000pt;}
.x0_c00071{left:0.000000pt;}
.x1_c00071{left:47.617333pt;}
.x5_c00071{left:75.240000pt;}
.x2_c00071{left:76.686667pt;}
.x6_c00071{left:587.934667pt;}
.x3_c00071{left:600.856000pt;}
.x7_c00071{left:611.844000pt;}
.x4_c00071{left:624.766667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_378673dbfb0e5d53d626987f.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.009000;font-style:normal;font-weight:normal;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_cf7ea65dfa1953a574339616.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:0.989000;font-style:normal;font-weight:normal;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_917d1cdd5db5bde6838b0e71.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:1.011000;font-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_c00072{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3_c00072{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m4_c00072{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,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);}
.m5_c00072{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2_c00072{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m7_c00072{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m6_c00072{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);}
.m8_c00072{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.ls1_c00072{letter-spacing:0.000000px;}
.ls0_c00072{letter-spacing:11.955000px;}
.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;}
}
.ws5_c00072{word-spacing:-1.237200px;}
.ws6_c00072{word-spacing:-1.236609px;}
.ws2_c00072{word-spacing:-0.268819px;}
.wsc_c00072{word-spacing:-0.161388px;}
.wsd_c00072{word-spacing:-0.107431px;}
.wsb_c00072{word-spacing:-0.054011px;}
.ws3_c00072{word-spacing:0.000000px;}
.ws1_c00072{word-spacing:0.000622px;}
.ws0_c00072{word-spacing:0.001139px;}
.ws10_c00072{word-spacing:0.025805px;}
.ws4_c00072{word-spacing:0.034224px;}
.wsa_c00072{word-spacing:0.058481px;}
.ws9_c00072{word-spacing:0.107377px;}
.wse_c00072{word-spacing:0.112492px;}
.ws7_c00072{word-spacing:0.268819px;}
.ws8_c00072{word-spacing:0.302076px;}
.wsf_c00072{word-spacing:5.917183px;}
._3_c00072{margin-left:-4.949393px;}
._4_c00072{margin-left:-3.001695px;}
._2_c00072{margin-left:-1.022393px;}
._5_c00072{width:2.959210px;}
._7_c00072{width:12.317851px;}
._6_c00072{width:13.356167px;}
._1_c00072{width:16.783222px;}
._8_c00072{width:20.891458px;}
._0_c00072{width:2533.964379px;}
.fc1_c00072{color:rgb(8,117,183);}
.fc0_c00072{color:rgb(0,0,0);}
.fs0_c00072{font-size:47.820000px;}
.fs1_c00072{font-size:53.796000px;}
.y0_c00072{bottom:0.000000px;}
.ye_c00072{bottom:897.532500px;}
.yd_c00072{bottom:914.793000px;}
.yc_c00072{bottom:932.052000px;}
.yb_c00072{bottom:949.312500px;}
.ya_c00072{bottom:966.573000px;}
.y9_c00072{bottom:983.833500px;}
.y8_c00072{bottom:1001.094000px;}
.y7_c00072{bottom:1018.354500px;}
.y6_c00072{bottom:1035.615000px;}
.y5_c00072{bottom:1052.875500px;}
.y4_c00072{bottom:1070.134500px;}
.y3_c00072{bottom:1087.395000px;}
.y2_c00072{bottom:1104.655500px;}
.y1_c00072{bottom:1173.397500px;}
.h2_c00072{height:35.052060px;}
.h3_c00072{height:39.163488px;}
.h4_c00072{height:39.432468px;}
.h0_c00072{height:1262.835000px;}
.h1_c00072{height:1263.000000px;}
.w0_c00072{width:892.914000px;}
.w1_c00072{width:893.250000px;}
.x0_c00072{left:0.000000px;}
.x1_c00072{left:53.569500px;}
.x2_c00072{left:86.272500px;}
.x3_c00072{left:738.667500px;}
.x4_c00072{left:833.203500px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls1_c00072{letter-spacing:0.000000pt;}
.ls0_c00072{letter-spacing:10.626667pt;}
.ws5_c00072{word-spacing:-1.099734pt;}
.ws6_c00072{word-spacing:-1.099208pt;}
.ws2_c00072{word-spacing:-0.238950pt;}
.wsc_c00072{word-spacing:-0.143456pt;}
.wsd_c00072{word-spacing:-0.095494pt;}
.wsb_c00072{word-spacing:-0.048010pt;}
.ws3_c00072{word-spacing:0.000000pt;}
.ws1_c00072{word-spacing:0.000553pt;}
.ws0_c00072{word-spacing:0.001013pt;}
.ws10_c00072{word-spacing:0.022938pt;}
.ws4_c00072{word-spacing:0.030421pt;}
.wsa_c00072{word-spacing:0.051983pt;}
.ws9_c00072{word-spacing:0.095446pt;}
.wse_c00072{word-spacing:0.099993pt;}
.ws7_c00072{word-spacing:0.238950pt;}
.ws8_c00072{word-spacing:0.268512pt;}
.wsf_c00072{word-spacing:5.259719pt;}
._3_c00072{margin-left:-4.399461pt;}
._4_c00072{margin-left:-2.668174pt;}
._2_c00072{margin-left:-0.908794pt;}
._5_c00072{width:2.630409pt;}
._7_c00072{width:10.949201pt;}
._6_c00072{width:11.872148pt;}
._1_c00072{width:14.918420pt;}
._8_c00072{width:18.570185pt;}
._0_c00072{width:2252.412782pt;}
.fs0_c00072{font-size:42.506667pt;}
.fs1_c00072{font-size:47.818667pt;}
.y0_c00072{bottom:0.000000pt;}
.ye_c00072{bottom:797.806667pt;}
.yd_c00072{bottom:813.149333pt;}
.yc_c00072{bottom:828.490667pt;}
.yb_c00072{bottom:843.833333pt;}
.ya_c00072{bottom:859.176000pt;}
.y9_c00072{bottom:874.518667pt;}
.y8_c00072{bottom:889.861333pt;}
.y7_c00072{bottom:905.204000pt;}
.y6_c00072{bottom:920.546667pt;}
.y5_c00072{bottom:935.889333pt;}
.y4_c00072{bottom:951.230667pt;}
.y3_c00072{bottom:966.573333pt;}
.y2_c00072{bottom:981.916000pt;}
.y1_c00072{bottom:1043.020000pt;}
.h2_c00072{height:31.157387pt;}
.h3_c00072{height:34.811989pt;}
.h4_c00072{height:35.051083pt;}
.h0_c00072{height:1122.520000pt;}
.h1_c00072{height:1122.666667pt;}
.w0_c00072{width:793.701333pt;}
.w1_c00072{width:794.000000pt;}
.x0_c00072{left:0.000000pt;}
.x1_c00072{left:47.617333pt;}
.x2_c00072{left:76.686667pt;}
.x3_c00072{left:656.593333pt;}
.x4_c00072{left:740.625333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_43c4351c79be6be385f4f083.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.051270;font-style:normal;font-weight:normal;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_7ba25efe5f8f52d26eb0a38e.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.ls1_c00073{letter-spacing:-0.118200px;}
.ls0_c00073{letter-spacing:0.000000px;}
.ls2_c00073{letter-spacing:0.244200px;}
.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:0.000000px;}
._3_c00073{margin-left:-20.494254px;}
._5_c00073{margin-left:-10.615746px;}
._1_c00073{margin-left:-6.535184px;}
._0_c00073{margin-left:-2.804490px;}
._2_c00073{margin-left:-1.648800px;}
._4_c00073{width:1.552840px;}
.fc1_c00073{color:rgb(255,255,255);}
.fc0_c00073{color:rgb(255,255,0);}
.fs4_c00073{font-size:120.240000px;}
.fs5_c00073{font-size:120.384000px;}
.fs2_c00073{font-size:144.000000px;}
.fs1_c00073{font-size:144.144000px;}
.fs3_c00073{font-size:156.240000px;}
.fs0_c00073{font-size:329.760000px;}
.y0_c00073{bottom:0.000000px;}
.yb_c00073{bottom:97.740000px;}
.ya_c00073{bottom:133.740000px;}
.y9_c00073{bottom:169.770000px;}
.y8_c00073{bottom:208.110000px;}
.y7_c00073{bottom:254.910000px;}
.y6_c00073{bottom:301.755000px;}
.y5_c00073{bottom:348.555000px;}
.y4_c00073{bottom:394.635000px;}
.y3_c00073{bottom:437.835000px;}
.y2_c00073{bottom:493.305000px;}
.y1_c00073{bottom:592.350000px;}
.h6_c00073{height:105.151289px;}
.h7_c00073{height:105.277219px;}
.h4_c00073{height:125.929688px;}
.h3_c00073{height:126.055617px;}
.h5_c00073{height:136.633711px;}
.h1_c00073{height:287.895938px;}
.h2_c00073{height:288.378984px;}
.h0_c00073{height:810.000000px;}
.w0_c00073{width:1080.000000px;}
.x0_c00073{left:0.000000px;}
.x1_c00073{left:141.228000px;}
.x7_c00073{left:182.085000px;}
.x6_c00073{left:209.445000px;}
.x2_c00073{left:309.390000px;}
.x4_c00073{left:345.570000px;}
.x8_c00073{left:370.770000px;}
.x5_c00073{left:397.050000px;}
.x9_c00073{left:453.210000px;}
.x3_c00073{left:549.000000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls1_c00073{letter-spacing:-0.105067pt;}
.ls0_c00073{letter-spacing:0.000000pt;}
.ls2_c00073{letter-spacing:0.217067pt;}
.ws0_c00073{word-spacing:0.000000pt;}
._3_c00073{margin-left:-18.217115pt;}
._5_c00073{margin-left:-9.436219pt;}
._1_c00073{margin-left:-5.809052pt;}
._0_c00073{margin-left:-2.492880pt;}
._2_c00073{margin-left:-1.465600pt;}
._4_c00073{width:1.380302pt;}
.fs4_c00073{font-size:106.880000pt;}
.fs5_c00073{font-size:107.008000pt;}
.fs2_c00073{font-size:128.000000pt;}
.fs1_c00073{font-size:128.128000pt;}
.fs3_c00073{font-size:138.880000pt;}
.fs0_c00073{font-size:293.120000pt;}
.y0_c00073{bottom:0.000000pt;}
.yb_c00073{bottom:86.880000pt;}
.ya_c00073{bottom:118.880000pt;}
.y9_c00073{bottom:150.906667pt;}
.y8_c00073{bottom:184.986667pt;}
.y7_c00073{bottom:226.586667pt;}
.y6_c00073{bottom:268.226667pt;}
.y5_c00073{bottom:309.826667pt;}
.y4_c00073{bottom:350.786667pt;}
.y3_c00073{bottom:389.186667pt;}
.y2_c00073{bottom:438.493333pt;}
.y1_c00073{bottom:526.533333pt;}
.h6_c00073{height:93.467812pt;}
.h7_c00073{height:93.579750pt;}
.h4_c00073{height:111.937500pt;}
.h3_c00073{height:112.049437pt;}
.h5_c00073{height:121.452188pt;}
.h1_c00073{height:255.907500pt;}
.h2_c00073{height:256.336875pt;}
.h0_c00073{height:720.000000pt;}
.w0_c00073{width:960.000000pt;}
.x0_c00073{left:0.000000pt;}
.x1_c00073{left:125.536000pt;}
.x7_c00073{left:161.853333pt;}
.x6_c00073{left:186.173333pt;}
.x2_c00073{left:275.013333pt;}
.x4_c00073{left:307.173333pt;}
.x8_c00073{left:329.573333pt;}
.x5_c00073{left:352.933333pt;}
.x9_c00073{left:402.853333pt;}
.x3_c00073{left:488.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_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_3441b680aed13e2e9959cc71.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.052734;font-style: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;}
.ls0_c00074{letter-spacing:0.000000px;}
.ls1_c00074{letter-spacing:0.180000px;}
.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;}
}
.ws1_c00074{word-spacing:0.000000px;}
.ws0_c00074{word-spacing:65.664000px;}
._3_c00074{margin-left:-5.044212px;}
._4_c00074{margin-left:-3.423527px;}
._0_c00074{margin-left:-2.378424px;}
._2_c00074{margin-left:-1.321200px;}
._1_c00074{width:2.114448px;}
.fc1_c00074{color:rgb(255,255,255);}
.fc0_c00074{color:rgb(255,255,0);}
.fs3_c00074{font-size:72.000000px;}
.fs1_c00074{font-size:180.000000px;}
.fs2_c00074{font-size:180.144000px;}
.fs0_c00074{font-size:264.240000px;}
.y0_c00074{bottom:0.000000px;}
.yc_c00074{bottom:110.340000px;}
.yb_c00074{bottom:175.170000px;}
.ya_c00074{bottom:232.770000px;}
.y9_c00074{bottom:265.890000px;}
.y8_c00074{bottom:319.935000px;}
.y7_c00074{bottom:377.535000px;}
.y6_c00074{bottom:410.655000px;}
.y5_c00074{bottom:464.685000px;}
.y4_c00074{bottom:522.285000px;}
.y3_c00074{bottom:555.405000px;}
.y2_c00074{bottom:609.450000px;}
.y1_c00074{bottom:695.130000px;}
.h4_c00074{height:62.964844px;}
.h2_c00074{height:157.412109px;}
.h3_c00074{height:157.538039px;}
.h1_c00074{height:231.080977px;}
.h0_c00074{height:810.000000px;}
.w0_c00074{width:1080.000000px;}
.x0_c00074{left:0.000000px;}
.x2_c00074{left:82.800000px;}
.x3_c00074{left:143.676000px;}
.x1_c00074{left:412.890000px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls0_c00074{letter-spacing:0.000000pt;}
.ls1_c00074{letter-spacing:0.160000pt;}
.ws1_c00074{word-spacing:0.000000pt;}
.ws0_c00074{word-spacing:58.368000pt;}
._3_c00074{margin-left:-4.483744pt;}
._4_c00074{margin-left:-3.043135pt;}
._0_c00074{margin-left:-2.114155pt;}
._2_c00074{margin-left:-1.174400pt;}
._1_c00074{width:1.879510pt;}
.fs3_c00074{font-size:64.000000pt;}
.fs1_c00074{font-size:160.000000pt;}
.fs2_c00074{font-size:160.128000pt;}
.fs0_c00074{font-size:234.880000pt;}
.y0_c00074{bottom:0.000000pt;}
.yc_c00074{bottom:98.080000pt;}
.yb_c00074{bottom:155.706667pt;}
.ya_c00074{bottom:206.906667pt;}
.y9_c00074{bottom:236.346667pt;}
.y8_c00074{bottom:284.386667pt;}
.y7_c00074{bottom:335.586667pt;}
.y6_c00074{bottom:365.026667pt;}
.y5_c00074{bottom:413.053333pt;}
.y4_c00074{bottom:464.253333pt;}
.y3_c00074{bottom:493.693333pt;}
.y2_c00074{bottom:541.733333pt;}
.y1_c00074{bottom:617.893333pt;}
.h4_c00074{height:55.968750pt;}
.h2_c00074{height:139.921875pt;}
.h3_c00074{height:140.033813pt;}
.h1_c00074{height:205.405313pt;}
.h0_c00074{height:720.000000pt;}
.w0_c00074{width:960.000000pt;}
.x0_c00074{left:0.000000pt;}
.x2_c00074{left:73.600000pt;}
.x3_c00074{left:127.712000pt;}
.x1_c00074{left:367.013333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d64ca7d5418674c8185b92b6.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.052734;font-style:normal;font-weight:normal;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_99d9c71922caa158fe2d4191.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:0.982910;font-style: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;}
.ls1_c00075{letter-spacing:-0.145200px;}
.ls0_c00075{letter-spacing:0.000000px;}
.sc__c00075{text-shadow:none;}
.sc0_c00075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00075{-webkit-text-stroke:0px transparent;}
.sc0_c00075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00075{word-spacing:-48.703344px;}
.ws1_c00075{word-spacing:0.000000px;}
._3_c00075{margin-left:-16.726104px;}
._5_c00075{margin-left:-13.773887px;}
._7_c00075{margin-left:-8.072297px;}
._2_c00075{margin-left:-5.189185px;}
._0_c00075{margin-left:-3.242376px;}
._4_c00075{margin-left:-2.136601px;}
._1_c00075{margin-left:-1.080072px;}
._6_c00075{width:1.897201px;}
.fc1_c00075{color:rgb(255,255,255);}
.fc0_c00075{color:rgb(255,255,0);}
.fs3_c00075{font-size:108.000000px;}
.fs1_c00075{font-size:203.760000px;}
.fs2_c00075{font-size:203.904000px;}
.fs0_c00075{font-size:216.144000px;}
.y0_c00075{bottom:0.000000px;}
.y6_c00075{bottom:27.252000px;}
.y5_c00075{bottom:59.688000px;}
.y4_c00075{bottom:92.088000px;}
.y3_c00075{bottom:605.805000px;}
.y2_c00075{bottom:667.050000px;}
.y1_c00075{bottom:728.970000px;}
.h4_c00075{height:94.447266px;}
.h2_c00075{height:178.190508px;}
.h3_c00075{height:178.316437px;}
.h1_c00075{height:189.020461px;}
.h0_c00075{height:810.000000px;}
.w0_c00075{width:1080.000000px;}
.x0_c00075{left:0.000000px;}
.x4_c00075{left:42.336000px;}
.x2_c00075{left:67.248000px;}
.x1_c00075{left:85.068000px;}
.x3_c00075{left:169.485000px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls1_c00075{letter-spacing:-0.129067pt;}
.ls0_c00075{letter-spacing:0.000000pt;}
.ws0_c00075{word-spacing:-43.291861pt;}
.ws1_c00075{word-spacing:0.000000pt;}
._3_c00075{margin-left:-14.867648pt;}
._5_c00075{margin-left:-12.243455pt;}
._7_c00075{margin-left:-7.175375pt;}
._2_c00075{margin-left:-4.612609pt;}
._0_c00075{margin-left:-2.882112pt;}
._4_c00075{margin-left:-1.899201pt;}
._1_c00075{margin-left:-0.960064pt;}
._6_c00075{width:1.686401pt;}
.fs3_c00075{font-size:96.000000pt;}
.fs1_c00075{font-size:181.120000pt;}
.fs2_c00075{font-size:181.248000pt;}
.fs0_c00075{font-size:192.128000pt;}
.y0_c00075{bottom:0.000000pt;}
.y6_c00075{bottom:24.224000pt;}
.y5_c00075{bottom:53.056000pt;}
.y4_c00075{bottom:81.856000pt;}
.y3_c00075{bottom:538.493333pt;}
.y2_c00075{bottom:592.933333pt;}
.y1_c00075{bottom:647.973333pt;}
.h4_c00075{height:83.953125pt;}
.h2_c00075{height:158.391562pt;}
.h3_c00075{height:158.503500pt;}
.h1_c00075{height:168.018188pt;}
.h0_c00075{height:720.000000pt;}
.w0_c00075{width:960.000000pt;}
.x0_c00075{left:0.000000pt;}
.x4_c00075{left:37.632000pt;}
.x2_c00075{left:59.776000pt;}
.x1_c00075{left:75.616000pt;}
.x3_c00075{left:150.653333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fde3def39dfa19a5b1044792.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.052734;font-style: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;}
.ls1_c00076{letter-spacing:-0.145200px;}
.ls2_c00076{letter-spacing:-0.109200px;}
.ls0_c00076{letter-spacing:0.000000px;}
.sc__c00076{text-shadow:none;}
.sc0_c00076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00076{-webkit-text-stroke:0px transparent;}
.sc0_c00076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00076{word-spacing:-48.703344px;}
.ws1_c00076{word-spacing:0.000000px;}
._5_c00076{margin-left:-10.260000px;}
._6_c00076{margin-left:-9.196287px;}
._4_c00076{margin-left:-7.559928px;}
._2_c00076{margin-left:-5.189185px;}
._0_c00076{margin-left:-3.242376px;}
._1_c00076{margin-left:-1.080072px;}
._3_c00076{width:1.555971px;}
.fc2_c00076{color:rgb(255,255,255);}
.fc1_c00076{color:rgb(0,0,0);}
.fc0_c00076{color:rgb(255,255,0);}
.fs3_c00076{font-size:108.000000px;}
.fs4_c00076{font-size:108.144000px;}
.fs0_c00076{font-size:216.144000px;}
.fs1_c00076{font-size:239.760000px;}
.fs2_c00076{font-size:239.904000px;}
.y0_c00076{bottom:0.000000px;}
.y5_c00076{bottom:82.620000px;}
.y4_c00076{bottom:115.056000px;}
.y3_c00076{bottom:554.865000px;}
.y2_c00076{bottom:626.910000px;}
.y1_c00076{bottom:697.290000px;}
.h4_c00076{height:94.447266px;}
.h5_c00076{height:94.573195px;}
.h1_c00076{height:189.020461px;}
.h2_c00076{height:209.672930px;}
.h3_c00076{height:209.798859px;}
.h0_c00076{height:810.000000px;}
.w0_c00076{width:1080.000000px;}
.x0_c00076{left:0.000000px;}
.x1_c00076{left:85.068000px;}
.x4_c00076{left:103.248000px;}
.x2_c00076{left:130.608000px;}
.x3_c00076{left:142.488000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls1_c00076{letter-spacing:-0.129067pt;}
.ls2_c00076{letter-spacing:-0.097067pt;}
.ls0_c00076{letter-spacing:0.000000pt;}
.ws0_c00076{word-spacing:-43.291861pt;}
.ws1_c00076{word-spacing:0.000000pt;}
._5_c00076{margin-left:-9.120000pt;}
._6_c00076{margin-left:-8.174477pt;}
._4_c00076{margin-left:-6.719936pt;}
._2_c00076{margin-left:-4.612609pt;}
._0_c00076{margin-left:-2.882112pt;}
._1_c00076{margin-left:-0.960064pt;}
._3_c00076{width:1.383085pt;}
.fs3_c00076{font-size:96.000000pt;}
.fs4_c00076{font-size:96.128000pt;}
.fs0_c00076{font-size:192.128000pt;}
.fs1_c00076{font-size:213.120000pt;}
.fs2_c00076{font-size:213.248000pt;}
.y0_c00076{bottom:0.000000pt;}
.y5_c00076{bottom:73.440000pt;}
.y4_c00076{bottom:102.272000pt;}
.y3_c00076{bottom:493.213333pt;}
.y2_c00076{bottom:557.253333pt;}
.y1_c00076{bottom:619.813333pt;}
.h4_c00076{height:83.953125pt;}
.h5_c00076{height:84.065062pt;}
.h1_c00076{height:168.018188pt;}
.h2_c00076{height:186.375937pt;}
.h3_c00076{height:186.487875pt;}
.h0_c00076{height:720.000000pt;}
.w0_c00076{width:960.000000pt;}
.x0_c00076{left:0.000000pt;}
.x1_c00076{left:75.616000pt;}
.x4_c00076{left:91.776000pt;}
.x2_c00076{left:116.096000pt;}
.x3_c00076{left:126.656000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ed208ce9f32b7fbcc35664fe.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.052734;font-style:normal;font-weight:normal;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_2e7302199f554b34d74bde46.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:0.982910;font-style: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:-0.145200px;}
.ls4_c00077{letter-spacing:-0.036000px;}
.ls2_c00077{letter-spacing:0.000000px;}
.ls0_c00077{letter-spacing:0.072000px;}
.ls1_c00077{letter-spacing:0.252000px;}
.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:-48.703344px;}
.ws1_c00077{word-spacing:-24.480000px;}
.ws2_c00077{word-spacing:0.000000px;}
._5_c00077{margin-left:-9.498815px;}
._2_c00077{margin-left:-5.189185px;}
._0_c00077{margin-left:-3.242376px;}
._4_c00077{margin-left:-2.161224px;}
._1_c00077{margin-left:-1.080072px;}
._3_c00077{width:1.513224px;}
.fc1_c00077{color:rgb(255,255,255);}
.fc0_c00077{color:rgb(255,255,0);}
.fs2_c00077{font-size:108.000000px;}
.fs1_c00077{font-size:216.000000px;}
.fs0_c00077{font-size:216.144000px;}
.y0_c00077{bottom:0.000000px;}
.y7_c00077{bottom:78.804000px;}
.y6_c00077{bottom:111.204000px;}
.y5_c00077{bottom:143.640000px;}
.y4_c00077{bottom:519.045000px;}
.y3_c00077{bottom:583.845000px;}
.y2_c00077{bottom:648.690000px;}
.y1_c00077{bottom:713.490000px;}
.h3_c00077{height:94.447266px;}
.h2_c00077{height:188.894531px;}
.h1_c00077{height:189.020461px;}
.h0_c00077{height:810.000000px;}
.w0_c00077{width:1080.000000px;}
.x0_c00077{left:0.000000px;}
.x1_c00077{left:85.068000px;}
.x5_c00077{left:118.836000px;}
.x3_c00077{left:152.565000px;}
.x2_c00077{left:158.685000px;}
.x4_c00077{left:357.090000px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls3_c00077{letter-spacing:-0.129067pt;}
.ls4_c00077{letter-spacing:-0.032000pt;}
.ls2_c00077{letter-spacing:0.000000pt;}
.ls0_c00077{letter-spacing:0.064000pt;}
.ls1_c00077{letter-spacing:0.224000pt;}
.ws0_c00077{word-spacing:-43.291861pt;}
.ws1_c00077{word-spacing:-21.760000pt;}
.ws2_c00077{word-spacing:0.000000pt;}
._5_c00077{margin-left:-8.443391pt;}
._2_c00077{margin-left:-4.612609pt;}
._0_c00077{margin-left:-2.882112pt;}
._4_c00077{margin-left:-1.921088pt;}
._1_c00077{margin-left:-0.960064pt;}
._3_c00077{width:1.345088pt;}
.fs2_c00077{font-size:96.000000pt;}
.fs1_c00077{font-size:192.000000pt;}
.fs0_c00077{font-size:192.128000pt;}
.y0_c00077{bottom:0.000000pt;}
.y7_c00077{bottom:70.048000pt;}
.y6_c00077{bottom:98.848000pt;}
.y5_c00077{bottom:127.680000pt;}
.y4_c00077{bottom:461.373333pt;}
.y3_c00077{bottom:518.973333pt;}
.y2_c00077{bottom:576.613333pt;}
.y1_c00077{bottom:634.213333pt;}
.h3_c00077{height:83.953125pt;}
.h2_c00077{height:167.906250pt;}
.h1_c00077{height:168.018188pt;}
.h0_c00077{height:720.000000pt;}
.w0_c00077{width:960.000000pt;}
.x0_c00077{left:0.000000pt;}
.x1_c00077{left:75.616000pt;}
.x5_c00077{left:105.632000pt;}
.x3_c00077{left:135.613333pt;}
.x2_c00077{left:141.053333pt;}
.x4_c00077{left:317.413333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d1b715e3375d8ba70da1d060.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.052734;font-style:normal;font-weight:normal;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_9a2f6f0f88b6b12b362edb4f.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:0.982910;font-style: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;}
.ls1_c00078{letter-spacing:-0.072000px;}
.ls0_c00078{letter-spacing:0.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;}
}
.ws0_c00078{word-spacing:-48.744000px;}
.ws1_c00078{word-spacing:0.000000px;}
._4_c00078{margin-left:-7.128000px;}
._2_c00078{margin-left:-4.536000px;}
._0_c00078{margin-left:-2.808000px;}
._1_c00078{margin-left:-1.728000px;}
._3_c00078{width:1.061283px;}
.fc1_c00078{color:rgb(255,255,255);}
.fc0_c00078{color:rgb(255,255,0);}
.fs2_c00078{font-size:108.000000px;}
.fs0_c00078{font-size:216.000000px;}
.fs1_c00078{font-size:228.384000px;}
.y0_c00078{bottom:0.000000px;}
.y4_c00078{bottom:46.512000px;}
.y3_c00078{bottom:78.912000px;}
.y2_c00078{bottom:647.745000px;}
.y1_c00078{bottom:715.290000px;}
.h3_c00078{height:86.906250px;}
.h4_c00078{height:94.447266px;}
.h1_c00078{height:188.894531px;}
.h2_c00078{height:199.724484px;}
.h0_c00078{height:810.000000px;}
.w0_c00078{width:1080.000000px;}
.x0_c00078{left:0.000000px;}
.x3_c00078{left:44.568000px;}
.x2_c00078{left:80.928000px;}
.x1_c00078{left:85.068000px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls1_c00078{letter-spacing:-0.064000pt;}
.ls0_c00078{letter-spacing:0.000000pt;}
.ws0_c00078{word-spacing:-43.328000pt;}
.ws1_c00078{word-spacing:0.000000pt;}
._4_c00078{margin-left:-6.336000pt;}
._2_c00078{margin-left:-4.032000pt;}
._0_c00078{margin-left:-2.496000pt;}
._1_c00078{margin-left:-1.536000pt;}
._3_c00078{width:0.943362pt;}
.fs2_c00078{font-size:96.000000pt;}
.fs0_c00078{font-size:192.000000pt;}
.fs1_c00078{font-size:203.008000pt;}
.y0_c00078{bottom:0.000000pt;}
.y4_c00078{bottom:41.344000pt;}
.y3_c00078{bottom:70.144000pt;}
.y2_c00078{bottom:575.773333pt;}
.y1_c00078{bottom:635.813333pt;}
.h3_c00078{height:77.250000pt;}
.h4_c00078{height:83.953125pt;}
.h1_c00078{height:167.906250pt;}
.h2_c00078{height:177.532875pt;}
.h0_c00078{height:720.000000pt;}
.w0_c00078{width:960.000000pt;}
.x0_c00078{left:0.000000pt;}
.x3_c00078{left:39.616000pt;}
.x2_c00078{left:71.936000pt;}
.x1_c00078{left:75.616000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a47f5f1b2bcec0069debe225.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.052734;font-style:normal;font-weight:normal;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_7c233b37674de13ac7d625c5.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:0.982910;font-style:normal;font-weight:normal;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_e5ba04994dbf5cc83fd0a706.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:1.051270;font-style:normal;font-weight:normal;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_a0340a8ed5f3dcb3f4762e97.woff2')format("woff");}.ff4_c00079{font-family:ff4_c00079;line-height:0.715820;font-style: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;}
.ls9_c00079{letter-spacing:-0.306000px;}
.ls6_c00079{letter-spacing:-0.180000px;}
.ls7_c00079{letter-spacing:-0.018000px;}
.ls5_c00079{letter-spacing:0.000000px;}
.ls3_c00079{letter-spacing:0.036000px;}
.ls2_c00079{letter-spacing:0.060000px;}
.lsc_c00079{letter-spacing:0.090000px;}
.ls0_c00079{letter-spacing:0.121800px;}
.lsb_c00079{letter-spacing:0.180000px;}
.ls8_c00079{letter-spacing:0.198000px;}
.lsa_c00079{letter-spacing:0.342000px;}
.ls1_c00079{letter-spacing:0.468000px;}
.ls4_c00079{letter-spacing:1.476000px;}
.sc__c00079{text-shadow:none;}
.sc0_c00079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00079{-webkit-text-stroke:0px transparent;}
.sc0_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00079{word-spacing:-54.307560px;}
.ws5_c00079{word-spacing:-12.546000px;}
.ws2_c00079{word-spacing:-12.402000px;}
.ws6_c00079{word-spacing:-12.294000px;}
.ws3_c00079{word-spacing:-12.204000px;}
.ws1_c00079{word-spacing:-12.024000px;}
.ws4_c00079{word-spacing:-11.898000px;}
.ws7_c00079{word-spacing:0.000000px;}
._1_c00079{margin-left:-4.315920px;}
._0_c00079{margin-left:-2.397600px;}
._2_c00079{margin-left:-1.198560px;}
._3_c00079{width:1.382216px;}
._4_c00079{width:2.624952px;}
.fc1_c00079{color:rgb(255,255,255);}
.fc0_c00079{color:rgb(255,255,0);}
.fs1_c00079{font-size:54.000000px;}
.fs0_c00079{font-size:239.760000px;}
.y0_c00079{bottom:0.000000px;}
.y2c_c00079{bottom:2.412000px;}
.y2b_c00079{bottom:18.972000px;}
.y2a_c00079{bottom:35.352000px;}
.y29_c00079{bottom:51.372000px;}
.y28_c00079{bottom:67.752000px;}
.y27_c00079{bottom:83.808000px;}
.y26_c00079{bottom:100.188000px;}
.y25_c00079{bottom:116.208000px;}
.y24_c00079{bottom:132.408000px;}
.y23_c00079{bottom:148.788000px;}
.y22_c00079{bottom:164.805000px;}
.y21_c00079{bottom:181.185000px;}
.y20_c00079{bottom:197.205000px;}
.y1f_c00079{bottom:213.405000px;}
.y1e_c00079{bottom:229.830000px;}
.y1d_c00079{bottom:245.850000px;}
.y1c_c00079{bottom:262.050000px;}
.y1b_c00079{bottom:278.250000px;}
.y1a_c00079{bottom:294.630000px;}
.y19_c00079{bottom:310.650000px;}
.y18_c00079{bottom:326.850000px;}
.y17_c00079{bottom:343.230000px;}
.y16_c00079{bottom:359.250000px;}
.y15_c00079{bottom:375.660000px;}
.y14_c00079{bottom:391.680000px;}
.y13_c00079{bottom:407.880000px;}
.y12_c00079{bottom:424.260000px;}
.y11_c00079{bottom:440.280000px;}
.y10_c00079{bottom:456.660000px;}
.yf_c00079{bottom:472.680000px;}
.ye_c00079{bottom:488.880000px;}
.yd_c00079{bottom:505.080000px;}
.yc_c00079{bottom:521.490000px;}
.yb_c00079{bottom:537.510000px;}
.ya_c00079{bottom:553.710000px;}
.y9_c00079{bottom:569.910000px;}
.y8_c00079{bottom:586.110000px;}
.y7_c00079{bottom:602.490000px;}
.y6_c00079{bottom:618.510000px;}
.y5_c00079{bottom:634.710000px;}
.y4_c00079{bottom:650.910000px;}
.y3_c00079{bottom:667.335000px;}
.y2_c00079{bottom:687.495000px;}
.y1_c00079{bottom:759.525000px;}
.h4_c00079{height:38.654297px;}
.h3_c00079{height:43.453125px;}
.h2_c00079{height:47.223633px;}
.h1_c00079{height:209.672930px;}
.h0_c00079{height:810.000000px;}
.w0_c00079{width:1080.000000px;}
.x0_c00079{left:0.000000px;}
.x3_c00079{left:31.068000px;}
.x2_c00079{left:78.588000px;}
.x1_c00079{left:117.288000px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls9_c00079{letter-spacing:-0.272000pt;}
.ls6_c00079{letter-spacing:-0.160000pt;}
.ls7_c00079{letter-spacing:-0.016000pt;}
.ls5_c00079{letter-spacing:0.000000pt;}
.ls3_c00079{letter-spacing:0.032000pt;}
.ls2_c00079{letter-spacing:0.053333pt;}
.lsc_c00079{letter-spacing:0.080000pt;}
.ls0_c00079{letter-spacing:0.108267pt;}
.lsb_c00079{letter-spacing:0.160000pt;}
.ls8_c00079{letter-spacing:0.176000pt;}
.lsa_c00079{letter-spacing:0.304000pt;}
.ls1_c00079{letter-spacing:0.416000pt;}
.ls4_c00079{letter-spacing:1.312000pt;}
.ws0_c00079{word-spacing:-48.273387pt;}
.ws5_c00079{word-spacing:-11.152000pt;}
.ws2_c00079{word-spacing:-11.024000pt;}
.ws6_c00079{word-spacing:-10.928000pt;}
.ws3_c00079{word-spacing:-10.848000pt;}
.ws1_c00079{word-spacing:-10.688000pt;}
.ws4_c00079{word-spacing:-10.576000pt;}
.ws7_c00079{word-spacing:0.000000pt;}
._1_c00079{margin-left:-3.836373pt;}
._0_c00079{margin-left:-2.131200pt;}
._2_c00079{margin-left:-1.065387pt;}
._3_c00079{width:1.228637pt;}
._4_c00079{width:2.333291pt;}
.fs1_c00079{font-size:48.000000pt;}
.fs0_c00079{font-size:213.120000pt;}
.y0_c00079{bottom:0.000000pt;}
.y2c_c00079{bottom:2.144000pt;}
.y2b_c00079{bottom:16.864000pt;}
.y2a_c00079{bottom:31.424000pt;}
.y29_c00079{bottom:45.664000pt;}
.y28_c00079{bottom:60.224000pt;}
.y27_c00079{bottom:74.496000pt;}
.y26_c00079{bottom:89.056000pt;}
.y25_c00079{bottom:103.296000pt;}
.y24_c00079{bottom:117.696000pt;}
.y23_c00079{bottom:132.256000pt;}
.y22_c00079{bottom:146.493333pt;}
.y21_c00079{bottom:161.053333pt;}
.y20_c00079{bottom:175.293333pt;}
.y1f_c00079{bottom:189.693333pt;}
.y1e_c00079{bottom:204.293333pt;}
.y1d_c00079{bottom:218.533333pt;}
.y1c_c00079{bottom:232.933333pt;}
.y1b_c00079{bottom:247.333333pt;}
.y1a_c00079{bottom:261.893333pt;}
.y19_c00079{bottom:276.133333pt;}
.y18_c00079{bottom:290.533333pt;}
.y17_c00079{bottom:305.093333pt;}
.y16_c00079{bottom:319.333333pt;}
.y15_c00079{bottom:333.920000pt;}
.y14_c00079{bottom:348.160000pt;}
.y13_c00079{bottom:362.560000pt;}
.y12_c00079{bottom:377.120000pt;}
.y11_c00079{bottom:391.360000pt;}
.y10_c00079{bottom:405.920000pt;}
.yf_c00079{bottom:420.160000pt;}
.ye_c00079{bottom:434.560000pt;}
.yd_c00079{bottom:448.960000pt;}
.yc_c00079{bottom:463.546667pt;}
.yb_c00079{bottom:477.786667pt;}
.ya_c00079{bottom:492.186667pt;}
.y9_c00079{bottom:506.586667pt;}
.y8_c00079{bottom:520.986667pt;}
.y7_c00079{bottom:535.546667pt;}
.y6_c00079{bottom:549.786667pt;}
.y5_c00079{bottom:564.186667pt;}
.y4_c00079{bottom:578.586667pt;}
.y3_c00079{bottom:593.186667pt;}
.y2_c00079{bottom:611.106667pt;}
.y1_c00079{bottom:675.133333pt;}
.h4_c00079{height:34.359375pt;}
.h3_c00079{height:38.625000pt;}
.h2_c00079{height:41.976562pt;}
.h1_c00079{height:186.375937pt;}
.h0_c00079{height:720.000000pt;}
.w0_c00079{width:960.000000pt;}
.x0_c00079{left:0.000000pt;}
.x3_c00079{left:27.616000pt;}
.x2_c00079{left:69.856000pt;}
.x1_c00079{left:104.256000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b603b15d70c825f304c16db4.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.052734;font-style: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;}
.ls0_c00080{letter-spacing:0.000000px;}
.ls1_c00080{letter-spacing:0.180000px;}
.sc__c00080{text-shadow:none;}
.sc0_c00080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00080{-webkit-text-stroke:0px transparent;}
.sc0_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00080{word-spacing:0.000000px;}
.ws0_c00080{word-spacing:65.664000px;}
._4_c00080{margin-left:-5.044212px;}
._3_c00080{margin-left:-3.420000px;}
._0_c00080{margin-left:-2.378424px;}
._2_c00080{margin-left:-1.321200px;}
._1_c00080{width:2.114448px;}
.fc1_c00080{color:rgb(255,255,255);}
.fc0_c00080{color:rgb(255,255,0);}
.fs3_c00080{font-size:72.000000px;}
.fs1_c00080{font-size:180.000000px;}
.fs2_c00080{font-size:180.144000px;}
.fs0_c00080{font-size:264.240000px;}
.y0_c00080{bottom:0.000000px;}
.yb_c00080{bottom:175.170000px;}
.ya_c00080{bottom:232.770000px;}
.y9_c00080{bottom:265.890000px;}
.y8_c00080{bottom:319.935000px;}
.y7_c00080{bottom:377.535000px;}
.y6_c00080{bottom:410.655000px;}
.y5_c00080{bottom:464.685000px;}
.y4_c00080{bottom:522.285000px;}
.y3_c00080{bottom:555.405000px;}
.y2_c00080{bottom:609.450000px;}
.y1_c00080{bottom:704.130000px;}
.h4_c00080{height:62.964844px;}
.h2_c00080{height:157.412109px;}
.h3_c00080{height:157.538039px;}
.h1_c00080{height:231.080977px;}
.h0_c00080{height:810.000000px;}
.w0_c00080{width:1080.000000px;}
.x0_c00080{left:0.000000px;}
.x2_c00080{left:64.800000px;}
.x3_c00080{left:125.676000px;}
.x1_c00080{left:412.890000px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls0_c00080{letter-spacing:0.000000pt;}
.ls1_c00080{letter-spacing:0.160000pt;}
.ws1_c00080{word-spacing:0.000000pt;}
.ws0_c00080{word-spacing:58.368000pt;}
._4_c00080{margin-left:-4.483744pt;}
._3_c00080{margin-left:-3.040000pt;}
._0_c00080{margin-left:-2.114155pt;}
._2_c00080{margin-left:-1.174400pt;}
._1_c00080{width:1.879510pt;}
.fs3_c00080{font-size:64.000000pt;}
.fs1_c00080{font-size:160.000000pt;}
.fs2_c00080{font-size:160.128000pt;}
.fs0_c00080{font-size:234.880000pt;}
.y0_c00080{bottom:0.000000pt;}
.yb_c00080{bottom:155.706667pt;}
.ya_c00080{bottom:206.906667pt;}
.y9_c00080{bottom:236.346667pt;}
.y8_c00080{bottom:284.386667pt;}
.y7_c00080{bottom:335.586667pt;}
.y6_c00080{bottom:365.026667pt;}
.y5_c00080{bottom:413.053333pt;}
.y4_c00080{bottom:464.253333pt;}
.y3_c00080{bottom:493.693333pt;}
.y2_c00080{bottom:541.733333pt;}
.y1_c00080{bottom:625.893333pt;}
.h4_c00080{height:55.968750pt;}
.h2_c00080{height:139.921875pt;}
.h3_c00080{height:140.033813pt;}
.h1_c00080{height:205.405313pt;}
.h0_c00080{height:720.000000pt;}
.w0_c00080{width:960.000000pt;}
.x0_c00080{left:0.000000pt;}
.x2_c00080{left:57.600000pt;}
.x3_c00080{left:111.712000pt;}
.x1_c00080{left:367.013333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_60226c9e84c1fa0793c4d874.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.052734;font-style:normal;font-weight:normal;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_1e5a5bff6498d58e2d8033f4.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:0.715820;font-style:normal;font-weight:normal;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_89792c75f1518bc468c4407a.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;line-height:0.982910;font-style: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;}
.ls2_c00081{letter-spacing:0.000000px;}
.ls0_c00081{letter-spacing:105.249600px;}
.ls1_c00081{letter-spacing:105.300000px;}
.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:0.000000px;}
._1_c00081{margin-left:-16.313472px;}
._8_c00081{margin-left:-11.844576px;}
._9_c00081{margin-left:-9.321696px;}
._4_c00081{margin-left:-6.473520px;}
._2_c00081{margin-left:-5.278128px;}
._5_c00081{margin-left:-4.212000px;}
._0_c00081{margin-left:-2.878848px;}
._3_c00081{margin-left:-1.439424px;}
._6_c00081{width:1.221696px;}
._7_c00081{width:2.355696px;}
.fc2_c00081{color:rgb(0,0,0);}
.fc1_c00081{color:rgb(255,255,255);}
.fc0_c00081{color:rgb(255,255,0);}
.fs4_c00081{font-size:77.760000px;}
.fs5_c00081{font-size:77.904000px;}
.fs3_c00081{font-size:162.000000px;}
.fs2_c00081{font-size:162.144000px;}
.fs1_c00081{font-size:239.760000px;}
.fs0_c00081{font-size:239.904000px;}
.y0_c00081{bottom:0.000000px;}
.y11_c00081{bottom:69.588000px;}
.y10_c00081{bottom:108.468000px;}
.yf_c00081{bottom:147.348000px;}
.ye_c00081{bottom:186.270000px;}
.yd_c00081{bottom:225.150000px;}
.yc_c00081{bottom:264.030000px;}
.yb_c00081{bottom:307.590000px;}
.ya_c00081{bottom:336.060000px;}
.y9_c00081{bottom:374.940000px;}
.y8_c00081{bottom:413.820000px;}
.y7_c00081{bottom:452.700000px;}
.y6_c00081{bottom:496.290000px;}
.y5_c00081{bottom:524.730000px;}
.y4_c00081{bottom:563.610000px;}
.y3_c00081{bottom:602.490000px;}
.y2_c00081{bottom:653.865000px;}
.y1_c00081{bottom:725.865000px;}
.h5_c00081{height:68.002031px;}
.h7_c00081{height:68.127961px;}
.h6_c00081{height:130.359375px;}
.h4_c00081{height:141.670898px;}
.h3_c00081{height:141.796828px;}
.h2_c00081{height:209.672930px;}
.h1_c00081{height:209.798859px;}
.h0_c00081{height:810.000000px;}
.w0_c00081{width:1080.000000px;}
.x0_c00081{left:0.000000px;}
.x3_c00081{left:28.800000px;}
.x4_c00081{left:69.300000px;}
.x1_c00081{left:211.605000px;}
.x2_c00081{left:297.510000px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls2_c00081{letter-spacing:0.000000pt;}
.ls0_c00081{letter-spacing:93.555200pt;}
.ls1_c00081{letter-spacing:93.600000pt;}
.ws0_c00081{word-spacing:0.000000pt;}
._1_c00081{margin-left:-14.500864pt;}
._8_c00081{margin-left:-10.528512pt;}
._9_c00081{margin-left:-8.285952pt;}
._4_c00081{margin-left:-5.754240pt;}
._2_c00081{margin-left:-4.691669pt;}
._5_c00081{margin-left:-3.744000pt;}
._0_c00081{margin-left:-2.558976pt;}
._3_c00081{margin-left:-1.279488pt;}
._6_c00081{width:1.085952pt;}
._7_c00081{width:2.093952pt;}
.fs4_c00081{font-size:69.120000pt;}
.fs5_c00081{font-size:69.248000pt;}
.fs3_c00081{font-size:144.000000pt;}
.fs2_c00081{font-size:144.128000pt;}
.fs1_c00081{font-size:213.120000pt;}
.fs0_c00081{font-size:213.248000pt;}
.y0_c00081{bottom:0.000000pt;}
.y11_c00081{bottom:61.856000pt;}
.y10_c00081{bottom:96.416000pt;}
.yf_c00081{bottom:130.976000pt;}
.ye_c00081{bottom:165.573333pt;}
.yd_c00081{bottom:200.133333pt;}
.yc_c00081{bottom:234.693333pt;}
.yb_c00081{bottom:273.413333pt;}
.ya_c00081{bottom:298.720000pt;}
.y9_c00081{bottom:333.280000pt;}
.y8_c00081{bottom:367.840000pt;}
.y7_c00081{bottom:402.400000pt;}
.y6_c00081{bottom:441.146667pt;}
.y5_c00081{bottom:466.426667pt;}
.y4_c00081{bottom:500.986667pt;}
.y3_c00081{bottom:535.546667pt;}
.y2_c00081{bottom:581.213333pt;}
.y1_c00081{bottom:645.213333pt;}
.h5_c00081{height:60.446250pt;}
.h7_c00081{height:60.558187pt;}
.h6_c00081{height:115.875000pt;}
.h4_c00081{height:125.929688pt;}
.h3_c00081{height:126.041625pt;}
.h2_c00081{height:186.375937pt;}
.h1_c00081{height:186.487875pt;}
.h0_c00081{height:720.000000pt;}
.w0_c00081{width:960.000000pt;}
.x0_c00081{left:0.000000pt;}
.x3_c00081{left:25.600000pt;}
.x4_c00081{left:61.600000pt;}
.x1_c00081{left:188.093333pt;}
.x2_c00081{left:264.453333pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_de02ea9b33c87d6472c304a2.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.052734;font-style:normal;font-weight:normal;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_1e5a5bff6498d58e2d8033f4.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:0.715820;font-style:normal;font-weight:normal;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_02d05505b2e4ecf3fb097d22.woff2')format("woff");}.ff3_c00083{font-family:ff3_c00083;line-height:0.982910;font-style: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;}
.ls1_c00083{letter-spacing:0.000000px;}
.ls0_c00083{letter-spacing:94.716000px;}
.sc__c00083{text-shadow:none;}
.sc0_c00083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00083{-webkit-text-stroke:0px transparent;}
.sc0_c00083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00083{word-spacing:0.000000px;}
._2_c00083{margin-left:-4.558176px;}
._3_c00083{margin-left:-3.117120px;}
._0_c00083{margin-left:-1.919472px;}
._5_c00083{width:1.656095px;}
._4_c00083{width:2.727553px;}
._1_c00083{width:7.677168px;}
.fc2_c00083{color:transparent;}
.fc1_c00083{color:rgb(255,255,255);}
.fc0_c00083{color:rgb(255,255,0);}
.fs4_c00083{font-size:113.760000px;}
.fs2_c00083{font-size:192.240000px;}
.fs3_c00083{font-size:192.384000px;}
.fs1_c00083{font-size:239.760000px;}
.fs0_c00083{font-size:239.904000px;}
.y0_c00083{bottom:0.000000px;}
.y9_c00083{bottom:233.100000px;}
.y8_c00083{bottom:297.180000px;}
.y7_c00083{bottom:343.260000px;}
.y6_c00083{bottom:400.890000px;}
.y5_c00083{bottom:458.490000px;}
.y4_c00083{bottom:516.135000px;}
.y3_c00083{bottom:573.735000px;}
.y2_c00083{bottom:653.865000px;}
.y1_c00083{bottom:725.865000px;}
.h5_c00083{height:99.484453px;}
.h3_c00083{height:168.116133px;}
.h4_c00083{height:168.242063px;}
.h2_c00083{height:209.672930px;}
.h1_c00083{height:209.798859px;}
.h0_c00083{height:810.000000px;}
.w0_c00083{width:1080.000000px;}
.x0_c00083{left:0.000000px;}
.x3_c00083{left:31.068000px;}
.x4_c00083{left:71.568000px;}
.x1_c00083{left:121.608000px;}
.x2_c00083{left:250.485000px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls1_c00083{letter-spacing:0.000000pt;}
.ls0_c00083{letter-spacing:84.192000pt;}
.ws0_c00083{word-spacing:0.000000pt;}
._2_c00083{margin-left:-4.051712pt;}
._3_c00083{margin-left:-2.770773pt;}
._0_c00083{margin-left:-1.706197pt;}
._5_c00083{width:1.472085pt;}
._4_c00083{width:2.424491pt;}
._1_c00083{width:6.824149pt;}
.fs4_c00083{font-size:101.120000pt;}
.fs2_c00083{font-size:170.880000pt;}
.fs3_c00083{font-size:171.008000pt;}
.fs1_c00083{font-size:213.120000pt;}
.fs0_c00083{font-size:213.248000pt;}
.y0_c00083{bottom:0.000000pt;}
.y9_c00083{bottom:207.200000pt;}
.y8_c00083{bottom:264.160000pt;}
.y7_c00083{bottom:305.120000pt;}
.y6_c00083{bottom:356.346667pt;}
.y5_c00083{bottom:407.546667pt;}
.y4_c00083{bottom:458.786667pt;}
.y3_c00083{bottom:509.986667pt;}
.y2_c00083{bottom:581.213333pt;}
.y1_c00083{bottom:645.213333pt;}
.h5_c00083{height:88.430625pt;}
.h3_c00083{height:149.436563pt;}
.h4_c00083{height:149.548500pt;}
.h2_c00083{height:186.375937pt;}
.h1_c00083{height:186.487875pt;}
.h0_c00083{height:720.000000pt;}
.w0_c00083{width:960.000000pt;}
.x0_c00083{left:0.000000pt;}
.x3_c00083{left:27.616000pt;}
.x4_c00083{left:63.616000pt;}
.x1_c00083{left:108.096000pt;}
.x2_c00083{left:222.653333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69851a534e02ef03e31ece35.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.052734;font-style:normal;font-weight:normal;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_d8d32ef069766daccfeeae91.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:0.982910;font-style: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;}
.ls0_c00084{letter-spacing:0.000000px;}
.sc__c00084{text-shadow:none;}
.sc0_c00084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00084{-webkit-text-stroke:0px transparent;}
.sc0_c00084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00084{word-spacing:0.000000px;}
._7_c00084{margin-left:-11.029200px;}
._3_c00084{margin-left:-5.994000px;}
._0_c00084{margin-left:-3.838224px;}
._1_c00084{margin-left:-2.639424px;}
._4_c00084{margin-left:-1.438800px;}
._5_c00084{width:1.440384px;}
._2_c00084{width:2.944342px;}
._6_c00084{width:6.949007px;}
.fc1_c00084{color:rgb(255,255,255);}
.fc0_c00084{color:rgb(255,255,0);}
.fs1_c00084{font-size:239.760000px;}
.fs0_c00084{font-size:239.904000px;}
.y0_c00084{bottom:0.000000px;}
.y4_c00084{bottom:511.230000px;}
.y3_c00084{bottom:583.230000px;}
.y2_c00084{bottom:655.275000px;}
.y1_c00084{bottom:727.275000px;}
.h2_c00084{height:209.672930px;}
.h1_c00084{height:209.798859px;}
.h0_c00084{height:810.000000px;}
.w0_c00084{width:1080.000000px;}
.x0_c00084{left:0.000000px;}
.x4_c00084{left:95.148000px;}
.x2_c00084{left:147.348000px;}
.x3_c00084{left:188.565000px;}
.x1_c00084{left:208.365000px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls0_c00084{letter-spacing:0.000000pt;}
.ws0_c00084{word-spacing:0.000000pt;}
._7_c00084{margin-left:-9.803733pt;}
._3_c00084{margin-left:-5.328000pt;}
._0_c00084{margin-left:-3.411755pt;}
._1_c00084{margin-left:-2.346154pt;}
._4_c00084{margin-left:-1.278933pt;}
._5_c00084{width:1.280341pt;}
._2_c00084{width:2.617193pt;}
._6_c00084{width:6.176895pt;}
.fs1_c00084{font-size:213.120000pt;}
.fs0_c00084{font-size:213.248000pt;}
.y0_c00084{bottom:0.000000pt;}
.y4_c00084{bottom:454.426667pt;}
.y3_c00084{bottom:518.426667pt;}
.y2_c00084{bottom:582.466667pt;}
.y1_c00084{bottom:646.466667pt;}
.h2_c00084{height:186.375937pt;}
.h1_c00084{height:186.487875pt;}
.h0_c00084{height:720.000000pt;}
.w0_c00084{width:960.000000pt;}
.x0_c00084{left:0.000000pt;}
.x4_c00084{left:84.576000pt;}
.x2_c00084{left:130.976000pt;}
.x3_c00084{left:167.613333pt;}
.x1_c00084{left:185.213333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d889d3a76f1225218e43999b.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.052734;font-style:normal;font-weight:normal;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_02d05505b2e4ecf3fb097d22.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:0.982910;font-style:normal;font-weight:normal;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_1e5a5bff6498d58e2d8033f4.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:0.715820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00085{vertical-align:0.000000px;}
.ls1_c00085{letter-spacing:0.000000px;}
.ls0_c00085{letter-spacing:94.665600px;}
.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:0.000000px;}
._3_c00085{margin-left:-20.615712px;}
._5_c00085{margin-left:-12.382548px;}
._0_c00085{margin-left:-4.078128px;}
._1_c00085{margin-left:-2.399280px;}
._4_c00085{margin-left:-1.198800px;}
._2_c00085{width:1.199280px;}
.fc1_c00085{color:rgb(255,255,255);}
.fc0_c00085{color:rgb(255,255,0);}
.fs3_c00085{font-size:192.240000px;}
.fs2_c00085{font-size:192.384000px;}
.fs1_c00085{font-size:239.760000px;}
.fs0_c00085{font-size:239.904000px;}
.y0_c00085{bottom:0.000000px;}
.y7_c00085{bottom:305.535000px;}
.y6_c00085{bottom:374.655000px;}
.y5_c00085{bottom:443.775000px;}
.y4_c00085{bottom:512.925000px;}
.y3_c00085{bottom:570.525000px;}
.y2_c00085{bottom:653.865000px;}
.y1_c00085{bottom:725.865000px;}
.h4_c00085{height:168.116133px;}
.h3_c00085{height:168.242063px;}
.h2_c00085{height:209.672930px;}
.h1_c00085{height:209.798859px;}
.h0_c00085{height:810.000000px;}
.w0_c00085{width:1080.000000px;}
.x0_c00085{left:0.000000px;}
.x3_c00085{left:64.800000px;}
.x2_c00085{left:75.492000px;}
.x4_c00085{left:105.300000px;}
.x1_c00085{left:145.728000px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls1_c00085{letter-spacing:0.000000pt;}
.ls0_c00085{letter-spacing:84.147200pt;}
.ws0_c00085{word-spacing:0.000000pt;}
._3_c00085{margin-left:-18.325077pt;}
._5_c00085{margin-left:-11.006710pt;}
._0_c00085{margin-left:-3.625003pt;}
._1_c00085{margin-left:-2.132693pt;}
._4_c00085{margin-left:-1.065600pt;}
._2_c00085{width:1.066027pt;}
.fs3_c00085{font-size:170.880000pt;}
.fs2_c00085{font-size:171.008000pt;}
.fs1_c00085{font-size:213.120000pt;}
.fs0_c00085{font-size:213.248000pt;}
.y0_c00085{bottom:0.000000pt;}
.y7_c00085{bottom:271.586667pt;}
.y6_c00085{bottom:333.026667pt;}
.y5_c00085{bottom:394.466667pt;}
.y4_c00085{bottom:455.933333pt;}
.y3_c00085{bottom:507.133333pt;}
.y2_c00085{bottom:581.213333pt;}
.y1_c00085{bottom:645.213333pt;}
.h4_c00085{height:149.436563pt;}
.h3_c00085{height:149.548500pt;}
.h2_c00085{height:186.375937pt;}
.h1_c00085{height:186.487875pt;}
.h0_c00085{height:720.000000pt;}
.w0_c00085{width:960.000000pt;}
.x0_c00085{left:0.000000pt;}
.x3_c00085{left:57.600000pt;}
.x2_c00085{left:67.104000pt;}
.x4_c00085{left:93.600000pt;}
.x1_c00085{left:129.536000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d2007defad9d46e1888303e.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.052734;font-style:normal;font-weight:normal;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_1e5a5bff6498d58e2d8033f4.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:0.715820;font-style: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:94.716000px;}
.sc__c00086{text-shadow:none;}
.sc0_c00086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00086{-webkit-text-stroke:0px transparent;}
.sc0_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00086{word-spacing:0.000000px;}
._6_c00086{margin-left:-16.195822px;}
._8_c00086{margin-left:-14.745080px;}
._7_c00086{margin-left:-7.310400px;}
._1_c00086{margin-left:-5.284800px;}
._0_c00086{margin-left:-4.227576px;}
._3_c00086{margin-left:-2.378688px;}
._2_c00086{margin-left:-1.321200px;}
._4_c00086{width:1.075193px;}
._5_c00086{width:2.448793px;}
.fc3_c00086{color:transparent;}
.fc2_c00086{color:rgb(0,0,0);}
.fc1_c00086{color:rgb(255,255,255);}
.fc0_c00086{color:rgb(255,255,0);}
.fs1_c00086{font-size:192.240000px;}
.fs2_c00086{font-size:192.384000px;}
.fs0_c00086{font-size:264.240000px;}
.y0_c00086{bottom:0.000000px;}
.ya_c00086{bottom:125.568000px;}
.y9_c00086{bottom:194.685000px;}
.y8_c00086{bottom:252.330000px;}
.y7_c00086{bottom:321.450000px;}
.y6_c00086{bottom:390.570000px;}
.y5_c00086{bottom:459.720000px;}
.y4_c00086{bottom:528.840000px;}
.y3_c00086{bottom:586.470000px;}
.y2_c00086{bottom:644.070000px;}
.y1_c00086{bottom:722.595000px;}
.h2_c00086{height:168.116133px;}
.h3_c00086{height:168.242063px;}
.h1_c00086{height:231.080977px;}
.h0_c00086{height:810.000000px;}
.w0_c00086{width:1080.000000px;}
.x0_c00086{left:0.000000px;}
.x2_c00086{left:64.800000px;}
.x3_c00086{left:105.300000px;}
.x1_c00086{left:177.405000px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls1_c00086{letter-spacing:0.000000pt;}
.ls0_c00086{letter-spacing:84.192000pt;}
.ws0_c00086{word-spacing:0.000000pt;}
._6_c00086{margin-left:-14.396286pt;}
._8_c00086{margin-left:-13.106738pt;}
._7_c00086{margin-left:-6.498133pt;}
._1_c00086{margin-left:-4.697600pt;}
._0_c00086{margin-left:-3.757845pt;}
._3_c00086{margin-left:-2.114390pt;}
._2_c00086{margin-left:-1.174400pt;}
._4_c00086{width:0.955727pt;}
._5_c00086{width:2.176705pt;}
.fs1_c00086{font-size:170.880000pt;}
.fs2_c00086{font-size:171.008000pt;}
.fs0_c00086{font-size:234.880000pt;}
.y0_c00086{bottom:0.000000pt;}
.ya_c00086{bottom:111.616000pt;}
.y9_c00086{bottom:173.053333pt;}
.y8_c00086{bottom:224.293333pt;}
.y7_c00086{bottom:285.733333pt;}
.y6_c00086{bottom:347.173333pt;}
.y5_c00086{bottom:408.640000pt;}
.y4_c00086{bottom:470.080000pt;}
.y3_c00086{bottom:521.306667pt;}
.y2_c00086{bottom:572.506667pt;}
.y1_c00086{bottom:642.306667pt;}
.h2_c00086{height:149.436563pt;}
.h3_c00086{height:149.548500pt;}
.h1_c00086{height:205.405313pt;}
.h0_c00086{height:720.000000pt;}
.w0_c00086{width:960.000000pt;}
.x0_c00086{left:0.000000pt;}
.x2_c00086{left:57.600000pt;}
.x3_c00086{left:93.600000pt;}
.x1_c00086{left:157.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c30bfb414a20a0ba94067f70.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.052734;font-style:normal;font-weight:normal;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_1e5a5bff6498d58e2d8033f4.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:0.715820;font-style: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;}
.ls2_c00087{letter-spacing:0.000000px;}
.ls1_c00087{letter-spacing:98.949600px;}
.ls0_c00087{letter-spacing:99.000000px;}
.sc__c00087{text-shadow:none;}
.sc0_c00087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00087{-webkit-text-stroke:0px transparent;}
.sc0_c00087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00087{word-spacing:0.000000px;}
._0_c00087{margin-left:-4.795200px;}
._4_c00087{margin-left:-3.783024px;}
._1_c00087{margin-left:-2.637600px;}
._3_c00087{margin-left:-1.440000px;}
._2_c00087{width:1.865812px;}
.fc2_c00087{color:transparent;}
.fc1_c00087{color:rgb(255,255,255);}
.fc0_c00087{color:rgb(255,255,0);}
.fs1_c00087{font-size:180.000000px;}
.fs2_c00087{font-size:180.144000px;}
.fs0_c00087{font-size:239.760000px;}
.y0_c00087{bottom:0.000000px;}
.yb_c00087{bottom:186.150000px;}
.ya_c00087{bottom:229.350000px;}
.y9_c00087{bottom:272.550000px;}
.y8_c00087{bottom:326.595000px;}
.y7_c00087{bottom:380.595000px;}
.y6_c00087{bottom:434.595000px;}
.y5_c00087{bottom:488.625000px;}
.y4_c00087{bottom:542.625000px;}
.y3_c00087{bottom:596.670000px;}
.y2_c00087{bottom:650.670000px;}
.y1_c00087{bottom:728.610000px;}
.h2_c00087{height:157.412109px;}
.h3_c00087{height:157.538039px;}
.h1_c00087{height:209.672930px;}
.h0_c00087{height:810.000000px;}
.w0_c00087{width:1080.000000px;}
.x0_c00087{left:0.000000px;}
.x2_c00087{left:55.800000px;}
.x3_c00087{left:96.300000px;}
.x1_c00087{left:145.008000px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls2_c00087{letter-spacing:0.000000pt;}
.ls1_c00087{letter-spacing:87.955200pt;}
.ls0_c00087{letter-spacing:88.000000pt;}
.ws0_c00087{word-spacing:0.000000pt;}
._0_c00087{margin-left:-4.262400pt;}
._4_c00087{margin-left:-3.362688pt;}
._1_c00087{margin-left:-2.344533pt;}
._3_c00087{margin-left:-1.280000pt;}
._2_c00087{width:1.658500pt;}
.fs1_c00087{font-size:160.000000pt;}
.fs2_c00087{font-size:160.128000pt;}
.fs0_c00087{font-size:213.120000pt;}
.y0_c00087{bottom:0.000000pt;}
.yb_c00087{bottom:165.466667pt;}
.ya_c00087{bottom:203.866667pt;}
.y9_c00087{bottom:242.266667pt;}
.y8_c00087{bottom:290.306667pt;}
.y7_c00087{bottom:338.306667pt;}
.y6_c00087{bottom:386.306667pt;}
.y5_c00087{bottom:434.333333pt;}
.y4_c00087{bottom:482.333333pt;}
.y3_c00087{bottom:530.373333pt;}
.y2_c00087{bottom:578.373333pt;}
.y1_c00087{bottom:647.653333pt;}
.h2_c00087{height:139.921875pt;}
.h3_c00087{height:140.033813pt;}
.h1_c00087{height:186.375937pt;}
.h0_c00087{height:720.000000pt;}
.w0_c00087{width:960.000000pt;}
.x0_c00087{left:0.000000pt;}
.x2_c00087{left:49.600000pt;}
.x3_c00087{left:85.600000pt;}
.x1_c00087{left:128.896000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0f31032cbb8475b32a894a1.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.052734;font-style:normal;font-weight:normal;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_02d05505b2e4ecf3fb097d22.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:0.982910;font-style:normal;font-weight:normal;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_1e5a5bff6498d58e2d8033f4.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:0.715820;font-style: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;}
.ls2_c00088{letter-spacing:0.000000px;}
.ls1_c00088{letter-spacing:94.665600px;}
.ls0_c00088{letter-spacing:94.716000px;}
.sc__c00088{text-shadow:none;}
.sc0_c00088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00088{-webkit-text-stroke:0px transparent;}
.sc0_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00088{word-spacing:-51.582240px;}
.ws1_c00088{word-spacing:0.000000px;}
._6_c00088{margin-left:-14.862241px;}
._3_c00088{margin-left:-12.318207px;}
._0_c00088{margin-left:-4.110684px;}
._1_c00088{margin-left:-2.055456px;}
._5_c00088{margin-left:-1.020192px;}
._2_c00088{width:1.144860px;}
._4_c00088{width:2.206560px;}
.fc2_c00088{color:rgb(255,255,255);}
.fc1_c00088{color:rgb(0,0,0);}
.fc0_c00088{color:rgb(255,255,0);}
.fs4_c00088{font-size:72.000000px;}
.fs2_c00088{font-size:192.240000px;}
.fs3_c00088{font-size:192.384000px;}
.fs1_c00088{font-size:228.240000px;}
.fs0_c00088{font-size:228.384000px;}
.y0_c00088{bottom:0.000000px;}
.ya_c00088{bottom:191.850000px;}
.y9_c00088{bottom:260.970000px;}
.y8_c00088{bottom:318.570000px;}
.y7_c00088{bottom:379.800000px;}
.y6_c00088{bottom:413.640000px;}
.y5_c00088{bottom:471.240000px;}
.y4_c00088{bottom:528.870000px;}
.y3_c00088{bottom:609.090000px;}
.y2_c00088{bottom:677.490000px;}
.y1_c00088{bottom:745.920000px;}
.h5_c00088{height:62.964844px;}
.h3_c00088{height:168.116133px;}
.h4_c00088{height:168.242063px;}
.h2_c00088{height:199.598555px;}
.h1_c00088{height:199.724484px;}
.h0_c00088{height:810.000000px;}
.w0_c00088{width:1080.000000px;}
.x0_c00088{left:0.000000px;}
.x1_c00088{left:316.830000px;}
.x2_c00088{left:325.875000px;}
.x3_c00088{left:366.375000px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls2_c00088{letter-spacing:0.000000pt;}
.ls1_c00088{letter-spacing:84.147200pt;}
.ls0_c00088{letter-spacing:84.192000pt;}
.ws0_c00088{word-spacing:-45.850880pt;}
.ws1_c00088{word-spacing:0.000000pt;}
._6_c00088{margin-left:-13.210881pt;}
._3_c00088{margin-left:-10.949517pt;}
._0_c00088{margin-left:-3.653941pt;}
._1_c00088{margin-left:-1.827072pt;}
._5_c00088{margin-left:-0.906837pt;}
._2_c00088{width:1.017653pt;}
._4_c00088{width:1.961387pt;}
.fs4_c00088{font-size:64.000000pt;}
.fs2_c00088{font-size:170.880000pt;}
.fs3_c00088{font-size:171.008000pt;}
.fs1_c00088{font-size:202.880000pt;}
.fs0_c00088{font-size:203.008000pt;}
.y0_c00088{bottom:0.000000pt;}
.ya_c00088{bottom:170.533333pt;}
.y9_c00088{bottom:231.973333pt;}
.y8_c00088{bottom:283.173333pt;}
.y7_c00088{bottom:337.600000pt;}
.y6_c00088{bottom:367.680000pt;}
.y5_c00088{bottom:418.880000pt;}
.y4_c00088{bottom:470.106667pt;}
.y3_c00088{bottom:541.413333pt;}
.y2_c00088{bottom:602.213333pt;}
.y1_c00088{bottom:663.040000pt;}
.h5_c00088{height:55.968750pt;}
.h3_c00088{height:149.436563pt;}
.h4_c00088{height:149.548500pt;}
.h2_c00088{height:177.420938pt;}
.h1_c00088{height:177.532875pt;}
.h0_c00088{height:720.000000pt;}
.w0_c00088{width:960.000000pt;}
.x0_c00088{left:0.000000pt;}
.x1_c00088{left:281.626667pt;}
.x2_c00088{left:289.666667pt;}
.x3_c00088{left:325.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_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_dd62c402448af5dac181dfe3.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.052734;font-style:normal;font-weight:normal;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_1e5a5bff6498d58e2d8033f4.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:0.715820;font-style:normal;font-weight:normal;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_610defa22db81e71c3ec14e5.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:0.982910;font-style: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;}
.ls2_c00089{letter-spacing:0.000000px;}
.ls1_c00089{letter-spacing:76.593600px;}
.ls0_c00089{letter-spacing:76.644000px;}
.sc__c00089{text-shadow:none;}
.sc0_c00089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00089{-webkit-text-stroke:0px transparent;}
.sc0_c00089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00089{word-spacing:0.000000px;}
._6_c00089{margin-left:-11.543325px;}
._1_c00089{margin-left:-5.037024px;}
._2_c00089{margin-left:-3.598320px;}
._0_c00089{margin-left:-2.159376px;}
._5_c00089{margin-left:-1.007424px;}
._3_c00089{width:1.748900px;}
._4_c00089{width:3.131048px;}
.fc3_c00089{color:transparent;}
.fc2_c00089{color:rgb(0,0,0);}
.fc1_c00089{color:rgb(255,255,255);}
.fc0_c00089{color:rgb(255,255,0);}
.fs3_c00089{font-size:72.000000px;}
.fs4_c00089{font-size:108.000000px;}
.fs1_c00089{font-size:167.760000px;}
.fs2_c00089{font-size:167.904000px;}
.fs0_c00089{font-size:239.904000px;}
.y0_c00089{bottom:0.000000px;}
.yb_c00089{bottom:255.450000px;}
.ya_c00089{bottom:291.810000px;}
.y9_c00089{bottom:342.255000px;}
.y8_c00089{bottom:392.655000px;}
.y7_c00089{bottom:443.055000px;}
.y6_c00089{bottom:487.005000px;}
.y5_c00089{bottom:515.085000px;}
.y4_c00089{bottom:565.485000px;}
.y3_c00089{bottom:615.930000px;}
.y2_c00089{bottom:666.330000px;}
.y1_c00089{bottom:728.280000px;}
.h4_c00089{height:62.964844px;}
.h6_c00089{height:94.447266px;}
.h5_c00089{height:134.994375px;}
.h2_c00089{height:146.708086px;}
.h3_c00089{height:146.834016px;}
.h1_c00089{height:209.798859px;}
.h0_c00089{height:810.000000px;}
.w0_c00089{width:1080.000000px;}
.x0_c00089{left:0.000000px;}
.x2_c00089{left:31.536000px;}
.x3_c00089{left:65.376000px;}
.x1_c00089{left:207.570000px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls2_c00089{letter-spacing:0.000000pt;}
.ls1_c00089{letter-spacing:68.083200pt;}
.ls0_c00089{letter-spacing:68.128000pt;}
.ws0_c00089{word-spacing:0.000000pt;}
._6_c00089{margin-left:-10.260733pt;}
._1_c00089{margin-left:-4.477355pt;}
._2_c00089{margin-left:-3.198507pt;}
._0_c00089{margin-left:-1.919445pt;}
._5_c00089{margin-left:-0.895488pt;}
._3_c00089{width:1.554578pt;}
._4_c00089{width:2.783153pt;}
.fs3_c00089{font-size:64.000000pt;}
.fs4_c00089{font-size:96.000000pt;}
.fs1_c00089{font-size:149.120000pt;}
.fs2_c00089{font-size:149.248000pt;}
.fs0_c00089{font-size:213.248000pt;}
.y0_c00089{bottom:0.000000pt;}
.yb_c00089{bottom:227.066667pt;}
.ya_c00089{bottom:259.386667pt;}
.y9_c00089{bottom:304.226667pt;}
.y8_c00089{bottom:349.026667pt;}
.y7_c00089{bottom:393.826667pt;}
.y6_c00089{bottom:432.893333pt;}
.y5_c00089{bottom:457.853333pt;}
.y4_c00089{bottom:502.653333pt;}
.y3_c00089{bottom:547.493333pt;}
.y2_c00089{bottom:592.293333pt;}
.y1_c00089{bottom:647.360000pt;}
.h4_c00089{height:55.968750pt;}
.h6_c00089{height:83.953125pt;}
.h5_c00089{height:119.995000pt;}
.h2_c00089{height:130.407187pt;}
.h3_c00089{height:130.519125pt;}
.h1_c00089{height:186.487875pt;}
.h0_c00089{height:720.000000pt;}
.w0_c00089{width:960.000000pt;}
.x0_c00089{left:0.000000pt;}
.x2_c00089{left:28.032000pt;}
.x3_c00089{left:58.112000pt;}
.x1_c00089{left:184.506667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ed0716c0817966c98906248d.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.052734;font-style:normal;font-weight:normal;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_1e5a5bff6498d58e2d8033f4.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:0.715820;font-style:normal;font-weight:normal;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_29ff2c4f18108d03e4eb3968.woff2')format("woff");}.ff3_c00090{font-family:ff3_c00090;line-height:0.982910;font-style: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;}
.ls1_c00090{letter-spacing:0.000000px;}
.ls0_c00090{letter-spacing:76.788000px;}
.sc__c00090{text-shadow:none;}
.sc0_c00090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00090{-webkit-text-stroke:0px transparent;}
.sc0_c00090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00090{word-spacing:0.000000px;}
._6_c00090{margin-left:-11.861469px;}
._0_c00090{margin-left:-6.344952px;}
._4_c00090{margin-left:-3.984053px;}
._3_c00090{margin-left:-2.820648px;}
._1_c00090{margin-left:-1.583131px;}
._2_c00090{width:1.509504px;}
._5_c00090{width:2.684496px;}
.fc2_c00090{color:rgb(0,0,0);}
.fc1_c00090{color:rgb(255,255,255);}
.fc0_c00090{color:rgb(255,255,0);}
.fs3_c00090{font-size:108.000000px;}
.fs1_c00090{font-size:167.760000px;}
.fs2_c00090{font-size:167.904000px;}
.fs0_c00090{font-size:264.384000px;}
.y0_c00090{bottom:0.000000px;}
.yd_c00090{bottom:200.085000px;}
.yc_c00090{bottom:236.490000px;}
.yb_c00090{bottom:282.930000px;}
.ya_c00090{bottom:315.330000px;}
.y9_c00090{bottom:347.730000px;}
.y8_c00090{bottom:380.160000px;}
.y7_c00090{bottom:412.560000px;}
.y6_c00090{bottom:444.960000px;}
.y5_c00090{bottom:477.360000px;}
.y4_c00090{bottom:513.720000px;}
.y3_c00090{bottom:564.150000px;}
.y2_c00090{bottom:614.550000px;}
.y1_c00090{bottom:702.330000px;}
.h5_c00090{height:94.447266px;}
.h2_c00090{height:134.994375px;}
.h4_c00090{height:135.110250px;}
.h3_c00090{height:146.708086px;}
.h1_c00090{height:231.206906px;}
.h0_c00090{height:810.000000px;}
.w0_c00090{width:1080.000000px;}
.x0_c00090{left:0.000000px;}
.x2_c00090{left:43.380000px;}
.x3_c00090{left:77.256000px;}
.x1_c00090{left:188.205000px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls1_c00090{letter-spacing:0.000000pt;}
.ls0_c00090{letter-spacing:68.256000pt;}
.ws0_c00090{word-spacing:0.000000pt;}
._6_c00090{margin-left:-10.543528pt;}
._0_c00090{margin-left:-5.639957pt;}
._4_c00090{margin-left:-3.541381pt;}
._3_c00090{margin-left:-2.507242pt;}
._1_c00090{margin-left:-1.407228pt;}
._2_c00090{width:1.341782pt;}
._5_c00090{width:2.386218pt;}
.fs3_c00090{font-size:96.000000pt;}
.fs1_c00090{font-size:149.120000pt;}
.fs2_c00090{font-size:149.248000pt;}
.fs0_c00090{font-size:235.008000pt;}
.y0_c00090{bottom:0.000000pt;}
.yd_c00090{bottom:177.853333pt;}
.yc_c00090{bottom:210.213333pt;}
.yb_c00090{bottom:251.493333pt;}
.ya_c00090{bottom:280.293333pt;}
.y9_c00090{bottom:309.093333pt;}
.y8_c00090{bottom:337.920000pt;}
.y7_c00090{bottom:366.720000pt;}
.y6_c00090{bottom:395.520000pt;}
.y5_c00090{bottom:424.320000pt;}
.y4_c00090{bottom:456.640000pt;}
.y3_c00090{bottom:501.466667pt;}
.y2_c00090{bottom:546.266667pt;}
.y1_c00090{bottom:624.293333pt;}
.h5_c00090{height:83.953125pt;}
.h2_c00090{height:119.995000pt;}
.h4_c00090{height:120.098000pt;}
.h3_c00090{height:130.407187pt;}
.h1_c00090{height:205.517250pt;}
.h0_c00090{height:720.000000pt;}
.w0_c00090{width:960.000000pt;}
.x0_c00090{left:0.000000pt;}
.x2_c00090{left:38.560000pt;}
.x3_c00090{left:68.672000pt;}
.x1_c00090{left:167.293333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ee48ccd294b8b3ee3fc11a0c.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.052734;font-style:normal;font-weight:normal;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_f50f2a3e63b0fefe6e06d22b.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:0.982910;font-style: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;}
.ls0_c00091{letter-spacing:0.000000px;}
.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:0.000000px;}
._4_c00091{margin-left:-23.990400px;}
._3_c00091{margin-left:-22.793184px;}
._2_c00091{margin-left:-5.514240px;}
._0_c00091{margin-left:-3.836400px;}
._5_c00091{margin-left:-2.623440px;}
._1_c00091{margin-left:-1.198800px;}
.fc0_c00091{color:rgb(255,255,0);}
.fs0_c00091{font-size:239.760000px;}
.fs1_c00091{font-size:239.904000px;}
.y0_c00091{bottom:0.000000px;}
.y3_c00091{bottom:597.855000px;}
.y2_c00091{bottom:669.855000px;}
.y1_c00091{bottom:741.885000px;}
.h2_c00091{height:193.047750px;}
.h1_c00091{height:209.672930px;}
.h0_c00091{height:810.000000px;}
.w0_c00091{width:1080.000000px;}
.x0_c00091{left:0.000000px;}
.x1_c00091{left:124.200000px;}
.x2_c00091{left:188.640000px;}
.x3_c00091{left:289.440000px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls0_c00091{letter-spacing:0.000000pt;}
.ws0_c00091{word-spacing:0.000000pt;}
._4_c00091{margin-left:-21.324800pt;}
._3_c00091{margin-left:-20.260608pt;}
._2_c00091{margin-left:-4.901547pt;}
._0_c00091{margin-left:-3.410133pt;}
._5_c00091{margin-left:-2.331946pt;}
._1_c00091{margin-left:-1.065600pt;}
.fs0_c00091{font-size:213.120000pt;}
.fs1_c00091{font-size:213.248000pt;}
.y0_c00091{bottom:0.000000pt;}
.y3_c00091{bottom:531.426667pt;}
.y2_c00091{bottom:595.426667pt;}
.y1_c00091{bottom:659.453333pt;}
.h2_c00091{height:171.598000pt;}
.h1_c00091{height:186.375937pt;}
.h0_c00091{height:720.000000pt;}
.w0_c00091{width:960.000000pt;}
.x0_c00091{left:0.000000pt;}
.x1_c00091{left:110.400000pt;}
.x2_c00091{left:167.680000pt;}
.x3_c00091{left:257.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c8ccdf44d9ae9d14c4faec7d.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.052734;font-style:normal;font-weight:normal;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_d9fb118af0718bffcc965352.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:0.982910;font-style:normal;font-weight:normal;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_1e5a5bff6498d58e2d8033f4.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:0.715820;font-style: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;}
.ls3_c00092{letter-spacing:0.000000px;}
.ls0_c00092{letter-spacing:0.168480px;}
.ls2_c00092{letter-spacing:98.949600px;}
.ls1_c00092{letter-spacing:99.000000px;}
.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:0.000000px;}
._8_c00092{margin-left:-16.604473px;}
._6_c00092{margin-left:-13.714764px;}
._4_c00092{margin-left:-10.490834px;}
._7_c00092{margin-left:-5.819940px;}
._1_c00092{margin-left:-4.756056px;}
._3_c00092{margin-left:-3.746616px;}
._2_c00092{margin-left:-2.642400px;}
._0_c00092{margin-left:-1.057224px;}
._5_c00092{width:1.441152px;}
.fc1_c00092{color:rgb(255,255,255);}
.fc0_c00092{color:rgb(255,255,0);}
.fs3_c00092{font-size:66.240000px;}
.fs4_c00092{font-size:72.000000px;}
.fs5_c00092{font-size:77.760000px;}
.fs1_c00092{font-size:180.000000px;}
.fs2_c00092{font-size:180.144000px;}
.fs0_c00092{font-size:264.240000px;}
.y0_c00092{bottom:0.000000px;}
.yf_c00092{bottom:29.160000px;}
.ye_c00092{bottom:61.560000px;}
.yd_c00092{bottom:110.160000px;}
.yc_c00092{bottom:162.390000px;}
.yb_c00092{bottom:193.350000px;}
.ya_c00092{bottom:241.950000px;}
.y9_c00092{bottom:290.550000px;}
.y8_c00092{bottom:339.195000px;}
.y7_c00092{bottom:387.795000px;}
.y6_c00092{bottom:436.395000px;}
.y5_c00092{bottom:485.025000px;}
.y4_c00092{bottom:536.865000px;}
.y3_c00092{bottom:566.205000px;}
.y2_c00092{bottom:614.850000px;}
.y1_c00092{bottom:704.490000px;}
.h4_c00092{height:57.927656px;}
.h6_c00092{height:62.964844px;}
.h7_c00092{height:68.002031px;}
.h2_c00092{height:144.843750px;}
.h5_c00092{height:157.412109px;}
.h3_c00092{height:157.538039px;}
.h1_c00092{height:231.080977px;}
.h0_c00092{height:810.000000px;}
.w0_c00092{width:1080.000000px;}
.x0_c00092{left:0.000000px;}
.x2_c00092{left:33.300000px;}
.x3_c00092{left:73.800000px;}
.x1_c00092{left:149.868000px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls3_c00092{letter-spacing:0.000000pt;}
.ls0_c00092{letter-spacing:0.149760pt;}
.ls2_c00092{letter-spacing:87.955200pt;}
.ls1_c00092{letter-spacing:88.000000pt;}
.ws0_c00092{word-spacing:0.000000pt;}
._8_c00092{margin-left:-14.759531pt;}
._6_c00092{margin-left:-12.190901pt;}
._4_c00092{margin-left:-9.325185pt;}
._7_c00092{margin-left:-5.173280pt;}
._1_c00092{margin-left:-4.227605pt;}
._3_c00092{margin-left:-3.330325pt;}
._2_c00092{margin-left:-2.348800pt;}
._0_c00092{margin-left:-0.939755pt;}
._5_c00092{width:1.281024pt;}
.fs3_c00092{font-size:58.880000pt;}
.fs4_c00092{font-size:64.000000pt;}
.fs5_c00092{font-size:69.120000pt;}
.fs1_c00092{font-size:160.000000pt;}
.fs2_c00092{font-size:160.128000pt;}
.fs0_c00092{font-size:234.880000pt;}
.y0_c00092{bottom:0.000000pt;}
.yf_c00092{bottom:25.920000pt;}
.ye_c00092{bottom:54.720000pt;}
.yd_c00092{bottom:97.920000pt;}
.yc_c00092{bottom:144.346667pt;}
.yb_c00092{bottom:171.866667pt;}
.ya_c00092{bottom:215.066667pt;}
.y9_c00092{bottom:258.266667pt;}
.y8_c00092{bottom:301.506667pt;}
.y7_c00092{bottom:344.706667pt;}
.y6_c00092{bottom:387.906667pt;}
.y5_c00092{bottom:431.133333pt;}
.y4_c00092{bottom:477.213333pt;}
.y3_c00092{bottom:503.293333pt;}
.y2_c00092{bottom:546.533333pt;}
.y1_c00092{bottom:626.213333pt;}
.h4_c00092{height:51.491250pt;}
.h6_c00092{height:55.968750pt;}
.h7_c00092{height:60.446250pt;}
.h2_c00092{height:128.750000pt;}
.h5_c00092{height:139.921875pt;}
.h3_c00092{height:140.033813pt;}
.h1_c00092{height:205.405313pt;}
.h0_c00092{height:720.000000pt;}
.w0_c00092{width:960.000000pt;}
.x0_c00092{left:0.000000pt;}
.x2_c00092{left:29.600000pt;}
.x3_c00092{left:65.600000pt;}
.x1_c00092{left:133.216000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f4045b623c0787aac4d875aa.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.052734;font-style:normal;font-weight:normal;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_1e5a5bff6498d58e2d8033f4.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:0.715820;font-style:normal;font-weight:normal;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_b0d0f3c7ced19c453c48fac9.woff2')format("woff");}.ff3_c00093{font-family:ff3_c00093;line-height:0.982910;font-style: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;}
.ls3_c00093{letter-spacing:-0.120000px;}
.ls2_c00093{letter-spacing:0.000000px;}
.ls4_c00093{letter-spacing:0.157800px;}
.ls1_c00093{letter-spacing:115.833600px;}
.ls0_c00093{letter-spacing:115.884000px;}
.sc__c00093{text-shadow:none;}
.sc0_c00093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00093{-webkit-text-stroke:0px transparent;}
.sc0_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00093{word-spacing:0.000000px;}
._4_c00093{margin-left:-11.745468px;}
._3_c00093{margin-left:-9.656220px;}
._1_c00093{margin-left:-4.075920px;}
._5_c00093{margin-left:-2.785619px;}
._0_c00093{margin-left:-1.678320px;}
._2_c00093{width:1.282908px;}
.fc1_c00093{color:rgb(255,255,255);}
.fc0_c00093{color:rgb(255,255,0);}
.fs3_c00093{font-size:72.000000px;}
.fs1_c00093{font-size:131.760000px;}
.fs2_c00093{font-size:131.904000px;}
.fs0_c00093{font-size:239.760000px;}
.y0_c00093{bottom:0.000000px;}
.y12_c00093{bottom:22.860000px;}
.y11_c00093{bottom:62.460000px;}
.y10_c00093{bottom:102.060000px;}
.yf_c00093{bottom:141.660000px;}
.ye_c00093{bottom:185.250000px;}
.yd_c00093{bottom:215.130000px;}
.yc_c00093{bottom:254.730000px;}
.yb_c00093{bottom:294.330000px;}
.ya_c00093{bottom:333.975000px;}
.y9_c00093{bottom:373.575000px;}
.y8_c00093{bottom:413.175000px;}
.y7_c00093{bottom:456.765000px;}
.y6_c00093{bottom:486.645000px;}
.y5_c00093{bottom:526.245000px;}
.y4_c00093{bottom:565.845000px;}
.y3_c00093{bottom:605.490000px;}
.y2_c00093{bottom:645.090000px;}
.y1_c00093{bottom:710.610000px;}
.h4_c00093{height:62.964844px;}
.h2_c00093{height:115.225664px;}
.h3_c00093{height:115.351594px;}
.h1_c00093{height:209.672930px;}
.h0_c00093{height:810.000000px;}
.w0_c00093{width:1080.000000px;}
.x0_c00093{left:0.000000px;}
.x2_c00093{left:46.800000px;}
.x1_c00093{left:70.488000px;}
.x3_c00093{left:87.300000px;}
.x4_c00093{left:134.676000px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls3_c00093{letter-spacing:-0.106667pt;}
.ls2_c00093{letter-spacing:0.000000pt;}
.ls4_c00093{letter-spacing:0.140267pt;}
.ls1_c00093{letter-spacing:102.963200pt;}
.ls0_c00093{letter-spacing:103.008000pt;}
.ws0_c00093{word-spacing:0.000000pt;}
._4_c00093{margin-left:-10.440416pt;}
._3_c00093{margin-left:-8.583307pt;}
._1_c00093{margin-left:-3.623040pt;}
._5_c00093{margin-left:-2.476106pt;}
._0_c00093{margin-left:-1.491840pt;}
._2_c00093{width:1.140363pt;}
.fs3_c00093{font-size:64.000000pt;}
.fs1_c00093{font-size:117.120000pt;}
.fs2_c00093{font-size:117.248000pt;}
.fs0_c00093{font-size:213.120000pt;}
.y0_c00093{bottom:0.000000pt;}
.y12_c00093{bottom:20.320000pt;}
.y11_c00093{bottom:55.520000pt;}
.y10_c00093{bottom:90.720000pt;}
.yf_c00093{bottom:125.920000pt;}
.ye_c00093{bottom:164.666667pt;}
.yd_c00093{bottom:191.226667pt;}
.yc_c00093{bottom:226.426667pt;}
.yb_c00093{bottom:261.626667pt;}
.ya_c00093{bottom:296.866667pt;}
.y9_c00093{bottom:332.066667pt;}
.y8_c00093{bottom:367.266667pt;}
.y7_c00093{bottom:406.013333pt;}
.y6_c00093{bottom:432.573333pt;}
.y5_c00093{bottom:467.773333pt;}
.y4_c00093{bottom:502.973333pt;}
.y3_c00093{bottom:538.213333pt;}
.y2_c00093{bottom:573.413333pt;}
.y1_c00093{bottom:631.653333pt;}
.h4_c00093{height:55.968750pt;}
.h2_c00093{height:102.422812pt;}
.h3_c00093{height:102.534750pt;}
.h1_c00093{height:186.375937pt;}
.h0_c00093{height:720.000000pt;}
.w0_c00093{width:960.000000pt;}
.x0_c00093{left:0.000000pt;}
.x2_c00093{left:41.600000pt;}
.x1_c00093{left:62.656000pt;}
.x3_c00093{left:77.600000pt;}
.x4_c00093{left:119.712000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_46182a9aa2604b3b11a68f32.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.052734;font-style:normal;font-weight:normal;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_8d07360c37e170a2a19a4f0f.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:0.982910;font-style: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;}
.ls1_c00094{letter-spacing:0.000000px;}
.ls2_c00094{letter-spacing:0.180000px;}
.ls0_c00094{letter-spacing:0.360000px;}
.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:-40.680000px;}
.ws2_c00094{word-spacing:0.000000px;}
.ws0_c00094{word-spacing:65.520000px;}
._5_c00094{margin-left:-12.784561px;}
._1_c00094{margin-left:-4.075920px;}
._3_c00094{margin-left:-2.877839px;}
._0_c00094{margin-left:-1.438800px;}
._2_c00094{width:1.198800px;}
._4_c00094{width:7.736399px;}
.fc2_c00094{color:transparent;}
.fc1_c00094{color:rgb(255,255,255);}
.fc0_c00094{color:rgb(255,255,0);}
.fs2_c00094{font-size:72.000000px;}
.fs4_c00094{font-size:77.760000px;}
.fs1_c00094{font-size:180.000000px;}
.fs3_c00094{font-size:180.144000px;}
.fs0_c00094{font-size:239.760000px;}
.y0_c00094{bottom:0.000000px;}
.yd_c00094{bottom:139.680000px;}
.yc_c00094{bottom:172.080000px;}
.yb_c00094{bottom:220.680000px;}
.ya_c00094{bottom:272.910000px;}
.y9_c00094{bottom:303.870000px;}
.y8_c00094{bottom:352.470000px;}
.y7_c00094{bottom:401.115000px;}
.y6_c00094{bottom:453.315000px;}
.y5_c00094{bottom:484.275000px;}
.y4_c00094{bottom:532.905000px;}
.y3_c00094{bottom:581.505000px;}
.y2_c00094{bottom:630.105000px;}
.y1_c00094{bottom:714.930000px;}
.h4_c00094{height:62.964844px;}
.h6_c00094{height:68.002031px;}
.h3_c00094{height:144.843750px;}
.h2_c00094{height:157.412109px;}
.h5_c00094{height:157.538039px;}
.h1_c00094{height:209.672930px;}
.h0_c00094{height:810.000000px;}
.w0_c00094{width:1080.000000px;}
.x0_c00094{left:0.000000px;}
.x2_c00094{left:68.184000px;}
.x1_c00094{left:102.348000px;}
.x4_c00094{left:108.684000px;}
.x3_c00094{left:129.024000px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls1_c00094{letter-spacing:0.000000pt;}
.ls2_c00094{letter-spacing:0.160000pt;}
.ls0_c00094{letter-spacing:0.320000pt;}
.ws1_c00094{word-spacing:-36.160000pt;}
.ws2_c00094{word-spacing:0.000000pt;}
.ws0_c00094{word-spacing:58.240000pt;}
._5_c00094{margin-left:-11.364054pt;}
._1_c00094{margin-left:-3.623040pt;}
._3_c00094{margin-left:-2.558079pt;}
._0_c00094{margin-left:-1.278933pt;}
._2_c00094{width:1.065600pt;}
._4_c00094{width:6.876799pt;}
.fs2_c00094{font-size:64.000000pt;}
.fs4_c00094{font-size:69.120000pt;}
.fs1_c00094{font-size:160.000000pt;}
.fs3_c00094{font-size:160.128000pt;}
.fs0_c00094{font-size:213.120000pt;}
.y0_c00094{bottom:0.000000pt;}
.yd_c00094{bottom:124.160000pt;}
.yc_c00094{bottom:152.960000pt;}
.yb_c00094{bottom:196.160000pt;}
.ya_c00094{bottom:242.586667pt;}
.y9_c00094{bottom:270.106667pt;}
.y8_c00094{bottom:313.306667pt;}
.y7_c00094{bottom:356.546667pt;}
.y6_c00094{bottom:402.946667pt;}
.y5_c00094{bottom:430.466667pt;}
.y4_c00094{bottom:473.693333pt;}
.y3_c00094{bottom:516.893333pt;}
.y2_c00094{bottom:560.093333pt;}
.y1_c00094{bottom:635.493333pt;}
.h4_c00094{height:55.968750pt;}
.h6_c00094{height:60.446250pt;}
.h3_c00094{height:128.750000pt;}
.h2_c00094{height:139.921875pt;}
.h5_c00094{height:140.033813pt;}
.h1_c00094{height:186.375937pt;}
.h0_c00094{height:720.000000pt;}
.w0_c00094{width:960.000000pt;}
.x0_c00094{left:0.000000pt;}
.x2_c00094{left:60.608000pt;}
.x1_c00094{left:90.976000pt;}
.x4_c00094{left:96.608000pt;}
.x3_c00094{left:114.688000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0a7bd4dc7c9f23a1e2b08b52.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.052734;font-style:normal;font-weight:normal;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_1e5a5bff6498d58e2d8033f4.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:0.715820;font-style:normal;font-weight:normal;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_d9e7a5517970f033f71c3b30.woff2')format("woff");}.ff3_c00095{font-family:ff3_c00095;line-height:0.982910;font-style: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:-17.700000px;}
.ls3_c00095{letter-spacing:-0.996000px;}
.ls1_c00095{letter-spacing:0.000000px;}
.ls2_c00095{letter-spacing:0.170400px;}
.ls0_c00095{letter-spacing:94.716000px;}
.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:-25.746240px;}
.ws1_c00095{word-spacing:0.000000px;}
._4_c00095{margin-left:-19.867823px;}
._5_c00095{margin-left:-10.371383px;}
._2_c00095{margin-left:-4.494528px;}
._0_c00095{margin-left:-2.908224px;}
._1_c00095{margin-left:-1.586568px;}
._3_c00095{width:1.843814px;}
._6_c00095{width:16.604401px;}
.fc1_c00095{color:rgb(255,255,255);}
.fc0_c00095{color:rgb(255,255,0);}
.fs1_c00095{font-size:192.240000px;}
.fs2_c00095{font-size:192.384000px;}
.fs0_c00095{font-size:264.384000px;}
.y0_c00095{bottom:0.000000px;}
.y9_c00095{bottom:213.120000px;}
.y8_c00095{bottom:270.720000px;}
.y7_c00095{bottom:328.350000px;}
.y6_c00095{bottom:385.950000px;}
.y5_c00095{bottom:443.550000px;}
.y4_c00095{bottom:501.195000px;}
.y3_c00095{bottom:558.795000px;}
.y2_c00095{bottom:616.425000px;}
.y1_c00095{bottom:705.450000px;}
.h4_c00095{height:154.693125px;}
.h2_c00095{height:168.116133px;}
.h3_c00095{height:168.242063px;}
.h1_c00095{height:231.206906px;}
.h0_c00095{height:810.000000px;}
.w0_c00095{width:1080.000000px;}
.x0_c00095{left:0.000000px;}
.x2_c00095{left:62.568000px;}
.x1_c00095{left:69.588000px;}
.x3_c00095{left:103.068000px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls4_c00095{letter-spacing:-15.733333pt;}
.ls3_c00095{letter-spacing:-0.885333pt;}
.ls1_c00095{letter-spacing:0.000000pt;}
.ls2_c00095{letter-spacing:0.151467pt;}
.ls0_c00095{letter-spacing:84.192000pt;}
.ws0_c00095{word-spacing:-22.885547pt;}
.ws1_c00095{word-spacing:0.000000pt;}
._4_c00095{margin-left:-17.660287pt;}
._5_c00095{margin-left:-9.219007pt;}
._2_c00095{margin-left:-3.995136pt;}
._0_c00095{margin-left:-2.585088pt;}
._1_c00095{margin-left:-1.410283pt;}
._3_c00095{width:1.638946pt;}
._6_c00095{width:14.759467pt;}
.fs1_c00095{font-size:170.880000pt;}
.fs2_c00095{font-size:171.008000pt;}
.fs0_c00095{font-size:235.008000pt;}
.y0_c00095{bottom:0.000000pt;}
.y9_c00095{bottom:189.440000pt;}
.y8_c00095{bottom:240.640000pt;}
.y7_c00095{bottom:291.866667pt;}
.y6_c00095{bottom:343.066667pt;}
.y5_c00095{bottom:394.266667pt;}
.y4_c00095{bottom:445.506667pt;}
.y3_c00095{bottom:496.706667pt;}
.y2_c00095{bottom:547.933333pt;}
.y1_c00095{bottom:627.066667pt;}
.h4_c00095{height:137.505000pt;}
.h2_c00095{height:149.436563pt;}
.h3_c00095{height:149.548500pt;}
.h1_c00095{height:205.517250pt;}
.h0_c00095{height:720.000000pt;}
.w0_c00095{width:960.000000pt;}
.x0_c00095{left:0.000000pt;}
.x2_c00095{left:55.616000pt;}
.x1_c00095{left:61.856000pt;}
.x3_c00095{left:91.616000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cab776d6259ec2d9be2c408d.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:0.982910;font-style:normal;font-weight:normal;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_2493d1710a134e62ff53bbe2.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:1.052734;font-style:normal;font-weight:normal;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_952e46507edd3d7d5fa3c919.woff2')format("woff");}.ff3_c00096{font-family:ff3_c00096;line-height:1.051270;font-style:normal;font-weight:normal;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_a0340a8ed5f3dcb3f4762e97.woff2')format("woff");}.ff4_c00096{font-family:ff4_c00096;line-height:0.715820;font-style: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;}
.ls8_c00096{letter-spacing:-0.306000px;}
.ls5_c00096{letter-spacing:-0.180000px;}
.ls6_c00096{letter-spacing:-0.018000px;}
.ls4_c00096{letter-spacing:0.000000px;}
.ls2_c00096{letter-spacing:0.036000px;}
.ls1_c00096{letter-spacing:0.060000px;}
.lsb_c00096{letter-spacing:0.090000px;}
.lsa_c00096{letter-spacing:0.180000px;}
.ls7_c00096{letter-spacing:0.198000px;}
.ls9_c00096{letter-spacing:0.342000px;}
.ls0_c00096{letter-spacing:0.468000px;}
.ls3_c00096{letter-spacing:1.476000px;}
.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;}
}
.ws4_c00096{word-spacing:-12.546000px;}
.ws1_c00096{word-spacing:-12.402000px;}
.ws5_c00096{word-spacing:-12.294000px;}
.ws2_c00096{word-spacing:-12.204000px;}
.ws0_c00096{word-spacing:-12.024000px;}
.ws3_c00096{word-spacing:-11.898000px;}
.ws6_c00096{word-spacing:0.000000px;}
._0_c00096{margin-left:-5.816448px;}
._3_c00096{margin-left:-3.226200px;}
._5_c00096{margin-left:-2.134218px;}
._1_c00096{margin-left:-1.057800px;}
._4_c00096{width:1.091419px;}
._2_c00096{width:2.107202px;}
._6_c00096{width:3.301821px;}
.fc1_c00096{color:rgb(255,255,255);}
.fc0_c00096{color:rgb(255,255,0);}
.fs1_c00096{font-size:54.000000px;}
.fs0_c00096{font-size:264.384000px;}
.y0_c00096{bottom:0.000000px;}
.y2b_c00096{bottom:2.412000px;}
.y2a_c00096{bottom:18.972000px;}
.y29_c00096{bottom:35.352000px;}
.y28_c00096{bottom:51.372000px;}
.y27_c00096{bottom:67.752000px;}
.y26_c00096{bottom:83.808000px;}
.y25_c00096{bottom:100.188000px;}
.y24_c00096{bottom:116.208000px;}
.y23_c00096{bottom:132.408000px;}
.y22_c00096{bottom:148.788000px;}
.y21_c00096{bottom:164.805000px;}
.y20_c00096{bottom:181.185000px;}
.y1f_c00096{bottom:197.205000px;}
.y1e_c00096{bottom:213.405000px;}
.y1d_c00096{bottom:229.830000px;}
.y1c_c00096{bottom:245.850000px;}
.y1b_c00096{bottom:262.050000px;}
.y1a_c00096{bottom:278.250000px;}
.y19_c00096{bottom:294.630000px;}
.y18_c00096{bottom:310.650000px;}
.y17_c00096{bottom:326.850000px;}
.y16_c00096{bottom:343.230000px;}
.y15_c00096{bottom:359.250000px;}
.y14_c00096{bottom:375.660000px;}
.y13_c00096{bottom:391.680000px;}
.y12_c00096{bottom:407.880000px;}
.y11_c00096{bottom:424.260000px;}
.y10_c00096{bottom:440.280000px;}
.yf_c00096{bottom:456.660000px;}
.ye_c00096{bottom:472.680000px;}
.yd_c00096{bottom:488.880000px;}
.yc_c00096{bottom:505.080000px;}
.yb_c00096{bottom:521.490000px;}
.ya_c00096{bottom:537.510000px;}
.y9_c00096{bottom:553.710000px;}
.y8_c00096{bottom:569.910000px;}
.y7_c00096{bottom:586.110000px;}
.y6_c00096{bottom:602.490000px;}
.y5_c00096{bottom:618.510000px;}
.y4_c00096{bottom:634.710000px;}
.y3_c00096{bottom:650.910000px;}
.y2_c00096{bottom:667.335000px;}
.y1_c00096{bottom:721.515000px;}
.h4_c00096{height:38.654297px;}
.h3_c00096{height:43.453125px;}
.h2_c00096{height:47.223633px;}
.h1_c00096{height:231.206906px;}
.h0_c00096{height:810.000000px;}
.w0_c00096{width:1080.000000px;}
.x0_c00096{left:0.000000px;}
.x2_c00096{left:31.068000px;}
.x1_c00096{left:195.045000px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls8_c00096{letter-spacing:-0.272000pt;}
.ls5_c00096{letter-spacing:-0.160000pt;}
.ls6_c00096{letter-spacing:-0.016000pt;}
.ls4_c00096{letter-spacing:0.000000pt;}
.ls2_c00096{letter-spacing:0.032000pt;}
.ls1_c00096{letter-spacing:0.053333pt;}
.lsb_c00096{letter-spacing:0.080000pt;}
.lsa_c00096{letter-spacing:0.160000pt;}
.ls7_c00096{letter-spacing:0.176000pt;}
.ls9_c00096{letter-spacing:0.304000pt;}
.ls0_c00096{letter-spacing:0.416000pt;}
.ls3_c00096{letter-spacing:1.312000pt;}
.ws4_c00096{word-spacing:-11.152000pt;}
.ws1_c00096{word-spacing:-11.024000pt;}
.ws5_c00096{word-spacing:-10.928000pt;}
.ws2_c00096{word-spacing:-10.848000pt;}
.ws0_c00096{word-spacing:-10.688000pt;}
.ws3_c00096{word-spacing:-10.576000pt;}
.ws6_c00096{word-spacing:0.000000pt;}
._0_c00096{margin-left:-5.170176pt;}
._3_c00096{margin-left:-2.867733pt;}
._5_c00096{margin-left:-1.897082pt;}
._1_c00096{margin-left:-0.940267pt;}
._4_c00096{width:0.970150pt;}
._2_c00096{width:1.873068pt;}
._6_c00096{width:2.934952pt;}
.fs1_c00096{font-size:48.000000pt;}
.fs0_c00096{font-size:235.008000pt;}
.y0_c00096{bottom:0.000000pt;}
.y2b_c00096{bottom:2.144000pt;}
.y2a_c00096{bottom:16.864000pt;}
.y29_c00096{bottom:31.424000pt;}
.y28_c00096{bottom:45.664000pt;}
.y27_c00096{bottom:60.224000pt;}
.y26_c00096{bottom:74.496000pt;}
.y25_c00096{bottom:89.056000pt;}
.y24_c00096{bottom:103.296000pt;}
.y23_c00096{bottom:117.696000pt;}
.y22_c00096{bottom:132.256000pt;}
.y21_c00096{bottom:146.493333pt;}
.y20_c00096{bottom:161.053333pt;}
.y1f_c00096{bottom:175.293333pt;}
.y1e_c00096{bottom:189.693333pt;}
.y1d_c00096{bottom:204.293333pt;}
.y1c_c00096{bottom:218.533333pt;}
.y1b_c00096{bottom:232.933333pt;}
.y1a_c00096{bottom:247.333333pt;}
.y19_c00096{bottom:261.893333pt;}
.y18_c00096{bottom:276.133333pt;}
.y17_c00096{bottom:290.533333pt;}
.y16_c00096{bottom:305.093333pt;}
.y15_c00096{bottom:319.333333pt;}
.y14_c00096{bottom:333.920000pt;}
.y13_c00096{bottom:348.160000pt;}
.y12_c00096{bottom:362.560000pt;}
.y11_c00096{bottom:377.120000pt;}
.y10_c00096{bottom:391.360000pt;}
.yf_c00096{bottom:405.920000pt;}
.ye_c00096{bottom:420.160000pt;}
.yd_c00096{bottom:434.560000pt;}
.yc_c00096{bottom:448.960000pt;}
.yb_c00096{bottom:463.546667pt;}
.ya_c00096{bottom:477.786667pt;}
.y9_c00096{bottom:492.186667pt;}
.y8_c00096{bottom:506.586667pt;}
.y7_c00096{bottom:520.986667pt;}
.y6_c00096{bottom:535.546667pt;}
.y5_c00096{bottom:549.786667pt;}
.y4_c00096{bottom:564.186667pt;}
.y3_c00096{bottom:578.586667pt;}
.y2_c00096{bottom:593.186667pt;}
.y1_c00096{bottom:641.346667pt;}
.h4_c00096{height:34.359375pt;}
.h3_c00096{height:38.625000pt;}
.h2_c00096{height:41.976562pt;}
.h1_c00096{height:205.517250pt;}
.h0_c00096{height:720.000000pt;}
.w0_c00096{width:960.000000pt;}
.x0_c00096{left:0.000000pt;}
.x2_c00096{left:27.616000pt;}
.x1_c00096{left:173.373333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d54582c543f610acdefad47.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00097{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00097{vertical-align:0.000000px;}
.ls0_c00097{letter-spacing:0.000000px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00097{word-spacing:0.000000px;}
._3_c00097{margin-left:-6.719365px;}
._0_c00097{margin-left:-3.161976px;}
._1_c00097{margin-left:-1.186235px;}
._2_c00097{width:1.317600px;}
.fc0_c00097{color:rgb(255,255,255);}
.fs0_c00097{font-size:131.760000px;}
.fs1_c00097{font-size:131.904000px;}
.y0_c00097{bottom:0.000000px;}
.y4_c00097{bottom:51.660000px;}
.y3_c00097{bottom:91.260000px;}
.y2_c00097{bottom:130.860000px;}
.y1_c00097{bottom:170.490000px;}
.h1_c00097{height:115.225664px;}
.h2_c00097{height:115.351594px;}
.h0_c00097{height:810.000000px;}
.w0_c00097{width:1080.000000px;}
.x0_c00097{left:0.000000px;}
.x1_c00097{left:82.800000px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls0_c00097{letter-spacing:0.000000pt;}
.ws0_c00097{word-spacing:0.000000pt;}
._3_c00097{margin-left:-5.972769pt;}
._0_c00097{margin-left:-2.810646pt;}
._1_c00097{margin-left:-1.054431pt;}
._2_c00097{width:1.171200pt;}
.fs0_c00097{font-size:117.120000pt;}
.fs1_c00097{font-size:117.248000pt;}
.y0_c00097{bottom:0.000000pt;}
.y4_c00097{bottom:45.920000pt;}
.y3_c00097{bottom:81.120000pt;}
.y2_c00097{bottom:116.320000pt;}
.y1_c00097{bottom:151.546667pt;}
.h1_c00097{height:102.422812pt;}
.h2_c00097{height:102.534750pt;}
.h0_c00097{height:720.000000pt;}
.w0_c00097{width:960.000000pt;}
.x0_c00097{left:0.000000pt;}
.x1_c00097{left:73.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_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_e859a6d551bffed41858b759.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.ls0_c00098{letter-spacing:0.000000px;}
.ls1_c00098{letter-spacing:0.324000px;}
.sc__c00098{text-shadow:none;}
.sc0_c00098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00098{-webkit-text-stroke:0px transparent;}
.sc0_c00098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00098{word-spacing:0.000000px;}
.ws0_c00098{word-spacing:65.208000px;}
._3_c00098{margin-left:-3.799176px;}
._0_c00098{margin-left:-2.378424px;}
._2_c00098{margin-left:-1.321200px;}
._4_c00098{width:1.099248px;}
._1_c00098{width:2.114448px;}
.fc1_c00098{color:rgb(255,255,255);}
.fc0_c00098{color:rgb(255,255,0);}
.fs2_c00098{font-size:72.000000px;}
.fs1_c00098{font-size:180.000000px;}
.fs0_c00098{font-size:264.240000px;}
.y0_c00098{bottom:0.000000px;}
.yb_c00098{bottom:166.170000px;}
.ya_c00098{bottom:223.770000px;}
.y9_c00098{bottom:256.890000px;}
.y8_c00098{bottom:310.935000px;}
.y7_c00098{bottom:368.535000px;}
.y6_c00098{bottom:401.655000px;}
.y5_c00098{bottom:455.685000px;}
.y4_c00098{bottom:513.285000px;}
.y3_c00098{bottom:546.405000px;}
.y2_c00098{bottom:600.450000px;}
.y1_c00098{bottom:690.630000px;}
.h3_c00098{height:62.964844px;}
.h2_c00098{height:157.412109px;}
.h1_c00098{height:231.080977px;}
.h0_c00098{height:810.000000px;}
.w0_c00098{width:1080.000000px;}
.x0_c00098{left:0.000000px;}
.x2_c00098{left:91.800000px;}
.x3_c00098{left:152.670000px;}
.x1_c00098{left:412.890000px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls0_c00098{letter-spacing:0.000000pt;}
.ls1_c00098{letter-spacing:0.288000pt;}
.ws1_c00098{word-spacing:0.000000pt;}
.ws0_c00098{word-spacing:57.962667pt;}
._3_c00098{margin-left:-3.377045pt;}
._0_c00098{margin-left:-2.114155pt;}
._2_c00098{margin-left:-1.174400pt;}
._4_c00098{width:0.977110pt;}
._1_c00098{width:1.879510pt;}
.fs2_c00098{font-size:64.000000pt;}
.fs1_c00098{font-size:160.000000pt;}
.fs0_c00098{font-size:234.880000pt;}
.y0_c00098{bottom:0.000000pt;}
.yb_c00098{bottom:147.706667pt;}
.ya_c00098{bottom:198.906667pt;}
.y9_c00098{bottom:228.346667pt;}
.y8_c00098{bottom:276.386667pt;}
.y7_c00098{bottom:327.586667pt;}
.y6_c00098{bottom:357.026667pt;}
.y5_c00098{bottom:405.053333pt;}
.y4_c00098{bottom:456.253333pt;}
.y3_c00098{bottom:485.693333pt;}
.y2_c00098{bottom:533.733333pt;}
.y1_c00098{bottom:613.893333pt;}
.h3_c00098{height:55.968750pt;}
.h2_c00098{height:139.921875pt;}
.h1_c00098{height:205.405313pt;}
.h0_c00098{height:720.000000pt;}
.w0_c00098{width:960.000000pt;}
.x0_c00098{left:0.000000pt;}
.x2_c00098{left:81.600000pt;}
.x3_c00098{left:135.706667pt;}
.x1_c00098{left:367.013333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c23b97e4db5a073789ab09ec.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.052734;font-style:normal;font-weight:normal;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_1e5a5bff6498d58e2d8033f4.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:0.715820;font-style:normal;font-weight:normal;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_24f1536a6704c67ce9cc8e9d.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:0.982910;font-style: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:105.300000px;}
.sc__c00099{text-shadow:none;}
.sc0_c00099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00099{-webkit-text-stroke:0px transparent;}
.sc0_c00099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00099{word-spacing:0.000000px;}
._5_c00099{margin-left:-11.290824px;}
._6_c00099{margin-left:-9.720000px;}
._3_c00099{margin-left:-4.968000px;}
._0_c00099{margin-left:-3.890376px;}
._2_c00099{margin-left:-2.803176px;}
._1_c00099{margin-left:-1.513224px;}
._4_c00099{width:1.292472px;}
.fc2_c00099{color:transparent;}
.fc1_c00099{color:rgb(255,255,255);}
.fc0_c00099{color:rgb(255,255,0);}
.fs4_c00099{font-size:66.240000px;}
.fs3_c00099{font-size:77.904000px;}
.fs2_c00099{font-size:162.000000px;}
.fs5_c00099{font-size:162.144000px;}
.fs1_c00099{font-size:216.000000px;}
.fs0_c00099{font-size:216.144000px;}
.y0_c00099{bottom:0.000000px;}
.y11_c00099{bottom:46.620000px;}
.y10_c00099{bottom:72.180000px;}
.yf_c00099{bottom:115.020000px;}
.ye_c00099{bottom:140.580000px;}
.yd_c00099{bottom:179.490000px;}
.yc_c00099{bottom:218.370000px;}
.yb_c00099{bottom:257.250000px;}
.ya_c00099{bottom:300.135000px;}
.y9_c00099{bottom:325.695000px;}
.y8_c00099{bottom:364.575000px;}
.y7_c00099{bottom:403.455000px;}
.y6_c00099{bottom:447.015000px;}
.y5_c00099{bottom:475.485000px;}
.y4_c00099{bottom:514.365000px;}
.y3_c00099{bottom:605.490000px;}
.y2_c00099{bottom:670.290000px;}
.y1_c00099{bottom:735.090000px;}
.h5_c00099{height:57.927656px;}
.h4_c00099{height:68.127961px;}
.h6_c00099{height:130.359375px;}
.h3_c00099{height:141.670898px;}
.h7_c00099{height:141.796828px;}
.h2_c00099{height:188.894531px;}
.h1_c00099{height:189.020461px;}
.h0_c00099{height:810.000000px;}
.w0_c00099{width:1080.000000px;}
.x0_c00099{left:0.000000px;}
.x1_c00099{left:37.800000px;}
.x2_c00099{left:46.800000px;}
.x3_c00099{left:87.300000px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls1_c00099{letter-spacing:0.000000pt;}
.ls0_c00099{letter-spacing:93.600000pt;}
.ws0_c00099{word-spacing:0.000000pt;}
._5_c00099{margin-left:-10.036288pt;}
._6_c00099{margin-left:-8.640000pt;}
._3_c00099{margin-left:-4.416000pt;}
._0_c00099{margin-left:-3.458112pt;}
._2_c00099{margin-left:-2.491712pt;}
._1_c00099{margin-left:-1.345088pt;}
._4_c00099{width:1.148864pt;}
.fs4_c00099{font-size:58.880000pt;}
.fs3_c00099{font-size:69.248000pt;}
.fs2_c00099{font-size:144.000000pt;}
.fs5_c00099{font-size:144.128000pt;}
.fs1_c00099{font-size:192.000000pt;}
.fs0_c00099{font-size:192.128000pt;}
.y0_c00099{bottom:0.000000pt;}
.y11_c00099{bottom:41.440000pt;}
.y10_c00099{bottom:64.160000pt;}
.yf_c00099{bottom:102.240000pt;}
.ye_c00099{bottom:124.960000pt;}
.yd_c00099{bottom:159.546667pt;}
.yc_c00099{bottom:194.106667pt;}
.yb_c00099{bottom:228.666667pt;}
.ya_c00099{bottom:266.786667pt;}
.y9_c00099{bottom:289.506667pt;}
.y8_c00099{bottom:324.066667pt;}
.y7_c00099{bottom:358.626667pt;}
.y6_c00099{bottom:397.346667pt;}
.y5_c00099{bottom:422.653333pt;}
.y4_c00099{bottom:457.213333pt;}
.y3_c00099{bottom:538.213333pt;}
.y2_c00099{bottom:595.813333pt;}
.y1_c00099{bottom:653.413333pt;}
.h5_c00099{height:51.491250pt;}
.h4_c00099{height:60.558187pt;}
.h6_c00099{height:115.875000pt;}
.h3_c00099{height:125.929688pt;}
.h7_c00099{height:126.041625pt;}
.h2_c00099{height:167.906250pt;}
.h1_c00099{height:168.018188pt;}
.h0_c00099{height:720.000000pt;}
.w0_c00099{width:960.000000pt;}
.x0_c00099{left:0.000000pt;}
.x1_c00099{left:33.600000pt;}
.x2_c00099{left:41.600000pt;}
.x3_c00099{left:77.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_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_653035edcc1d05c71bebe118.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:0.982910;font-style:normal;font-weight:normal;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_3a51099a6b4dc00c95cc637c.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.052734;font-style: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;}
.ls0_c00100{letter-spacing:0.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;}
._2_c00100{margin-left:-5.096833px;}
._0_c00100{margin-left:-3.171024px;}
._1_c00100{margin-left:-1.585728px;}
.fc0_c00100{color:rgb(255,255,0);}
.fs0_c00100{font-size:144.144000px;}
.y0_c00100{bottom:0.000000px;}
.y1_c00100{bottom:734.910000px;}
.h1_c00100{height:126.055617px;}
.h0_c00100{height:810.000000px;}
.w0_c00100{width:1080.000000px;}
.x0_c00100{left:0.000000px;}
.x1_c00100{left:90.288000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls0_c00100{letter-spacing:0.000000pt;}
.ws0_c00100{word-spacing:0.000000pt;}
._2_c00100{margin-left:-4.530518pt;}
._0_c00100{margin-left:-2.818688pt;}
._1_c00100{margin-left:-1.409536pt;}
.fs0_c00100{font-size:128.128000pt;}
.y0_c00100{bottom:0.000000pt;}
.y1_c00100{bottom:653.253333pt;}
.h1_c00100{height:112.049437pt;}
.h0_c00100{height:720.000000pt;}
.w0_c00100{width:960.000000pt;}
.x0_c00100{left:0.000000pt;}
.x1_c00100{left:80.256000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f4b84b461415062117f0e3a7.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.052734;font-style: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;}
.ls0_c00101{letter-spacing:0.000000px;}
.ls2_c00101{letter-spacing:0.250800px;}
.ls1_c00101{letter-spacing:0.324000px;}
.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:0.000000px;}
.ws0_c00101{word-spacing:65.208000px;}
.ws1_c00101{word-spacing:65.285760px;}
._3_c00101{margin-left:-3.799176px;}
._0_c00101{margin-left:-2.378424px;}
._2_c00101{margin-left:-1.321200px;}
._4_c00101{width:1.099248px;}
._1_c00101{width:2.114448px;}
.fc1_c00101{color:rgb(255,255,255);}
.fc0_c00101{color:rgb(255,255,0);}
.fs2_c00101{font-size:72.000000px;}
.fs1_c00101{font-size:180.000000px;}
.fs3_c00101{font-size:180.144000px;}
.fs0_c00101{font-size:264.240000px;}
.y0_c00101{bottom:0.000000px;}
.yb_c00101{bottom:181.440000px;}
.ya_c00101{bottom:239.070000px;}
.y9_c00101{bottom:272.190000px;}
.y8_c00101{bottom:326.190000px;}
.y7_c00101{bottom:383.835000px;}
.y6_c00101{bottom:416.955000px;}
.y5_c00101{bottom:470.955000px;}
.y4_c00101{bottom:528.585000px;}
.y3_c00101{bottom:561.705000px;}
.y2_c00101{bottom:615.705000px;}
.y1_c00101{bottom:690.630000px;}
.h3_c00101{height:62.964844px;}
.h2_c00101{height:157.412109px;}
.h4_c00101{height:157.538039px;}
.h1_c00101{height:231.080977px;}
.h0_c00101{height:810.000000px;}
.w0_c00101{width:1080.000000px;}
.x0_c00101{left:0.000000px;}
.x2_c00101{left:91.800000px;}
.x3_c00101{left:152.670000px;}
.x1_c00101{left:412.890000px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls0_c00101{letter-spacing:0.000000pt;}
.ls2_c00101{letter-spacing:0.222933pt;}
.ls1_c00101{letter-spacing:0.288000pt;}
.ws2_c00101{word-spacing:0.000000pt;}
.ws0_c00101{word-spacing:57.962667pt;}
.ws1_c00101{word-spacing:58.031787pt;}
._3_c00101{margin-left:-3.377045pt;}
._0_c00101{margin-left:-2.114155pt;}
._2_c00101{margin-left:-1.174400pt;}
._4_c00101{width:0.977110pt;}
._1_c00101{width:1.879510pt;}
.fs2_c00101{font-size:64.000000pt;}
.fs1_c00101{font-size:160.000000pt;}
.fs3_c00101{font-size:160.128000pt;}
.fs0_c00101{font-size:234.880000pt;}
.y0_c00101{bottom:0.000000pt;}
.yb_c00101{bottom:161.280000pt;}
.ya_c00101{bottom:212.506667pt;}
.y9_c00101{bottom:241.946667pt;}
.y8_c00101{bottom:289.946667pt;}
.y7_c00101{bottom:341.186667pt;}
.y6_c00101{bottom:370.626667pt;}
.y5_c00101{bottom:418.626667pt;}
.y4_c00101{bottom:469.853333pt;}
.y3_c00101{bottom:499.293333pt;}
.y2_c00101{bottom:547.293333pt;}
.y1_c00101{bottom:613.893333pt;}
.h3_c00101{height:55.968750pt;}
.h2_c00101{height:139.921875pt;}
.h4_c00101{height:140.033813pt;}
.h1_c00101{height:205.405313pt;}
.h0_c00101{height:720.000000pt;}
.w0_c00101{width:960.000000pt;}
.x0_c00101{left:0.000000pt;}
.x2_c00101{left:81.600000pt;}
.x3_c00101{left:135.706667pt;}
.x1_c00101{left:367.013333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_334679ef5c02e0c9560d1f62.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.052734;font-style:normal;font-weight:normal;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_0305e866200955f4a1e05021.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:0.982910;font-style: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;}
.ls3_c00102{letter-spacing:0.106800px;}
.ls2_c00102{letter-spacing:0.180000px;}
.ls0_c00102{letter-spacing:0.360000px;}
.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;}
}
.ws2_c00102{word-spacing:0.000000px;}
.ws0_c00102{word-spacing:65.520000px;}
.ws1_c00102{word-spacing:65.597760px;}
._6_c00102{margin-left:-11.086231px;}
._0_c00102{margin-left:-4.492080px;}
._3_c00102{margin-left:-3.286080px;}
._1_c00102{margin-left:-2.113920px;}
._5_c00102{margin-left:-1.080684px;}
._2_c00102{width:1.034500px;}
._4_c00102{width:6.581180px;}
.fc1_c00102{color:rgb(255,255,255);}
.fc0_c00102{color:rgb(255,255,0);}
.fs2_c00102{font-size:72.000000px;}
.fs1_c00102{font-size:180.000000px;}
.fs3_c00102{font-size:180.144000px;}
.fs0_c00102{font-size:264.240000px;}
.y0_c00102{bottom:0.000000px;}
.ye_c00102{bottom:76.464000px;}
.yd_c00102{bottom:125.064000px;}
.yc_c00102{bottom:173.670000px;}
.yb_c00102{bottom:225.900000px;}
.ya_c00102{bottom:256.860000px;}
.y9_c00102{bottom:305.460000px;}
.y8_c00102{bottom:354.090000px;}
.y7_c00102{bottom:402.690000px;}
.y6_c00102{bottom:454.890000px;}
.y5_c00102{bottom:485.895000px;}
.y4_c00102{bottom:534.495000px;}
.y3_c00102{bottom:583.095000px;}
.y2_c00102{bottom:631.725000px;}
.y1_c00102{bottom:704.130000px;}
.h3_c00102{height:62.964844px;}
.h2_c00102{height:157.412109px;}
.h4_c00102{height:157.538039px;}
.h1_c00102{height:231.080977px;}
.h0_c00102{height:810.000000px;}
.w0_c00102{width:1080.000000px;}
.x0_c00102{left:0.000000px;}
.x2_c00102{left:19.800000px;}
.x3_c00102{left:80.640000px;}
.x1_c00102{left:289.230000px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls1_c00102{letter-spacing:0.000000pt;}
.ls3_c00102{letter-spacing:0.094933pt;}
.ls2_c00102{letter-spacing:0.160000pt;}
.ls0_c00102{letter-spacing:0.320000pt;}
.ws2_c00102{word-spacing:0.000000pt;}
.ws0_c00102{word-spacing:58.240000pt;}
.ws1_c00102{word-spacing:58.309120pt;}
._6_c00102{margin-left:-9.854427pt;}
._0_c00102{margin-left:-3.992960pt;}
._3_c00102{margin-left:-2.920960pt;}
._1_c00102{margin-left:-1.879040pt;}
._5_c00102{margin-left:-0.960608pt;}
._2_c00102{width:0.919555pt;}
._4_c00102{width:5.849938pt;}
.fs2_c00102{font-size:64.000000pt;}
.fs1_c00102{font-size:160.000000pt;}
.fs3_c00102{font-size:160.128000pt;}
.fs0_c00102{font-size:234.880000pt;}
.y0_c00102{bottom:0.000000pt;}
.ye_c00102{bottom:67.968000pt;}
.yd_c00102{bottom:111.168000pt;}
.yc_c00102{bottom:154.373333pt;}
.yb_c00102{bottom:200.800000pt;}
.ya_c00102{bottom:228.320000pt;}
.y9_c00102{bottom:271.520000pt;}
.y8_c00102{bottom:314.746667pt;}
.y7_c00102{bottom:357.946667pt;}
.y6_c00102{bottom:404.346667pt;}
.y5_c00102{bottom:431.906667pt;}
.y4_c00102{bottom:475.106667pt;}
.y3_c00102{bottom:518.306667pt;}
.y2_c00102{bottom:561.533333pt;}
.y1_c00102{bottom:625.893333pt;}
.h3_c00102{height:55.968750pt;}
.h2_c00102{height:139.921875pt;}
.h4_c00102{height:140.033813pt;}
.h1_c00102{height:205.405313pt;}
.h0_c00102{height:720.000000pt;}
.w0_c00102{width:960.000000pt;}
.x0_c00102{left:0.000000pt;}
.x2_c00102{left:17.600000pt;}
.x3_c00102{left:71.680000pt;}
.x1_c00102{left:257.093333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_03a9388414e15bd1837a1593.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.052734;font-style:normal;font-weight:normal;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_1e5a5bff6498d58e2d8033f4.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:0.715820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.ls1_c00103{letter-spacing:0.000000px;}
.ls0_c00103{letter-spacing:105.300000px;}
.sc__c00103{text-shadow:none;}
.sc0_c00103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00103{-webkit-text-stroke:0px transparent;}
.sc0_c00103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00103{word-spacing:0.000000px;}
._2_c00103{margin-left:-5.997600px;}
._0_c00103{margin-left:-4.318272px;}
._3_c00103{margin-left:-3.117120px;}
._1_c00103{margin-left:-1.199520px;}
._4_c00103{width:1.045309px;}
.fc2_c00103{color:rgb(0,0,0);}
.fc1_c00103{color:rgb(255,255,255);}
.fc0_c00103{color:rgb(255,255,0);}
.fs2_c00103{font-size:162.000000px;}
.fs3_c00103{font-size:162.144000px;}
.fs1_c00103{font-size:239.760000px;}
.fs0_c00103{font-size:239.904000px;}
.y0_c00103{bottom:0.000000px;}
.yf_c00103{bottom:89.100000px;}
.ye_c00103{bottom:127.980000px;}
.yd_c00103{bottom:166.890000px;}
.yc_c00103{bottom:215.490000px;}
.yb_c00103{bottom:264.090000px;}
.ya_c00103{bottom:312.735000px;}
.y9_c00103{bottom:361.335000px;}
.y8_c00103{bottom:409.935000px;}
.y7_c00103{bottom:448.845000px;}
.y6_c00103{bottom:487.725000px;}
.y5_c00103{bottom:526.605000px;}
.y4_c00103{bottom:565.485000px;}
.y3_c00103{bottom:604.410000px;}
.y2_c00103{bottom:666.510000px;}
.y1_c00103{bottom:738.510000px;}
.h3_c00103{height:141.670898px;}
.h4_c00103{height:141.796828px;}
.h2_c00103{height:209.672930px;}
.h1_c00103{height:209.798859px;}
.h0_c00103{height:810.000000px;}
.w0_c00103{width:1080.000000px;}
.x0_c00103{left:0.000000px;}
.x3_c00103{left:45.108000px;}
.x1_c00103{left:80.280000px;}
.x4_c00103{left:85.608000px;}
.x2_c00103{left:92.880000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls1_c00103{letter-spacing:0.000000pt;}
.ls0_c00103{letter-spacing:93.600000pt;}
.ws0_c00103{word-spacing:0.000000pt;}
._2_c00103{margin-left:-5.331200pt;}
._0_c00103{margin-left:-3.838464pt;}
._3_c00103{margin-left:-2.770773pt;}
._1_c00103{margin-left:-1.066240pt;}
._4_c00103{width:0.929164pt;}
.fs2_c00103{font-size:144.000000pt;}
.fs3_c00103{font-size:144.128000pt;}
.fs1_c00103{font-size:213.120000pt;}
.fs0_c00103{font-size:213.248000pt;}
.y0_c00103{bottom:0.000000pt;}
.yf_c00103{bottom:79.200000pt;}
.ye_c00103{bottom:113.760000pt;}
.yd_c00103{bottom:148.346667pt;}
.yc_c00103{bottom:191.546667pt;}
.yb_c00103{bottom:234.746667pt;}
.ya_c00103{bottom:277.986667pt;}
.y9_c00103{bottom:321.186667pt;}
.y8_c00103{bottom:364.386667pt;}
.y7_c00103{bottom:398.973333pt;}
.y6_c00103{bottom:433.533333pt;}
.y5_c00103{bottom:468.093333pt;}
.y4_c00103{bottom:502.653333pt;}
.y3_c00103{bottom:537.253333pt;}
.y2_c00103{bottom:592.453333pt;}
.y1_c00103{bottom:656.453333pt;}
.h3_c00103{height:125.929688pt;}
.h4_c00103{height:126.041625pt;}
.h2_c00103{height:186.375937pt;}
.h1_c00103{height:186.487875pt;}
.h0_c00103{height:720.000000pt;}
.w0_c00103{width:960.000000pt;}
.x0_c00103{left:0.000000pt;}
.x3_c00103{left:40.096000pt;}
.x1_c00103{left:71.360000pt;}
.x4_c00103{left:76.096000pt;}
.x2_c00103{left:82.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9090792b273e1c1309772247.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.052734;font-style:normal;font-weight:normal;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_1e5a5bff6498d58e2d8033f4.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:0.715820;font-style:normal;font-weight:normal;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_918a5df44120dadbb92e1359.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;line-height:0.982910;font-style: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:0.000000px;}
.ls0_c00104{letter-spacing:94.716000px;}
.sc__c00104{text-shadow:none;}
.sc0_c00104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00104{-webkit-text-stroke:0px transparent;}
.sc0_c00104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00104{word-spacing:0.000000px;}
._6_c00104{margin-left:-12.495600px;}
._4_c00104{margin-left:-10.063488px;}
._2_c00104{margin-left:-5.705087px;}
._0_c00104{margin-left:-2.738880px;}
._1_c00104{margin-left:-1.597908px;}
._3_c00104{width:1.141200px;}
._5_c00104{width:2.846388px;}
.fc1_c00104{color:rgb(255,255,255);}
.fc0_c00104{color:rgb(255,255,0);}
.fs1_c00104{font-size:192.240000px;}
.fs2_c00104{font-size:192.384000px;}
.fs0_c00104{font-size:228.240000px;}
.y0_c00104{bottom:0.000000px;}
.y4_c00104{bottom:524.805000px;}
.y3_c00104{bottom:593.970000px;}
.y2_c00104{bottom:651.570000px;}
.y1_c00104{bottom:726.120000px;}
.h2_c00104{height:168.116133px;}
.h3_c00104{height:168.242063px;}
.h1_c00104{height:199.598555px;}
.h0_c00104{height:810.000000px;}
.w0_c00104{width:1080.000000px;}
.x0_c00104{left:0.000000px;}
.x2_c00104{left:60.300000px;}
.x1_c00104{left:65.772000px;}
.x3_c00104{left:100.800000px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls1_c00104{letter-spacing:0.000000pt;}
.ls0_c00104{letter-spacing:84.192000pt;}
.ws0_c00104{word-spacing:0.000000pt;}
._6_c00104{margin-left:-11.107200pt;}
._4_c00104{margin-left:-8.945322pt;}
._2_c00104{margin-left:-5.071188pt;}
._0_c00104{margin-left:-2.434560pt;}
._1_c00104{margin-left:-1.420363pt;}
._3_c00104{width:1.014400pt;}
._5_c00104{width:2.530123pt;}
.fs1_c00104{font-size:170.880000pt;}
.fs2_c00104{font-size:171.008000pt;}
.fs0_c00104{font-size:202.880000pt;}
.y0_c00104{bottom:0.000000pt;}
.y4_c00104{bottom:466.493333pt;}
.y3_c00104{bottom:527.973333pt;}
.y2_c00104{bottom:579.173333pt;}
.y1_c00104{bottom:645.440000pt;}
.h2_c00104{height:149.436563pt;}
.h3_c00104{height:149.548500pt;}
.h1_c00104{height:177.420938pt;}
.h0_c00104{height:720.000000pt;}
.w0_c00104{width:960.000000pt;}
.x0_c00104{left:0.000000pt;}
.x2_c00104{left:53.600000pt;}
.x1_c00104{left:58.464000pt;}
.x3_c00104{left:89.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_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_88e740a7794f5504c21d40a1.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.052734;font-style:normal;font-weight:normal;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_1e5a5bff6498d58e2d8033f4.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:0.715820;font-style:normal;font-weight:normal;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_1124c134e014de0cc46b768f.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;line-height:0.982910;font-style: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:105.300000px;}
.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:0.000000px;}
._5_c00105{margin-left:-14.445769px;}
._6_c00105{margin-left:-11.938047px;}
._2_c00105{margin-left:-5.480988px;}
._4_c00105{margin-left:-3.915012px;}
._0_c00105{margin-left:-2.740836px;}
._1_c00105{margin-left:-1.598231px;}
._3_c00105{width:1.233299px;}
.fc3_c00105{color:transparent;}
.fc2_c00105{color:rgb(255,255,255);}
.fc1_c00105{color:rgb(0,0,0);}
.fc0_c00105{color:rgb(255,255,0);}
.fs5_c00105{font-size:72.144000px;}
.fs3_c00105{font-size:77.760000px;}
.fs4_c00105{font-size:77.904000px;}
.fs1_c00105{font-size:162.000000px;}
.fs2_c00105{font-size:162.144000px;}
.fs0_c00105{font-size:228.384000px;}
.y0_c00105{bottom:0.000000px;}
.yf_c00105{bottom:94.788000px;}
.ye_c00105{bottom:142.308000px;}
.yd_c00105{bottom:172.050000px;}
.yc_c00105{bottom:215.790000px;}
.yb_c00105{bottom:259.530000px;}
.ya_c00105{bottom:303.300000px;}
.y9_c00105{bottom:347.040000px;}
.y8_c00105{bottom:390.780000px;}
.y7_c00105{bottom:438.840000px;}
.y6_c00105{bottom:470.010000px;}
.y5_c00105{bottom:513.750000px;}
.y4_c00105{bottom:561.810000px;}
.y3_c00105{bottom:592.995000px;}
.y2_c00105{bottom:636.735000px;}
.y1_c00105{bottom:727.410000px;}
.h6_c00105{height:63.090773px;}
.h4_c00105{height:68.002031px;}
.h5_c00105{height:68.127961px;}
.h2_c00105{height:141.670898px;}
.h3_c00105{height:141.796828px;}
.h1_c00105{height:199.724484px;}
.h0_c00105{height:810.000000px;}
.w0_c00105{width:1080.000000px;}
.x0_c00105{left:0.000000px;}
.x2_c00105{left:46.800000px;}
.x1_c00105{left:61.272000px;}
.x3_c00105{left:87.300000px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls1_c00105{letter-spacing:0.000000pt;}
.ls0_c00105{letter-spacing:93.600000pt;}
.ws0_c00105{word-spacing:0.000000pt;}
._5_c00105{margin-left:-12.840683pt;}
._6_c00105{margin-left:-10.611597pt;}
._2_c00105{margin-left:-4.871989pt;}
._4_c00105{margin-left:-3.480011pt;}
._0_c00105{margin-left:-2.436299pt;}
._1_c00105{margin-left:-1.420650pt;}
._3_c00105{width:1.096266pt;}
.fs5_c00105{font-size:64.128000pt;}
.fs3_c00105{font-size:69.120000pt;}
.fs4_c00105{font-size:69.248000pt;}
.fs1_c00105{font-size:144.000000pt;}
.fs2_c00105{font-size:144.128000pt;}
.fs0_c00105{font-size:203.008000pt;}
.y0_c00105{bottom:0.000000pt;}
.yf_c00105{bottom:84.256000pt;}
.ye_c00105{bottom:126.496000pt;}
.yd_c00105{bottom:152.933333pt;}
.yc_c00105{bottom:191.813333pt;}
.yb_c00105{bottom:230.693333pt;}
.ya_c00105{bottom:269.600000pt;}
.y9_c00105{bottom:308.480000pt;}
.y8_c00105{bottom:347.360000pt;}
.y7_c00105{bottom:390.080000pt;}
.y6_c00105{bottom:417.786667pt;}
.y5_c00105{bottom:456.666667pt;}
.y4_c00105{bottom:499.386667pt;}
.y3_c00105{bottom:527.106667pt;}
.y2_c00105{bottom:565.986667pt;}
.y1_c00105{bottom:646.586667pt;}
.h6_c00105{height:56.080687pt;}
.h4_c00105{height:60.446250pt;}
.h5_c00105{height:60.558187pt;}
.h2_c00105{height:125.929688pt;}
.h3_c00105{height:126.041625pt;}
.h1_c00105{height:177.532875pt;}
.h0_c00105{height:720.000000pt;}
.w0_c00105{width:960.000000pt;}
.x0_c00105{left:0.000000pt;}
.x2_c00105{left:41.600000pt;}
.x1_c00105{left:54.464000pt;}
.x3_c00105{left:77.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_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_ea52c86533531dae3c2cc318.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:0.982910;font-style:normal;font-weight:normal;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_d44f0b0f14e48ef3446eeb7f.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.052734;font-style: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;}
.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:-35.342784px;}
.ws1_c00106{word-spacing:0.000000px;}
._3_c00106{margin-left:-24.230304px;}
._2_c00106{margin-left:-22.776720px;}
._7_c00106{margin-left:-16.038564px;}
._6_c00106{margin-left:-11.352145px;}
._4_c00106{margin-left:-5.117208px;}
._0_c00106{margin-left:-3.836400px;}
._5_c00106{margin-left:-2.812164px;}
._1_c00106{margin-left:-1.198800px;}
._8_c00106{width:1.091940px;}
.fc1_c00106{color:rgb(255,255,255);}
.fc0_c00106{color:rgb(255,255,0);}
.fs2_c00106{font-size:156.240000px;}
.fs3_c00106{font-size:156.384000px;}
.fs0_c00106{font-size:239.760000px;}
.fs1_c00106{font-size:239.904000px;}
.y0_c00106{bottom:0.000000px;}
.y8_c00106{bottom:333.390000px;}
.y7_c00106{bottom:380.190000px;}
.y6_c00106{bottom:427.035000px;}
.y5_c00106{bottom:473.835000px;}
.y4_c00106{bottom:520.635000px;}
.y3_c00106{bottom:567.465000px;}
.y2_c00106{bottom:641.775000px;}
.y1_c00106{bottom:713.805000px;}
.h3_c00106{height:136.633711px;}
.h4_c00106{height:136.759641px;}
.h1_c00106{height:192.931875px;}
.h2_c00106{height:209.798859px;}
.h0_c00106{height:810.000000px;}
.w0_c00106{width:1080.000000px;}
.x0_c00106{left:0.000000px;}
.x3_c00106{left:109.836000px;}
.x1_c00106{left:115.488000px;}
.x2_c00106{left:136.548000px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls0_c00106{letter-spacing:0.000000pt;}
.ws0_c00106{word-spacing:-31.415808pt;}
.ws1_c00106{word-spacing:0.000000pt;}
._3_c00106{margin-left:-21.538048pt;}
._2_c00106{margin-left:-20.245974pt;}
._7_c00106{margin-left:-14.256501pt;}
._6_c00106{margin-left:-10.090796pt;}
._4_c00106{margin-left:-4.548629pt;}
._0_c00106{margin-left:-3.410133pt;}
._5_c00106{margin-left:-2.499701pt;}
._1_c00106{margin-left:-1.065600pt;}
._8_c00106{width:0.970613pt;}
.fs2_c00106{font-size:138.880000pt;}
.fs3_c00106{font-size:139.008000pt;}
.fs0_c00106{font-size:213.120000pt;}
.fs1_c00106{font-size:213.248000pt;}
.y0_c00106{bottom:0.000000pt;}
.y8_c00106{bottom:296.346667pt;}
.y7_c00106{bottom:337.946667pt;}
.y6_c00106{bottom:379.586667pt;}
.y5_c00106{bottom:421.186667pt;}
.y4_c00106{bottom:462.786667pt;}
.y3_c00106{bottom:504.413333pt;}
.y2_c00106{bottom:570.466667pt;}
.y1_c00106{bottom:634.493333pt;}
.h3_c00106{height:121.452188pt;}
.h4_c00106{height:121.564125pt;}
.h1_c00106{height:171.495000pt;}
.h2_c00106{height:186.487875pt;}
.h0_c00106{height:720.000000pt;}
.w0_c00106{width:960.000000pt;}
.x0_c00106{left:0.000000pt;}
.x3_c00106{left:97.632000pt;}
.x1_c00106{left:102.656000pt;}
.x2_c00106{left:121.376000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e3cf4a1320dcc8eb5b7e50a.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.052734;font-style: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;}
.ls0_c00107{letter-spacing:0.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;}
}
.ws0_c00107{word-spacing:0.000000px;}
._2_c00107{margin-left:-9.402624px;}
._3_c00107{margin-left:-6.876048px;}
._4_c00107{margin-left:-5.029007px;}
._5_c00107{margin-left:-3.170352px;}
._0_c00107{margin-left:-1.846776px;}
._1_c00107{width:1.173985px;}
.fc1_c00107{color:rgb(255,255,255);}
.fc0_c00107{color:rgb(255,255,0);}
.fs0_c00107{font-size:167.904000px;}
.fs1_c00107{font-size:264.240000px;}
.y0_c00107{bottom:0.000000px;}
.y2_c00107{bottom:629.430000px;}
.y1_c00107{bottom:702.330000px;}
.h1_c00107{height:146.834016px;}
.h2_c00107{height:231.080977px;}
.h0_c00107{height:810.000000px;}
.w0_c00107{width:1080.000000px;}
.x0_c00107{left:0.000000px;}
.x1_c00107{left:52.992000px;}
.x2_c00107{left:66.492000px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls0_c00107{letter-spacing:0.000000pt;}
.ws0_c00107{word-spacing:0.000000pt;}
._2_c00107{margin-left:-8.357888pt;}
._3_c00107{margin-left:-6.112042pt;}
._4_c00107{margin-left:-4.470229pt;}
._5_c00107{margin-left:-2.818090pt;}
._0_c00107{margin-left:-1.641579pt;}
._1_c00107{width:1.043542pt;}
.fs0_c00107{font-size:149.248000pt;}
.fs1_c00107{font-size:234.880000pt;}
.y0_c00107{bottom:0.000000pt;}
.y2_c00107{bottom:559.493333pt;}
.y1_c00107{bottom:624.293333pt;}
.h1_c00107{height:130.519125pt;}
.h2_c00107{height:205.405313pt;}
.h0_c00107{height:720.000000pt;}
.w0_c00107{width:960.000000pt;}
.x0_c00107{left:0.000000pt;}
.x1_c00107{left:47.104000pt;}
.x2_c00107{left:59.104000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc730387748b384f513b8a20.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.051270;font-style:normal;font-weight:normal;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_d0972c000f4830ecef4ae175.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:0.687012;font-style:normal;font-weight:normal;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_3a51099a6b4dc00c95cc637c.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:1.052734;font-style:normal;font-weight:normal;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_1f5b4ebdaab0d1ae88738676.woff2')format("woff");}.ff4_c00108{font-family:ff4_c00108;line-height:0.941895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00108{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.ls1_c00108{letter-spacing:0.000000px;}
.ls2_c00108{letter-spacing:0.180000px;}
.ls0_c00108{letter-spacing:0.360000px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00108{word-spacing:-40.680000px;}
.ws1_c00108{word-spacing:0.000000px;}
._1_c00108{margin-left:-11.515537px;}
._2_c00108{margin-left:-10.448352px;}
._3_c00108{margin-left:-8.743289px;}
._5_c00108{margin-left:-2.986884px;}
._0_c00108{margin-left:-1.621116px;}
._4_c00108{width:1.621116px;}
.fc3_c00108{color:rgb(255,255,255);}
.fc2_c00108{color:rgb(0,0,255);}
.fc1_c00108{color:rgb(0,112,192);}
.fc0_c00108{color:rgb(255,255,0);}
.fs2_c00108{font-size:66.240000px;}
.fs5_c00108{font-size:180.000000px;}
.fs4_c00108{font-size:180.144000px;}
.fs3_c00108{font-size:210.240000px;}
.fs1_c00108{font-size:239.760000px;}
.fs0_c00108{font-size:239.904000px;}
.fs6_c00108{font-size:288.000000px;}
.y0_c00108{bottom:0.000000px;}
.ya_c00108{bottom:144.504000px;}
.y9_c00108{bottom:198.510000px;}
.y8_c00108{bottom:252.540000px;}
.y7_c00108{bottom:306.540000px;}
.y6_c00108{bottom:360.540000px;}
.y5_c00108{bottom:416.550000px;}
.y4_c00108{bottom:470.010000px;}
.y3_c00108{bottom:501.330000px;}
.y2_c00108{bottom:573.375000px;}
.y1_c00108{bottom:645.375000px;}
.yb_c00108{bottom:647.250000px;}
.h3_c00108{height:57.830625px;}
.h6_c00108{height:157.148438px;}
.h5_c00108{height:157.274156px;}
.h7_c00108{height:157.412109px;}
.h4_c00108{height:183.549375px;}
.h2_c00108{height:209.321719px;}
.h1_c00108{height:209.447437px;}
.h8_c00108{height:219.937500px;}
.h0_c00108{height:810.000000px;}
.w0_c00108{width:1080.000000px;}
.x0_c00108{left:0.000000px;}
.x7_c00108{left:123.408000px;}
.x6_c00108{left:175.785000px;}
.x4_c00108{left:232.845000px;}
.x2_c00108{left:318.390000px;}
.x3_c00108{left:377.790000px;}
.x5_c00108{left:385.530000px;}
.x1_c00108{left:558.000000px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls1_c00108{letter-spacing:0.000000pt;}
.ls2_c00108{letter-spacing:0.160000pt;}
.ls0_c00108{letter-spacing:0.320000pt;}
.ws0_c00108{word-spacing:-36.160000pt;}
.ws1_c00108{word-spacing:0.000000pt;}
._1_c00108{margin-left:-10.236033pt;}
._2_c00108{margin-left:-9.287424pt;}
._3_c00108{margin-left:-7.771812pt;}
._5_c00108{margin-left:-2.655008pt;}
._0_c00108{margin-left:-1.440992pt;}
._4_c00108{width:1.440992pt;}
.fs2_c00108{font-size:58.880000pt;}
.fs5_c00108{font-size:160.000000pt;}
.fs4_c00108{font-size:160.128000pt;}
.fs3_c00108{font-size:186.880000pt;}
.fs1_c00108{font-size:213.120000pt;}
.fs0_c00108{font-size:213.248000pt;}
.fs6_c00108{font-size:256.000000pt;}
.y0_c00108{bottom:0.000000pt;}
.ya_c00108{bottom:128.448000pt;}
.y9_c00108{bottom:176.453333pt;}
.y8_c00108{bottom:224.480000pt;}
.y7_c00108{bottom:272.480000pt;}
.y6_c00108{bottom:320.480000pt;}
.y5_c00108{bottom:370.266667pt;}
.y4_c00108{bottom:417.786667pt;}
.y3_c00108{bottom:445.626667pt;}
.y2_c00108{bottom:509.666667pt;}
.y1_c00108{bottom:573.666667pt;}
.yb_c00108{bottom:575.333333pt;}
.h3_c00108{height:51.405000pt;}
.h6_c00108{height:139.687500pt;}
.h5_c00108{height:139.799250pt;}
.h7_c00108{height:139.921875pt;}
.h4_c00108{height:163.155000pt;}
.h2_c00108{height:186.063750pt;}
.h1_c00108{height:186.175500pt;}
.h8_c00108{height:195.500000pt;}
.h0_c00108{height:720.000000pt;}
.w0_c00108{width:960.000000pt;}
.x0_c00108{left:0.000000pt;}
.x7_c00108{left:109.696000pt;}
.x6_c00108{left:156.253333pt;}
.x4_c00108{left:206.973333pt;}
.x2_c00108{left:283.013333pt;}
.x3_c00108{left:335.813333pt;}
.x5_c00108{left:342.693333pt;}
.x1_c00108{left:496.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_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_38c46aafe7edfa492e3127b6.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00109;src:url('chunks/assets/font_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:0.910645;font-style:normal;font-weight:normal;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_09807a7d2e73f5fbb30df5dc.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00109;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff4_c00109{font-family:ff4_c00109;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00109;src:url('chunks/assets/font_a3c80c5ef6d55e26e1cfc561.woff2')format("woff");}.ff5_c00109{font-family:ff5_c00109;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_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);}
.m0_c00109{transform:matrix(0.254656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254656,0.000000,0.000000,0.250000,0,0);}
.m1_c00109{transform:matrix(0.254659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254659,0.000000,0.000000,0.250000,0,0);}
.m3_c00109{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00109{vertical-align:0.000000px;}
.v2_c00109{vertical-align:15.120000px;}
.v1_c00109{vertical-align:20.879400px;}
.ls3f_c00109{letter-spacing:-0.964800px;}
.ls53_c00109{letter-spacing:-0.776880px;}
.ls3d_c00109{letter-spacing:-0.675360px;}
.ls4f_c00109{letter-spacing:-0.657360px;}
.ls4d_c00109{letter-spacing:-0.597600px;}
.ls55_c00109{letter-spacing:-0.537840px;}
.ls47_c00109{letter-spacing:-0.504000px;}
.ls42_c00109{letter-spacing:-0.480960px;}
.ls50_c00109{letter-spacing:-0.418320px;}
.ls44_c00109{letter-spacing:-0.360720px;}
.ls49_c00109{letter-spacing:-0.358560px;}
.ls39_c00109{letter-spacing:-0.337680px;}
.ls45_c00109{letter-spacing:-0.298800px;}
.ls37_c00109{letter-spacing:-0.289440px;}
.ls36_c00109{letter-spacing:-0.241200px;}
.ls48_c00109{letter-spacing:-0.239040px;}
.ls35_c00109{letter-spacing:-0.212733px;}
.ls3c_c00109{letter-spacing:-0.192960px;}
.ls4b_c00109{letter-spacing:-0.179280px;}
.ls3a_c00109{letter-spacing:-0.144720px;}
.ls41_c00109{letter-spacing:-0.120240px;}
.ls46_c00109{letter-spacing:-0.119520px;}
.ls4c_c00109{letter-spacing:-0.059760px;}
.ls34_c00109{letter-spacing:0.000000px;}
.ls0_c00109{letter-spacing:0.024120px;}
.ls11_c00109{letter-spacing:0.036072px;}
.ls38_c00109{letter-spacing:0.048240px;}
.ls4e_c00109{letter-spacing:0.059760px;}
.ls4a_c00109{letter-spacing:0.119520px;}
.ls43_c00109{letter-spacing:0.120240px;}
.ls8_c00109{letter-spacing:0.144720px;}
.ls12_c00109{letter-spacing:0.179280px;}
.ls3b_c00109{letter-spacing:0.192960px;}
.ls32_c00109{letter-spacing:0.197208px;}
.ls33_c00109{letter-spacing:0.212733px;}
.ls10_c00109{letter-spacing:0.240480px;}
.ls3e_c00109{letter-spacing:0.241200px;}
.ls19_c00109{letter-spacing:0.298800px;}
.ls1_c00109{letter-spacing:0.337680px;}
.ls54_c00109{letter-spacing:0.358560px;}
.lsf_c00109{letter-spacing:0.361800px;}
.ls27_c00109{letter-spacing:0.418320px;}
.ls40_c00109{letter-spacing:0.434160px;}
.lse_c00109{letter-spacing:0.443808px;}
.ls52_c00109{letter-spacing:0.717120px;}
.ls2f_c00109{letter-spacing:0.878472px;}
.ls2e_c00109{letter-spacing:0.884448px;}
.ls16_c00109{letter-spacing:0.896400px;}
.ls17_c00109{letter-spacing:0.914328px;}
.ls1d_c00109{letter-spacing:0.920304px;}
.ls1c_c00109{letter-spacing:0.956160px;}
.ls51_c00109{letter-spacing:1.015920px;}
.lsd_c00109{letter-spacing:1.312128px;}
.lsc_c00109{letter-spacing:1.316952px;}
.lsb_c00109{letter-spacing:1.350720px;}
.ls2c_c00109{letter-spacing:1.607544px;}
.ls2b_c00109{letter-spacing:1.613520px;}
.lsa_c00109{letter-spacing:2.074320px;}
.ls29_c00109{letter-spacing:2.324664px;}
.ls1a_c00109{letter-spacing:2.330640px;}
.ls2d_c00109{letter-spacing:2.354544px;}
.ls28_c00109{letter-spacing:2.384424px;}
.ls7_c00109{letter-spacing:2.822040px;}
.ls25_c00109{letter-spacing:3.011904px;}
.ls18_c00109{letter-spacing:3.047760px;}
.ls1b_c00109{letter-spacing:3.059712px;}
.ls20_c00109{letter-spacing:3.101544px;}
.ls1f_c00109{letter-spacing:3.125448px;}
.ls1e_c00109{letter-spacing:3.131424px;}
.ls4_c00109{letter-spacing:3.473280px;}
.ls6_c00109{letter-spacing:3.487752px;}
.ls5_c00109{letter-spacing:3.521520px;}
.ls9_c00109{letter-spacing:3.555288px;}
.ls2a_c00109{letter-spacing:3.758904px;}
.ls21_c00109{letter-spacing:3.764880px;}
.ls3_c00109{letter-spacing:4.196880px;}
.ls14_c00109{letter-spacing:4.476024px;}
.ls13_c00109{letter-spacing:4.482000px;}
.ls15_c00109{letter-spacing:5.199120px;}
.ls23_c00109{letter-spacing:8.055648px;}
.ls22_c00109{letter-spacing:8.067600px;}
.ls26_c00109{letter-spacing:8.097480px;}
.ls24_c00109{letter-spacing:8.784720px;}
.ls30_c00109{letter-spacing:8.844480px;}
.ls31_c00109{letter-spacing:9.561600px;}
.ls2_c00109{letter-spacing:91.318320px;}
.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;}
}
.wsf_c00109{word-spacing:-27.210312px;}
.ws10_c00109{word-spacing:-26.813520px;}
.wse_c00109{word-spacing:-26.693280px;}
.ws0_c00109{word-spacing:-15.813153px;}
.ws13_c00109{word-spacing:-15.768000px;}
.ws1f_c00109{word-spacing:-14.521680px;}
.ws21_c00109{word-spacing:-14.402160px;}
.ws20_c00109{word-spacing:-14.222880px;}
.ws23_c00109{word-spacing:-13.864320px;}
.ws14_c00109{word-spacing:-13.804560px;}
.ws16_c00109{word-spacing:-13.685040px;}
.ws18_c00109{word-spacing:-13.625280px;}
.ws1c_c00109{word-spacing:-13.565520px;}
.wsd_c00109{word-spacing:-13.505760px;}
.ws1a_c00109{word-spacing:-13.446000px;}
.ws12_c00109{word-spacing:-13.386240px;}
.ws19_c00109{word-spacing:-13.326480px;}
.ws15_c00109{word-spacing:-13.266720px;}
.ws11_c00109{word-spacing:-13.206960px;}
.ws17_c00109{word-spacing:-13.147200px;}
.ws1e_c00109{word-spacing:-13.087440px;}
.ws24_c00109{word-spacing:-12.967920px;}
.ws1b_c00109{word-spacing:-12.908160px;}
.ws1d_c00109{word-spacing:-12.848400px;}
.ws22_c00109{word-spacing:-12.728880px;}
.wsc_c00109{word-spacing:-11.336400px;}
.wsa_c00109{word-spacing:-11.143440px;}
.ws6_c00109{word-spacing:-11.095200px;}
.ws3_c00109{word-spacing:-10.950480px;}
.ws9_c00109{word-spacing:-10.902240px;}
.ws5_c00109{word-spacing:-10.757520px;}
.ws7_c00109{word-spacing:-10.709280px;}
.ws1_c00109{word-spacing:-10.661040px;}
.ws2_c00109{word-spacing:-10.612800px;}
.ws4_c00109{word-spacing:-10.564560px;}
.ws8_c00109{word-spacing:-10.226880px;}
.wsb_c00109{word-spacing:-9.937440px;}
.ws2b_c00109{word-spacing:-0.298800px;}
.ws29_c00109{word-spacing:-0.120240px;}
.ws27_c00109{word-spacing:-0.048240px;}
.ws26_c00109{word-spacing:0.000000px;}
.ws25_c00109{word-spacing:0.070911px;}
.ws28_c00109{word-spacing:0.120240px;}
.ws2a_c00109{word-spacing:0.298800px;}
._9_c00109{margin-left:-7.310516px;}
._7_c00109{margin-left:-3.534593px;}
._0_c00109{margin-left:-1.489131px;}
._1_c00109{width:1.283832px;}
._8_c00109{width:3.108702px;}
._6_c00109{width:4.606661px;}
._5_c00109{width:9.521928px;}
._2_c00109{width:92.060568px;}
._4_c00109{width:135.457920px;}
._3_c00109{width:158.999040px;}
.fc2_c00109{color:transparent;}
.fc1_c00109{color:rgb(0,0,0);}
.fc0_c00109{color:rgb(0,0,255);}
.fs7_c00109{font-size:30.240000px;}
.fs6_c00109{font-size:38.880000px;}
.fs2_c00109{font-size:48.240000px;}
.fs3_c00109{font-size:54.000000px;}
.fs1_c00109{font-size:58.855800px;}
.fs4_c00109{font-size:59.760000px;}
.fs0_c00109{font-size:70.911000px;}
.fs8_c00109{font-size:72.000000px;}
.fs5_c00109{font-size:120.240000px;}
.y0_c00109{bottom:0.000000px;}
.y4_c00109{bottom:3.722700px;}
.y2_c00109{bottom:15.067950px;}
.yf_c00109{bottom:71.460000px;}
.ye_c00109{bottom:91.980000px;}
.yd_c00109{bottom:109.436220px;}
.yc_c00109{bottom:127.080000px;}
.yb_c00109{bottom:144.720000px;}
.ya_c00109{bottom:162.360000px;}
.y9_c00109{bottom:182.160000px;}
.y34_c00109{bottom:213.104520px;}
.y33_c00109{bottom:235.066320px;}
.y32_c00109{bottom:257.028120px;}
.y31_c00109{bottom:278.989920px;}
.y30_c00109{bottom:300.951720px;}
.y2f_c00109{bottom:322.913520px;}
.y2e_c00109{bottom:344.875320px;}
.y2d_c00109{bottom:366.837120px;}
.y2c_c00109{bottom:388.978200px;}
.y2b_c00109{bottom:410.945400px;}
.y2a_c00109{bottom:432.877320px;}
.y29_c00109{bottom:454.839120px;}
.y28_c00109{bottom:476.800920px;}
.y27_c00109{bottom:498.762720px;}
.y26_c00109{bottom:520.724520px;}
.y25_c00109{bottom:542.686320px;}
.y24_c00109{bottom:564.648120px;}
.y23_c00109{bottom:586.609920px;}
.y22_c00109{bottom:608.571720px;}
.y21_c00109{bottom:630.533520px;}
.y20_c00109{bottom:652.495320px;}
.y1f_c00109{bottom:674.457120px;}
.y1e_c00109{bottom:696.598200px;}
.y1d_c00109{bottom:718.560000px;}
.y1c_c00109{bottom:747.900000px;}
.y1b_c00109{bottom:771.300000px;}
.y1a_c00109{bottom:792.540000px;}
.y19_c00109{bottom:813.056220px;}
.y18_c00109{bottom:830.700000px;}
.y17_c00109{bottom:848.329560px;}
.y16_c00109{bottom:865.792440px;}
.y15_c00109{bottom:883.436220px;}
.y14_c00109{bottom:901.080000px;}
.y13_c00109{bottom:918.540000px;}
.y12_c00109{bottom:936.180000px;}
.y11_c00109{bottom:955.260000px;}
.y10_c00109{bottom:1007.640000px;}
.y8_c00109{bottom:1064.689560px;}
.y7_c00109{bottom:1082.152440px;}
.y6_c00109{bottom:1099.796220px;}
.y5_c00109{bottom:1117.440000px;}
.y3_c00109{bottom:1129.066500px;}
.y1_c00109{bottom:1146.085500px;}
.h2_c00109{height:31.909500px;}
.h6_c00109{height:34.625391px;}
.hd_c00109{height:34.667151px;}
.h8_c00109{height:35.025820px;}
.h7_c00109{height:35.991211px;}
.hc_c00109{height:36.825469px;}
.h5_c00109{height:40.894435px;}
.he_c00109{height:42.894141px;}
.h9_c00109{height:43.390195px;}
.hb_c00109{height:48.786431px;}
.h4_c00109{height:48.928500px;}
.h3_c00109{height:51.486649px;}
.hf_c00109{height:52.277344px;}
.ha_c00109{height:87.303164px;}
.h1_c00109{height:1263.000000px;}
.h0_c00109{height:1263.060000px;}
.w2_c00109{width:740.860500px;}
.w3_c00109{width:742.125000px;}
.w0_c00109{width:892.440000px;}
.w1_c00109{width:892.500000px;}
.x0_c00109{left:0.000000px;}
.x2_c00109{left:7.946550px;}
.x4_c00109{left:9.209550px;}
.x3_c00109{left:85.065000px;}
.x1_c00109{left:86.328000px;}
.x5_c00109{left:442.260000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.v2_c00109{vertical-align:13.440000pt;}
.v1_c00109{vertical-align:18.559467pt;}
.ls3f_c00109{letter-spacing:-0.857600pt;}
.ls53_c00109{letter-spacing:-0.690560pt;}
.ls3d_c00109{letter-spacing:-0.600320pt;}
.ls4f_c00109{letter-spacing:-0.584320pt;}
.ls4d_c00109{letter-spacing:-0.531200pt;}
.ls55_c00109{letter-spacing:-0.478080pt;}
.ls47_c00109{letter-spacing:-0.448000pt;}
.ls42_c00109{letter-spacing:-0.427520pt;}
.ls50_c00109{letter-spacing:-0.371840pt;}
.ls44_c00109{letter-spacing:-0.320640pt;}
.ls49_c00109{letter-spacing:-0.318720pt;}
.ls39_c00109{letter-spacing:-0.300160pt;}
.ls45_c00109{letter-spacing:-0.265600pt;}
.ls37_c00109{letter-spacing:-0.257280pt;}
.ls36_c00109{letter-spacing:-0.214400pt;}
.ls48_c00109{letter-spacing:-0.212480pt;}
.ls35_c00109{letter-spacing:-0.189096pt;}
.ls3c_c00109{letter-spacing:-0.171520pt;}
.ls4b_c00109{letter-spacing:-0.159360pt;}
.ls3a_c00109{letter-spacing:-0.128640pt;}
.ls41_c00109{letter-spacing:-0.106880pt;}
.ls46_c00109{letter-spacing:-0.106240pt;}
.ls4c_c00109{letter-spacing:-0.053120pt;}
.ls34_c00109{letter-spacing:0.000000pt;}
.ls0_c00109{letter-spacing:0.021440pt;}
.ls11_c00109{letter-spacing:0.032064pt;}
.ls38_c00109{letter-spacing:0.042880pt;}
.ls4e_c00109{letter-spacing:0.053120pt;}
.ls4a_c00109{letter-spacing:0.106240pt;}
.ls43_c00109{letter-spacing:0.106880pt;}
.ls8_c00109{letter-spacing:0.128640pt;}
.ls12_c00109{letter-spacing:0.159360pt;}
.ls3b_c00109{letter-spacing:0.171520pt;}
.ls32_c00109{letter-spacing:0.175296pt;}
.ls33_c00109{letter-spacing:0.189096pt;}
.ls10_c00109{letter-spacing:0.213760pt;}
.ls3e_c00109{letter-spacing:0.214400pt;}
.ls19_c00109{letter-spacing:0.265600pt;}
.ls1_c00109{letter-spacing:0.300160pt;}
.ls54_c00109{letter-spacing:0.318720pt;}
.lsf_c00109{letter-spacing:0.321600pt;}
.ls27_c00109{letter-spacing:0.371840pt;}
.ls40_c00109{letter-spacing:0.385920pt;}
.lse_c00109{letter-spacing:0.394496pt;}
.ls52_c00109{letter-spacing:0.637440pt;}
.ls2f_c00109{letter-spacing:0.780864pt;}
.ls2e_c00109{letter-spacing:0.786176pt;}
.ls16_c00109{letter-spacing:0.796800pt;}
.ls17_c00109{letter-spacing:0.812736pt;}
.ls1d_c00109{letter-spacing:0.818048pt;}
.ls1c_c00109{letter-spacing:0.849920pt;}
.ls51_c00109{letter-spacing:0.903040pt;}
.lsd_c00109{letter-spacing:1.166336pt;}
.lsc_c00109{letter-spacing:1.170624pt;}
.lsb_c00109{letter-spacing:1.200640pt;}
.ls2c_c00109{letter-spacing:1.428928pt;}
.ls2b_c00109{letter-spacing:1.434240pt;}
.lsa_c00109{letter-spacing:1.843840pt;}
.ls29_c00109{letter-spacing:2.066368pt;}
.ls1a_c00109{letter-spacing:2.071680pt;}
.ls2d_c00109{letter-spacing:2.092928pt;}
.ls28_c00109{letter-spacing:2.119488pt;}
.ls7_c00109{letter-spacing:2.508480pt;}
.ls25_c00109{letter-spacing:2.677248pt;}
.ls18_c00109{letter-spacing:2.709120pt;}
.ls1b_c00109{letter-spacing:2.719744pt;}
.ls20_c00109{letter-spacing:2.756928pt;}
.ls1f_c00109{letter-spacing:2.778176pt;}
.ls1e_c00109{letter-spacing:2.783488pt;}
.ls4_c00109{letter-spacing:3.087360pt;}
.ls6_c00109{letter-spacing:3.100224pt;}
.ls5_c00109{letter-spacing:3.130240pt;}
.ls9_c00109{letter-spacing:3.160256pt;}
.ls2a_c00109{letter-spacing:3.341248pt;}
.ls21_c00109{letter-spacing:3.346560pt;}
.ls3_c00109{letter-spacing:3.730560pt;}
.ls14_c00109{letter-spacing:3.978688pt;}
.ls13_c00109{letter-spacing:3.984000pt;}
.ls15_c00109{letter-spacing:4.621440pt;}
.ls23_c00109{letter-spacing:7.160576pt;}
.ls22_c00109{letter-spacing:7.171200pt;}
.ls26_c00109{letter-spacing:7.197760pt;}
.ls24_c00109{letter-spacing:7.808640pt;}
.ls30_c00109{letter-spacing:7.861760pt;}
.ls31_c00109{letter-spacing:8.499200pt;}
.ls2_c00109{letter-spacing:81.171840pt;}
.wsf_c00109{word-spacing:-24.186944pt;}
.ws10_c00109{word-spacing:-23.834240pt;}
.wse_c00109{word-spacing:-23.727360pt;}
.ws0_c00109{word-spacing:-14.056136pt;}
.ws13_c00109{word-spacing:-14.016000pt;}
.ws1f_c00109{word-spacing:-12.908160pt;}
.ws21_c00109{word-spacing:-12.801920pt;}
.ws20_c00109{word-spacing:-12.642560pt;}
.ws23_c00109{word-spacing:-12.323840pt;}
.ws14_c00109{word-spacing:-12.270720pt;}
.ws16_c00109{word-spacing:-12.164480pt;}
.ws18_c00109{word-spacing:-12.111360pt;}
.ws1c_c00109{word-spacing:-12.058240pt;}
.wsd_c00109{word-spacing:-12.005120pt;}
.ws1a_c00109{word-spacing:-11.952000pt;}
.ws12_c00109{word-spacing:-11.898880pt;}
.ws19_c00109{word-spacing:-11.845760pt;}
.ws15_c00109{word-spacing:-11.792640pt;}
.ws11_c00109{word-spacing:-11.739520pt;}
.ws17_c00109{word-spacing:-11.686400pt;}
.ws1e_c00109{word-spacing:-11.633280pt;}
.ws24_c00109{word-spacing:-11.527040pt;}
.ws1b_c00109{word-spacing:-11.473920pt;}
.ws1d_c00109{word-spacing:-11.420800pt;}
.ws22_c00109{word-spacing:-11.314560pt;}
.wsc_c00109{word-spacing:-10.076800pt;}
.wsa_c00109{word-spacing:-9.905280pt;}
.ws6_c00109{word-spacing:-9.862400pt;}
.ws3_c00109{word-spacing:-9.733760pt;}
.ws9_c00109{word-spacing:-9.690880pt;}
.ws5_c00109{word-spacing:-9.562240pt;}
.ws7_c00109{word-spacing:-9.519360pt;}
.ws1_c00109{word-spacing:-9.476480pt;}
.ws2_c00109{word-spacing:-9.433600pt;}
.ws4_c00109{word-spacing:-9.390720pt;}
.ws8_c00109{word-spacing:-9.090560pt;}
.wsb_c00109{word-spacing:-8.833280pt;}
.ws2b_c00109{word-spacing:-0.265600pt;}
.ws29_c00109{word-spacing:-0.106880pt;}
.ws27_c00109{word-spacing:-0.042880pt;}
.ws26_c00109{word-spacing:0.000000pt;}
.ws25_c00109{word-spacing:0.063032pt;}
.ws28_c00109{word-spacing:0.106880pt;}
.ws2a_c00109{word-spacing:0.265600pt;}
._9_c00109{margin-left:-6.498236pt;}
._7_c00109{margin-left:-3.141861pt;}
._0_c00109{margin-left:-1.323672pt;}
._1_c00109{width:1.141184pt;}
._8_c00109{width:2.763290pt;}
._6_c00109{width:4.094810pt;}
._5_c00109{width:8.463936pt;}
._2_c00109{width:81.831616pt;}
._4_c00109{width:120.407040pt;}
._3_c00109{width:141.332480pt;}
.fs7_c00109{font-size:26.880000pt;}
.fs6_c00109{font-size:34.560000pt;}
.fs2_c00109{font-size:42.880000pt;}
.fs3_c00109{font-size:48.000000pt;}
.fs1_c00109{font-size:52.316267pt;}
.fs4_c00109{font-size:53.120000pt;}
.fs0_c00109{font-size:63.032000pt;}
.fs8_c00109{font-size:64.000000pt;}
.fs5_c00109{font-size:106.880000pt;}
.y0_c00109{bottom:0.000000pt;}
.y4_c00109{bottom:3.309067pt;}
.y2_c00109{bottom:13.393733pt;}
.yf_c00109{bottom:63.520000pt;}
.ye_c00109{bottom:81.760000pt;}
.yd_c00109{bottom:97.276640pt;}
.yc_c00109{bottom:112.960000pt;}
.yb_c00109{bottom:128.640000pt;}
.ya_c00109{bottom:144.320000pt;}
.y9_c00109{bottom:161.920000pt;}
.y34_c00109{bottom:189.426240pt;}
.y33_c00109{bottom:208.947840pt;}
.y32_c00109{bottom:228.469440pt;}
.y31_c00109{bottom:247.991040pt;}
.y30_c00109{bottom:267.512640pt;}
.y2f_c00109{bottom:287.034240pt;}
.y2e_c00109{bottom:306.555840pt;}
.y2d_c00109{bottom:326.077440pt;}
.y2c_c00109{bottom:345.758400pt;}
.y2b_c00109{bottom:365.284800pt;}
.y2a_c00109{bottom:384.779840pt;}
.y29_c00109{bottom:404.301440pt;}
.y28_c00109{bottom:423.823040pt;}
.y27_c00109{bottom:443.344640pt;}
.y26_c00109{bottom:462.866240pt;}
.y25_c00109{bottom:482.387840pt;}
.y24_c00109{bottom:501.909440pt;}
.y23_c00109{bottom:521.431040pt;}
.y22_c00109{bottom:540.952640pt;}
.y21_c00109{bottom:560.474240pt;}
.y20_c00109{bottom:579.995840pt;}
.y1f_c00109{bottom:599.517440pt;}
.y1e_c00109{bottom:619.198400pt;}
.y1d_c00109{bottom:638.720000pt;}
.y1c_c00109{bottom:664.800000pt;}
.y1b_c00109{bottom:685.600000pt;}
.y1a_c00109{bottom:704.480000pt;}
.y19_c00109{bottom:722.716640pt;}
.y18_c00109{bottom:738.400000pt;}
.y17_c00109{bottom:754.070720pt;}
.y16_c00109{bottom:769.593280pt;}
.y15_c00109{bottom:785.276640pt;}
.y14_c00109{bottom:800.960000pt;}
.y13_c00109{bottom:816.480000pt;}
.y12_c00109{bottom:832.160000pt;}
.y11_c00109{bottom:849.120000pt;}
.y10_c00109{bottom:895.680000pt;}
.y8_c00109{bottom:946.390720pt;}
.y7_c00109{bottom:961.913280pt;}
.y6_c00109{bottom:977.596640pt;}
.y5_c00109{bottom:993.280000pt;}
.y3_c00109{bottom:1003.614667pt;}
.y1_c00109{bottom:1018.742667pt;}
.h2_c00109{height:28.364000pt;}
.h6_c00109{height:30.778125pt;}
.hd_c00109{height:30.815245pt;}
.h8_c00109{height:31.134062pt;}
.h7_c00109{height:31.992188pt;}
.hc_c00109{height:32.733750pt;}
.h5_c00109{height:36.350609pt;}
.he_c00109{height:38.128125pt;}
.h9_c00109{height:38.569063pt;}
.hb_c00109{height:43.365717pt;}
.h4_c00109{height:43.492000pt;}
.h3_c00109{height:45.765910pt;}
.hf_c00109{height:46.468750pt;}
.ha_c00109{height:77.602812pt;}
.h1_c00109{height:1122.666667pt;}
.h0_c00109{height:1122.720000pt;}
.w2_c00109{width:658.542667pt;}
.w3_c00109{width:659.666667pt;}
.w0_c00109{width:793.280000pt;}
.w1_c00109{width:793.333333pt;}
.x0_c00109{left:0.000000pt;}
.x2_c00109{left:7.063600pt;}
.x4_c00109{left:8.186267pt;}
.x3_c00109{left:75.613333pt;}
.x1_c00109{left:76.736000pt;}
.x5_c00109{left:393.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb0da378d0196f5aa6fd0fa0.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00110;src:url('chunks/assets/font_b959ac8e4f74acdaf44d79f8.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00110;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00110;src:url('chunks/assets/font_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff4_c00110{font-family:ff4_c00110;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00110;src:url('chunks/assets/font_cad523e685fc7d4533a874fa.woff2')format("woff");}.ff5_c00110{font-family:ff5_c00110;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls43_c00110{letter-spacing:-1.075680px;}
.ls48_c00110{letter-spacing:-0.537840px;}
.ls4d_c00110{letter-spacing:-0.478080px;}
.ls49_c00110{letter-spacing:-0.418320px;}
.ls41_c00110{letter-spacing:-0.358560px;}
.ls3a_c00110{letter-spacing:-0.298800px;}
.ls4a_c00110{letter-spacing:-0.252720px;}
.ls40_c00110{letter-spacing:-0.239040px;}
.ls45_c00110{letter-spacing:-0.179280px;}
.ls46_c00110{letter-spacing:-0.119520px;}
.ls4b_c00110{letter-spacing:-0.084240px;}
.ls3b_c00110{letter-spacing:-0.059760px;}
.ls3d_c00110{letter-spacing:0.000000px;}
.ls47_c00110{letter-spacing:0.059760px;}
.ls44_c00110{letter-spacing:0.084240px;}
.ls3f_c00110{letter-spacing:0.119520px;}
.ls4c_c00110{letter-spacing:0.168480px;}
.ls26_c00110{letter-spacing:0.173304px;}
.ls0_c00110{letter-spacing:0.179280px;}
.ls2b_c00110{letter-spacing:0.185256px;}
.ls39_c00110{letter-spacing:0.197208px;}
.ls1_c00110{letter-spacing:0.203184px;}
.ls42_c00110{letter-spacing:0.216000px;}
.ls2f_c00110{letter-spacing:0.233064px;}
.ls25_c00110{letter-spacing:0.239040px;}
.ls4_c00110{letter-spacing:0.298800px;}
.ls3c_c00110{letter-spacing:0.358560px;}
.ls24_c00110{letter-spacing:0.418320px;}
.ls3e_c00110{letter-spacing:0.717120px;}
.ls6_c00110{letter-spacing:0.884448px;}
.ls15_c00110{letter-spacing:0.890424px;}
.ls2_c00110{letter-spacing:0.896400px;}
.ls23_c00110{letter-spacing:0.938232px;}
.ls5_c00110{letter-spacing:0.944208px;}
.ls16_c00110{letter-spacing:1.607544px;}
.ls3_c00110{letter-spacing:1.613520px;}
.lsb_c00110{letter-spacing:1.637424px;}
.ls14_c00110{letter-spacing:1.667304px;}
.ls2e_c00110{letter-spacing:2.294784px;}
.lsa_c00110{letter-spacing:2.330640px;}
.ls31_c00110{letter-spacing:2.342592px;}
.ls13_c00110{letter-spacing:2.348568px;}
.ls2a_c00110{letter-spacing:2.360520px;}
.ls2c_c00110{letter-spacing:2.372472px;}
.ls2d_c00110{letter-spacing:2.378448px;}
.ls30_c00110{letter-spacing:3.011904px;}
.lsf_c00110{letter-spacing:3.017880px;}
.ls1d_c00110{letter-spacing:3.035808px;}
.ls1e_c00110{letter-spacing:3.041784px;}
.lsc_c00110{letter-spacing:3.047760px;}
.ls12_c00110{letter-spacing:3.059712px;}
.lsd_c00110{letter-spacing:3.077640px;}
.ls1f_c00110{letter-spacing:3.101544px;}
.ls1b_c00110{letter-spacing:3.764880px;}
.ls1c_c00110{letter-spacing:3.770856px;}
.ls1a_c00110{letter-spacing:3.818664px;}
.lse_c00110{letter-spacing:3.824640px;}
.ls7_c00110{letter-spacing:4.482000px;}
.ls8_c00110{letter-spacing:4.535784px;}
.ls19_c00110{letter-spacing:5.187168px;}
.ls9_c00110{letter-spacing:5.199120px;}
.ls17_c00110{letter-spacing:5.916240px;}
.ls22_c00110{letter-spacing:5.922216px;}
.ls18_c00110{letter-spacing:5.946120px;}
.ls29_c00110{letter-spacing:5.964048px;}
.ls20_c00110{letter-spacing:5.970024px;}
.ls27_c00110{letter-spacing:5.981976px;}
.ls21_c00110{letter-spacing:6.633360px;}
.ls28_c00110{letter-spacing:6.675192px;}
.ls11_c00110{letter-spacing:7.344504px;}
.ls10_c00110{letter-spacing:7.350480px;}
.ls38_c00110{letter-spacing:8.784720px;}
.ls36_c00110{letter-spacing:8.844480px;}
.ls35_c00110{letter-spacing:9.507816px;}
.ls37_c00110{letter-spacing:9.531720px;}
.ls34_c00110{letter-spacing:9.537696px;}
.ls32_c00110{letter-spacing:9.549648px;}
.ls33_c00110{letter-spacing:9.561600px;}
.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;}
}
.ws16_c00110{word-spacing:-19.206720px;}
.wsc_c00110{word-spacing:-19.122480px;}
.ws15_c00110{word-spacing:-18.954000px;}
.ws14_c00110{word-spacing:-18.785520px;}
.wsa_c00110{word-spacing:-16.488000px;}
.wsf_c00110{word-spacing:-14.402160px;}
.ws6_c00110{word-spacing:-14.222880px;}
.ws4_c00110{word-spacing:-13.864320px;}
.ws3_c00110{word-spacing:-13.804560px;}
.ws17_c00110{word-spacing:-13.744800px;}
.ws12_c00110{word-spacing:-13.691016px;}
.ws2_c00110{word-spacing:-13.685040px;}
.ws7_c00110{word-spacing:-13.625280px;}
.ws10_c00110{word-spacing:-13.565520px;}
.ws5_c00110{word-spacing:-13.505760px;}
.ws1_c00110{word-spacing:-13.446000px;}
.wse_c00110{word-spacing:-13.386240px;}
.wsd_c00110{word-spacing:-13.326480px;}
.ws8_c00110{word-spacing:-13.266720px;}
.ws0_c00110{word-spacing:-13.206960px;}
.ws9_c00110{word-spacing:-13.147200px;}
.ws13_c00110{word-spacing:-13.087440px;}
.ws18_c00110{word-spacing:-13.027680px;}
.ws11_c00110{word-spacing:-12.967920px;}
.wsb_c00110{word-spacing:-12.430080px;}
.ws1a_c00110{word-spacing:-0.298800px;}
.ws1d_c00110{word-spacing:-0.239040px;}
.ws19_c00110{word-spacing:0.000000px;}
.ws1c_c00110{word-spacing:0.896400px;}
.ws1b_c00110{word-spacing:2.330640px;}
._7_c00110{margin-left:-5.426208px;}
._2_c00110{margin-left:-3.830616px;}
._6_c00110{margin-left:-2.593584px;}
._1_c00110{margin-left:-1.087632px;}
._0_c00110{width:1.117512px;}
._4_c00110{width:2.145384px;}
._5_c00110{width:3.209112px;}
._8_c00110{width:5.497920px;}
._9_c00110{width:6.717024px;}
._a_c00110{width:9.340488px;}
._3_c00110{width:108.164160px;}
.fc1_c00110{color:rgb(0,0,255);}
.fc0_c00110{color:rgb(0,0,0);}
.fs1_c00110{font-size:54.000000px;}
.fs0_c00110{font-size:59.760000px;}
.fs2_c00110{font-size:72.000000px;}
.fs3_c00110{font-size:84.240000px;}
.y0_c00110{bottom:0.000000px;}
.y3_c00110{bottom:71.460000px;}
.y2_c00110{bottom:92.160000px;}
.y2b_c00110{bottom:226.609920px;}
.y2a_c00110{bottom:248.571720px;}
.y29_c00110{bottom:270.533520px;}
.y28_c00110{bottom:292.495320px;}
.y27_c00110{bottom:314.457120px;}
.y26_c00110{bottom:336.598200px;}
.y25_c00110{bottom:358.560000px;}
.y24_c00110{bottom:389.520000px;}
.y23_c00110{bottom:417.227400px;}
.y22_c00110{bottom:439.189200px;}
.y21_c00110{bottom:461.151000px;}
.y20_c00110{bottom:483.112800px;}
.y1f_c00110{bottom:505.074600px;}
.y1e_c00110{bottom:527.036400px;}
.y1d_c00110{bottom:548.998200px;}
.y1c_c00110{bottom:570.962520px;}
.y1b_c00110{bottom:592.894440px;}
.y1a_c00110{bottom:615.035520px;}
.y19_c00110{bottom:636.997320px;}
.y18_c00110{bottom:658.959120px;}
.y17_c00110{bottom:680.920920px;}
.y16_c00110{bottom:702.882720px;}
.y15_c00110{bottom:724.844520px;}
.y14_c00110{bottom:746.806320px;}
.y13_c00110{bottom:768.768120px;}
.y12_c00110{bottom:790.729920px;}
.y11_c00110{bottom:812.691720px;}
.y10_c00110{bottom:834.653520px;}
.yf_c00110{bottom:856.615320px;}
.ye_c00110{bottom:878.577120px;}
.yd_c00110{bottom:900.538920px;}
.yc_c00110{bottom:922.680000px;}
.yb_c00110{bottom:953.640000px;}
.ya_c00110{bottom:981.360000px;}
.y9_c00110{bottom:1005.300000px;}
.y8_c00110{bottom:1035.000000px;}
.y7_c00110{bottom:1055.871540px;}
.y6_c00110{bottom:1077.116220px;}
.y5_c00110{bottom:1099.078020px;}
.y4_c00110{bottom:1121.039820px;}
.y1_c00110{bottom:1163.700000px;}
.h3_c00110{height:35.991211px;}
.h5_c00110{height:41.522695px;}
.h4_c00110{height:42.894141px;}
.h2_c00110{height:43.390195px;}
.h6_c00110{height:52.277344px;}
.h7_c00110{height:61.164492px;}
.h1_c00110{height:1263.000000px;}
.h0_c00110{height:1263.060000px;}
.w0_c00110{width:892.440000px;}
.w1_c00110{width:892.500000px;}
.x0_c00110{left:0.000000px;}
.x1_c00110{left:84.960000px;}
.x4_c00110{left:99.675900px;}
.x3_c00110{left:442.260000px;}
.x2_c00110{left:446.040000px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls43_c00110{letter-spacing:-0.956160pt;}
.ls48_c00110{letter-spacing:-0.478080pt;}
.ls4d_c00110{letter-spacing:-0.424960pt;}
.ls49_c00110{letter-spacing:-0.371840pt;}
.ls41_c00110{letter-spacing:-0.318720pt;}
.ls3a_c00110{letter-spacing:-0.265600pt;}
.ls4a_c00110{letter-spacing:-0.224640pt;}
.ls40_c00110{letter-spacing:-0.212480pt;}
.ls45_c00110{letter-spacing:-0.159360pt;}
.ls46_c00110{letter-spacing:-0.106240pt;}
.ls4b_c00110{letter-spacing:-0.074880pt;}
.ls3b_c00110{letter-spacing:-0.053120pt;}
.ls3d_c00110{letter-spacing:0.000000pt;}
.ls47_c00110{letter-spacing:0.053120pt;}
.ls44_c00110{letter-spacing:0.074880pt;}
.ls3f_c00110{letter-spacing:0.106240pt;}
.ls4c_c00110{letter-spacing:0.149760pt;}
.ls26_c00110{letter-spacing:0.154048pt;}
.ls0_c00110{letter-spacing:0.159360pt;}
.ls2b_c00110{letter-spacing:0.164672pt;}
.ls39_c00110{letter-spacing:0.175296pt;}
.ls1_c00110{letter-spacing:0.180608pt;}
.ls42_c00110{letter-spacing:0.192000pt;}
.ls2f_c00110{letter-spacing:0.207168pt;}
.ls25_c00110{letter-spacing:0.212480pt;}
.ls4_c00110{letter-spacing:0.265600pt;}
.ls3c_c00110{letter-spacing:0.318720pt;}
.ls24_c00110{letter-spacing:0.371840pt;}
.ls3e_c00110{letter-spacing:0.637440pt;}
.ls6_c00110{letter-spacing:0.786176pt;}
.ls15_c00110{letter-spacing:0.791488pt;}
.ls2_c00110{letter-spacing:0.796800pt;}
.ls23_c00110{letter-spacing:0.833984pt;}
.ls5_c00110{letter-spacing:0.839296pt;}
.ls16_c00110{letter-spacing:1.428928pt;}
.ls3_c00110{letter-spacing:1.434240pt;}
.lsb_c00110{letter-spacing:1.455488pt;}
.ls14_c00110{letter-spacing:1.482048pt;}
.ls2e_c00110{letter-spacing:2.039808pt;}
.lsa_c00110{letter-spacing:2.071680pt;}
.ls31_c00110{letter-spacing:2.082304pt;}
.ls13_c00110{letter-spacing:2.087616pt;}
.ls2a_c00110{letter-spacing:2.098240pt;}
.ls2c_c00110{letter-spacing:2.108864pt;}
.ls2d_c00110{letter-spacing:2.114176pt;}
.ls30_c00110{letter-spacing:2.677248pt;}
.lsf_c00110{letter-spacing:2.682560pt;}
.ls1d_c00110{letter-spacing:2.698496pt;}
.ls1e_c00110{letter-spacing:2.703808pt;}
.lsc_c00110{letter-spacing:2.709120pt;}
.ls12_c00110{letter-spacing:2.719744pt;}
.lsd_c00110{letter-spacing:2.735680pt;}
.ls1f_c00110{letter-spacing:2.756928pt;}
.ls1b_c00110{letter-spacing:3.346560pt;}
.ls1c_c00110{letter-spacing:3.351872pt;}
.ls1a_c00110{letter-spacing:3.394368pt;}
.lse_c00110{letter-spacing:3.399680pt;}
.ls7_c00110{letter-spacing:3.984000pt;}
.ls8_c00110{letter-spacing:4.031808pt;}
.ls19_c00110{letter-spacing:4.610816pt;}
.ls9_c00110{letter-spacing:4.621440pt;}
.ls17_c00110{letter-spacing:5.258880pt;}
.ls22_c00110{letter-spacing:5.264192pt;}
.ls18_c00110{letter-spacing:5.285440pt;}
.ls29_c00110{letter-spacing:5.301376pt;}
.ls20_c00110{letter-spacing:5.306688pt;}
.ls27_c00110{letter-spacing:5.317312pt;}
.ls21_c00110{letter-spacing:5.896320pt;}
.ls28_c00110{letter-spacing:5.933504pt;}
.ls11_c00110{letter-spacing:6.528448pt;}
.ls10_c00110{letter-spacing:6.533760pt;}
.ls38_c00110{letter-spacing:7.808640pt;}
.ls36_c00110{letter-spacing:7.861760pt;}
.ls35_c00110{letter-spacing:8.451392pt;}
.ls37_c00110{letter-spacing:8.472640pt;}
.ls34_c00110{letter-spacing:8.477952pt;}
.ls32_c00110{letter-spacing:8.488576pt;}
.ls33_c00110{letter-spacing:8.499200pt;}
.ws16_c00110{word-spacing:-17.072640pt;}
.wsc_c00110{word-spacing:-16.997760pt;}
.ws15_c00110{word-spacing:-16.848000pt;}
.ws14_c00110{word-spacing:-16.698240pt;}
.wsa_c00110{word-spacing:-14.656000pt;}
.wsf_c00110{word-spacing:-12.801920pt;}
.ws6_c00110{word-spacing:-12.642560pt;}
.ws4_c00110{word-spacing:-12.323840pt;}
.ws3_c00110{word-spacing:-12.270720pt;}
.ws17_c00110{word-spacing:-12.217600pt;}
.ws12_c00110{word-spacing:-12.169792pt;}
.ws2_c00110{word-spacing:-12.164480pt;}
.ws7_c00110{word-spacing:-12.111360pt;}
.ws10_c00110{word-spacing:-12.058240pt;}
.ws5_c00110{word-spacing:-12.005120pt;}
.ws1_c00110{word-spacing:-11.952000pt;}
.wse_c00110{word-spacing:-11.898880pt;}
.wsd_c00110{word-spacing:-11.845760pt;}
.ws8_c00110{word-spacing:-11.792640pt;}
.ws0_c00110{word-spacing:-11.739520pt;}
.ws9_c00110{word-spacing:-11.686400pt;}
.ws13_c00110{word-spacing:-11.633280pt;}
.ws18_c00110{word-spacing:-11.580160pt;}
.ws11_c00110{word-spacing:-11.527040pt;}
.wsb_c00110{word-spacing:-11.048960pt;}
.ws1a_c00110{word-spacing:-0.265600pt;}
.ws1d_c00110{word-spacing:-0.212480pt;}
.ws19_c00110{word-spacing:0.000000pt;}
.ws1c_c00110{word-spacing:0.796800pt;}
.ws1b_c00110{word-spacing:2.071680pt;}
._7_c00110{margin-left:-4.823296pt;}
._2_c00110{margin-left:-3.404992pt;}
._6_c00110{margin-left:-2.305408pt;}
._1_c00110{margin-left:-0.966784pt;}
._0_c00110{width:0.993344pt;}
._4_c00110{width:1.907008pt;}
._5_c00110{width:2.852544pt;}
._8_c00110{width:4.887040pt;}
._9_c00110{width:5.970688pt;}
._a_c00110{width:8.302656pt;}
._3_c00110{width:96.145920pt;}
.fs1_c00110{font-size:48.000000pt;}
.fs0_c00110{font-size:53.120000pt;}
.fs2_c00110{font-size:64.000000pt;}
.fs3_c00110{font-size:74.880000pt;}
.y0_c00110{bottom:0.000000pt;}
.y3_c00110{bottom:63.520000pt;}
.y2_c00110{bottom:81.920000pt;}
.y2b_c00110{bottom:201.431040pt;}
.y2a_c00110{bottom:220.952640pt;}
.y29_c00110{bottom:240.474240pt;}
.y28_c00110{bottom:259.995840pt;}
.y27_c00110{bottom:279.517440pt;}
.y26_c00110{bottom:299.198400pt;}
.y25_c00110{bottom:318.720000pt;}
.y24_c00110{bottom:346.240000pt;}
.y23_c00110{bottom:370.868800pt;}
.y22_c00110{bottom:390.390400pt;}
.y21_c00110{bottom:409.912000pt;}
.y20_c00110{bottom:429.433600pt;}
.y1f_c00110{bottom:448.955200pt;}
.y1e_c00110{bottom:468.476800pt;}
.y1d_c00110{bottom:487.998400pt;}
.y1c_c00110{bottom:507.522240pt;}
.y1b_c00110{bottom:527.017280pt;}
.y1a_c00110{bottom:546.698240pt;}
.y19_c00110{bottom:566.219840pt;}
.y18_c00110{bottom:585.741440pt;}
.y17_c00110{bottom:605.263040pt;}
.y16_c00110{bottom:624.784640pt;}
.y15_c00110{bottom:644.306240pt;}
.y14_c00110{bottom:663.827840pt;}
.y13_c00110{bottom:683.349440pt;}
.y12_c00110{bottom:702.871040pt;}
.y11_c00110{bottom:722.392640pt;}
.y10_c00110{bottom:741.914240pt;}
.yf_c00110{bottom:761.435840pt;}
.ye_c00110{bottom:780.957440pt;}
.yd_c00110{bottom:800.479040pt;}
.yc_c00110{bottom:820.160000pt;}
.yb_c00110{bottom:847.680000pt;}
.ya_c00110{bottom:872.320000pt;}
.y9_c00110{bottom:893.600000pt;}
.y8_c00110{bottom:920.000000pt;}
.y7_c00110{bottom:938.552480pt;}
.y6_c00110{bottom:957.436640pt;}
.y5_c00110{bottom:976.958240pt;}
.y4_c00110{bottom:996.479840pt;}
.y1_c00110{bottom:1034.400000pt;}
.h3_c00110{height:31.992188pt;}
.h5_c00110{height:36.909063pt;}
.h4_c00110{height:38.128125pt;}
.h2_c00110{height:38.569063pt;}
.h6_c00110{height:46.468750pt;}
.h7_c00110{height:54.368437pt;}
.h1_c00110{height:1122.666667pt;}
.h0_c00110{height:1122.720000pt;}
.w0_c00110{width:793.280000pt;}
.w1_c00110{width:793.333333pt;}
.x0_c00110{left:0.000000pt;}
.x1_c00110{left:75.520000pt;}
.x4_c00110{left:88.600800pt;}
.x3_c00110{left:393.120000pt;}
.x2_c00110{left:396.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d0c9c987d2de42493b9a3fec.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00111;src:url('chunks/assets/font_44fcf1728fbad026aaeb5bfa.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00111;src:url('chunks/assets/font_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff3_c00111{font-family:ff3_c00111;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00111{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00111{vertical-align:-15.120000px;}
.v0_c00111{vertical-align:0.000000px;}
.v1_c00111{vertical-align:20.880720px;}
.ls51_c00111{letter-spacing:-0.964800px;}
.ls49_c00111{letter-spacing:-0.776880px;}
.ls46_c00111{letter-spacing:-0.673920px;}
.ls4c_c00111{letter-spacing:-0.657360px;}
.ls43_c00111{letter-spacing:-0.597600px;}
.ls41_c00111{letter-spacing:-0.505440px;}
.ls42_c00111{letter-spacing:-0.418320px;}
.ls3d_c00111{letter-spacing:-0.358560px;}
.ls39_c00111{letter-spacing:-0.298800px;}
.ls50_c00111{letter-spacing:-0.289440px;}
.ls45_c00111{letter-spacing:-0.252720px;}
.ls4f_c00111{letter-spacing:-0.241200px;}
.ls3e_c00111{letter-spacing:-0.239040px;}
.ls38_c00111{letter-spacing:-0.179280px;}
.ls4d_c00111{letter-spacing:-0.144720px;}
.ls44_c00111{letter-spacing:-0.119520px;}
.ls3b_c00111{letter-spacing:-0.059760px;}
.ls3c_c00111{letter-spacing:0.000000px;}
.ls16_c00111{letter-spacing:0.042120px;}
.ls4e_c00111{letter-spacing:0.048240px;}
.ls21_c00111{letter-spacing:0.059760px;}
.ls40_c00111{letter-spacing:0.084240px;}
.ls3f_c00111{letter-spacing:0.119520px;}
.ls15_c00111{letter-spacing:0.149400px;}
.ls1e_c00111{letter-spacing:0.161352px;}
.ls17_c00111{letter-spacing:0.168480px;}
.ls14_c00111{letter-spacing:0.173304px;}
.ls0_c00111{letter-spacing:0.179280px;}
.ls1_c00111{letter-spacing:0.185256px;}
.ls1d_c00111{letter-spacing:0.233064px;}
.lsb_c00111{letter-spacing:0.298800px;}
.ls36_c00111{letter-spacing:0.337680px;}
.ls3a_c00111{letter-spacing:0.358560px;}
.ls2b_c00111{letter-spacing:0.418320px;}
.ls37_c00111{letter-spacing:0.467928px;}
.ls4b_c00111{letter-spacing:0.478080px;}
.ls47_c00111{letter-spacing:0.537840px;}
.ls48_c00111{letter-spacing:0.717120px;}
.ls4a_c00111{letter-spacing:0.776880px;}
.lse_c00111{letter-spacing:0.896400px;}
.ls10_c00111{letter-spacing:0.902376px;}
.lsf_c00111{letter-spacing:0.920304px;}
.ls11_c00111{letter-spacing:0.950184px;}
.ls2e_c00111{letter-spacing:1.595592px;}
.ls2f_c00111{letter-spacing:1.607544px;}
.ls6_c00111{letter-spacing:1.613520px;}
.ls7_c00111{letter-spacing:1.643400px;}
.ls8_c00111{letter-spacing:1.649376px;}
.ls30_c00111{letter-spacing:1.655352px;}
.ls28_c00111{letter-spacing:1.667304px;}
.ls2d_c00111{letter-spacing:2.300760px;}
.ls18_c00111{letter-spacing:2.330640px;}
.ls26_c00111{letter-spacing:2.336616px;}
.ls25_c00111{letter-spacing:2.348568px;}
.ls19_c00111{letter-spacing:2.354544px;}
.ls27_c00111{letter-spacing:2.372472px;}
.ls1f_c00111{letter-spacing:2.384424px;}
.ls2c_c00111{letter-spacing:2.408328px;}
.ls13_c00111{letter-spacing:3.011904px;}
.ls12_c00111{letter-spacing:3.035808px;}
.ls31_c00111{letter-spacing:3.041784px;}
.ls2_c00111{letter-spacing:3.047760px;}
.ls3_c00111{letter-spacing:3.053736px;}
.ls9_c00111{letter-spacing:3.764880px;}
.lsa_c00111{letter-spacing:3.776832px;}
.ls22_c00111{letter-spacing:3.806712px;}
.ls34_c00111{letter-spacing:4.445064px;}
.ls1c_c00111{letter-spacing:4.476024px;}
.lsc_c00111{letter-spacing:4.482000px;}
.ls2a_c00111{letter-spacing:4.487976px;}
.lsd_c00111{letter-spacing:4.511880px;}
.ls20_c00111{letter-spacing:4.523832px;}
.ls29_c00111{letter-spacing:4.529808px;}
.ls1b_c00111{letter-spacing:4.535784px;}
.ls1a_c00111{letter-spacing:5.199120px;}
.ls32_c00111{letter-spacing:5.916240px;}
.ls33_c00111{letter-spacing:5.970024px;}
.ls4_c00111{letter-spacing:6.633360px;}
.ls5_c00111{letter-spacing:7.350480px;}
.ls23_c00111{letter-spacing:9.561600px;}
.ls24_c00111{letter-spacing:10.278720px;}
.ls35_c00111{letter-spacing:143.899920px;}
.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;}
}
.wsc_c00111{word-spacing:-19.206720px;}
.ws13_c00111{word-spacing:-19.122480px;}
.ws11_c00111{word-spacing:-18.785520px;}
.wsb_c00111{word-spacing:-18.532800px;}
.ws12_c00111{word-spacing:-18.364320px;}
.ws17_c00111{word-spacing:-14.282640px;}
.ws15_c00111{word-spacing:-14.222880px;}
.ws14_c00111{word-spacing:-14.043600px;}
.ws18_c00111{word-spacing:-13.983840px;}
.ws2_c00111{word-spacing:-13.864320px;}
.ws9_c00111{word-spacing:-13.804560px;}
.ws3_c00111{word-spacing:-13.685040px;}
.ws8_c00111{word-spacing:-13.625280px;}
.wsd_c00111{word-spacing:-13.565520px;}
.ws4_c00111{word-spacing:-13.505760px;}
.ws7_c00111{word-spacing:-13.446000px;}
.ws10_c00111{word-spacing:-13.386240px;}
.ws0_c00111{word-spacing:-13.326480px;}
.ws6_c00111{word-spacing:-13.266720px;}
.ws1_c00111{word-spacing:-13.206960px;}
.ws5_c00111{word-spacing:-13.147200px;}
.wse_c00111{word-spacing:-13.087440px;}
.wsf_c00111{word-spacing:-12.908160px;}
.ws19_c00111{word-spacing:-12.848400px;}
.ws16_c00111{word-spacing:-12.728880px;}
.ws1c_c00111{word-spacing:-10.950480px;}
.ws1b_c00111{word-spacing:-10.757520px;}
.ws1d_c00111{word-spacing:-10.661040px;}
.ws1e_c00111{word-spacing:-10.612800px;}
.ws1f_c00111{word-spacing:-9.937440px;}
.wsa_c00111{word-spacing:-8.786880px;}
.ws1a_c00111{word-spacing:-6.834240px;}
.ws22_c00111{word-spacing:-0.084240px;}
.ws20_c00111{word-spacing:0.000000px;}
.ws21_c00111{word-spacing:0.059760px;}
.ws24_c00111{word-spacing:0.239040px;}
.ws25_c00111{word-spacing:1.613520px;}
.ws23_c00111{word-spacing:2.330640px;}
._9_c00111{margin-left:-9.896256px;}
._5_c00111{margin-left:-6.950088px;}
._8_c00111{margin-left:-3.585600px;}
._3_c00111{margin-left:-2.270880px;}
._1_c00111{margin-left:-1.117512px;}
._0_c00111{width:1.374480px;}
._2_c00111{width:2.689200px;}
._7_c00111{width:4.407192px;}
._6_c00111{width:5.438160px;}
._a_c00111{width:9.501840px;}
._4_c00111{width:108.164160px;}
._b_c00111{width:132.786000px;}
.fc3_c00111{color:rgb(51,51,255);}
.fc1_c00111{color:rgb(0,0,0);}
.fc2_c00111{color:rgb(49,132,155);}
.fc0_c00111{color:rgb(0,0,255);}
.fs5_c00111{font-size:30.240000px;}
.fs2_c00111{font-size:38.880000px;}
.fs6_c00111{font-size:48.240000px;}
.fs1_c00111{font-size:54.000000px;}
.fs0_c00111{font-size:59.760000px;}
.fs4_c00111{font-size:72.000000px;}
.fs3_c00111{font-size:84.240000px;}
.y0_c00111{bottom:0.000000px;}
.y3_c00111{bottom:71.460000px;}
.y2_c00111{bottom:92.700000px;}
.y30_c00111{bottom:155.340000px;}
.y2f_c00111{bottom:170.100000px;}
.y2e_c00111{bottom:184.680000px;}
.y2d_c00111{bottom:199.440000px;}
.y2c_c00111{bottom:214.020000px;}
.y2b_c00111{bottom:228.600000px;}
.y2a_c00111{bottom:243.360000px;}
.y29_c00111{bottom:255.240000px;}
.y28_c00111{bottom:285.649920px;}
.y27_c00111{bottom:307.611720px;}
.y26_c00111{bottom:329.573520px;}
.y25_c00111{bottom:351.535320px;}
.y24_c00111{bottom:373.676400px;}
.y23_c00111{bottom:395.638200px;}
.y22_c00111{bottom:417.600000px;}
.y21_c00111{bottom:448.560000px;}
.y20_c00111{bottom:476.269200px;}
.y1f_c00111{bottom:498.231000px;}
.y1e_c00111{bottom:520.192800px;}
.y1d_c00111{bottom:542.154600px;}
.y1c_c00111{bottom:564.116400px;}
.y1b_c00111{bottom:586.078200px;}
.y1a_c00111{bottom:608.035320px;}
.y19_c00111{bottom:629.997120px;}
.y18_c00111{bottom:652.138200px;}
.y17_c00111{bottom:674.091000px;}
.y16_c00111{bottom:696.052800px;}
.y15_c00111{bottom:718.014600px;}
.y14_c00111{bottom:739.976400px;}
.y13_c00111{bottom:761.938200px;}
.y12_c00111{bottom:783.900000px;}
.y11_c00111{bottom:814.860000px;}
.y10_c00111{bottom:842.576400px;}
.yf_c00111{bottom:864.538200px;}
.ye_c00111{bottom:886.489920px;}
.yd_c00111{bottom:908.451720px;}
.yc_c00111{bottom:930.592800px;}
.yb_c00111{bottom:952.554600px;}
.ya_c00111{bottom:974.516400px;}
.y9_c00111{bottom:996.478200px;}
.y8_c00111{bottom:1018.440000px;}
.y7_c00111{bottom:1049.400000px;}
.y6_c00111{bottom:1077.118200px;}
.y5_c00111{bottom:1099.078200px;}
.y4_c00111{bottom:1121.039820px;}
.y1_c00111{bottom:1163.700000px;}
.hc_c00111{height:21.705469px;}
.h3_c00111{height:38.759766px;}
.h6_c00111{height:42.894141px;}
.h2_c00111{height:43.390195px;}
.h4_c00111{height:48.787751px;}
.h5_c00111{height:48.794231px;}
.ha_c00111{height:48.805751px;}
.h9_c00111{height:48.823031px;}
.h8_c00111{height:48.827351px;}
.hb_c00111{height:50.027344px;}
.h7_c00111{height:61.164492px;}
.h1_c00111{height:1263.000000px;}
.h0_c00111{height:1263.060000px;}
.w0_c00111{width:892.440000px;}
.w1_c00111{width:892.500000px;}
.x0_c00111{left:0.000000px;}
.x1_c00111{left:84.960000px;}
.x4_c00111{left:99.894960px;}
.x3_c00111{left:442.260000px;}
.x2_c00111{left:446.040000px;}
@media print{
.v2_c00111{vertical-align:-13.440000pt;}
.v0_c00111{vertical-align:0.000000pt;}
.v1_c00111{vertical-align:18.560640pt;}
.ls51_c00111{letter-spacing:-0.857600pt;}
.ls49_c00111{letter-spacing:-0.690560pt;}
.ls46_c00111{letter-spacing:-0.599040pt;}
.ls4c_c00111{letter-spacing:-0.584320pt;}
.ls43_c00111{letter-spacing:-0.531200pt;}
.ls41_c00111{letter-spacing:-0.449280pt;}
.ls42_c00111{letter-spacing:-0.371840pt;}
.ls3d_c00111{letter-spacing:-0.318720pt;}
.ls39_c00111{letter-spacing:-0.265600pt;}
.ls50_c00111{letter-spacing:-0.257280pt;}
.ls45_c00111{letter-spacing:-0.224640pt;}
.ls4f_c00111{letter-spacing:-0.214400pt;}
.ls3e_c00111{letter-spacing:-0.212480pt;}
.ls38_c00111{letter-spacing:-0.159360pt;}
.ls4d_c00111{letter-spacing:-0.128640pt;}
.ls44_c00111{letter-spacing:-0.106240pt;}
.ls3b_c00111{letter-spacing:-0.053120pt;}
.ls3c_c00111{letter-spacing:0.000000pt;}
.ls16_c00111{letter-spacing:0.037440pt;}
.ls4e_c00111{letter-spacing:0.042880pt;}
.ls21_c00111{letter-spacing:0.053120pt;}
.ls40_c00111{letter-spacing:0.074880pt;}
.ls3f_c00111{letter-spacing:0.106240pt;}
.ls15_c00111{letter-spacing:0.132800pt;}
.ls1e_c00111{letter-spacing:0.143424pt;}
.ls17_c00111{letter-spacing:0.149760pt;}
.ls14_c00111{letter-spacing:0.154048pt;}
.ls0_c00111{letter-spacing:0.159360pt;}
.ls1_c00111{letter-spacing:0.164672pt;}
.ls1d_c00111{letter-spacing:0.207168pt;}
.lsb_c00111{letter-spacing:0.265600pt;}
.ls36_c00111{letter-spacing:0.300160pt;}
.ls3a_c00111{letter-spacing:0.318720pt;}
.ls2b_c00111{letter-spacing:0.371840pt;}
.ls37_c00111{letter-spacing:0.415936pt;}
.ls4b_c00111{letter-spacing:0.424960pt;}
.ls47_c00111{letter-spacing:0.478080pt;}
.ls48_c00111{letter-spacing:0.637440pt;}
.ls4a_c00111{letter-spacing:0.690560pt;}
.lse_c00111{letter-spacing:0.796800pt;}
.ls10_c00111{letter-spacing:0.802112pt;}
.lsf_c00111{letter-spacing:0.818048pt;}
.ls11_c00111{letter-spacing:0.844608pt;}
.ls2e_c00111{letter-spacing:1.418304pt;}
.ls2f_c00111{letter-spacing:1.428928pt;}
.ls6_c00111{letter-spacing:1.434240pt;}
.ls7_c00111{letter-spacing:1.460800pt;}
.ls8_c00111{letter-spacing:1.466112pt;}
.ls30_c00111{letter-spacing:1.471424pt;}
.ls28_c00111{letter-spacing:1.482048pt;}
.ls2d_c00111{letter-spacing:2.045120pt;}
.ls18_c00111{letter-spacing:2.071680pt;}
.ls26_c00111{letter-spacing:2.076992pt;}
.ls25_c00111{letter-spacing:2.087616pt;}
.ls19_c00111{letter-spacing:2.092928pt;}
.ls27_c00111{letter-spacing:2.108864pt;}
.ls1f_c00111{letter-spacing:2.119488pt;}
.ls2c_c00111{letter-spacing:2.140736pt;}
.ls13_c00111{letter-spacing:2.677248pt;}
.ls12_c00111{letter-spacing:2.698496pt;}
.ls31_c00111{letter-spacing:2.703808pt;}
.ls2_c00111{letter-spacing:2.709120pt;}
.ls3_c00111{letter-spacing:2.714432pt;}
.ls9_c00111{letter-spacing:3.346560pt;}
.lsa_c00111{letter-spacing:3.357184pt;}
.ls22_c00111{letter-spacing:3.383744pt;}
.ls34_c00111{letter-spacing:3.951168pt;}
.ls1c_c00111{letter-spacing:3.978688pt;}
.lsc_c00111{letter-spacing:3.984000pt;}
.ls2a_c00111{letter-spacing:3.989312pt;}
.lsd_c00111{letter-spacing:4.010560pt;}
.ls20_c00111{letter-spacing:4.021184pt;}
.ls29_c00111{letter-spacing:4.026496pt;}
.ls1b_c00111{letter-spacing:4.031808pt;}
.ls1a_c00111{letter-spacing:4.621440pt;}
.ls32_c00111{letter-spacing:5.258880pt;}
.ls33_c00111{letter-spacing:5.306688pt;}
.ls4_c00111{letter-spacing:5.896320pt;}
.ls5_c00111{letter-spacing:6.533760pt;}
.ls23_c00111{letter-spacing:8.499200pt;}
.ls24_c00111{letter-spacing:9.136640pt;}
.ls35_c00111{letter-spacing:127.911040pt;}
.wsc_c00111{word-spacing:-17.072640pt;}
.ws13_c00111{word-spacing:-16.997760pt;}
.ws11_c00111{word-spacing:-16.698240pt;}
.wsb_c00111{word-spacing:-16.473600pt;}
.ws12_c00111{word-spacing:-16.323840pt;}
.ws17_c00111{word-spacing:-12.695680pt;}
.ws15_c00111{word-spacing:-12.642560pt;}
.ws14_c00111{word-spacing:-12.483200pt;}
.ws18_c00111{word-spacing:-12.430080pt;}
.ws2_c00111{word-spacing:-12.323840pt;}
.ws9_c00111{word-spacing:-12.270720pt;}
.ws3_c00111{word-spacing:-12.164480pt;}
.ws8_c00111{word-spacing:-12.111360pt;}
.wsd_c00111{word-spacing:-12.058240pt;}
.ws4_c00111{word-spacing:-12.005120pt;}
.ws7_c00111{word-spacing:-11.952000pt;}
.ws10_c00111{word-spacing:-11.898880pt;}
.ws0_c00111{word-spacing:-11.845760pt;}
.ws6_c00111{word-spacing:-11.792640pt;}
.ws1_c00111{word-spacing:-11.739520pt;}
.ws5_c00111{word-spacing:-11.686400pt;}
.wse_c00111{word-spacing:-11.633280pt;}
.wsf_c00111{word-spacing:-11.473920pt;}
.ws19_c00111{word-spacing:-11.420800pt;}
.ws16_c00111{word-spacing:-11.314560pt;}
.ws1c_c00111{word-spacing:-9.733760pt;}
.ws1b_c00111{word-spacing:-9.562240pt;}
.ws1d_c00111{word-spacing:-9.476480pt;}
.ws1e_c00111{word-spacing:-9.433600pt;}
.ws1f_c00111{word-spacing:-8.833280pt;}
.wsa_c00111{word-spacing:-7.810560pt;}
.ws1a_c00111{word-spacing:-6.074880pt;}
.ws22_c00111{word-spacing:-0.074880pt;}
.ws20_c00111{word-spacing:0.000000pt;}
.ws21_c00111{word-spacing:0.053120pt;}
.ws24_c00111{word-spacing:0.212480pt;}
.ws25_c00111{word-spacing:1.434240pt;}
.ws23_c00111{word-spacing:2.071680pt;}
._9_c00111{margin-left:-8.796672pt;}
._5_c00111{margin-left:-6.177856pt;}
._8_c00111{margin-left:-3.187200pt;}
._3_c00111{margin-left:-2.018560pt;}
._1_c00111{margin-left:-0.993344pt;}
._0_c00111{width:1.221760pt;}
._2_c00111{width:2.390400pt;}
._7_c00111{width:3.917504pt;}
._6_c00111{width:4.833920pt;}
._a_c00111{width:8.446080pt;}
._4_c00111{width:96.145920pt;}
._b_c00111{width:118.032000pt;}
.fs5_c00111{font-size:26.880000pt;}
.fs2_c00111{font-size:34.560000pt;}
.fs6_c00111{font-size:42.880000pt;}
.fs1_c00111{font-size:48.000000pt;}
.fs0_c00111{font-size:53.120000pt;}
.fs4_c00111{font-size:64.000000pt;}
.fs3_c00111{font-size:74.880000pt;}
.y0_c00111{bottom:0.000000pt;}
.y3_c00111{bottom:63.520000pt;}
.y2_c00111{bottom:82.400000pt;}
.y30_c00111{bottom:138.080000pt;}
.y2f_c00111{bottom:151.200000pt;}
.y2e_c00111{bottom:164.160000pt;}
.y2d_c00111{bottom:177.280000pt;}
.y2c_c00111{bottom:190.240000pt;}
.y2b_c00111{bottom:203.200000pt;}
.y2a_c00111{bottom:216.320000pt;}
.y29_c00111{bottom:226.880000pt;}
.y28_c00111{bottom:253.911040pt;}
.y27_c00111{bottom:273.432640pt;}
.y26_c00111{bottom:292.954240pt;}
.y25_c00111{bottom:312.475840pt;}
.y24_c00111{bottom:332.156800pt;}
.y23_c00111{bottom:351.678400pt;}
.y22_c00111{bottom:371.200000pt;}
.y21_c00111{bottom:398.720000pt;}
.y20_c00111{bottom:423.350400pt;}
.y1f_c00111{bottom:442.872000pt;}
.y1e_c00111{bottom:462.393600pt;}
.y1d_c00111{bottom:481.915200pt;}
.y1c_c00111{bottom:501.436800pt;}
.y1b_c00111{bottom:520.958400pt;}
.y1a_c00111{bottom:540.475840pt;}
.y19_c00111{bottom:559.997440pt;}
.y18_c00111{bottom:579.678400pt;}
.y17_c00111{bottom:599.192000pt;}
.y16_c00111{bottom:618.713600pt;}
.y15_c00111{bottom:638.235200pt;}
.y14_c00111{bottom:657.756800pt;}
.y13_c00111{bottom:677.278400pt;}
.y12_c00111{bottom:696.800000pt;}
.y11_c00111{bottom:724.320000pt;}
.y10_c00111{bottom:748.956800pt;}
.yf_c00111{bottom:768.478400pt;}
.ye_c00111{bottom:787.991040pt;}
.yd_c00111{bottom:807.512640pt;}
.yc_c00111{bottom:827.193600pt;}
.yb_c00111{bottom:846.715200pt;}
.ya_c00111{bottom:866.236800pt;}
.y9_c00111{bottom:885.758400pt;}
.y8_c00111{bottom:905.280000pt;}
.y7_c00111{bottom:932.800000pt;}
.y6_c00111{bottom:957.438400pt;}
.y5_c00111{bottom:976.958400pt;}
.y4_c00111{bottom:996.479840pt;}
.y1_c00111{bottom:1034.400000pt;}
.hc_c00111{height:19.293750pt;}
.h3_c00111{height:34.453125pt;}
.h6_c00111{height:38.128125pt;}
.h2_c00111{height:38.569063pt;}
.h4_c00111{height:43.366890pt;}
.h5_c00111{height:43.372650pt;}
.ha_c00111{height:43.382890pt;}
.h9_c00111{height:43.398250pt;}
.h8_c00111{height:43.402090pt;}
.hb_c00111{height:44.468750pt;}
.h7_c00111{height:54.368437pt;}
.h1_c00111{height:1122.666667pt;}
.h0_c00111{height:1122.720000pt;}
.w0_c00111{width:793.280000pt;}
.w1_c00111{width:793.333333pt;}
.x0_c00111{left:0.000000pt;}
.x1_c00111{left:75.520000pt;}
.x4_c00111{left:88.795520pt;}
.x3_c00111{left:393.120000pt;}
.x2_c00111{left:396.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a778350f41b056009d9c1784.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00112;src:url('chunks/assets/font_dbce3bd0b941093f96730daa.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00112;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff3_c00112{font-family:ff3_c00112;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00112;src:url('chunks/assets/font_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff4_c00112{font-family:ff4_c00112;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00112{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c00112{vertical-align:-15.120000px;}
.v0_c00112{vertical-align:0.000000px;}
.v1_c00112{vertical-align:20.887200px;}
.v2_c00112{vertical-align:30.240000px;}
.ls5a_c00112{letter-spacing:-0.673920px;}
.ls56_c00112{letter-spacing:-0.657360px;}
.ls50_c00112{letter-spacing:-0.597600px;}
.ls57_c00112{letter-spacing:-0.537840px;}
.ls52_c00112{letter-spacing:-0.418320px;}
.ls4d_c00112{letter-spacing:-0.358560px;}
.ls60_c00112{letter-spacing:-0.337680px;}
.ls46_c00112{letter-spacing:-0.298800px;}
.ls5d_c00112{letter-spacing:-0.289440px;}
.ls54_c00112{letter-spacing:-0.272160px;}
.ls5b_c00112{letter-spacing:-0.241200px;}
.ls4c_c00112{letter-spacing:-0.239040px;}
.ls5e_c00112{letter-spacing:-0.211680px;}
.ls53_c00112{letter-spacing:-0.179280px;}
.ls5c_c00112{letter-spacing:-0.144720px;}
.ls4a_c00112{letter-spacing:-0.119520px;}
.ls47_c00112{letter-spacing:-0.059760px;}
.ls49_c00112{letter-spacing:0.000000px;}
.ls4e_c00112{letter-spacing:0.059760px;}
.ls59_c00112{letter-spacing:0.084240px;}
.ls5f_c00112{letter-spacing:0.096480px;}
.ls4b_c00112{letter-spacing:0.119520px;}
.ls32_c00112{letter-spacing:0.168480px;}
.ls7_c00112{letter-spacing:0.173304px;}
.ls0_c00112{letter-spacing:0.179280px;}
.ls2f_c00112{letter-spacing:0.185256px;}
.ls61_c00112{letter-spacing:0.192960px;}
.ls31_c00112{letter-spacing:0.197208px;}
.ls1_c00112{letter-spacing:0.203184px;}
.ls1d_c00112{letter-spacing:0.209160px;}
.ls23_c00112{letter-spacing:0.215136px;}
.ls2a_c00112{letter-spacing:0.221112px;}
.ls22_c00112{letter-spacing:0.233064px;}
.ls24_c00112{letter-spacing:0.262944px;}
.ls42_c00112{letter-spacing:0.289440px;}
.ls3_c00112{letter-spacing:0.298800px;}
.ls43_c00112{letter-spacing:0.313560px;}
.ls3d_c00112{letter-spacing:0.323208px;}
.ls3b_c00112{letter-spacing:0.337680px;}
.ls40_c00112{letter-spacing:0.342504px;}
.ls44_c00112{letter-spacing:0.352152px;}
.ls48_c00112{letter-spacing:0.358560px;}
.ls3f_c00112{letter-spacing:0.361800px;}
.ls3c_c00112{letter-spacing:0.405216px;}
.ls2b_c00112{letter-spacing:0.418320px;}
.ls3e_c00112{letter-spacing:0.443808px;}
.ls4f_c00112{letter-spacing:0.478080px;}
.ls45_c00112{letter-spacing:0.627120px;}
.ls55_c00112{letter-spacing:0.717120px;}
.ls51_c00112{letter-spacing:0.836640px;}
.ls19_c00112{letter-spacing:0.890424px;}
.ls6_c00112{letter-spacing:0.896400px;}
.ls30_c00112{letter-spacing:0.914328px;}
.ls28_c00112{letter-spacing:0.920304px;}
.lsb_c00112{letter-spacing:0.926280px;}
.ls1b_c00112{letter-spacing:0.950184px;}
.ls58_c00112{letter-spacing:1.015920px;}
.lsd_c00112{letter-spacing:1.577664px;}
.ls1a_c00112{letter-spacing:1.595592px;}
.lsc_c00112{letter-spacing:1.613520px;}
.ls27_c00112{letter-spacing:1.643400px;}
.ls38_c00112{letter-spacing:1.655352px;}
.ls37_c00112{letter-spacing:1.667304px;}
.ls26_c00112{letter-spacing:2.318688px;}
.ls21_c00112{letter-spacing:2.330640px;}
.ls2c_c00112{letter-spacing:3.041784px;}
.ls20_c00112{letter-spacing:3.047760px;}
.ls25_c00112{letter-spacing:3.059712px;}
.ls11_c00112{letter-spacing:3.764880px;}
.ls1e_c00112{letter-spacing:3.770856px;}
.ls29_c00112{letter-spacing:3.776832px;}
.ls12_c00112{letter-spacing:3.794760px;}
.ls1f_c00112{letter-spacing:3.818664px;}
.ls3a_c00112{letter-spacing:4.476024px;}
.ls8_c00112{letter-spacing:4.482000px;}
.ls2d_c00112{letter-spacing:4.493952px;}
.ls39_c00112{letter-spacing:4.505904px;}
.ls1c_c00112{letter-spacing:4.511880px;}
.ls9_c00112{letter-spacing:5.199120px;}
.ls2e_c00112{letter-spacing:5.229000px;}
.lsa_c00112{letter-spacing:5.270832px;}
.ls5_c00112{letter-spacing:5.910264px;}
.ls2_c00112{letter-spacing:5.916240px;}
.ls14_c00112{letter-spacing:5.922216px;}
.ls13_c00112{letter-spacing:5.946120px;}
.lsf_c00112{letter-spacing:5.958072px;}
.lse_c00112{letter-spacing:5.964048px;}
.ls10_c00112{letter-spacing:5.970024px;}
.ls4_c00112{letter-spacing:6.633360px;}
.ls15_c00112{letter-spacing:7.350480px;}
.ls18_c00112{letter-spacing:7.404264px;}
.ls16_c00112{letter-spacing:7.410240px;}
.ls17_c00112{letter-spacing:7.434144px;}
.ls35_c00112{letter-spacing:12.424104px;}
.ls33_c00112{letter-spacing:12.430080px;}
.ls34_c00112{letter-spacing:12.465936px;}
.ls36_c00112{letter-spacing:12.471912px;}
.ls41_c00112{letter-spacing:128.800800px;}
.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;}
}
.ws16_c00112{word-spacing:-19.206720px;}
.ws19_c00112{word-spacing:-19.122480px;}
.ws17_c00112{word-spacing:-18.364320px;}
.ws15_c00112{word-spacing:-14.521680px;}
.ws7_c00112{word-spacing:-14.402160px;}
.wse_c00112{word-spacing:-14.342400px;}
.ws12_c00112{word-spacing:-14.222880px;}
.wsc_c00112{word-spacing:-13.983840px;}
.ws4_c00112{word-spacing:-13.864320px;}
.ws3_c00112{word-spacing:-13.804560px;}
.ws2_c00112{word-spacing:-13.685040px;}
.ws8_c00112{word-spacing:-13.625280px;}
.wsb_c00112{word-spacing:-13.565520px;}
.ws5_c00112{word-spacing:-13.505760px;}
.ws1_c00112{word-spacing:-13.446000px;}
.ws6_c00112{word-spacing:-13.386240px;}
.ws10_c00112{word-spacing:-13.326480px;}
.ws9_c00112{word-spacing:-13.266720px;}
.ws0_c00112{word-spacing:-13.206960px;}
.wsa_c00112{word-spacing:-13.147200px;}
.wsf_c00112{word-spacing:-13.087440px;}
.ws14_c00112{word-spacing:-12.967920px;}
.wsd_c00112{word-spacing:-12.908160px;}
.ws13_c00112{word-spacing:-12.848400px;}
.ws18_c00112{word-spacing:-12.204000px;}
.ws21_c00112{word-spacing:-11.095200px;}
.ws1f_c00112{word-spacing:-10.998720px;}
.ws1c_c00112{word-spacing:-10.757520px;}
.ws1b_c00112{word-spacing:-10.661040px;}
.ws1d_c00112{word-spacing:-10.612800px;}
.ws20_c00112{word-spacing:-10.564560px;}
.ws11_c00112{word-spacing:-8.514720px;}
.ws1a_c00112{word-spacing:-6.834240px;}
.ws1e_c00112{word-spacing:-6.622560px;}
.ws24_c00112{word-spacing:-0.298800px;}
.ws26_c00112{word-spacing:-0.084240px;}
.ws22_c00112{word-spacing:0.000000px;}
.ws25_c00112{word-spacing:0.179280px;}
.ws23_c00112{word-spacing:0.239040px;}
._a_c00112{margin-left:-8.640000px;}
._4_c00112{margin-left:-6.770808px;}
._2_c00112{margin-left:-5.258880px;}
._5_c00112{margin-left:-3.460104px;}
._1_c00112{margin-left:-1.087632px;}
._0_c00112{width:1.117512px;}
._7_c00112{width:2.229048px;}
._8_c00112{width:3.590568px;}
._6_c00112{width:5.414256px;}
._3_c00112{width:6.770808px;}
._9_c00112{width:108.164160px;}
._b_c00112{width:132.786000px;}
.fc2_c00112{color:rgb(51,51,255);}
.fc1_c00112{color:rgb(0,0,255);}
.fc0_c00112{color:rgb(0,0,0);}
.fs5_c00112{font-size:30.240000px;}
.fs2_c00112{font-size:38.880000px;}
.fs6_c00112{font-size:48.240000px;}
.fs1_c00112{font-size:54.000000px;}
.fs0_c00112{font-size:59.760000px;}
.fs4_c00112{font-size:72.000000px;}
.fs3_c00112{font-size:84.240000px;}
.y0_c00112{bottom:0.000000px;}
.y3_c00112{bottom:71.460000px;}
.y2_c00112{bottom:92.160000px;}
.y31_c00112{bottom:155.340000px;}
.y30_c00112{bottom:170.100000px;}
.y2f_c00112{bottom:184.680000px;}
.y2e_c00112{bottom:199.440000px;}
.y2d_c00112{bottom:214.020000px;}
.y2c_c00112{bottom:225.900000px;}
.y2b_c00112{bottom:249.303060px;}
.y2a_c00112{bottom:271.249920px;}
.y29_c00112{bottom:293.211720px;}
.y28_c00112{bottom:315.352800px;}
.y27_c00112{bottom:337.314600px;}
.y26_c00112{bottom:359.276400px;}
.y25_c00112{bottom:381.238200px;}
.y24_c00112{bottom:403.200000px;}
.y23_c00112{bottom:434.160000px;}
.y22_c00112{bottom:461.869920px;}
.y21_c00112{bottom:483.831720px;}
.y20_c00112{bottom:505.793520px;}
.y1f_c00112{bottom:527.755320px;}
.y1e_c00112{bottom:549.717120px;}
.y1d_c00112{bottom:571.678920px;}
.y1c_c00112{bottom:593.816940px;}
.y1b_c00112{bottom:615.763800px;}
.y1a_c00112{bottom:637.725600px;}
.y19_c00112{bottom:659.687400px;}
.y18_c00112{bottom:681.649200px;}
.y17_c00112{bottom:703.611000px;}
.y16_c00112{bottom:725.572800px;}
.y15_c00112{bottom:747.534600px;}
.y14_c00112{bottom:769.496400px;}
.y13_c00112{bottom:791.458200px;}
.y12_c00112{bottom:813.418200px;}
.y11_c00112{bottom:835.378200px;}
.y10_c00112{bottom:857.333880px;}
.yf_c00112{bottom:879.280740px;}
.ye_c00112{bottom:901.421820px;}
.yd_c00112{bottom:923.383620px;}
.yc_c00112{bottom:945.345420px;}
.yb_c00112{bottom:967.307220px;}
.ya_c00112{bottom:989.269020px;}
.y9_c00112{bottom:1011.230820px;}
.y8_c00112{bottom:1033.192620px;}
.y7_c00112{bottom:1055.154420px;}
.y6_c00112{bottom:1077.116220px;}
.y5_c00112{bottom:1099.078020px;}
.y4_c00112{bottom:1121.039820px;}
.y1_c00112{bottom:1163.700000px;}
.ha_c00112{height:21.705469px;}
.h3_c00112{height:35.991211px;}
.h4_c00112{height:42.894141px;}
.h7_c00112{height:42.906381px;}
.h5_c00112{height:42.918621px;}
.h2_c00112{height:43.390195px;}
.h6_c00112{height:48.794231px;}
.h9_c00112{height:50.027344px;}
.h8_c00112{height:69.448008px;}
.h1_c00112{height:1263.000000px;}
.h0_c00112{height:1263.060000px;}
.w0_c00112{width:892.440000px;}
.w1_c00112{width:892.500000px;}
.x0_c00112{left:0.000000px;}
.x1_c00112{left:84.960000px;}
.x4_c00112{left:99.760500px;}
.x3_c00112{left:442.260000px;}
.x2_c00112{left:446.040000px;}
@media print{
.v3_c00112{vertical-align:-13.440000pt;}
.v0_c00112{vertical-align:0.000000pt;}
.v1_c00112{vertical-align:18.566400pt;}
.v2_c00112{vertical-align:26.880000pt;}
.ls5a_c00112{letter-spacing:-0.599040pt;}
.ls56_c00112{letter-spacing:-0.584320pt;}
.ls50_c00112{letter-spacing:-0.531200pt;}
.ls57_c00112{letter-spacing:-0.478080pt;}
.ls52_c00112{letter-spacing:-0.371840pt;}
.ls4d_c00112{letter-spacing:-0.318720pt;}
.ls60_c00112{letter-spacing:-0.300160pt;}
.ls46_c00112{letter-spacing:-0.265600pt;}
.ls5d_c00112{letter-spacing:-0.257280pt;}
.ls54_c00112{letter-spacing:-0.241920pt;}
.ls5b_c00112{letter-spacing:-0.214400pt;}
.ls4c_c00112{letter-spacing:-0.212480pt;}
.ls5e_c00112{letter-spacing:-0.188160pt;}
.ls53_c00112{letter-spacing:-0.159360pt;}
.ls5c_c00112{letter-spacing:-0.128640pt;}
.ls4a_c00112{letter-spacing:-0.106240pt;}
.ls47_c00112{letter-spacing:-0.053120pt;}
.ls49_c00112{letter-spacing:0.000000pt;}
.ls4e_c00112{letter-spacing:0.053120pt;}
.ls59_c00112{letter-spacing:0.074880pt;}
.ls5f_c00112{letter-spacing:0.085760pt;}
.ls4b_c00112{letter-spacing:0.106240pt;}
.ls32_c00112{letter-spacing:0.149760pt;}
.ls7_c00112{letter-spacing:0.154048pt;}
.ls0_c00112{letter-spacing:0.159360pt;}
.ls2f_c00112{letter-spacing:0.164672pt;}
.ls61_c00112{letter-spacing:0.171520pt;}
.ls31_c00112{letter-spacing:0.175296pt;}
.ls1_c00112{letter-spacing:0.180608pt;}
.ls1d_c00112{letter-spacing:0.185920pt;}
.ls23_c00112{letter-spacing:0.191232pt;}
.ls2a_c00112{letter-spacing:0.196544pt;}
.ls22_c00112{letter-spacing:0.207168pt;}
.ls24_c00112{letter-spacing:0.233728pt;}
.ls42_c00112{letter-spacing:0.257280pt;}
.ls3_c00112{letter-spacing:0.265600pt;}
.ls43_c00112{letter-spacing:0.278720pt;}
.ls3d_c00112{letter-spacing:0.287296pt;}
.ls3b_c00112{letter-spacing:0.300160pt;}
.ls40_c00112{letter-spacing:0.304448pt;}
.ls44_c00112{letter-spacing:0.313024pt;}
.ls48_c00112{letter-spacing:0.318720pt;}
.ls3f_c00112{letter-spacing:0.321600pt;}
.ls3c_c00112{letter-spacing:0.360192pt;}
.ls2b_c00112{letter-spacing:0.371840pt;}
.ls3e_c00112{letter-spacing:0.394496pt;}
.ls4f_c00112{letter-spacing:0.424960pt;}
.ls45_c00112{letter-spacing:0.557440pt;}
.ls55_c00112{letter-spacing:0.637440pt;}
.ls51_c00112{letter-spacing:0.743680pt;}
.ls19_c00112{letter-spacing:0.791488pt;}
.ls6_c00112{letter-spacing:0.796800pt;}
.ls30_c00112{letter-spacing:0.812736pt;}
.ls28_c00112{letter-spacing:0.818048pt;}
.lsb_c00112{letter-spacing:0.823360pt;}
.ls1b_c00112{letter-spacing:0.844608pt;}
.ls58_c00112{letter-spacing:0.903040pt;}
.lsd_c00112{letter-spacing:1.402368pt;}
.ls1a_c00112{letter-spacing:1.418304pt;}
.lsc_c00112{letter-spacing:1.434240pt;}
.ls27_c00112{letter-spacing:1.460800pt;}
.ls38_c00112{letter-spacing:1.471424pt;}
.ls37_c00112{letter-spacing:1.482048pt;}
.ls26_c00112{letter-spacing:2.061056pt;}
.ls21_c00112{letter-spacing:2.071680pt;}
.ls2c_c00112{letter-spacing:2.703808pt;}
.ls20_c00112{letter-spacing:2.709120pt;}
.ls25_c00112{letter-spacing:2.719744pt;}
.ls11_c00112{letter-spacing:3.346560pt;}
.ls1e_c00112{letter-spacing:3.351872pt;}
.ls29_c00112{letter-spacing:3.357184pt;}
.ls12_c00112{letter-spacing:3.373120pt;}
.ls1f_c00112{letter-spacing:3.394368pt;}
.ls3a_c00112{letter-spacing:3.978688pt;}
.ls8_c00112{letter-spacing:3.984000pt;}
.ls2d_c00112{letter-spacing:3.994624pt;}
.ls39_c00112{letter-spacing:4.005248pt;}
.ls1c_c00112{letter-spacing:4.010560pt;}
.ls9_c00112{letter-spacing:4.621440pt;}
.ls2e_c00112{letter-spacing:4.648000pt;}
.lsa_c00112{letter-spacing:4.685184pt;}
.ls5_c00112{letter-spacing:5.253568pt;}
.ls2_c00112{letter-spacing:5.258880pt;}
.ls14_c00112{letter-spacing:5.264192pt;}
.ls13_c00112{letter-spacing:5.285440pt;}
.lsf_c00112{letter-spacing:5.296064pt;}
.lse_c00112{letter-spacing:5.301376pt;}
.ls10_c00112{letter-spacing:5.306688pt;}
.ls4_c00112{letter-spacing:5.896320pt;}
.ls15_c00112{letter-spacing:6.533760pt;}
.ls18_c00112{letter-spacing:6.581568pt;}
.ls16_c00112{letter-spacing:6.586880pt;}
.ls17_c00112{letter-spacing:6.608128pt;}
.ls35_c00112{letter-spacing:11.043648pt;}
.ls33_c00112{letter-spacing:11.048960pt;}
.ls34_c00112{letter-spacing:11.080832pt;}
.ls36_c00112{letter-spacing:11.086144pt;}
.ls41_c00112{letter-spacing:114.489600pt;}
.ws16_c00112{word-spacing:-17.072640pt;}
.ws19_c00112{word-spacing:-16.997760pt;}
.ws17_c00112{word-spacing:-16.323840pt;}
.ws15_c00112{word-spacing:-12.908160pt;}
.ws7_c00112{word-spacing:-12.801920pt;}
.wse_c00112{word-spacing:-12.748800pt;}
.ws12_c00112{word-spacing:-12.642560pt;}
.wsc_c00112{word-spacing:-12.430080pt;}
.ws4_c00112{word-spacing:-12.323840pt;}
.ws3_c00112{word-spacing:-12.270720pt;}
.ws2_c00112{word-spacing:-12.164480pt;}
.ws8_c00112{word-spacing:-12.111360pt;}
.wsb_c00112{word-spacing:-12.058240pt;}
.ws5_c00112{word-spacing:-12.005120pt;}
.ws1_c00112{word-spacing:-11.952000pt;}
.ws6_c00112{word-spacing:-11.898880pt;}
.ws10_c00112{word-spacing:-11.845760pt;}
.ws9_c00112{word-spacing:-11.792640pt;}
.ws0_c00112{word-spacing:-11.739520pt;}
.wsa_c00112{word-spacing:-11.686400pt;}
.wsf_c00112{word-spacing:-11.633280pt;}
.ws14_c00112{word-spacing:-11.527040pt;}
.wsd_c00112{word-spacing:-11.473920pt;}
.ws13_c00112{word-spacing:-11.420800pt;}
.ws18_c00112{word-spacing:-10.848000pt;}
.ws21_c00112{word-spacing:-9.862400pt;}
.ws1f_c00112{word-spacing:-9.776640pt;}
.ws1c_c00112{word-spacing:-9.562240pt;}
.ws1b_c00112{word-spacing:-9.476480pt;}
.ws1d_c00112{word-spacing:-9.433600pt;}
.ws20_c00112{word-spacing:-9.390720pt;}
.ws11_c00112{word-spacing:-7.568640pt;}
.ws1a_c00112{word-spacing:-6.074880pt;}
.ws1e_c00112{word-spacing:-5.886720pt;}
.ws24_c00112{word-spacing:-0.265600pt;}
.ws26_c00112{word-spacing:-0.074880pt;}
.ws22_c00112{word-spacing:0.000000pt;}
.ws25_c00112{word-spacing:0.159360pt;}
.ws23_c00112{word-spacing:0.212480pt;}
._a_c00112{margin-left:-7.680000pt;}
._4_c00112{margin-left:-6.018496pt;}
._2_c00112{margin-left:-4.674560pt;}
._5_c00112{margin-left:-3.075648pt;}
._1_c00112{margin-left:-0.966784pt;}
._0_c00112{width:0.993344pt;}
._7_c00112{width:1.981376pt;}
._8_c00112{width:3.191616pt;}
._6_c00112{width:4.812672pt;}
._3_c00112{width:6.018496pt;}
._9_c00112{width:96.145920pt;}
._b_c00112{width:118.032000pt;}
.fs5_c00112{font-size:26.880000pt;}
.fs2_c00112{font-size:34.560000pt;}
.fs6_c00112{font-size:42.880000pt;}
.fs1_c00112{font-size:48.000000pt;}
.fs0_c00112{font-size:53.120000pt;}
.fs4_c00112{font-size:64.000000pt;}
.fs3_c00112{font-size:74.880000pt;}
.y0_c00112{bottom:0.000000pt;}
.y3_c00112{bottom:63.520000pt;}
.y2_c00112{bottom:81.920000pt;}
.y31_c00112{bottom:138.080000pt;}
.y30_c00112{bottom:151.200000pt;}
.y2f_c00112{bottom:164.160000pt;}
.y2e_c00112{bottom:177.280000pt;}
.y2d_c00112{bottom:190.240000pt;}
.y2c_c00112{bottom:200.800000pt;}
.y2b_c00112{bottom:221.602720pt;}
.y2a_c00112{bottom:241.111040pt;}
.y29_c00112{bottom:260.632640pt;}
.y28_c00112{bottom:280.313600pt;}
.y27_c00112{bottom:299.835200pt;}
.y26_c00112{bottom:319.356800pt;}
.y25_c00112{bottom:338.878400pt;}
.y24_c00112{bottom:358.400000pt;}
.y23_c00112{bottom:385.920000pt;}
.y22_c00112{bottom:410.551040pt;}
.y21_c00112{bottom:430.072640pt;}
.y20_c00112{bottom:449.594240pt;}
.y1f_c00112{bottom:469.115840pt;}
.y1e_c00112{bottom:488.637440pt;}
.y1d_c00112{bottom:508.159040pt;}
.y1c_c00112{bottom:527.837280pt;}
.y1b_c00112{bottom:547.345600pt;}
.y1a_c00112{bottom:566.867200pt;}
.y19_c00112{bottom:586.388800pt;}
.y18_c00112{bottom:605.910400pt;}
.y17_c00112{bottom:625.432000pt;}
.y16_c00112{bottom:644.953600pt;}
.y15_c00112{bottom:664.475200pt;}
.y14_c00112{bottom:683.996800pt;}
.y13_c00112{bottom:703.518400pt;}
.y12_c00112{bottom:723.038400pt;}
.y11_c00112{bottom:742.558400pt;}
.y10_c00112{bottom:762.074560pt;}
.yf_c00112{bottom:781.582880pt;}
.ye_c00112{bottom:801.263840pt;}
.yd_c00112{bottom:820.785440pt;}
.yc_c00112{bottom:840.307040pt;}
.yb_c00112{bottom:859.828640pt;}
.ya_c00112{bottom:879.350240pt;}
.y9_c00112{bottom:898.871840pt;}
.y8_c00112{bottom:918.393440pt;}
.y7_c00112{bottom:937.915040pt;}
.y6_c00112{bottom:957.436640pt;}
.y5_c00112{bottom:976.958240pt;}
.y4_c00112{bottom:996.479840pt;}
.y1_c00112{bottom:1034.400000pt;}
.ha_c00112{height:19.293750pt;}
.h3_c00112{height:31.992188pt;}
.h4_c00112{height:38.128125pt;}
.h7_c00112{height:38.139005pt;}
.h5_c00112{height:38.149885pt;}
.h2_c00112{height:38.569063pt;}
.h6_c00112{height:43.372650pt;}
.h9_c00112{height:44.468750pt;}
.h8_c00112{height:61.731562pt;}
.h1_c00112{height:1122.666667pt;}
.h0_c00112{height:1122.720000pt;}
.w0_c00112{width:793.280000pt;}
.w1_c00112{width:793.333333pt;}
.x0_c00112{left:0.000000pt;}
.x1_c00112{left:75.520000pt;}
.x4_c00112{left:88.676000pt;}
.x3_c00112{left:393.120000pt;}
.x2_c00112{left:396.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_76dffc4c866228971d8f9a45.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00113;src:url('chunks/assets/font_7a93c87e1b6ced6d9729c176.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00113;src:url('chunks/assets/font_0209287e0d707bab956ff589.woff2')format("woff");}.ff3_c00113{font-family:ff3_c00113;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00113;src:url('chunks/assets/font_4988024c6b3964cf0533a838.woff2')format("woff");}.ff4_c00113{font-family:ff4_c00113;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00113;src:url('chunks/assets/font_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff5_c00113{font-family:ff5_c00113;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00113{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00113{vertical-align:-15.120000px;}
.v0_c00113{vertical-align:0.000000px;}
.v1_c00113{vertical-align:20.880000px;}
.ls50_c00113{letter-spacing:-0.776880px;}
.ls4e_c00113{letter-spacing:-0.597600px;}
.ls52_c00113{letter-spacing:-0.589680px;}
.ls4c_c00113{letter-spacing:-0.505440px;}
.ls4f_c00113{letter-spacing:-0.418320px;}
.ls46_c00113{letter-spacing:-0.358560px;}
.ls59_c00113{letter-spacing:-0.337680px;}
.ls45_c00113{letter-spacing:-0.336960px;}
.ls40_c00113{letter-spacing:-0.298800px;}
.ls58_c00113{letter-spacing:-0.289440px;}
.ls4a_c00113{letter-spacing:-0.272160px;}
.ls54_c00113{letter-spacing:-0.241200px;}
.ls47_c00113{letter-spacing:-0.239040px;}
.ls53_c00113{letter-spacing:-0.211680px;}
.ls3f_c00113{letter-spacing:-0.179280px;}
.ls57_c00113{letter-spacing:-0.144720px;}
.ls49_c00113{letter-spacing:-0.119520px;}
.ls42_c00113{letter-spacing:-0.059760px;}
.ls43_c00113{letter-spacing:0.000000px;}
.ls55_c00113{letter-spacing:0.048240px;}
.ls28_c00113{letter-spacing:0.059760px;}
.ls44_c00113{letter-spacing:0.084240px;}
.ls56_c00113{letter-spacing:0.096480px;}
.ls48_c00113{letter-spacing:0.119520px;}
.lsb_c00113{letter-spacing:0.168480px;}
.lsa_c00113{letter-spacing:0.173304px;}
.ls0_c00113{letter-spacing:0.179280px;}
.ls1_c00113{letter-spacing:0.185256px;}
.ls1f_c00113{letter-spacing:0.203184px;}
.ls38_c00113{letter-spacing:0.233064px;}
.ls24_c00113{letter-spacing:0.239040px;}
.ls1a_c00113{letter-spacing:0.298800px;}
.ls51_c00113{letter-spacing:0.336960px;}
.ls3a_c00113{letter-spacing:0.337680px;}
.ls41_c00113{letter-spacing:0.358560px;}
.ls3e_c00113{letter-spacing:0.361800px;}
.ls3d_c00113{letter-spacing:0.376272px;}
.ls31_c00113{letter-spacing:0.418320px;}
.ls3c_c00113{letter-spacing:0.424512px;}
.ls4b_c00113{letter-spacing:0.478080px;}
.ls4d_c00113{letter-spacing:0.717120px;}
.ls1d_c00113{letter-spacing:0.830664px;}
.ls9_c00113{letter-spacing:0.890424px;}
.ls1b_c00113{letter-spacing:0.896400px;}
.ls1c_c00113{letter-spacing:0.950184px;}
.ls20_c00113{letter-spacing:1.613520px;}
.ls36_c00113{letter-spacing:1.619496px;}
.ls22_c00113{letter-spacing:1.643400px;}
.ls21_c00113{letter-spacing:1.661328px;}
.ls37_c00113{letter-spacing:1.667304px;}
.ls2a_c00113{letter-spacing:2.318688px;}
.ls29_c00113{letter-spacing:2.324664px;}
.lsc_c00113{letter-spacing:2.330640px;}
.ls32_c00113{letter-spacing:2.336616px;}
.lse_c00113{letter-spacing:2.348568px;}
.ls33_c00113{letter-spacing:2.366496px;}
.lsd_c00113{letter-spacing:2.384424px;}
.ls2c_c00113{letter-spacing:2.993976px;}
.ls2d_c00113{letter-spacing:3.047760px;}
.ls2e_c00113{letter-spacing:3.071664px;}
.ls30_c00113{letter-spacing:3.095568px;}
.ls2f_c00113{letter-spacing:3.101544px;}
.ls4_c00113{letter-spacing:3.227040px;}
.ls27_c00113{letter-spacing:3.653280px;}
.ls14_c00113{letter-spacing:3.764880px;}
.ls23_c00113{letter-spacing:3.776832px;}
.ls16_c00113{letter-spacing:4.464072px;}
.ls12_c00113{letter-spacing:4.482000px;}
.ls34_c00113{letter-spacing:4.493952px;}
.ls15_c00113{letter-spacing:4.499928px;}
.ls17_c00113{letter-spacing:4.505904px;}
.ls1e_c00113{letter-spacing:4.511880px;}
.ls35_c00113{letter-spacing:4.535784px;}
.ls13_c00113{letter-spacing:4.553712px;}
.ls2_c00113{letter-spacing:5.199120px;}
.ls5_c00113{letter-spacing:5.264856px;}
.ls19_c00113{letter-spacing:5.880384px;}
.ls11_c00113{letter-spacing:5.910264px;}
.ls3_c00113{letter-spacing:5.916240px;}
.ls25_c00113{letter-spacing:5.922216px;}
.ls10_c00113{letter-spacing:5.940144px;}
.ls18_c00113{letter-spacing:5.970024px;}
.ls26_c00113{letter-spacing:5.976000px;}
.lsf_c00113{letter-spacing:5.987952px;}
.ls6_c00113{letter-spacing:8.067600px;}
.ls8_c00113{letter-spacing:8.091504px;}
.ls7_c00113{letter-spacing:8.784720px;}
.ls2b_c00113{letter-spacing:46.015200px;}
.ls3b_c00113{letter-spacing:128.777760px;}
.ls39_c00113{letter-spacing:128.800800px;}
.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;}
}
.ws18_c00113{word-spacing:-19.375200px;}
.ws6_c00113{word-spacing:-19.206720px;}
.ws5_c00113{word-spacing:-19.122480px;}
.ws7_c00113{word-spacing:-18.701280px;}
.ws12_c00113{word-spacing:-18.532800px;}
.ws19_c00113{word-spacing:-18.448560px;}
.ws13_c00113{word-spacing:-14.222880px;}
.ws11_c00113{word-spacing:-13.983840px;}
.ws10_c00113{word-spacing:-13.924080px;}
.ws2_c00113{word-spacing:-13.864320px;}
.wsf_c00113{word-spacing:-13.804560px;}
.ws14_c00113{word-spacing:-13.744800px;}
.ws3_c00113{word-spacing:-13.685040px;}
.wsa_c00113{word-spacing:-13.625280px;}
.wsc_c00113{word-spacing:-13.565520px;}
.ws4_c00113{word-spacing:-13.505760px;}
.wse_c00113{word-spacing:-13.446000px;}
.wsb_c00113{word-spacing:-13.386240px;}
.ws0_c00113{word-spacing:-13.326480px;}
.ws9_c00113{word-spacing:-13.266720px;}
.ws1_c00113{word-spacing:-13.206960px;}
.ws8_c00113{word-spacing:-13.147200px;}
.ws16_c00113{word-spacing:-13.087440px;}
.ws15_c00113{word-spacing:-12.908160px;}
.ws17_c00113{word-spacing:-12.728880px;}
.ws1d_c00113{word-spacing:-10.998720px;}
.ws1c_c00113{word-spacing:-10.950480px;}
.ws1e_c00113{word-spacing:-10.757520px;}
.ws1b_c00113{word-spacing:-10.661040px;}
.ws1f_c00113{word-spacing:-10.612800px;}
.ws20_c00113{word-spacing:-10.564560px;}
.wsd_c00113{word-spacing:-8.514720px;}
.ws1a_c00113{word-spacing:-6.622560px;}
.ws25_c00113{word-spacing:-0.298800px;}
.ws24_c00113{word-spacing:-0.084240px;}
.ws21_c00113{word-spacing:0.000000px;}
.ws22_c00113{word-spacing:0.059760px;}
.ws26_c00113{word-spacing:0.239040px;}
.ws23_c00113{word-spacing:0.272160px;}
.ws27_c00113{word-spacing:5.916240px;}
._6_c00113{margin-left:-6.469992px;}
._5_c00113{margin-left:-4.601520px;}
._8_c00113{margin-left:-2.635416px;}
._1_c00113{margin-left:-1.117512px;}
._0_c00113{width:1.374480px;}
._7_c00113{width:2.635416px;}
._3_c00113{width:4.580640px;}
._4_c00113{width:5.791680px;}
._2_c00113{width:108.164160px;}
.fc3_c00113{color:rgb(51,51,255);}
.fc1_c00113{color:rgb(0,0,0);}
.fc2_c00113{color:rgb(49,132,155);}
.fc0_c00113{color:rgb(0,0,255);}
.fs5_c00113{font-size:30.240000px;}
.fs3_c00113{font-size:38.880000px;}
.fs6_c00113{font-size:48.240000px;}
.fs1_c00113{font-size:54.000000px;}
.fs0_c00113{font-size:59.760000px;}
.fs4_c00113{font-size:72.000000px;}
.fs2_c00113{font-size:84.240000px;}
.y0_c00113{bottom:0.000000px;}
.y3_c00113{bottom:71.460000px;}
.y2_c00113{bottom:92.700000px;}
.y2f_c00113{bottom:155.340000px;}
.y2e_c00113{bottom:166.320000px;}
.y2d_c00113{bottom:184.680000px;}
.y2c_c00113{bottom:199.440000px;}
.y2b_c00113{bottom:211.320000px;}
.y2a_c00113{bottom:241.728120px;}
.y29_c00113{bottom:263.689920px;}
.y28_c00113{bottom:285.651720px;}
.y27_c00113{bottom:307.613520px;}
.y26_c00113{bottom:329.575320px;}
.y25_c00113{bottom:351.537120px;}
.y24_c00113{bottom:373.678200px;}
.y23_c00113{bottom:395.636940px;}
.y22_c00113{bottom:417.583800px;}
.y21_c00113{bottom:439.545600px;}
.y20_c00113{bottom:461.507400px;}
.y1f_c00113{bottom:483.469200px;}
.y1e_c00113{bottom:505.431000px;}
.y1d_c00113{bottom:527.392800px;}
.y1c_c00113{bottom:549.354600px;}
.y1b_c00113{bottom:571.316400px;}
.y1a_c00113{bottom:593.278200px;}
.y19_c00113{bottom:615.240000px;}
.y18_c00113{bottom:646.380000px;}
.y17_c00113{bottom:674.094600px;}
.y16_c00113{bottom:696.056400px;}
.y15_c00113{bottom:718.018200px;}
.y14_c00113{bottom:739.976400px;}
.y13_c00113{bottom:761.938200px;}
.y12_c00113{bottom:783.901260px;}
.y11_c00113{bottom:805.848120px;}
.y10_c00113{bottom:827.809920px;}
.yf_c00113{bottom:849.771720px;}
.ye_c00113{bottom:871.733520px;}
.yd_c00113{bottom:893.695320px;}
.yc_c00113{bottom:915.657120px;}
.yb_c00113{bottom:937.618920px;}
.ya_c00113{bottom:959.760000px;}
.y9_c00113{bottom:990.720000px;}
.y8_c00113{bottom:1018.434600px;}
.y7_c00113{bottom:1040.396400px;}
.y6_c00113{bottom:1062.358200px;}
.y5_c00113{bottom:1084.320000px;}
.y4_c00113{bottom:1115.280000px;}
.y1_c00113{bottom:1163.700000px;}
.ha_c00113{height:21.705469px;}
.hb_c00113{height:34.625391px;}
.h3_c00113{height:38.759766px;}
.h6_c00113{height:42.894141px;}
.h2_c00113{height:43.390195px;}
.h8_c00113{height:43.536094px;}
.h5_c00113{height:48.787031px;}
.h7_c00113{height:48.801431px;}
.h9_c00113{height:50.027344px;}
.h4_c00113{height:61.164492px;}
.h1_c00113{height:1263.000000px;}
.h0_c00113{height:1263.060000px;}
.w0_c00113{width:892.440000px;}
.w1_c00113{width:892.500000px;}
.x0_c00113{left:0.000000px;}
.x1_c00113{left:84.960000px;}
.x4_c00113{left:99.900000px;}
.x5_c00113{left:111.911760px;}
.x6_c00113{left:127.440000px;}
.x3_c00113{left:442.260000px;}
.x2_c00113{left:446.040000px;}
@media print{
.v2_c00113{vertical-align:-13.440000pt;}
.v0_c00113{vertical-align:0.000000pt;}
.v1_c00113{vertical-align:18.560000pt;}
.ls50_c00113{letter-spacing:-0.690560pt;}
.ls4e_c00113{letter-spacing:-0.531200pt;}
.ls52_c00113{letter-spacing:-0.524160pt;}
.ls4c_c00113{letter-spacing:-0.449280pt;}
.ls4f_c00113{letter-spacing:-0.371840pt;}
.ls46_c00113{letter-spacing:-0.318720pt;}
.ls59_c00113{letter-spacing:-0.300160pt;}
.ls45_c00113{letter-spacing:-0.299520pt;}
.ls40_c00113{letter-spacing:-0.265600pt;}
.ls58_c00113{letter-spacing:-0.257280pt;}
.ls4a_c00113{letter-spacing:-0.241920pt;}
.ls54_c00113{letter-spacing:-0.214400pt;}
.ls47_c00113{letter-spacing:-0.212480pt;}
.ls53_c00113{letter-spacing:-0.188160pt;}
.ls3f_c00113{letter-spacing:-0.159360pt;}
.ls57_c00113{letter-spacing:-0.128640pt;}
.ls49_c00113{letter-spacing:-0.106240pt;}
.ls42_c00113{letter-spacing:-0.053120pt;}
.ls43_c00113{letter-spacing:0.000000pt;}
.ls55_c00113{letter-spacing:0.042880pt;}
.ls28_c00113{letter-spacing:0.053120pt;}
.ls44_c00113{letter-spacing:0.074880pt;}
.ls56_c00113{letter-spacing:0.085760pt;}
.ls48_c00113{letter-spacing:0.106240pt;}
.lsb_c00113{letter-spacing:0.149760pt;}
.lsa_c00113{letter-spacing:0.154048pt;}
.ls0_c00113{letter-spacing:0.159360pt;}
.ls1_c00113{letter-spacing:0.164672pt;}
.ls1f_c00113{letter-spacing:0.180608pt;}
.ls38_c00113{letter-spacing:0.207168pt;}
.ls24_c00113{letter-spacing:0.212480pt;}
.ls1a_c00113{letter-spacing:0.265600pt;}
.ls51_c00113{letter-spacing:0.299520pt;}
.ls3a_c00113{letter-spacing:0.300160pt;}
.ls41_c00113{letter-spacing:0.318720pt;}
.ls3e_c00113{letter-spacing:0.321600pt;}
.ls3d_c00113{letter-spacing:0.334464pt;}
.ls31_c00113{letter-spacing:0.371840pt;}
.ls3c_c00113{letter-spacing:0.377344pt;}
.ls4b_c00113{letter-spacing:0.424960pt;}
.ls4d_c00113{letter-spacing:0.637440pt;}
.ls1d_c00113{letter-spacing:0.738368pt;}
.ls9_c00113{letter-spacing:0.791488pt;}
.ls1b_c00113{letter-spacing:0.796800pt;}
.ls1c_c00113{letter-spacing:0.844608pt;}
.ls20_c00113{letter-spacing:1.434240pt;}
.ls36_c00113{letter-spacing:1.439552pt;}
.ls22_c00113{letter-spacing:1.460800pt;}
.ls21_c00113{letter-spacing:1.476736pt;}
.ls37_c00113{letter-spacing:1.482048pt;}
.ls2a_c00113{letter-spacing:2.061056pt;}
.ls29_c00113{letter-spacing:2.066368pt;}
.lsc_c00113{letter-spacing:2.071680pt;}
.ls32_c00113{letter-spacing:2.076992pt;}
.lse_c00113{letter-spacing:2.087616pt;}
.ls33_c00113{letter-spacing:2.103552pt;}
.lsd_c00113{letter-spacing:2.119488pt;}
.ls2c_c00113{letter-spacing:2.661312pt;}
.ls2d_c00113{letter-spacing:2.709120pt;}
.ls2e_c00113{letter-spacing:2.730368pt;}
.ls30_c00113{letter-spacing:2.751616pt;}
.ls2f_c00113{letter-spacing:2.756928pt;}
.ls4_c00113{letter-spacing:2.868480pt;}
.ls27_c00113{letter-spacing:3.247360pt;}
.ls14_c00113{letter-spacing:3.346560pt;}
.ls23_c00113{letter-spacing:3.357184pt;}
.ls16_c00113{letter-spacing:3.968064pt;}
.ls12_c00113{letter-spacing:3.984000pt;}
.ls34_c00113{letter-spacing:3.994624pt;}
.ls15_c00113{letter-spacing:3.999936pt;}
.ls17_c00113{letter-spacing:4.005248pt;}
.ls1e_c00113{letter-spacing:4.010560pt;}
.ls35_c00113{letter-spacing:4.031808pt;}
.ls13_c00113{letter-spacing:4.047744pt;}
.ls2_c00113{letter-spacing:4.621440pt;}
.ls5_c00113{letter-spacing:4.679872pt;}
.ls19_c00113{letter-spacing:5.227008pt;}
.ls11_c00113{letter-spacing:5.253568pt;}
.ls3_c00113{letter-spacing:5.258880pt;}
.ls25_c00113{letter-spacing:5.264192pt;}
.ls10_c00113{letter-spacing:5.280128pt;}
.ls18_c00113{letter-spacing:5.306688pt;}
.ls26_c00113{letter-spacing:5.312000pt;}
.lsf_c00113{letter-spacing:5.322624pt;}
.ls6_c00113{letter-spacing:7.171200pt;}
.ls8_c00113{letter-spacing:7.192448pt;}
.ls7_c00113{letter-spacing:7.808640pt;}
.ls2b_c00113{letter-spacing:40.902400pt;}
.ls3b_c00113{letter-spacing:114.469120pt;}
.ls39_c00113{letter-spacing:114.489600pt;}
.ws18_c00113{word-spacing:-17.222400pt;}
.ws6_c00113{word-spacing:-17.072640pt;}
.ws5_c00113{word-spacing:-16.997760pt;}
.ws7_c00113{word-spacing:-16.623360pt;}
.ws12_c00113{word-spacing:-16.473600pt;}
.ws19_c00113{word-spacing:-16.398720pt;}
.ws13_c00113{word-spacing:-12.642560pt;}
.ws11_c00113{word-spacing:-12.430080pt;}
.ws10_c00113{word-spacing:-12.376960pt;}
.ws2_c00113{word-spacing:-12.323840pt;}
.wsf_c00113{word-spacing:-12.270720pt;}
.ws14_c00113{word-spacing:-12.217600pt;}
.ws3_c00113{word-spacing:-12.164480pt;}
.wsa_c00113{word-spacing:-12.111360pt;}
.wsc_c00113{word-spacing:-12.058240pt;}
.ws4_c00113{word-spacing:-12.005120pt;}
.wse_c00113{word-spacing:-11.952000pt;}
.wsb_c00113{word-spacing:-11.898880pt;}
.ws0_c00113{word-spacing:-11.845760pt;}
.ws9_c00113{word-spacing:-11.792640pt;}
.ws1_c00113{word-spacing:-11.739520pt;}
.ws8_c00113{word-spacing:-11.686400pt;}
.ws16_c00113{word-spacing:-11.633280pt;}
.ws15_c00113{word-spacing:-11.473920pt;}
.ws17_c00113{word-spacing:-11.314560pt;}
.ws1d_c00113{word-spacing:-9.776640pt;}
.ws1c_c00113{word-spacing:-9.733760pt;}
.ws1e_c00113{word-spacing:-9.562240pt;}
.ws1b_c00113{word-spacing:-9.476480pt;}
.ws1f_c00113{word-spacing:-9.433600pt;}
.ws20_c00113{word-spacing:-9.390720pt;}
.wsd_c00113{word-spacing:-7.568640pt;}
.ws1a_c00113{word-spacing:-5.886720pt;}
.ws25_c00113{word-spacing:-0.265600pt;}
.ws24_c00113{word-spacing:-0.074880pt;}
.ws21_c00113{word-spacing:0.000000pt;}
.ws22_c00113{word-spacing:0.053120pt;}
.ws26_c00113{word-spacing:0.212480pt;}
.ws23_c00113{word-spacing:0.241920pt;}
.ws27_c00113{word-spacing:5.258880pt;}
._6_c00113{margin-left:-5.751104pt;}
._5_c00113{margin-left:-4.090240pt;}
._8_c00113{margin-left:-2.342592pt;}
._1_c00113{margin-left:-0.993344pt;}
._0_c00113{width:1.221760pt;}
._7_c00113{width:2.342592pt;}
._3_c00113{width:4.071680pt;}
._4_c00113{width:5.148160pt;}
._2_c00113{width:96.145920pt;}
.fs5_c00113{font-size:26.880000pt;}
.fs3_c00113{font-size:34.560000pt;}
.fs6_c00113{font-size:42.880000pt;}
.fs1_c00113{font-size:48.000000pt;}
.fs0_c00113{font-size:53.120000pt;}
.fs4_c00113{font-size:64.000000pt;}
.fs2_c00113{font-size:74.880000pt;}
.y0_c00113{bottom:0.000000pt;}
.y3_c00113{bottom:63.520000pt;}
.y2_c00113{bottom:82.400000pt;}
.y2f_c00113{bottom:138.080000pt;}
.y2e_c00113{bottom:147.840000pt;}
.y2d_c00113{bottom:164.160000pt;}
.y2c_c00113{bottom:177.280000pt;}
.y2b_c00113{bottom:187.840000pt;}
.y2a_c00113{bottom:214.869440pt;}
.y29_c00113{bottom:234.391040pt;}
.y28_c00113{bottom:253.912640pt;}
.y27_c00113{bottom:273.434240pt;}
.y26_c00113{bottom:292.955840pt;}
.y25_c00113{bottom:312.477440pt;}
.y24_c00113{bottom:332.158400pt;}
.y23_c00113{bottom:351.677280pt;}
.y22_c00113{bottom:371.185600pt;}
.y21_c00113{bottom:390.707200pt;}
.y20_c00113{bottom:410.228800pt;}
.y1f_c00113{bottom:429.750400pt;}
.y1e_c00113{bottom:449.272000pt;}
.y1d_c00113{bottom:468.793600pt;}
.y1c_c00113{bottom:488.315200pt;}
.y1b_c00113{bottom:507.836800pt;}
.y1a_c00113{bottom:527.358400pt;}
.y19_c00113{bottom:546.880000pt;}
.y18_c00113{bottom:574.560000pt;}
.y17_c00113{bottom:599.195200pt;}
.y16_c00113{bottom:618.716800pt;}
.y15_c00113{bottom:638.238400pt;}
.y14_c00113{bottom:657.756800pt;}
.y13_c00113{bottom:677.278400pt;}
.y12_c00113{bottom:696.801120pt;}
.y11_c00113{bottom:716.309440pt;}
.y10_c00113{bottom:735.831040pt;}
.yf_c00113{bottom:755.352640pt;}
.ye_c00113{bottom:774.874240pt;}
.yd_c00113{bottom:794.395840pt;}
.yc_c00113{bottom:813.917440pt;}
.yb_c00113{bottom:833.439040pt;}
.ya_c00113{bottom:853.120000pt;}
.y9_c00113{bottom:880.640000pt;}
.y8_c00113{bottom:905.275200pt;}
.y7_c00113{bottom:924.796800pt;}
.y6_c00113{bottom:944.318400pt;}
.y5_c00113{bottom:963.840000pt;}
.y4_c00113{bottom:991.360000pt;}
.y1_c00113{bottom:1034.400000pt;}
.ha_c00113{height:19.293750pt;}
.hb_c00113{height:30.778125pt;}
.h3_c00113{height:34.453125pt;}
.h6_c00113{height:38.128125pt;}
.h2_c00113{height:38.569063pt;}
.h8_c00113{height:38.698750pt;}
.h5_c00113{height:43.366250pt;}
.h7_c00113{height:43.379050pt;}
.h9_c00113{height:44.468750pt;}
.h4_c00113{height:54.368437pt;}
.h1_c00113{height:1122.666667pt;}
.h0_c00113{height:1122.720000pt;}
.w0_c00113{width:793.280000pt;}
.w1_c00113{width:793.333333pt;}
.x0_c00113{left:0.000000pt;}
.x1_c00113{left:75.520000pt;}
.x4_c00113{left:88.800000pt;}
.x5_c00113{left:99.477120pt;}
.x6_c00113{left:113.280000pt;}
.x3_c00113{left:393.120000pt;}
.x2_c00113{left:396.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c11456e0fc9f20e6c7e27c37.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00114;src:url('chunks/assets/font_82cca3a41939e6f3244612bc.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00114;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00114;src:url('chunks/assets/font_4988024c6b3964cf0533a838.woff2')format("woff");}.ff4_c00114{font-family:ff4_c00114;line-height:0.938965;font-style:normal;font-weight:normal;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_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff5_c00114{font-family:ff5_c00114;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00114{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00114{vertical-align:-15.120000px;}
.v0_c00114{vertical-align:0.000000px;}
.v1_c00114{vertical-align:20.927520px;}
.ls39_c00114{letter-spacing:-0.597600px;}
.ls38_c00114{letter-spacing:-0.537840px;}
.ls35_c00114{letter-spacing:-0.504000px;}
.ls2f_c00114{letter-spacing:-0.358560px;}
.ls3c_c00114{letter-spacing:-0.337680px;}
.ls27_c00114{letter-spacing:-0.298800px;}
.ls3a_c00114{letter-spacing:-0.272160px;}
.ls2b_c00114{letter-spacing:-0.252720px;}
.ls2d_c00114{letter-spacing:-0.239040px;}
.ls3b_c00114{letter-spacing:-0.211680px;}
.ls33_c00114{letter-spacing:-0.179280px;}
.ls37_c00114{letter-spacing:-0.119520px;}
.ls28_c00114{letter-spacing:-0.059760px;}
.ls2a_c00114{letter-spacing:0.000000px;}
.ls2e_c00114{letter-spacing:0.059760px;}
.ls2c_c00114{letter-spacing:0.084240px;}
.ls3d_c00114{letter-spacing:0.096480px;}
.ls30_c00114{letter-spacing:0.119520px;}
.lsc_c00114{letter-spacing:0.161352px;}
.ls22_c00114{letter-spacing:0.167328px;}
.ls0_c00114{letter-spacing:0.179280px;}
.ls3_c00114{letter-spacing:0.185256px;}
.ls1_c00114{letter-spacing:0.203184px;}
.ls4_c00114{letter-spacing:0.209160px;}
.ls36_c00114{letter-spacing:0.216000px;}
.ls20_c00114{letter-spacing:0.221112px;}
.lse_c00114{letter-spacing:0.288000px;}
.ls15_c00114{letter-spacing:0.298800px;}
.ls29_c00114{letter-spacing:0.358560px;}
.ls1c_c00114{letter-spacing:0.418320px;}
.ls32_c00114{letter-spacing:0.478080px;}
.ls31_c00114{letter-spacing:0.537840px;}
.ls34_c00114{letter-spacing:0.717120px;}
.ls1a_c00114{letter-spacing:0.896400px;}
.ls1e_c00114{letter-spacing:1.595592px;}
.ls1f_c00114{letter-spacing:1.607544px;}
.ls1b_c00114{letter-spacing:1.613520px;}
.ls1d_c00114{letter-spacing:1.661328px;}
.ls23_c00114{letter-spacing:2.318688px;}
.lsa_c00114{letter-spacing:2.330640px;}
.lsb_c00114{letter-spacing:2.336616px;}
.ls10_c00114{letter-spacing:3.029832px;}
.ls8_c00114{letter-spacing:3.047760px;}
.ls9_c00114{letter-spacing:3.077640px;}
.lsd_c00114{letter-spacing:3.764880px;}
.ls21_c00114{letter-spacing:3.776832px;}
.ls25_c00114{letter-spacing:4.134960px;}
.ls14_c00114{letter-spacing:4.482000px;}
.ls16_c00114{letter-spacing:4.517856px;}
.ls24_c00114{letter-spacing:5.193144px;}
.lsf_c00114{letter-spacing:5.199120px;}
.ls17_c00114{letter-spacing:5.916240px;}
.ls19_c00114{letter-spacing:5.993928px;}
.ls18_c00114{letter-spacing:6.633360px;}
.ls13_c00114{letter-spacing:8.061624px;}
.ls11_c00114{letter-spacing:8.067600px;}
.ls12_c00114{letter-spacing:8.115408px;}
.ls6_c00114{letter-spacing:13.147200px;}
.ls7_c00114{letter-spacing:13.864320px;}
.ls5_c00114{letter-spacing:46.015200px;}
.ls2_c00114{letter-spacing:65.959920px;}
.ls26_c00114{letter-spacing:128.800800px;}
.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;}
}
.ws6_c00114{word-spacing:-19.122480px;}
.ws11_c00114{word-spacing:-16.488000px;}
.ws10_c00114{word-spacing:-15.768000px;}
.wsa_c00114{word-spacing:-14.402160px;}
.wsf_c00114{word-spacing:-14.222880px;}
.wsc_c00114{word-spacing:-14.043600px;}
.wsd_c00114{word-spacing:-13.983840px;}
.ws15_c00114{word-spacing:-13.924080px;}
.ws4_c00114{word-spacing:-13.864320px;}
.ws3_c00114{word-spacing:-13.804560px;}
.ws2_c00114{word-spacing:-13.685040px;}
.wsb_c00114{word-spacing:-13.625280px;}
.ws8_c00114{word-spacing:-13.565520px;}
.ws5_c00114{word-spacing:-13.505760px;}
.ws1_c00114{word-spacing:-13.446000px;}
.ws12_c00114{word-spacing:-13.386240px;}
.wse_c00114{word-spacing:-13.326480px;}
.ws7_c00114{word-spacing:-13.266720px;}
.ws0_c00114{word-spacing:-13.206960px;}
.ws9_c00114{word-spacing:-13.147200px;}
.ws13_c00114{word-spacing:-12.967920px;}
.ws14_c00114{word-spacing:-12.908160px;}
.ws19_c00114{word-spacing:-10.998720px;}
.ws18_c00114{word-spacing:-10.564560px;}
.ws16_c00114{word-spacing:-8.514720px;}
.ws17_c00114{word-spacing:-6.622560px;}
.ws1c_c00114{word-spacing:-0.298800px;}
.ws1a_c00114{word-spacing:0.000000px;}
.ws1e_c00114{word-spacing:0.059760px;}
.ws1d_c00114{word-spacing:0.239040px;}
.ws1b_c00114{word-spacing:0.252720px;}
._7_c00114{margin-left:-7.852464px;}
._4_c00114{margin-left:-5.527800px;}
._2_c00114{margin-left:-3.023856px;}
._1_c00114{margin-left:-1.087632px;}
._0_c00114{width:1.117512px;}
._9_c00114{width:2.175264px;}
._3_c00114{width:3.866472px;}
._6_c00114{width:5.378400px;}
._5_c00114{width:6.806664px;}
._8_c00114{width:8.689104px;}
.fc1_c00114{color:rgb(0,0,255);}
.fc0_c00114{color:rgb(0,0,0);}
.fs5_c00114{font-size:30.240000px;}
.fs4_c00114{font-size:38.880000px;}
.fs6_c00114{font-size:48.240000px;}
.fs1_c00114{font-size:54.000000px;}
.fs0_c00114{font-size:59.760000px;}
.fs3_c00114{font-size:72.000000px;}
.fs2_c00114{font-size:84.240000px;}
.y0_c00114{bottom:0.000000px;}
.y3_c00114{bottom:71.460000px;}
.y2_c00114{bottom:92.160000px;}
.y22_c00114{bottom:155.340000px;}
.y21_c00114{bottom:167.220000px;}
.y20_c00114{bottom:480.588120px;}
.y1f_c00114{bottom:502.549920px;}
.y1e_c00114{bottom:524.691000px;}
.y1d_c00114{bottom:546.652800px;}
.y1c_c00114{bottom:568.614600px;}
.y1b_c00114{bottom:590.576400px;}
.y1a_c00114{bottom:612.538200px;}
.y19_c00114{bottom:634.504140px;}
.y18_c00114{bottom:656.451000px;}
.y17_c00114{bottom:678.412800px;}
.y16_c00114{bottom:700.374600px;}
.y15_c00114{bottom:722.336400px;}
.y14_c00114{bottom:744.298200px;}
.y13_c00114{bottom:766.260000px;}
.y12_c00114{bottom:795.780000px;}
.y11_c00114{bottom:820.599120px;}
.y10_c00114{bottom:842.560920px;}
.yf_c00114{bottom:864.522720px;}
.ye_c00114{bottom:886.484520px;}
.yd_c00114{bottom:908.446320px;}
.yc_c00114{bottom:930.587400px;}
.yb_c00114{bottom:952.549200px;}
.ya_c00114{bottom:974.511000px;}
.y9_c00114{bottom:996.472800px;}
.y8_c00114{bottom:1018.434600px;}
.y7_c00114{bottom:1040.396400px;}
.y6_c00114{bottom:1062.358200px;}
.y5_c00114{bottom:1084.320000px;}
.y4_c00114{bottom:1115.280000px;}
.y1_c00114{bottom:1163.700000px;}
.ha_c00114{height:21.705469px;}
.h3_c00114{height:35.991211px;}
.h5_c00114{height:42.894141px;}
.h2_c00114{height:43.390195px;}
.h6_c00114{height:43.536094px;}
.h8_c00114{height:48.834551px;}
.h9_c00114{height:50.027344px;}
.h7_c00114{height:52.277344px;}
.h4_c00114{height:61.164492px;}
.h1_c00114{height:1263.000000px;}
.h0_c00114{height:1263.060000px;}
.w0_c00114{width:892.440000px;}
.w1_c00114{width:892.500000px;}
.x0_c00114{left:0.000000px;}
.x1_c00114{left:84.960000px;}
.x4_c00114{left:99.914940px;}
.x5_c00114{left:112.001400px;}
.x3_c00114{left:442.260000px;}
.x2_c00114{left:446.040000px;}
@media print{
.v2_c00114{vertical-align:-13.440000pt;}
.v0_c00114{vertical-align:0.000000pt;}
.v1_c00114{vertical-align:18.602240pt;}
.ls39_c00114{letter-spacing:-0.531200pt;}
.ls38_c00114{letter-spacing:-0.478080pt;}
.ls35_c00114{letter-spacing:-0.448000pt;}
.ls2f_c00114{letter-spacing:-0.318720pt;}
.ls3c_c00114{letter-spacing:-0.300160pt;}
.ls27_c00114{letter-spacing:-0.265600pt;}
.ls3a_c00114{letter-spacing:-0.241920pt;}
.ls2b_c00114{letter-spacing:-0.224640pt;}
.ls2d_c00114{letter-spacing:-0.212480pt;}
.ls3b_c00114{letter-spacing:-0.188160pt;}
.ls33_c00114{letter-spacing:-0.159360pt;}
.ls37_c00114{letter-spacing:-0.106240pt;}
.ls28_c00114{letter-spacing:-0.053120pt;}
.ls2a_c00114{letter-spacing:0.000000pt;}
.ls2e_c00114{letter-spacing:0.053120pt;}
.ls2c_c00114{letter-spacing:0.074880pt;}
.ls3d_c00114{letter-spacing:0.085760pt;}
.ls30_c00114{letter-spacing:0.106240pt;}
.lsc_c00114{letter-spacing:0.143424pt;}
.ls22_c00114{letter-spacing:0.148736pt;}
.ls0_c00114{letter-spacing:0.159360pt;}
.ls3_c00114{letter-spacing:0.164672pt;}
.ls1_c00114{letter-spacing:0.180608pt;}
.ls4_c00114{letter-spacing:0.185920pt;}
.ls36_c00114{letter-spacing:0.192000pt;}
.ls20_c00114{letter-spacing:0.196544pt;}
.lse_c00114{letter-spacing:0.256000pt;}
.ls15_c00114{letter-spacing:0.265600pt;}
.ls29_c00114{letter-spacing:0.318720pt;}
.ls1c_c00114{letter-spacing:0.371840pt;}
.ls32_c00114{letter-spacing:0.424960pt;}
.ls31_c00114{letter-spacing:0.478080pt;}
.ls34_c00114{letter-spacing:0.637440pt;}
.ls1a_c00114{letter-spacing:0.796800pt;}
.ls1e_c00114{letter-spacing:1.418304pt;}
.ls1f_c00114{letter-spacing:1.428928pt;}
.ls1b_c00114{letter-spacing:1.434240pt;}
.ls1d_c00114{letter-spacing:1.476736pt;}
.ls23_c00114{letter-spacing:2.061056pt;}
.lsa_c00114{letter-spacing:2.071680pt;}
.lsb_c00114{letter-spacing:2.076992pt;}
.ls10_c00114{letter-spacing:2.693184pt;}
.ls8_c00114{letter-spacing:2.709120pt;}
.ls9_c00114{letter-spacing:2.735680pt;}
.lsd_c00114{letter-spacing:3.346560pt;}
.ls21_c00114{letter-spacing:3.357184pt;}
.ls25_c00114{letter-spacing:3.675520pt;}
.ls14_c00114{letter-spacing:3.984000pt;}
.ls16_c00114{letter-spacing:4.015872pt;}
.ls24_c00114{letter-spacing:4.616128pt;}
.lsf_c00114{letter-spacing:4.621440pt;}
.ls17_c00114{letter-spacing:5.258880pt;}
.ls19_c00114{letter-spacing:5.327936pt;}
.ls18_c00114{letter-spacing:5.896320pt;}
.ls13_c00114{letter-spacing:7.165888pt;}
.ls11_c00114{letter-spacing:7.171200pt;}
.ls12_c00114{letter-spacing:7.213696pt;}
.ls6_c00114{letter-spacing:11.686400pt;}
.ls7_c00114{letter-spacing:12.323840pt;}
.ls5_c00114{letter-spacing:40.902400pt;}
.ls2_c00114{letter-spacing:58.631040pt;}
.ls26_c00114{letter-spacing:114.489600pt;}
.ws6_c00114{word-spacing:-16.997760pt;}
.ws11_c00114{word-spacing:-14.656000pt;}
.ws10_c00114{word-spacing:-14.016000pt;}
.wsa_c00114{word-spacing:-12.801920pt;}
.wsf_c00114{word-spacing:-12.642560pt;}
.wsc_c00114{word-spacing:-12.483200pt;}
.wsd_c00114{word-spacing:-12.430080pt;}
.ws15_c00114{word-spacing:-12.376960pt;}
.ws4_c00114{word-spacing:-12.323840pt;}
.ws3_c00114{word-spacing:-12.270720pt;}
.ws2_c00114{word-spacing:-12.164480pt;}
.wsb_c00114{word-spacing:-12.111360pt;}
.ws8_c00114{word-spacing:-12.058240pt;}
.ws5_c00114{word-spacing:-12.005120pt;}
.ws1_c00114{word-spacing:-11.952000pt;}
.ws12_c00114{word-spacing:-11.898880pt;}
.wse_c00114{word-spacing:-11.845760pt;}
.ws7_c00114{word-spacing:-11.792640pt;}
.ws0_c00114{word-spacing:-11.739520pt;}
.ws9_c00114{word-spacing:-11.686400pt;}
.ws13_c00114{word-spacing:-11.527040pt;}
.ws14_c00114{word-spacing:-11.473920pt;}
.ws19_c00114{word-spacing:-9.776640pt;}
.ws18_c00114{word-spacing:-9.390720pt;}
.ws16_c00114{word-spacing:-7.568640pt;}
.ws17_c00114{word-spacing:-5.886720pt;}
.ws1c_c00114{word-spacing:-0.265600pt;}
.ws1a_c00114{word-spacing:0.000000pt;}
.ws1e_c00114{word-spacing:0.053120pt;}
.ws1d_c00114{word-spacing:0.212480pt;}
.ws1b_c00114{word-spacing:0.224640pt;}
._7_c00114{margin-left:-6.979968pt;}
._4_c00114{margin-left:-4.913600pt;}
._2_c00114{margin-left:-2.687872pt;}
._1_c00114{margin-left:-0.966784pt;}
._0_c00114{width:0.993344pt;}
._9_c00114{width:1.933568pt;}
._3_c00114{width:3.436864pt;}
._6_c00114{width:4.780800pt;}
._5_c00114{width:6.050368pt;}
._8_c00114{width:7.723648pt;}
.fs5_c00114{font-size:26.880000pt;}
.fs4_c00114{font-size:34.560000pt;}
.fs6_c00114{font-size:42.880000pt;}
.fs1_c00114{font-size:48.000000pt;}
.fs0_c00114{font-size:53.120000pt;}
.fs3_c00114{font-size:64.000000pt;}
.fs2_c00114{font-size:74.880000pt;}
.y0_c00114{bottom:0.000000pt;}
.y3_c00114{bottom:63.520000pt;}
.y2_c00114{bottom:81.920000pt;}
.y22_c00114{bottom:138.080000pt;}
.y21_c00114{bottom:148.640000pt;}
.y20_c00114{bottom:427.189440pt;}
.y1f_c00114{bottom:446.711040pt;}
.y1e_c00114{bottom:466.392000pt;}
.y1d_c00114{bottom:485.913600pt;}
.y1c_c00114{bottom:505.435200pt;}
.y1b_c00114{bottom:524.956800pt;}
.y1a_c00114{bottom:544.478400pt;}
.y19_c00114{bottom:564.003680pt;}
.y18_c00114{bottom:583.512000pt;}
.y17_c00114{bottom:603.033600pt;}
.y16_c00114{bottom:622.555200pt;}
.y15_c00114{bottom:642.076800pt;}
.y14_c00114{bottom:661.598400pt;}
.y13_c00114{bottom:681.120000pt;}
.y12_c00114{bottom:707.360000pt;}
.y11_c00114{bottom:729.421440pt;}
.y10_c00114{bottom:748.943040pt;}
.yf_c00114{bottom:768.464640pt;}
.ye_c00114{bottom:787.986240pt;}
.yd_c00114{bottom:807.507840pt;}
.yc_c00114{bottom:827.188800pt;}
.yb_c00114{bottom:846.710400pt;}
.ya_c00114{bottom:866.232000pt;}
.y9_c00114{bottom:885.753600pt;}
.y8_c00114{bottom:905.275200pt;}
.y7_c00114{bottom:924.796800pt;}
.y6_c00114{bottom:944.318400pt;}
.y5_c00114{bottom:963.840000pt;}
.y4_c00114{bottom:991.360000pt;}
.y1_c00114{bottom:1034.400000pt;}
.ha_c00114{height:19.293750pt;}
.h3_c00114{height:31.992188pt;}
.h5_c00114{height:38.128125pt;}
.h2_c00114{height:38.569063pt;}
.h6_c00114{height:38.698750pt;}
.h8_c00114{height:43.408490pt;}
.h9_c00114{height:44.468750pt;}
.h7_c00114{height:46.468750pt;}
.h4_c00114{height:54.368437pt;}
.h1_c00114{height:1122.666667pt;}
.h0_c00114{height:1122.720000pt;}
.w0_c00114{width:793.280000pt;}
.w1_c00114{width:793.333333pt;}
.x0_c00114{left:0.000000pt;}
.x1_c00114{left:75.520000pt;}
.x4_c00114{left:88.813280pt;}
.x5_c00114{left:99.556800pt;}
.x3_c00114{left:393.120000pt;}
.x2_c00114{left:396.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4f3a1655d93ca2d2de8735d0.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:0.981934;font-style:normal;font-weight:normal;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_7e1ff97ba95991cd6754142f.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:0.981934;font-style:normal;font-weight:normal;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_c1589f3a3eb8388715b5d95d.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00115;src:url('chunks/assets/font_dfe482d467d5d4daf25e2486.woff2')format("woff");}.ff4_c00115{font-family:ff4_c00115;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00115;src:url('chunks/assets/font_9f2b84ad05765d00b9801456.woff2')format("woff");}.ff5_c00115{font-family:ff5_c00115;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00115{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00115{vertical-align:-21.600000px;}
.v3_c00115{vertical-align:-15.600000px;}
.v0_c00115{vertical-align:0.000000px;}
.v1_c00115{vertical-align:21.600000px;}
.ls11_c00115{letter-spacing:-0.420000px;}
.lse_c00115{letter-spacing:-0.384000px;}
.ls9_c00115{letter-spacing:-0.336000px;}
.lsd_c00115{letter-spacing:-0.240000px;}
.lsb_c00115{letter-spacing:-0.192000px;}
.lsf_c00115{letter-spacing:-0.144000px;}
.ls8_c00115{letter-spacing:-0.048000px;}
.ls7_c00115{letter-spacing:0.000000px;}
.ls12_c00115{letter-spacing:0.120000px;}
.ls3_c00115{letter-spacing:0.180000px;}
.ls0_c00115{letter-spacing:0.264000px;}
.ls5_c00115{letter-spacing:0.300000px;}
.ls1_c00115{letter-spacing:0.322800px;}
.lsc_c00115{letter-spacing:0.336000px;}
.ls4_c00115{letter-spacing:0.382800px;}
.ls2_c00115{letter-spacing:0.390000px;}
.ls14_c00115{letter-spacing:0.420000px;}
.ls13_c00115{letter-spacing:0.480000px;}
.ls6_c00115{letter-spacing:0.540000px;}
.lsa_c00115{letter-spacing:0.576000px;}
.ls10_c00115{letter-spacing:1.260000px;}
.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;}
}
.ws9_c00115{word-spacing:-14.820000px;}
.ws3_c00115{word-spacing:-13.560000px;}
.wsa_c00115{word-spacing:-13.140000px;}
.ws2_c00115{word-spacing:-11.424000px;}
.ws1_c00115{word-spacing:-10.848000px;}
.ws8_c00115{word-spacing:-10.704000px;}
.ws5_c00115{word-spacing:-10.656000px;}
.ws6_c00115{word-spacing:-10.608000px;}
.ws0_c00115{word-spacing:-10.512000px;}
.ws7_c00115{word-spacing:-10.464000px;}
.ws4_c00115{word-spacing:-8.949600px;}
.wsb_c00115{word-spacing:0.000000px;}
.wsc_c00115{word-spacing:1.494000px;}
._a_c00115{margin-left:-2.370000px;}
._0_c00115{margin-left:-1.320000px;}
._1_c00115{width:1.122000px;}
._6_c00115{width:2.172000px;}
._9_c00115{width:3.360000px;}
._e_c00115{width:4.518000px;}
._c_c00115{width:5.538000px;}
._d_c00115{width:6.570000px;}
._7_c00115{width:47.166000px;}
._8_c00115{width:48.492000px;}
._3_c00115{width:91.302000px;}
._b_c00115{width:108.828000px;}
._2_c00115{width:261.750000px;}
._4_c00115{width:304.614000px;}
._5_c00115{width:328.230000px;}
.fc2_c00115{color:rgb(255,0,0);}
.fc1_c00115{color:rgb(0,0,0);}
.fc0_c00115{color:rgb(0,0,255);}
.fs5_c00115{font-size:30.000000px;}
.fs4_c00115{font-size:39.600000px;}
.fs1_c00115{font-size:48.000000px;}
.fs2_c00115{font-size:60.000000px;}
.fs0_c00115{font-size:72.000000px;}
.fs6_c00115{font-size:84.000000px;}
.fs3_c00115{font-size:120.000000px;}
.y0_c00115{bottom:0.000000px;}
.y2_c00115{bottom:15.285000px;}
.yd_c00115{bottom:67.537500px;}
.yc_c00115{bottom:85.237500px;}
.yb_c00115{bottom:99.937500px;}
.ya_c00115{bottom:114.637500px;}
.y9_c00115{bottom:129.337500px;}
.y8_c00115{bottom:143.737500px;}
.y7_c00115{bottom:158.730000px;}
.y2a_c00115{bottom:211.575000px;}
.y29_c00115{bottom:233.475000px;}
.y28_c00115{bottom:255.375000px;}
.y27_c00115{bottom:277.275000px;}
.y26_c00115{bottom:308.475000px;}
.y25_c00115{bottom:358.005000px;}
.y24_c00115{bottom:380.205000px;}
.y23_c00115{bottom:402.120000px;}
.y22_c00115{bottom:424.005000px;}
.y21_c00115{bottom:445.905000px;}
.y20_c00115{bottom:468.120000px;}
.y1f_c00115{bottom:490.005000px;}
.y1e_c00115{bottom:511.950000px;}
.y1d_c00115{bottom:543.150000px;}
.y1c_c00115{bottom:596.550000px;}
.y1b_c00115{bottom:625.950000px;}
.y1a_c00115{bottom:672.750000px;}
.y19_c00115{bottom:694.695000px;}
.y18_c00115{bottom:716.595000px;}
.y17_c00115{bottom:746.280000px;}
.y16_c00115{bottom:836.295000px;}
.y15_c00115{bottom:851.025000px;}
.y14_c00115{bottom:865.725000px;}
.y13_c00115{bottom:895.125000px;}
.y12_c00115{bottom:913.725000px;}
.y11_c00115{bottom:928.125000px;}
.y10_c00115{bottom:942.825000px;}
.yf_c00115{bottom:954.225000px;}
.ye_c00115{bottom:1006.725000px;}
.y6_c00115{bottom:1075.455000px;}
.y5_c00115{bottom:1090.170000px;}
.y4_c00115{bottom:1104.870000px;}
.y3_c00115{bottom:1119.570000px;}
.y1_c00115{bottom:1145.670000px;}
.h9_c00115{height:21.533203px;}
.h1_c00115{height:32.400000px;}
.h3_c00115{height:34.453125px;}
.h4_c00115{height:38.578125px;}
.h5_c00115{height:38.625000px;}
.ha_c00115{height:43.066406px;}
.h6_c00115{height:48.222656px;}
.hc_c00115{height:48.281250px;}
.hd_c00115{height:49.963828px;}
.h8_c00115{height:50.023828px;}
.he_c00115{height:50.083828px;}
.h2_c00115{height:57.867188px;}
.hb_c00115{height:67.511719px;}
.h7_c00115{height:96.445312px;}
.h0_c00115{height:1263.000000px;}
.w2_c00115{width:739.125000px;}
.w0_c00115{width:893.100000px;}
.w1_c00115{width:893.250000px;}
.x0_c00115{left:0.000000px;}
.x2_c00115{left:7.800000px;}
.x1_c00115{left:77.137500px;}
.x3_c00115{left:84.937500px;}
.x4_c00115{left:442.650000px;}
@media print{
.v2_c00115{vertical-align:-19.200000pt;}
.v3_c00115{vertical-align:-13.866667pt;}
.v0_c00115{vertical-align:0.000000pt;}
.v1_c00115{vertical-align:19.200000pt;}
.ls11_c00115{letter-spacing:-0.373333pt;}
.lse_c00115{letter-spacing:-0.341333pt;}
.ls9_c00115{letter-spacing:-0.298667pt;}
.lsd_c00115{letter-spacing:-0.213333pt;}
.lsb_c00115{letter-spacing:-0.170667pt;}
.lsf_c00115{letter-spacing:-0.128000pt;}
.ls8_c00115{letter-spacing:-0.042667pt;}
.ls7_c00115{letter-spacing:0.000000pt;}
.ls12_c00115{letter-spacing:0.106667pt;}
.ls3_c00115{letter-spacing:0.160000pt;}
.ls0_c00115{letter-spacing:0.234667pt;}
.ls5_c00115{letter-spacing:0.266667pt;}
.ls1_c00115{letter-spacing:0.286933pt;}
.lsc_c00115{letter-spacing:0.298667pt;}
.ls4_c00115{letter-spacing:0.340267pt;}
.ls2_c00115{letter-spacing:0.346667pt;}
.ls14_c00115{letter-spacing:0.373333pt;}
.ls13_c00115{letter-spacing:0.426667pt;}
.ls6_c00115{letter-spacing:0.480000pt;}
.lsa_c00115{letter-spacing:0.512000pt;}
.ls10_c00115{letter-spacing:1.120000pt;}
.ws9_c00115{word-spacing:-13.173333pt;}
.ws3_c00115{word-spacing:-12.053333pt;}
.wsa_c00115{word-spacing:-11.680000pt;}
.ws2_c00115{word-spacing:-10.154667pt;}
.ws1_c00115{word-spacing:-9.642667pt;}
.ws8_c00115{word-spacing:-9.514667pt;}
.ws5_c00115{word-spacing:-9.472000pt;}
.ws6_c00115{word-spacing:-9.429333pt;}
.ws0_c00115{word-spacing:-9.344000pt;}
.ws7_c00115{word-spacing:-9.301333pt;}
.ws4_c00115{word-spacing:-7.955200pt;}
.wsb_c00115{word-spacing:0.000000pt;}
.wsc_c00115{word-spacing:1.328000pt;}
._a_c00115{margin-left:-2.106667pt;}
._0_c00115{margin-left:-1.173333pt;}
._1_c00115{width:0.997333pt;}
._6_c00115{width:1.930667pt;}
._9_c00115{width:2.986667pt;}
._e_c00115{width:4.016000pt;}
._c_c00115{width:4.922667pt;}
._d_c00115{width:5.840000pt;}
._7_c00115{width:41.925333pt;}
._8_c00115{width:43.104000pt;}
._3_c00115{width:81.157333pt;}
._b_c00115{width:96.736000pt;}
._2_c00115{width:232.666667pt;}
._4_c00115{width:270.768000pt;}
._5_c00115{width:291.760000pt;}
.fs5_c00115{font-size:26.666667pt;}
.fs4_c00115{font-size:35.200000pt;}
.fs1_c00115{font-size:42.666667pt;}
.fs2_c00115{font-size:53.333333pt;}
.fs0_c00115{font-size:64.000000pt;}
.fs6_c00115{font-size:74.666667pt;}
.fs3_c00115{font-size:106.666667pt;}
.y0_c00115{bottom:0.000000pt;}
.y2_c00115{bottom:13.586667pt;}
.yd_c00115{bottom:60.033333pt;}
.yc_c00115{bottom:75.766667pt;}
.yb_c00115{bottom:88.833333pt;}
.ya_c00115{bottom:101.900000pt;}
.y9_c00115{bottom:114.966667pt;}
.y8_c00115{bottom:127.766667pt;}
.y7_c00115{bottom:141.093333pt;}
.y2a_c00115{bottom:188.066667pt;}
.y29_c00115{bottom:207.533333pt;}
.y28_c00115{bottom:227.000000pt;}
.y27_c00115{bottom:246.466667pt;}
.y26_c00115{bottom:274.200000pt;}
.y25_c00115{bottom:318.226667pt;}
.y24_c00115{bottom:337.960000pt;}
.y23_c00115{bottom:357.440000pt;}
.y22_c00115{bottom:376.893333pt;}
.y21_c00115{bottom:396.360000pt;}
.y20_c00115{bottom:416.106667pt;}
.y1f_c00115{bottom:435.560000pt;}
.y1e_c00115{bottom:455.066667pt;}
.y1d_c00115{bottom:482.800000pt;}
.y1c_c00115{bottom:530.266667pt;}
.y1b_c00115{bottom:556.400000pt;}
.y1a_c00115{bottom:598.000000pt;}
.y19_c00115{bottom:617.506667pt;}
.y18_c00115{bottom:636.973333pt;}
.y17_c00115{bottom:663.360000pt;}
.y16_c00115{bottom:743.373333pt;}
.y15_c00115{bottom:756.466667pt;}
.y14_c00115{bottom:769.533333pt;}
.y13_c00115{bottom:795.666667pt;}
.y12_c00115{bottom:812.200000pt;}
.y11_c00115{bottom:825.000000pt;}
.y10_c00115{bottom:838.066667pt;}
.yf_c00115{bottom:848.200000pt;}
.ye_c00115{bottom:894.866667pt;}
.y6_c00115{bottom:955.960000pt;}
.y5_c00115{bottom:969.040000pt;}
.y4_c00115{bottom:982.106667pt;}
.y3_c00115{bottom:995.173333pt;}
.y1_c00115{bottom:1018.373333pt;}
.h9_c00115{height:19.140625pt;}
.h1_c00115{height:28.800000pt;}
.h3_c00115{height:30.625000pt;}
.h4_c00115{height:34.291667pt;}
.h5_c00115{height:34.333333pt;}
.ha_c00115{height:38.281250pt;}
.h6_c00115{height:42.864583pt;}
.hc_c00115{height:42.916667pt;}
.hd_c00115{height:44.412292pt;}
.h8_c00115{height:44.465625pt;}
.he_c00115{height:44.518958pt;}
.h2_c00115{height:51.437500pt;}
.hb_c00115{height:60.010417pt;}
.h7_c00115{height:85.729167pt;}
.h0_c00115{height:1122.666667pt;}
.w2_c00115{width:657.000000pt;}
.w0_c00115{width:793.866667pt;}
.w1_c00115{width:794.000000pt;}
.x0_c00115{left:0.000000pt;}
.x2_c00115{left:6.933333pt;}
.x1_c00115{left:68.566667pt;}
.x3_c00115{left:75.500000pt;}
.x4_c00115{left:393.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_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_48d2820720e894a5f8aecf1f.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:0.981934;font-style:normal;font-weight:normal;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_0557fc58aa622a66649da881.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00116;src:url('chunks/assets/font_7e1ff97ba95991cd6754142f.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:0.981934;font-style: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;}
.v1_c00116{vertical-align:21.660000px;}
.lsf_c00116{letter-spacing:-0.420000px;}
.ls9_c00116{letter-spacing:-0.300000px;}
.lsd_c00116{letter-spacing:-0.120000px;}
.ls6_c00116{letter-spacing:0.000000px;}
.ls7_c00116{letter-spacing:0.060000px;}
.lsc_c00116{letter-spacing:0.120000px;}
.ls0_c00116{letter-spacing:0.168000px;}
.ls4_c00116{letter-spacing:0.262800px;}
.ls10_c00116{letter-spacing:0.300000px;}
.ls1_c00116{letter-spacing:0.322800px;}
.ls2_c00116{letter-spacing:0.382800px;}
.lsb_c00116{letter-spacing:0.480000px;}
.lsa_c00116{letter-spacing:0.540000px;}
.lse_c00116{letter-spacing:0.600000px;}
.ls3_c00116{letter-spacing:0.780000px;}
.ls8_c00116{letter-spacing:3.240000px;}
.ls5_c00116{letter-spacing:11.640000px;}
.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;}
}
.ws6_c00116{word-spacing:-14.160000px;}
.ws8_c00116{word-spacing:-14.100000px;}
.ws7_c00116{word-spacing:-13.860000px;}
.ws4_c00116{word-spacing:-13.680000px;}
.ws1_c00116{word-spacing:-13.620000px;}
.ws0_c00116{word-spacing:-13.560000px;}
.ws5_c00116{word-spacing:-13.440000px;}
.ws2_c00116{word-spacing:-13.260000px;}
.ws9_c00116{word-spacing:-8.949600px;}
.ws3_c00116{word-spacing:-8.649600px;}
.wsa_c00116{word-spacing:0.000000px;}
._0_c00116{margin-left:-1.080000px;}
._1_c00116{width:1.140000px;}
._6_c00116{width:2.430000px;}
._5_c00116{width:3.840000px;}
._9_c00116{width:4.890000px;}
._4_c00116{width:6.120000px;}
._2_c00116{width:7.380000px;}
._3_c00116{width:8.970000px;}
._7_c00116{width:9.990000px;}
._a_c00116{width:11.040000px;}
._b_c00116{width:12.060000px;}
._8_c00116{width:108.828000px;}
.fc1_c00116{color:rgb(0,0,0);}
.fc0_c00116{color:rgb(0,0,255);}
.fs2_c00116{font-size:39.600000px;}
.fs0_c00116{font-size:60.000000px;}
.fs1_c00116{font-size:84.000000px;}
.y0_c00116{bottom:0.000000px;}
.y2_c00116{bottom:71.137500px;}
.y28_c00116{bottom:146.437500px;}
.y27_c00116{bottom:168.330000px;}
.y26_c00116{bottom:190.275000px;}
.y25_c00116{bottom:212.175000px;}
.y24_c00116{bottom:256.275000px;}
.y23_c00116{bottom:278.175000px;}
.y22_c00116{bottom:300.075000px;}
.y21_c00116{bottom:322.275000px;}
.y20_c00116{bottom:366.120000px;}
.y1f_c00116{bottom:388.005000px;}
.y1e_c00116{bottom:432.120000px;}
.y1d_c00116{bottom:454.005000px;}
.y1c_c00116{bottom:475.920000px;}
.y1b_c00116{bottom:498.120000px;}
.y1a_c00116{bottom:520.050000px;}
.y19_c00116{bottom:541.950000px;}
.y18_c00116{bottom:563.850000px;}
.y17_c00116{bottom:595.050000px;}
.y16_c00116{bottom:644.550000px;}
.y15_c00116{bottom:666.750000px;}
.y14_c00116{bottom:688.695000px;}
.y13_c00116{bottom:710.595000px;}
.y12_c00116{bottom:732.495000px;}
.y11_c00116{bottom:776.580000px;}
.y10_c00116{bottom:798.495000px;}
.yf_c00116{bottom:820.395000px;}
.ye_c00116{bottom:842.580000px;}
.yd_c00116{bottom:864.525000px;}
.yc_c00116{bottom:886.425000px;}
.yb_c00116{bottom:908.325000px;}
.ya_c00116{bottom:930.525000px;}
.y9_c00116{bottom:952.425000px;}
.y8_c00116{bottom:983.325000px;}
.y7_c00116{bottom:1033.170000px;}
.y6_c00116{bottom:1055.070000px;}
.y5_c00116{bottom:1076.955000px;}
.y4_c00116{bottom:1099.170000px;}
.y3_c00116{bottom:1121.070000px;}
.y1_c00116{bottom:1163.670000px;}
.h2_c00116{height:43.066406px;}
.h1_c00116{height:48.222656px;}
.h5_c00116{height:49.963828px;}
.h8_c00116{height:49.993828px;}
.h6_c00116{height:50.023828px;}
.h4_c00116{height:50.083828px;}
.h7_c00116{height:50.203828px;}
.h3_c00116{height:67.511719px;}
.h0_c00116{height:1263.000000px;}
.w0_c00116{width:893.100000px;}
.w1_c00116{width:893.250000px;}
.x0_c00116{left:0.000000px;}
.x1_c00116{left:84.937500px;}
.x2_c00116{left:442.650000px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.v1_c00116{vertical-align:19.253333pt;}
.lsf_c00116{letter-spacing:-0.373333pt;}
.ls9_c00116{letter-spacing:-0.266667pt;}
.lsd_c00116{letter-spacing:-0.106667pt;}
.ls6_c00116{letter-spacing:0.000000pt;}
.ls7_c00116{letter-spacing:0.053333pt;}
.lsc_c00116{letter-spacing:0.106667pt;}
.ls0_c00116{letter-spacing:0.149333pt;}
.ls4_c00116{letter-spacing:0.233600pt;}
.ls10_c00116{letter-spacing:0.266667pt;}
.ls1_c00116{letter-spacing:0.286933pt;}
.ls2_c00116{letter-spacing:0.340267pt;}
.lsb_c00116{letter-spacing:0.426667pt;}
.lsa_c00116{letter-spacing:0.480000pt;}
.lse_c00116{letter-spacing:0.533333pt;}
.ls3_c00116{letter-spacing:0.693333pt;}
.ls8_c00116{letter-spacing:2.880000pt;}
.ls5_c00116{letter-spacing:10.346667pt;}
.ws6_c00116{word-spacing:-12.586667pt;}
.ws8_c00116{word-spacing:-12.533333pt;}
.ws7_c00116{word-spacing:-12.320000pt;}
.ws4_c00116{word-spacing:-12.160000pt;}
.ws1_c00116{word-spacing:-12.106667pt;}
.ws0_c00116{word-spacing:-12.053333pt;}
.ws5_c00116{word-spacing:-11.946667pt;}
.ws2_c00116{word-spacing:-11.786667pt;}
.ws9_c00116{word-spacing:-7.955200pt;}
.ws3_c00116{word-spacing:-7.688533pt;}
.wsa_c00116{word-spacing:0.000000pt;}
._0_c00116{margin-left:-0.960000pt;}
._1_c00116{width:1.013333pt;}
._6_c00116{width:2.160000pt;}
._5_c00116{width:3.413333pt;}
._9_c00116{width:4.346667pt;}
._4_c00116{width:5.440000pt;}
._2_c00116{width:6.560000pt;}
._3_c00116{width:7.973333pt;}
._7_c00116{width:8.880000pt;}
._a_c00116{width:9.813333pt;}
._b_c00116{width:10.720000pt;}
._8_c00116{width:96.736000pt;}
.fs2_c00116{font-size:35.200000pt;}
.fs0_c00116{font-size:53.333333pt;}
.fs1_c00116{font-size:74.666667pt;}
.y0_c00116{bottom:0.000000pt;}
.y2_c00116{bottom:63.233333pt;}
.y28_c00116{bottom:130.166667pt;}
.y27_c00116{bottom:149.626667pt;}
.y26_c00116{bottom:169.133333pt;}
.y25_c00116{bottom:188.600000pt;}
.y24_c00116{bottom:227.800000pt;}
.y23_c00116{bottom:247.266667pt;}
.y22_c00116{bottom:266.733333pt;}
.y21_c00116{bottom:286.466667pt;}
.y20_c00116{bottom:325.440000pt;}
.y1f_c00116{bottom:344.893333pt;}
.y1e_c00116{bottom:384.106667pt;}
.y1d_c00116{bottom:403.560000pt;}
.y1c_c00116{bottom:423.040000pt;}
.y1b_c00116{bottom:442.773333pt;}
.y1a_c00116{bottom:462.266667pt;}
.y19_c00116{bottom:481.733333pt;}
.y18_c00116{bottom:501.200000pt;}
.y17_c00116{bottom:528.933333pt;}
.y16_c00116{bottom:572.933333pt;}
.y15_c00116{bottom:592.666667pt;}
.y14_c00116{bottom:612.173333pt;}
.y13_c00116{bottom:631.640000pt;}
.y12_c00116{bottom:651.106667pt;}
.y11_c00116{bottom:690.293333pt;}
.y10_c00116{bottom:709.773333pt;}
.yf_c00116{bottom:729.240000pt;}
.ye_c00116{bottom:748.960000pt;}
.yd_c00116{bottom:768.466667pt;}
.yc_c00116{bottom:787.933333pt;}
.yb_c00116{bottom:807.400000pt;}
.ya_c00116{bottom:827.133333pt;}
.y9_c00116{bottom:846.600000pt;}
.y8_c00116{bottom:874.066667pt;}
.y7_c00116{bottom:918.373333pt;}
.y6_c00116{bottom:937.840000pt;}
.y5_c00116{bottom:957.293333pt;}
.y4_c00116{bottom:977.040000pt;}
.y3_c00116{bottom:996.506667pt;}
.y1_c00116{bottom:1034.373333pt;}
.h2_c00116{height:38.281250pt;}
.h1_c00116{height:42.864583pt;}
.h5_c00116{height:44.412292pt;}
.h8_c00116{height:44.438958pt;}
.h6_c00116{height:44.465625pt;}
.h4_c00116{height:44.518958pt;}
.h7_c00116{height:44.625625pt;}
.h3_c00116{height:60.010417pt;}
.h0_c00116{height:1122.666667pt;}
.w0_c00116{width:793.866667pt;}
.w1_c00116{width:794.000000pt;}
.x0_c00116{left:0.000000pt;}
.x1_c00116{left:75.500000pt;}
.x2_c00116{left:393.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_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_e62e4948db1bf3cb3d2a4a7f.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:0.981934;font-style:normal;font-weight:normal;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_2b68078f2e6772254281dc5d.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00117;src:url('chunks/assets/font_5f2d3c1cc9fd10af909185c6.woff2')format("woff");}.ff3_c00117{font-family:ff3_c00117;line-height:0.983398;font-style:normal;font-weight:normal;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_cb9dfe37774a819010c3b4bd.woff2')format("woff");}.ff4_c00117{font-family:ff4_c00117;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00117;src:url('chunks/assets/font_55e5f77d71c1e0b667f45144.woff2')format("woff");}.ff5_c00117{font-family:ff5_c00117;line-height:0.982910;font-style: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;}
.ls12_c00117{letter-spacing:-0.816000px;}
.ls9_c00117{letter-spacing:-0.540000px;}
.lsc_c00117{letter-spacing:-0.456000px;}
.ls14_c00117{letter-spacing:-0.432000px;}
.ls17_c00117{letter-spacing:-0.384000px;}
.lse_c00117{letter-spacing:-0.336000px;}
.ls6_c00117{letter-spacing:-0.300000px;}
.ls11_c00117{letter-spacing:-0.240000px;}
.ls15_c00117{letter-spacing:-0.192000px;}
.lsd_c00117{letter-spacing:-0.096000px;}
.ls5_c00117{letter-spacing:0.000000px;}
.ls4_c00117{letter-spacing:0.036000px;}
.lsb_c00117{letter-spacing:0.060000px;}
.ls2_c00117{letter-spacing:0.096000px;}
.ls0_c00117{letter-spacing:0.120000px;}
.lsf_c00117{letter-spacing:0.192000px;}
.ls16_c00117{letter-spacing:0.240000px;}
.ls10_c00117{letter-spacing:0.288000px;}
.ls18_c00117{letter-spacing:0.480000px;}
.lsa_c00117{letter-spacing:0.540000px;}
.ls7_c00117{letter-spacing:0.600000px;}
.ls13_c00117{letter-spacing:0.624000px;}
.ls1_c00117{letter-spacing:0.864000px;}
.ls3_c00117{letter-spacing:1.032000px;}
.ls8_c00117{letter-spacing:1.260000px;}
.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;}
}
.ws7_c00117{word-spacing:-15.816000px;}
.ws3_c00117{word-spacing:-14.820000px;}
.ws2_c00117{word-spacing:-14.160000px;}
.ws5_c00117{word-spacing:-14.100000px;}
.ws6_c00117{word-spacing:-13.620000px;}
.ws0_c00117{word-spacing:-13.560000px;}
.ws1_c00117{word-spacing:-13.260000px;}
.ws4_c00117{word-spacing:-13.020000px;}
.wsf_c00117{word-spacing:-11.472000px;}
.ws14_c00117{word-spacing:-11.328000px;}
.wsc_c00117{word-spacing:-11.136000px;}
.ws12_c00117{word-spacing:-11.088000px;}
.wsb_c00117{word-spacing:-11.040000px;}
.ws9_c00117{word-spacing:-10.848000px;}
.ws8_c00117{word-spacing:-10.752000px;}
.ws11_c00117{word-spacing:-10.656000px;}
.wsd_c00117{word-spacing:-10.608000px;}
.wsa_c00117{word-spacing:-10.512000px;}
.ws13_c00117{word-spacing:-10.464000px;}
.ws10_c00117{word-spacing:-10.416000px;}
.wse_c00117{word-spacing:-10.032000px;}
.ws15_c00117{word-spacing:0.000000px;}
._0_c00117{margin-left:-1.050000px;}
._1_c00117{width:1.680000px;}
._2_c00117{width:3.210000px;}
._4_c00117{width:4.350000px;}
._3_c00117{width:5.940000px;}
._6_c00117{width:6.960000px;}
._7_c00117{width:8.610000px;}
._a_c00117{width:9.708000px;}
._8_c00117{width:12.858000px;}
._9_c00117{width:14.958000px;}
._c_c00117{width:30.048000px;}
._b_c00117{width:31.488000px;}
._5_c00117{width:108.828000px;}
.fc1_c00117{color:rgb(0,0,0);}
.fc2_c00117{color:rgb(49,132,155);}
.fc0_c00117{color:rgb(0,0,255);}
.fs4_c00117{font-size:48.000000px;}
.fs1_c00117{font-size:54.000000px;}
.fs0_c00117{font-size:60.000000px;}
.fs3_c00117{font-size:72.000000px;}
.fs2_c00117{font-size:84.000000px;}
.y0_c00117{bottom:0.000000px;}
.y3_c00117{bottom:67.537500px;}
.y2_c00117{bottom:85.537500px;}
.y27_c00117{bottom:413.820000px;}
.y26_c00117{bottom:442.620000px;}
.y25_c00117{bottom:464.820000px;}
.y24_c00117{bottom:479.505000px;}
.y23_c00117{bottom:498.720000px;}
.y22_c00117{bottom:513.450000px;}
.y21_c00117{bottom:532.650000px;}
.y20_c00117{bottom:547.350000px;}
.y1f_c00117{bottom:566.250000px;}
.y1e_c00117{bottom:580.950000px;}
.y1d_c00117{bottom:600.150000px;}
.y1c_c00117{bottom:614.850000px;}
.y1b_c00117{bottom:634.050000px;}
.y1a_c00117{bottom:648.750000px;}
.y19_c00117{bottom:667.650000px;}
.y18_c00117{bottom:686.895000px;}
.y17_c00117{bottom:701.580000px;}
.y16_c00117{bottom:720.795000px;}
.y15_c00117{bottom:739.995000px;}
.y14_c00117{bottom:754.695000px;}
.y13_c00117{bottom:769.080000px;}
.y12_c00117{bottom:795.795000px;}
.y11_c00117{bottom:820.395000px;}
.y10_c00117{bottom:842.580000px;}
.yf_c00117{bottom:864.525000px;}
.ye_c00117{bottom:886.425000px;}
.yd_c00117{bottom:908.325000px;}
.yc_c00117{bottom:930.525000px;}
.yb_c00117{bottom:961.425000px;}
.ya_c00117{bottom:989.025000px;}
.y9_c00117{bottom:1011.225000px;}
.y8_c00117{bottom:1033.170000px;}
.y7_c00117{bottom:1055.070000px;}
.y6_c00117{bottom:1076.955000px;}
.y5_c00117{bottom:1099.170000px;}
.y4_c00117{bottom:1121.070000px;}
.y1_c00117{bottom:1163.670000px;}
.h6_c00117{height:34.453125px;}
.h5_c00117{height:38.625000px;}
.h2_c00117{height:38.759766px;}
.h3_c00117{height:43.066406px;}
.h1_c00117{height:48.222656px;}
.h4_c00117{height:67.511719px;}
.h0_c00117{height:1263.000000px;}
.w0_c00117{width:893.100000px;}
.w1_c00117{width:893.250000px;}
.x0_c00117{left:0.000000px;}
.x1_c00117{left:84.937500px;}
.x4_c00117{left:99.937500px;}
.x5_c00117{left:106.237500px;}
.x6_c00117{left:138.937500px;}
.x3_c00117{left:442.650000px;}
.x2_c00117{left:446.550000px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls12_c00117{letter-spacing:-0.725333pt;}
.ls9_c00117{letter-spacing:-0.480000pt;}
.lsc_c00117{letter-spacing:-0.405333pt;}
.ls14_c00117{letter-spacing:-0.384000pt;}
.ls17_c00117{letter-spacing:-0.341333pt;}
.lse_c00117{letter-spacing:-0.298667pt;}
.ls6_c00117{letter-spacing:-0.266667pt;}
.ls11_c00117{letter-spacing:-0.213333pt;}
.ls15_c00117{letter-spacing:-0.170667pt;}
.lsd_c00117{letter-spacing:-0.085333pt;}
.ls5_c00117{letter-spacing:0.000000pt;}
.ls4_c00117{letter-spacing:0.032000pt;}
.lsb_c00117{letter-spacing:0.053333pt;}
.ls2_c00117{letter-spacing:0.085333pt;}
.ls0_c00117{letter-spacing:0.106667pt;}
.lsf_c00117{letter-spacing:0.170667pt;}
.ls16_c00117{letter-spacing:0.213333pt;}
.ls10_c00117{letter-spacing:0.256000pt;}
.ls18_c00117{letter-spacing:0.426667pt;}
.lsa_c00117{letter-spacing:0.480000pt;}
.ls7_c00117{letter-spacing:0.533333pt;}
.ls13_c00117{letter-spacing:0.554667pt;}
.ls1_c00117{letter-spacing:0.768000pt;}
.ls3_c00117{letter-spacing:0.917333pt;}
.ls8_c00117{letter-spacing:1.120000pt;}
.ws7_c00117{word-spacing:-14.058667pt;}
.ws3_c00117{word-spacing:-13.173333pt;}
.ws2_c00117{word-spacing:-12.586667pt;}
.ws5_c00117{word-spacing:-12.533333pt;}
.ws6_c00117{word-spacing:-12.106667pt;}
.ws0_c00117{word-spacing:-12.053333pt;}
.ws1_c00117{word-spacing:-11.786667pt;}
.ws4_c00117{word-spacing:-11.573333pt;}
.wsf_c00117{word-spacing:-10.197333pt;}
.ws14_c00117{word-spacing:-10.069333pt;}
.wsc_c00117{word-spacing:-9.898667pt;}
.ws12_c00117{word-spacing:-9.856000pt;}
.wsb_c00117{word-spacing:-9.813333pt;}
.ws9_c00117{word-spacing:-9.642667pt;}
.ws8_c00117{word-spacing:-9.557333pt;}
.ws11_c00117{word-spacing:-9.472000pt;}
.wsd_c00117{word-spacing:-9.429333pt;}
.wsa_c00117{word-spacing:-9.344000pt;}
.ws13_c00117{word-spacing:-9.301333pt;}
.ws10_c00117{word-spacing:-9.258667pt;}
.wse_c00117{word-spacing:-8.917333pt;}
.ws15_c00117{word-spacing:0.000000pt;}
._0_c00117{margin-left:-0.933333pt;}
._1_c00117{width:1.493333pt;}
._2_c00117{width:2.853333pt;}
._4_c00117{width:3.866667pt;}
._3_c00117{width:5.280000pt;}
._6_c00117{width:6.186667pt;}
._7_c00117{width:7.653333pt;}
._a_c00117{width:8.629333pt;}
._8_c00117{width:11.429333pt;}
._9_c00117{width:13.296000pt;}
._c_c00117{width:26.709333pt;}
._b_c00117{width:27.989333pt;}
._5_c00117{width:96.736000pt;}
.fs4_c00117{font-size:42.666667pt;}
.fs1_c00117{font-size:48.000000pt;}
.fs0_c00117{font-size:53.333333pt;}
.fs3_c00117{font-size:64.000000pt;}
.fs2_c00117{font-size:74.666667pt;}
.y0_c00117{bottom:0.000000pt;}
.y3_c00117{bottom:60.033333pt;}
.y2_c00117{bottom:76.033333pt;}
.y27_c00117{bottom:367.840000pt;}
.y26_c00117{bottom:393.440000pt;}
.y25_c00117{bottom:413.173333pt;}
.y24_c00117{bottom:426.226667pt;}
.y23_c00117{bottom:443.306667pt;}
.y22_c00117{bottom:456.400000pt;}
.y21_c00117{bottom:473.466667pt;}
.y20_c00117{bottom:486.533333pt;}
.y1f_c00117{bottom:503.333333pt;}
.y1e_c00117{bottom:516.400000pt;}
.y1d_c00117{bottom:533.466667pt;}
.y1c_c00117{bottom:546.533333pt;}
.y1b_c00117{bottom:563.600000pt;}
.y1a_c00117{bottom:576.666667pt;}
.y19_c00117{bottom:593.466667pt;}
.y18_c00117{bottom:610.573333pt;}
.y17_c00117{bottom:623.626667pt;}
.y16_c00117{bottom:640.706667pt;}
.y15_c00117{bottom:657.773333pt;}
.y14_c00117{bottom:670.840000pt;}
.y13_c00117{bottom:683.626667pt;}
.y12_c00117{bottom:707.373333pt;}
.y11_c00117{bottom:729.240000pt;}
.y10_c00117{bottom:748.960000pt;}
.yf_c00117{bottom:768.466667pt;}
.ye_c00117{bottom:787.933333pt;}
.yd_c00117{bottom:807.400000pt;}
.yc_c00117{bottom:827.133333pt;}
.yb_c00117{bottom:854.600000pt;}
.ya_c00117{bottom:879.133333pt;}
.y9_c00117{bottom:898.866667pt;}
.y8_c00117{bottom:918.373333pt;}
.y7_c00117{bottom:937.840000pt;}
.y6_c00117{bottom:957.293333pt;}
.y5_c00117{bottom:977.040000pt;}
.y4_c00117{bottom:996.506667pt;}
.y1_c00117{bottom:1034.373333pt;}
.h6_c00117{height:30.625000pt;}
.h5_c00117{height:34.333333pt;}
.h2_c00117{height:34.453125pt;}
.h3_c00117{height:38.281250pt;}
.h1_c00117{height:42.864583pt;}
.h4_c00117{height:60.010417pt;}
.h0_c00117{height:1122.666667pt;}
.w0_c00117{width:793.866667pt;}
.w1_c00117{width:794.000000pt;}
.x0_c00117{left:0.000000pt;}
.x1_c00117{left:75.500000pt;}
.x4_c00117{left:88.833333pt;}
.x5_c00117{left:94.433333pt;}
.x6_c00117{left:123.500000pt;}
.x3_c00117{left:393.466667pt;}
.x2_c00117{left:396.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_a9eb345116d32b8b27ad2b14.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00118;src:url('chunks/assets/font_8fa19f14f036f50e8ec8a2df.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.136230;font-style: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;}
.ls0_c00118{letter-spacing:0.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;}
}
.ws0_c00118{word-spacing:-60.048000px;}
.ws1_c00118{word-spacing:0.000000px;}
._4_c00118{margin-left:-14.472000px;}
._a_c00118{margin-left:-7.986000px;}
._5_c00118{margin-left:-6.726000px;}
._6_c00118{margin-left:-3.698964px;}
._8_c00118{margin-left:-2.690400px;}
._0_c00118{margin-left:-1.512000px;}
._2_c00118{width:1.344000px;}
._3_c00118{width:2.364000px;}
._9_c00118{width:3.824664px;}
._7_c00118{width:5.717964px;}
._1_c00118{width:61.404000px;}
.fc0_c00118{color:rgb(0,0,0);}
.fs2_c00118{font-size:108.000000px;}
.fs4_c00118{font-size:144.000000px;}
.fs1_c00118{font-size:168.000000px;}
.fs3_c00118{font-size:168.150000px;}
.fs0_c00118{font-size:216.000000px;}
.y0_c00118{bottom:0.000000px;}
.y6_c00118{bottom:82.462500px;}
.y5_c00118{bottom:254.655000px;}
.y4_c00118{bottom:315.000000px;}
.y3_c00118{bottom:375.600000px;}
.y2_c00118{bottom:543.345000px;}
.y1_c00118{bottom:640.575000px;}
.h2_c00118{height:122.800781px;}
.h3_c00118{height:122.910425px;}
.h4_c00118{height:143.226562px;}
.h1_c00118{height:157.886719px;}
.h0_c00118{height:810.000000px;}
.w0_c00118{width:1440.000000px;}
.x0_c00118{left:0.000000px;}
.x6_c00118{left:216.030000px;}
.x1_c00118{left:298.650000px;}
.x3_c00118{left:391.275000px;}
.x4_c00118{left:427.575000px;}
.x5_c00118{left:460.875000px;}
.x2_c00118{left:490.695000px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls0_c00118{letter-spacing:0.000000pt;}
.ws0_c00118{word-spacing:-53.376000pt;}
.ws1_c00118{word-spacing:0.000000pt;}
._4_c00118{margin-left:-12.864000pt;}
._a_c00118{margin-left:-7.098667pt;}
._5_c00118{margin-left:-5.978667pt;}
._6_c00118{margin-left:-3.287968pt;}
._8_c00118{margin-left:-2.391467pt;}
._0_c00118{margin-left:-1.344000pt;}
._2_c00118{width:1.194667pt;}
._3_c00118{width:2.101333pt;}
._9_c00118{width:3.399701pt;}
._7_c00118{width:5.082634pt;}
._1_c00118{width:54.581333pt;}
.fs2_c00118{font-size:96.000000pt;}
.fs4_c00118{font-size:128.000000pt;}
.fs1_c00118{font-size:149.333333pt;}
.fs3_c00118{font-size:149.466667pt;}
.fs0_c00118{font-size:192.000000pt;}
.y0_c00118{bottom:0.000000pt;}
.y6_c00118{bottom:73.300000pt;}
.y5_c00118{bottom:226.360000pt;}
.y4_c00118{bottom:280.000000pt;}
.y3_c00118{bottom:333.866667pt;}
.y2_c00118{bottom:482.973333pt;}
.y1_c00118{bottom:569.400000pt;}
.h2_c00118{height:109.156250pt;}
.h3_c00118{height:109.253711pt;}
.h4_c00118{height:127.312500pt;}
.h1_c00118{height:140.343750pt;}
.h0_c00118{height:720.000000pt;}
.w0_c00118{width:1280.000000pt;}
.x0_c00118{left:0.000000pt;}
.x6_c00118{left:192.026667pt;}
.x1_c00118{left:265.466667pt;}
.x3_c00118{left:347.800000pt;}
.x4_c00118{left:380.066667pt;}
.x5_c00118{left:409.666667pt;}
.x2_c00118{left:436.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d6c48d6abf7c66dddd09a452.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00119;src:url('chunks/assets/font_1d2b3c27475e21fd6bc29753.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00119{letter-spacing:0.000000px;}
.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:-66.720000px;}
.ws1_c00119{word-spacing:0.000000px;}
._0_c00119{margin-left:-4.800000px;}
._3_c00119{margin-left:-2.880000px;}
._5_c00119{margin-left:-1.344000px;}
._4_c00119{width:1.344000px;}
._7_c00119{width:313.452000px;}
._6_c00119{width:316.332000px;}
._2_c00119{width:368.244000px;}
._1_c00119{width:527.916000px;}
.fc0_c00119{color:rgb(0,0,0);}
.fs1_c00119{font-size:192.000000px;}
.fs2_c00119{font-size:192.150000px;}
.fs0_c00119{font-size:240.000000px;}
.y0_c00119{bottom:0.000000px;}
.y5_c00119{bottom:151.200000px;}
.y4_c00119{bottom:284.745000px;}
.y3_c00119{bottom:418.620000px;}
.y2_c00119{bottom:485.505000px;}
.y1_c00119{bottom:669.945000px;}
.h2_c00119{height:140.343750px;}
.h3_c00119{height:140.453394px;}
.h1_c00119{height:175.429688px;}
.h0_c00119{height:810.000000px;}
.w0_c00119{width:1440.000000px;}
.x0_c00119{left:0.000000px;}
.x2_c00119{left:150.450000px;}
.x3_c00119{left:582.570000px;}
.x1_c00119{left:584.280000px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls0_c00119{letter-spacing:0.000000pt;}
.ws0_c00119{word-spacing:-59.306667pt;}
.ws1_c00119{word-spacing:0.000000pt;}
._0_c00119{margin-left:-4.266667pt;}
._3_c00119{margin-left:-2.560000pt;}
._5_c00119{margin-left:-1.194667pt;}
._4_c00119{width:1.194667pt;}
._7_c00119{width:278.624000pt;}
._6_c00119{width:281.184000pt;}
._2_c00119{width:327.328000pt;}
._1_c00119{width:469.258667pt;}
.fs1_c00119{font-size:170.666667pt;}
.fs2_c00119{font-size:170.800000pt;}
.fs0_c00119{font-size:213.333333pt;}
.y0_c00119{bottom:0.000000pt;}
.y5_c00119{bottom:134.400000pt;}
.y4_c00119{bottom:253.106667pt;}
.y3_c00119{bottom:372.106667pt;}
.y2_c00119{bottom:431.560000pt;}
.y1_c00119{bottom:595.506667pt;}
.h2_c00119{height:124.750000pt;}
.h3_c00119{height:124.847461pt;}
.h1_c00119{height:155.937500pt;}
.h0_c00119{height:720.000000pt;}
.w0_c00119{width:1280.000000pt;}
.x0_c00119{left:0.000000pt;}
.x2_c00119{left:133.733333pt;}
.x3_c00119{left:517.840000pt;}
.x1_c00119{left:519.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b7b6528a478be8d87c530e97.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00120;src:url('chunks/assets/font_c30d020003e2f488bbcab5be.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00120{letter-spacing:0.000000px;}
.ls0_c00120{letter-spacing:49.147500px;}
.sc__c00120{text-shadow:none;}
.sc0_c00120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00120{-webkit-text-stroke:0px transparent;}
.sc0_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00120{word-spacing:0.000000px;}
._2_c00120{margin-left:-3.553764px;}
._4_c00120{margin-left:-2.545200px;}
._1_c00120{width:1.200000px;}
._6_c00120{width:2.353764px;}
._3_c00120{width:3.530982px;}
._5_c00120{width:4.708200px;}
._0_c00120{width:55.140000px;}
.fc0_c00120{color:rgb(0,0,0);}
.fs2_c00120{font-size:168.000000px;}
.fs1_c00120{font-size:168.150000px;}
.fs0_c00120{font-size:240.000000px;}
.y0_c00120{bottom:0.000000px;}
.y9_c00120{bottom:46.650000px;}
.y8_c00120{bottom:133.087500px;}
.y7_c00120{bottom:219.195000px;}
.y6_c00120{bottom:264.825000px;}
.y5_c00120{bottom:350.970000px;}
.y4_c00120{bottom:437.370000px;}
.y3_c00120{bottom:482.700000px;}
.y2_c00120{bottom:569.130000px;}
.y1_c00120{bottom:702.345000px;}
.h3_c00120{height:122.800781px;}
.h2_c00120{height:122.910425px;}
.h1_c00120{height:175.429688px;}
.h0_c00120{height:810.000000px;}
.w0_c00120{width:1440.000000px;}
.x0_c00120{left:0.000000px;}
.x2_c00120{left:93.187500px;}
.x1_c00120{left:268.050000px;}
.x4_c00120{left:903.330000px;}
.x3_c00120{left:1011.375000px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls1_c00120{letter-spacing:0.000000pt;}
.ls0_c00120{letter-spacing:43.686667pt;}
.ws0_c00120{word-spacing:0.000000pt;}
._2_c00120{margin-left:-3.158901pt;}
._4_c00120{margin-left:-2.262400pt;}
._1_c00120{width:1.066667pt;}
._6_c00120{width:2.092234pt;}
._3_c00120{width:3.138651pt;}
._5_c00120{width:4.185067pt;}
._0_c00120{width:49.013333pt;}
.fs2_c00120{font-size:149.333333pt;}
.fs1_c00120{font-size:149.466667pt;}
.fs0_c00120{font-size:213.333333pt;}
.y0_c00120{bottom:0.000000pt;}
.y9_c00120{bottom:41.466667pt;}
.y8_c00120{bottom:118.300000pt;}
.y7_c00120{bottom:194.840000pt;}
.y6_c00120{bottom:235.400000pt;}
.y5_c00120{bottom:311.973333pt;}
.y4_c00120{bottom:388.773333pt;}
.y3_c00120{bottom:429.066667pt;}
.y2_c00120{bottom:505.893333pt;}
.y1_c00120{bottom:624.306667pt;}
.h3_c00120{height:109.156250pt;}
.h2_c00120{height:109.253711pt;}
.h1_c00120{height:155.937500pt;}
.h0_c00120{height:720.000000pt;}
.w0_c00120{width:1280.000000pt;}
.x0_c00120{left:0.000000pt;}
.x2_c00120{left:82.833333pt;}
.x1_c00120{left:238.266667pt;}
.x4_c00120{left:802.960000pt;}
.x3_c00120{left:899.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_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_6f90ee2d4b7cb0b02c2cd8e6.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00121;src:url('chunks/assets/font_f54c1c74433970143d4cf8a7.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7_c00121{letter-spacing:-2.400000px;}
.ls6_c00121{letter-spacing:-0.336000px;}
.ls5_c00121{letter-spacing:0.000000px;}
.ls4_c00121{letter-spacing:53.347500px;}
.ls1_c00121{letter-spacing:53.400000px;}
.ls3_c00121{letter-spacing:61.747500px;}
.ls2_c00121{letter-spacing:61.800000px;}
.ls0_c00121{letter-spacing:74.112600px;}
.sc__c00121{text-shadow:none;}
.sc0_c00121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00121{-webkit-text-stroke:0px transparent;}
.sc0_c00121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00121{word-spacing:0.000000px;}
.ws0_c00121{word-spacing:7.884000px;}
._7_c00121{margin-left:-7.656000px;}
._0_c00121{margin-left:-5.019114px;}
._5_c00121{margin-left:-3.965100px;}
._4_c00121{margin-left:-2.834664px;}
._1_c00121{margin-left:-1.320486px;}
._3_c00121{width:1.056600px;}
._2_c00121{width:2.835036px;}
._6_c00121{width:4.212000px;}
.fc0_c00121{color:rgb(0,0,0);}
.fs2_c00121{font-size:132.000000px;}
.fs3_c00121{font-size:132.150000px;}
.fs1_c00121{font-size:156.000000px;}
.fs4_c00121{font-size:156.150000px;}
.fs0_c00121{font-size:264.150000px;}
.y0_c00121{bottom:0.000000px;}
.yb_c00121{bottom:42.375000px;}
.ya_c00121{bottom:116.775000px;}
.y9_c00121{bottom:160.020000px;}
.y8_c00121{bottom:204.705000px;}
.y7_c00121{bottom:288.150000px;}
.y6_c00121{bottom:362.595000px;}
.y5_c00121{bottom:398.280000px;}
.y4_c00121{bottom:442.995000px;}
.y3_c00121{bottom:526.425000px;}
.y2_c00121{bottom:614.655000px;}
.y1_c00121{bottom:710.925000px;}
.h3_c00121{height:96.486328px;}
.h4_c00121{height:96.595972px;}
.h2_c00121{height:114.029297px;}
.h5_c00121{height:114.138940px;}
.h1_c00121{height:193.082300px;}
.h0_c00121{height:810.000000px;}
.w0_c00121{width:1440.000000px;}
.x0_c00121{left:0.000000px;}
.x2_c00121{left:109.837500px;}
.x3_c00121{left:217.830000px;}
.x4_c00121{left:244.830000px;}
.x1_c00121{left:342.750000px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls7_c00121{letter-spacing:-2.133333pt;}
.ls6_c00121{letter-spacing:-0.298667pt;}
.ls5_c00121{letter-spacing:0.000000pt;}
.ls4_c00121{letter-spacing:47.420000pt;}
.ls1_c00121{letter-spacing:47.466667pt;}
.ls3_c00121{letter-spacing:54.886667pt;}
.ls2_c00121{letter-spacing:54.933333pt;}
.ls0_c00121{letter-spacing:65.877867pt;}
.ws1_c00121{word-spacing:0.000000pt;}
.ws0_c00121{word-spacing:7.008000pt;}
._7_c00121{margin-left:-6.805333pt;}
._0_c00121{margin-left:-4.461435pt;}
._5_c00121{margin-left:-3.524533pt;}
._4_c00121{margin-left:-2.519701pt;}
._1_c00121{margin-left:-1.173765pt;}
._3_c00121{width:0.939200pt;}
._2_c00121{width:2.520032pt;}
._6_c00121{width:3.744000pt;}
.fs2_c00121{font-size:117.333333pt;}
.fs3_c00121{font-size:117.466667pt;}
.fs1_c00121{font-size:138.666667pt;}
.fs4_c00121{font-size:138.800000pt;}
.fs0_c00121{font-size:234.800000pt;}
.y0_c00121{bottom:0.000000pt;}
.yb_c00121{bottom:37.666667pt;}
.ya_c00121{bottom:103.800000pt;}
.y9_c00121{bottom:142.240000pt;}
.y8_c00121{bottom:181.960000pt;}
.y7_c00121{bottom:256.133333pt;}
.y6_c00121{bottom:322.306667pt;}
.y5_c00121{bottom:354.026667pt;}
.y4_c00121{bottom:393.773333pt;}
.y3_c00121{bottom:467.933333pt;}
.y2_c00121{bottom:546.360000pt;}
.y1_c00121{bottom:631.933333pt;}
.h3_c00121{height:85.765625pt;}
.h4_c00121{height:85.863086pt;}
.h2_c00121{height:101.359375pt;}
.h5_c00121{height:101.456836pt;}
.h1_c00121{height:171.628711pt;}
.h0_c00121{height:720.000000pt;}
.w0_c00121{width:1280.000000pt;}
.x0_c00121{left:0.000000pt;}
.x2_c00121{left:97.633333pt;}
.x3_c00121{left:193.626667pt;}
.x4_c00121{left:217.626667pt;}
.x1_c00121{left:304.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_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_4945336b8ab154704b850e85.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00122;src:url('chunks/assets/font_f54c1c74433970143d4cf8a7.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00122{letter-spacing:0.000000px;}
.ls2_c00122{letter-spacing:0.048000px;}
.ls3_c00122{letter-spacing:40.747500px;}
.ls1_c00122{letter-spacing:40.800000px;}
.ls4_c00122{letter-spacing:49.200000px;}
.ls0_c00122{letter-spacing:74.112600px;}
.sc__c00122{text-shadow:none;}
.sc0_c00122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00122{-webkit-text-stroke:0px transparent;}
.sc0_c00122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00122{word-spacing:0.000000px;}
._0_c00122{margin-left:-5.019114px;}
._6_c00122{margin-left:-3.744600px;}
._5_c00122{margin-left:-2.330556px;}
._1_c00122{margin-left:-1.320486px;}
._3_c00122{width:1.056600px;}
._2_c00122{width:2.835036px;}
._4_c00122{width:51.900000px;}
.fc0_c00122{color:rgb(0,0,0);}
.fs3_c00122{font-size:168.000000px;}
.fs1_c00122{font-size:192.000000px;}
.fs2_c00122{font-size:192.150000px;}
.fs0_c00122{font-size:264.150000px;}
.y0_c00122{bottom:0.000000px;}
.ya_c00122{bottom:63.675000px;}
.y9_c00122{bottom:115.312500px;}
.y8_c00122{bottom:182.250000px;}
.y7_c00122{bottom:268.350000px;}
.y6_c00122{bottom:321.195000px;}
.y5_c00122{bottom:373.995000px;}
.y4_c00122{bottom:433.125000px;}
.y3_c00122{bottom:511.455000px;}
.y2_c00122{bottom:590.070000px;}
.y1_c00122{bottom:710.925000px;}
.h4_c00122{height:122.800781px;}
.h2_c00122{height:140.343750px;}
.h3_c00122{height:140.453394px;}
.h1_c00122{height:193.082300px;}
.h0_c00122{height:810.000000px;}
.w0_c00122{width:1440.000000px;}
.x0_c00122{left:0.000000px;}
.x2_c00122{left:171.405000px;}
.x4_c00122{left:198.405000px;}
.x3_c00122{left:225.405000px;}
.x1_c00122{left:342.750000px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls5_c00122{letter-spacing:0.000000pt;}
.ls2_c00122{letter-spacing:0.042667pt;}
.ls3_c00122{letter-spacing:36.220000pt;}
.ls1_c00122{letter-spacing:36.266667pt;}
.ls4_c00122{letter-spacing:43.733333pt;}
.ls0_c00122{letter-spacing:65.877867pt;}
.ws0_c00122{word-spacing:0.000000pt;}
._0_c00122{margin-left:-4.461435pt;}
._6_c00122{margin-left:-3.328533pt;}
._5_c00122{margin-left:-2.071606pt;}
._1_c00122{margin-left:-1.173765pt;}
._3_c00122{width:0.939200pt;}
._2_c00122{width:2.520032pt;}
._4_c00122{width:46.133333pt;}
.fs3_c00122{font-size:149.333333pt;}
.fs1_c00122{font-size:170.666667pt;}
.fs2_c00122{font-size:170.800000pt;}
.fs0_c00122{font-size:234.800000pt;}
.y0_c00122{bottom:0.000000pt;}
.ya_c00122{bottom:56.600000pt;}
.y9_c00122{bottom:102.500000pt;}
.y8_c00122{bottom:162.000000pt;}
.y7_c00122{bottom:238.533333pt;}
.y6_c00122{bottom:285.506667pt;}
.y5_c00122{bottom:332.440000pt;}
.y4_c00122{bottom:385.000000pt;}
.y3_c00122{bottom:454.626667pt;}
.y2_c00122{bottom:524.506667pt;}
.y1_c00122{bottom:631.933333pt;}
.h4_c00122{height:109.156250pt;}
.h2_c00122{height:124.750000pt;}
.h3_c00122{height:124.847461pt;}
.h1_c00122{height:171.628711pt;}
.h0_c00122{height:720.000000pt;}
.w0_c00122{width:1280.000000pt;}
.x0_c00122{left:0.000000pt;}
.x2_c00122{left:152.360000pt;}
.x4_c00122{left:176.360000pt;}
.x3_c00122{left:200.360000pt;}
.x1_c00122{left:304.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_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_2aa833b0fafa5ef2ef2e1153.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00123;src:url('chunks/assets/font_fd871592621d70f0d65058b8.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:66.936600px;}
.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:0.000000px;}
._0_c00123{margin-left:-1.440660px;}
._1_c00123{width:1.200510px;}
.fc0_c00123{color:rgb(0,0,0);}
.fs0_c00123{font-size:240.150000px;}
.y0_c00123{bottom:0.000000px;}
.y1_c00123{bottom:446.745000px;}
.h1_c00123{height:175.539331px;}
.h0_c00123{height:810.000000px;}
.w0_c00123{width:1440.000000px;}
.x0_c00123{left:0.000000px;}
.x1_c00123{left:93.262500px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls1_c00123{letter-spacing:0.000000pt;}
.ls0_c00123{letter-spacing:59.499200pt;}
.ws0_c00123{word-spacing:0.000000pt;}
._0_c00123{margin-left:-1.280587pt;}
._1_c00123{width:1.067120pt;}
.fs0_c00123{font-size:213.466667pt;}
.y0_c00123{bottom:0.000000pt;}
.y1_c00123{bottom:397.106667pt;}
.h1_c00123{height:156.034961pt;}
.h0_c00123{height:720.000000pt;}
.w0_c00123{width:1280.000000pt;}
.x0_c00123{left:0.000000pt;}
.x1_c00123{left:82.900000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a3125209600d284f43c155de.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00124;src:url('chunks/assets/font_c30d020003e2f488bbcab5be.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00124{letter-spacing:0.000000px;}
.ls1_c00124{letter-spacing:44.947500px;}
.ls0_c00124{letter-spacing:45.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:-50.081700px;}
.ws1_c00124{word-spacing:-50.040000px;}
.ws2_c00124{word-spacing:0.000000px;}
._5_c00124{margin-left:-5.400000px;}
._1_c00124{margin-left:-3.240000px;}
._0_c00124{margin-left:-1.680000px;}
._4_c00124{width:1.440000px;}
._6_c00124{width:2.730000px;}
._2_c00124{width:3.780000px;}
._3_c00124{width:5.550000px;}
.fc1_c00124{color:transparent;}
.fc0_c00124{color:rgb(0,0,0);}
.fs1_c00124{font-size:180.000000px;}
.fs2_c00124{font-size:180.150000px;}
.fs0_c00124{font-size:240.000000px;}
.y0_c00124{bottom:0.000000px;}
.y9_c00124{bottom:37.575000px;}
.y8_c00124{bottom:129.675000px;}
.y7_c00124{bottom:185.805000px;}
.y6_c00124{bottom:241.950000px;}
.y5_c00124{bottom:298.050000px;}
.y4_c00124{bottom:397.695000px;}
.y3_c00124{bottom:509.925000px;}
.y2_c00124{bottom:609.570000px;}
.y1_c00124{bottom:728.775000px;}
.h2_c00124{height:131.572266px;}
.h3_c00124{height:131.681909px;}
.h1_c00124{height:175.429688px;}
.h0_c00124{height:810.000000px;}
.w0_c00124{width:1440.000000px;}
.x0_c00124{left:0.000000px;}
.x2_c00124{left:91.537500px;}
.x3_c00124{left:199.575000px;}
.x1_c00124{left:406.605000px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls2_c00124{letter-spacing:0.000000pt;}
.ls1_c00124{letter-spacing:39.953333pt;}
.ls0_c00124{letter-spacing:40.000000pt;}
.ws0_c00124{word-spacing:-44.517067pt;}
.ws1_c00124{word-spacing:-44.480000pt;}
.ws2_c00124{word-spacing:0.000000pt;}
._5_c00124{margin-left:-4.800000pt;}
._1_c00124{margin-left:-2.880000pt;}
._0_c00124{margin-left:-1.493333pt;}
._4_c00124{width:1.280000pt;}
._6_c00124{width:2.426667pt;}
._2_c00124{width:3.360000pt;}
._3_c00124{width:4.933333pt;}
.fs1_c00124{font-size:160.000000pt;}
.fs2_c00124{font-size:160.133333pt;}
.fs0_c00124{font-size:213.333333pt;}
.y0_c00124{bottom:0.000000pt;}
.y9_c00124{bottom:33.400000pt;}
.y8_c00124{bottom:115.266667pt;}
.y7_c00124{bottom:165.160000pt;}
.y6_c00124{bottom:215.066667pt;}
.y5_c00124{bottom:264.933333pt;}
.y4_c00124{bottom:353.506667pt;}
.y3_c00124{bottom:453.266667pt;}
.y2_c00124{bottom:541.840000pt;}
.y1_c00124{bottom:647.800000pt;}
.h2_c00124{height:116.953125pt;}
.h3_c00124{height:117.050586pt;}
.h1_c00124{height:155.937500pt;}
.h0_c00124{height:720.000000pt;}
.w0_c00124{width:1280.000000pt;}
.x0_c00124{left:0.000000pt;}
.x2_c00124{left:81.366667pt;}
.x3_c00124{left:177.400000pt;}
.x1_c00124{left:361.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_62586f3d9a9d7e34b25a6fd1.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00125;src:url('chunks/assets/font_c30d020003e2f488bbcab5be.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00125{letter-spacing:0.000000px;}
.ls1_c00125{letter-spacing:57.547500px;}
.ls0_c00125{letter-spacing:57.600000px;}
.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:0.000000px;}
._3_c00125{margin-left:-26.657370px;}
._6_c00125{margin-left:-7.638774px;}
._2_c00125{margin-left:-5.283060px;}
._4_c00125{margin-left:-2.880180px;}
._0_c00125{margin-left:-1.440660px;}
._1_c00125{width:1.440420px;}
._5_c00125{width:2.879580px;}
.fc0_c00125{color:rgb(0,0,0);}
.fs1_c00125{font-size:144.000000px;}
.fs2_c00125{font-size:144.150000px;}
.fs0_c00125{font-size:240.150000px;}
.y0_c00125{bottom:0.000000px;}
.y9_c00125{bottom:67.162500px;}
.y8_c00125{bottom:117.900000px;}
.y7_c00125{bottom:168.600000px;}
.y6_c00125{bottom:219.345000px;}
.y5_c00125{bottom:270.030000px;}
.y4_c00125{bottom:342.675000px;}
.y3_c00125{bottom:460.905000px;}
.y2_c00125{bottom:548.850000px;}
.y1_c00125{bottom:674.595000px;}
.h2_c00125{height:105.257812px;}
.h3_c00125{height:105.367456px;}
.h1_c00125{height:175.539331px;}
.h0_c00125{height:810.000000px;}
.w0_c00125{width:1440.000000px;}
.x0_c00125{left:0.000000px;}
.x2_c00125{left:74.100000px;}
.x3_c00125{left:182.100000px;}
.x1_c00125{left:284.175000px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls2_c00125{letter-spacing:0.000000pt;}
.ls1_c00125{letter-spacing:51.153333pt;}
.ls0_c00125{letter-spacing:51.200000pt;}
.ws0_c00125{word-spacing:0.000000pt;}
._3_c00125{margin-left:-23.695440pt;}
._6_c00125{margin-left:-6.790021pt;}
._2_c00125{margin-left:-4.696053pt;}
._4_c00125{margin-left:-2.560160pt;}
._0_c00125{margin-left:-1.280587pt;}
._1_c00125{width:1.280373pt;}
._5_c00125{width:2.559627pt;}
.fs1_c00125{font-size:128.000000pt;}
.fs2_c00125{font-size:128.133333pt;}
.fs0_c00125{font-size:213.466667pt;}
.y0_c00125{bottom:0.000000pt;}
.y9_c00125{bottom:59.700000pt;}
.y8_c00125{bottom:104.800000pt;}
.y7_c00125{bottom:149.866667pt;}
.y6_c00125{bottom:194.973333pt;}
.y5_c00125{bottom:240.026667pt;}
.y4_c00125{bottom:304.600000pt;}
.y3_c00125{bottom:409.693333pt;}
.y2_c00125{bottom:487.866667pt;}
.y1_c00125{bottom:599.640000pt;}
.h2_c00125{height:93.562500pt;}
.h3_c00125{height:93.659961pt;}
.h1_c00125{height:156.034961pt;}
.h0_c00125{height:720.000000pt;}
.w0_c00125{width:1280.000000pt;}
.x0_c00125{left:0.000000pt;}
.x2_c00125{left:65.866667pt;}
.x3_c00125{left:161.866667pt;}
.x1_c00125{left:252.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_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_2df676d9912d11ef6c2cddd7.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00126;src:url('chunks/assets/font_f54c1c74433970143d4cf8a7.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c00126{letter-spacing:0.000000px;}
.ls0_c00126{letter-spacing:49.117500px;}
.ls2_c00126{letter-spacing:49.147500px;}
.ls1_c00126{letter-spacing:49.170000px;}
.ls3_c00126{letter-spacing:49.200000px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00126{word-spacing:0.000000px;}
._2_c00126{margin-left:-3.698964px;}
._4_c00126{margin-left:-2.688000px;}
._0_c00126{margin-left:-1.440660px;}
._6_c00126{width:1.140168px;}
._1_c00126{width:2.253210px;}
._5_c00126{width:3.528000px;}
._3_c00126{width:4.708200px;}
.fc0_c00126{color:rgb(0,0,0);}
.fs3_c00126{font-size:168.000000px;}
.fs2_c00126{font-size:168.150000px;}
.fs1_c00126{font-size:192.150000px;}
.fs0_c00126{font-size:240.150000px;}
.y0_c00126{bottom:0.000000px;}
.y8_c00126{bottom:130.762500px;}
.y7_c00126{bottom:230.100000px;}
.y6_c00126{bottom:282.900000px;}
.y5_c00126{bottom:336.030000px;}
.y4_c00126{bottom:422.130000px;}
.y3_c00126{bottom:482.475000px;}
.y2_c00126{bottom:543.120000px;}
.y1_c00126{bottom:683.550000px;}
.h3_c00126{height:122.800781px;}
.h2_c00126{height:122.910425px;}
.h1_c00126{height:175.539331px;}
.h0_c00126{height:810.000000px;}
.w0_c00126{width:1440.000000px;}
.x0_c00126{left:0.000000px;}
.x1_c00126{left:140.212500px;}
.x2_c00126{left:194.445000px;}
.x3_c00126{left:248.445000px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls4_c00126{letter-spacing:0.000000pt;}
.ls0_c00126{letter-spacing:43.660000pt;}
.ls2_c00126{letter-spacing:43.686667pt;}
.ls1_c00126{letter-spacing:43.706667pt;}
.ls3_c00126{letter-spacing:43.733333pt;}
.ws0_c00126{word-spacing:0.000000pt;}
._2_c00126{margin-left:-3.287968pt;}
._4_c00126{margin-left:-2.389333pt;}
._0_c00126{margin-left:-1.280587pt;}
._6_c00126{width:1.013482pt;}
._1_c00126{width:2.002853pt;}
._5_c00126{width:3.136000pt;}
._3_c00126{width:4.185067pt;}
.fs3_c00126{font-size:149.333333pt;}
.fs2_c00126{font-size:149.466667pt;}
.fs1_c00126{font-size:170.800000pt;}
.fs0_c00126{font-size:213.466667pt;}
.y0_c00126{bottom:0.000000pt;}
.y8_c00126{bottom:116.233333pt;}
.y7_c00126{bottom:204.533333pt;}
.y6_c00126{bottom:251.466667pt;}
.y5_c00126{bottom:298.693333pt;}
.y4_c00126{bottom:375.226667pt;}
.y3_c00126{bottom:428.866667pt;}
.y2_c00126{bottom:482.773333pt;}
.y1_c00126{bottom:607.600000pt;}
.h3_c00126{height:109.156250pt;}
.h2_c00126{height:109.253711pt;}
.h1_c00126{height:156.034961pt;}
.h0_c00126{height:720.000000pt;}
.w0_c00126{width:1280.000000pt;}
.x0_c00126{left:0.000000pt;}
.x1_c00126{left:124.633333pt;}
.x2_c00126{left:172.840000pt;}
.x3_c00126{left:220.840000pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1509300516ba109009a436c9.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00128;src:url('chunks/assets/font_f54c1c74433970143d4cf8a7.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00128{letter-spacing:0.000000px;}
.ls2_c00128{letter-spacing:45.000000px;}
.ls4_c00128{letter-spacing:46.908600px;}
.ls3_c00128{letter-spacing:49.147500px;}
.ls0_c00128{letter-spacing:49.200000px;}
.ls1_c00128{letter-spacing:96.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;}
}
.ws0_c00128{word-spacing:0.000000px;}
._4_c00128{margin-left:-19.824000px;}
._2_c00128{margin-left:-10.080000px;}
._3_c00128{margin-left:-3.554280px;}
._0_c00128{margin-left:-1.456050px;}
._1_c00128{width:1.441140px;}
._5_c00128{width:3.194280px;}
._6_c00128{width:5.236117px;}
.fc1_c00128{color:transparent;}
.fc0_c00128{color:rgb(0,0,0);}
.fs2_c00128{font-size:168.000000px;}
.fs4_c00128{font-size:168.150000px;}
.fs3_c00128{font-size:180.000000px;}
.fs1_c00128{font-size:192.000000px;}
.fs0_c00128{font-size:240.150000px;}
.y0_c00128{bottom:0.000000px;}
.yb_c00128{bottom:54.637500px;}
.ya_c00128{bottom:99.975000px;}
.y9_c00128{bottom:183.675000px;}
.y8_c00128{bottom:239.220000px;}
.y7_c00128{bottom:292.005000px;}
.y6_c00128{bottom:344.850000px;}
.y5_c00128{bottom:397.650000px;}
.y4_c00128{bottom:450.495000px;}
.y3_c00128{bottom:503.595000px;}
.y2_c00128{bottom:583.425000px;}
.y1_c00128{bottom:698.745000px;}
.h2_c00128{height:122.800781px;}
.h4_c00128{height:122.910425px;}
.h3_c00128{height:131.572266px;}
.h1_c00128{height:175.539331px;}
.h0_c00128{height:810.000000px;}
.w0_c00128{width:1440.000000px;}
.x0_c00128{left:0.000000px;}
.x1_c00128{left:115.462500px;}
.x2_c00128{left:139.275000px;}
.x3_c00128{left:193.275000px;}
.x4_c00128{left:301.320000px;}
.x5_c00128{left:409.320000px;}
.x6_c00128{left:587.250000px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls5_c00128{letter-spacing:0.000000pt;}
.ls2_c00128{letter-spacing:40.000000pt;}
.ls4_c00128{letter-spacing:41.696533pt;}
.ls3_c00128{letter-spacing:43.686667pt;}
.ls0_c00128{letter-spacing:43.733333pt;}
.ls1_c00128{letter-spacing:85.333333pt;}
.ws0_c00128{word-spacing:0.000000pt;}
._4_c00128{margin-left:-17.621333pt;}
._2_c00128{margin-left:-8.960000pt;}
._3_c00128{margin-left:-3.159360pt;}
._0_c00128{margin-left:-1.294267pt;}
._1_c00128{width:1.281013pt;}
._5_c00128{width:2.839360pt;}
._6_c00128{width:4.654326pt;}
.fs2_c00128{font-size:149.333333pt;}
.fs4_c00128{font-size:149.466667pt;}
.fs3_c00128{font-size:160.000000pt;}
.fs1_c00128{font-size:170.666667pt;}
.fs0_c00128{font-size:213.466667pt;}
.y0_c00128{bottom:0.000000pt;}
.yb_c00128{bottom:48.566667pt;}
.ya_c00128{bottom:88.866667pt;}
.y9_c00128{bottom:163.266667pt;}
.y8_c00128{bottom:212.640000pt;}
.y7_c00128{bottom:259.560000pt;}
.y6_c00128{bottom:306.533333pt;}
.y5_c00128{bottom:353.466667pt;}
.y4_c00128{bottom:400.440000pt;}
.y3_c00128{bottom:447.640000pt;}
.y2_c00128{bottom:518.600000pt;}
.y1_c00128{bottom:621.106667pt;}
.h2_c00128{height:109.156250pt;}
.h4_c00128{height:109.253711pt;}
.h3_c00128{height:116.953125pt;}
.h1_c00128{height:156.034961pt;}
.h0_c00128{height:720.000000pt;}
.w0_c00128{width:1280.000000pt;}
.x0_c00128{left:0.000000pt;}
.x1_c00128{left:102.633333pt;}
.x2_c00128{left:123.800000pt;}
.x3_c00128{left:171.800000pt;}
.x4_c00128{left:267.840000pt;}
.x5_c00128{left:363.840000pt;}
.x6_c00128{left:522.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_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_7eb3026a1d160586251f65b6.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00129;src:url('chunks/assets/font_c30d020003e2f488bbcab5be.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00129{vertical-align:0.000000px;}
.ls1_c00129{letter-spacing:0.000000px;}
.ls3_c00129{letter-spacing:0.252600px;}
.ls2_c00129{letter-spacing:0.336000px;}
.ls0_c00129{letter-spacing:57.750000px;}
.sc__c00129{text-shadow:none;}
.sc0_c00129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00129{-webkit-text-stroke:0px transparent;}
.sc0_c00129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00129{word-spacing:0.000000px;}
._6_c00129{margin-left:-16.144800px;}
._3_c00129{margin-left:-9.216000px;}
._5_c00129{margin-left:-4.323000px;}
._4_c00129{margin-left:-3.168000px;}
._1_c00129{margin-left:-1.296000px;}
._0_c00129{width:1.440000px;}
._2_c00129{width:2.736000px;}
.fc0_c00129{color:rgb(0,0,0);}
.fs0_c00129{font-size:144.000000px;}
.fs1_c00129{font-size:144.150000px;}
.y0_c00129{bottom:0.000000px;}
.y4_c00129{bottom:267.675000px;}
.y3_c00129{bottom:312.975000px;}
.y2_c00129{bottom:358.275000px;}
.y1_c00129{bottom:448.905000px;}
.h1_c00129{height:105.257812px;}
.h2_c00129{height:105.367456px;}
.h0_c00129{height:810.000000px;}
.w0_c00129{width:1440.000000px;}
.x0_c00129{left:0.000000px;}
.x1_c00129{left:119.887500px;}
.x2_c00129{left:915.975000px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls1_c00129{letter-spacing:0.000000pt;}
.ls3_c00129{letter-spacing:0.224533pt;}
.ls2_c00129{letter-spacing:0.298667pt;}
.ls0_c00129{letter-spacing:51.333333pt;}
.ws0_c00129{word-spacing:0.000000pt;}
._6_c00129{margin-left:-14.350933pt;}
._3_c00129{margin-left:-8.192000pt;}
._5_c00129{margin-left:-3.842667pt;}
._4_c00129{margin-left:-2.816000pt;}
._1_c00129{margin-left:-1.152000pt;}
._0_c00129{width:1.280000pt;}
._2_c00129{width:2.432000pt;}
.fs0_c00129{font-size:128.000000pt;}
.fs1_c00129{font-size:128.133333pt;}
.y0_c00129{bottom:0.000000pt;}
.y4_c00129{bottom:237.933333pt;}
.y3_c00129{bottom:278.200000pt;}
.y2_c00129{bottom:318.466667pt;}
.y1_c00129{bottom:399.026667pt;}
.h1_c00129{height:93.562500pt;}
.h2_c00129{height:93.659961pt;}
.h0_c00129{height:720.000000pt;}
.w0_c00129{width:1280.000000pt;}
.x0_c00129{left:0.000000pt;}
.x1_c00129{left:106.566667pt;}
.x2_c00129{left:814.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_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_4e118d5633178361da657494.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00130{letter-spacing:0.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:0.000000px;}
._0_c00130{margin-left:-1.681290px;}
.fc0_c00130{color:rgb(0,0,0);}
.fs0_c00130{font-size:240.150000px;}
.y0_c00130{bottom:0.000000px;}
.y1_c00130{bottom:443.850000px;}
.h1_c00130{height:175.539331px;}
.h0_c00130{height:810.000000px;}
.w0_c00130{width:1440.000000px;}
.x0_c00130{left:0.000000px;}
.x1_c00130{left:293.100000px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls0_c00130{letter-spacing:0.000000pt;}
.ws0_c00130{word-spacing:0.000000pt;}
._0_c00130{margin-left:-1.494480pt;}
.fs0_c00130{font-size:213.466667pt;}
.y0_c00130{bottom:0.000000pt;}
.y1_c00130{bottom:394.533333pt;}
.h1_c00130{height:156.034961pt;}
.h0_c00130{height:720.000000pt;}
.w0_c00130{width:1280.000000pt;}
.x0_c00130{left:0.000000pt;}
.x1_c00130{left:260.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_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_c30d020003e2f488bbcab5be.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00131;src:url('chunks/assets/font_a7d2ce199a744f04519e315a.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00131{letter-spacing:0.000000px;}
.ls1_c00131{letter-spacing:44.947500px;}
.ls0_c00131{letter-spacing:45.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:-50.081700px;}
.ws1_c00131{word-spacing:0.000000px;}
._1_c00131{margin-left:-4.680000px;}
._3_c00131{margin-left:-3.243570px;}
._0_c00131{margin-left:-1.260000px;}
._5_c00131{width:1.253190px;}
._4_c00131{width:2.521740px;}
._2_c00131{width:4.500000px;}
.fc0_c00131{color:rgb(0,0,0);}
.fs0_c00131{font-size:180.000000px;}
.fs1_c00131{font-size:180.150000px;}
.fs3_c00131{font-size:192.150000px;}
.fs2_c00131{font-size:264.150000px;}
.y0_c00131{bottom:0.000000px;}
.y7_c00131{bottom:69.712500px;}
.y6_c00131{bottom:139.950000px;}
.y5_c00131{bottom:225.150000px;}
.y4_c00131{bottom:310.380000px;}
.y3_c00131{bottom:380.625000px;}
.y2_c00131{bottom:465.870000px;}
.y1_c00131{bottom:536.070000px;}
.y8_c00131{bottom:667.800000px;}
.h1_c00131{height:131.572266px;}
.h2_c00131{height:131.681909px;}
.h3_c00131{height:193.082300px;}
.h0_c00131{height:810.000000px;}
.w0_c00131{width:1440.000000px;}
.x0_c00131{left:0.000000px;}
.x1_c00131{left:109.837500px;}
.x5_c00131{left:277.650000px;}
.x2_c00131{left:757.950000px;}
.x3_c00131{left:865.995000px;}
.x4_c00131{left:1119.825000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls2_c00131{letter-spacing:0.000000pt;}
.ls1_c00131{letter-spacing:39.953333pt;}
.ls0_c00131{letter-spacing:40.000000pt;}
.ws0_c00131{word-spacing:-44.517067pt;}
.ws1_c00131{word-spacing:0.000000pt;}
._1_c00131{margin-left:-4.160000pt;}
._3_c00131{margin-left:-2.883173pt;}
._0_c00131{margin-left:-1.120000pt;}
._5_c00131{width:1.113946pt;}
._4_c00131{width:2.241546pt;}
._2_c00131{width:4.000000pt;}
.fs0_c00131{font-size:160.000000pt;}
.fs1_c00131{font-size:160.133333pt;}
.fs3_c00131{font-size:170.800000pt;}
.fs2_c00131{font-size:234.800000pt;}
.y0_c00131{bottom:0.000000pt;}
.y7_c00131{bottom:61.966667pt;}
.y6_c00131{bottom:124.400000pt;}
.y5_c00131{bottom:200.133333pt;}
.y4_c00131{bottom:275.893333pt;}
.y3_c00131{bottom:338.333333pt;}
.y2_c00131{bottom:414.106667pt;}
.y1_c00131{bottom:476.506667pt;}
.y8_c00131{bottom:593.600000pt;}
.h1_c00131{height:116.953125pt;}
.h2_c00131{height:117.050586pt;}
.h3_c00131{height:171.628711pt;}
.h0_c00131{height:720.000000pt;}
.w0_c00131{width:1280.000000pt;}
.x0_c00131{left:0.000000pt;}
.x1_c00131{left:97.633333pt;}
.x5_c00131{left:246.800000pt;}
.x2_c00131{left:673.733333pt;}
.x3_c00131{left:769.773333pt;}
.x4_c00131{left:995.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_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_c30d020003e2f488bbcab5be.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00132;src:url('chunks/assets/font_056f2c2ff8a2a42c153f779b.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00132{letter-spacing:0.000000px;}
.ls1_c00132{letter-spacing:51.247500px;}
.ls0_c00132{letter-spacing:51.300000px;}
.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:-45.077700px;}
.ws1_c00132{word-spacing:0.000000px;}
._2_c00132{margin-left:-4.212000px;}
._4_c00132{margin-left:-3.081012px;}
._0_c00132{margin-left:-1.620000px;}
._1_c00132{width:1.458000px;}
._3_c00132{width:3.078000px;}
._5_c00132{width:4.212000px;}
.fc0_c00132{color:rgb(0,0,0);}
.fs0_c00132{font-size:162.000000px;}
.fs1_c00132{font-size:162.150000px;}
.fs3_c00132{font-size:192.150000px;}
.fs2_c00132{font-size:264.150000px;}
.y0_c00132{bottom:0.000000px;}
.y7_c00132{bottom:54.412500px;}
.y6_c00132{bottom:122.512500px;}
.y5_c00132{bottom:205.650000px;}
.y4_c00132{bottom:288.495000px;}
.y3_c00132{bottom:371.625000px;}
.y2_c00132{bottom:454.755000px;}
.y1_c00132{bottom:537.870000px;}
.y8_c00132{bottom:667.800000px;}
.h1_c00132{height:118.415039px;}
.h2_c00132{height:118.524683px;}
.h3_c00132{height:193.082300px;}
.h0_c00132{height:810.000000px;}
.w0_c00132{width:1440.000000px;}
.x0_c00132{left:0.000000px;}
.x1_c00132{left:109.837500px;}
.x2_c00132{left:136.837500px;}
.x3_c00132{left:277.650000px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls2_c00132{letter-spacing:0.000000pt;}
.ls1_c00132{letter-spacing:45.553333pt;}
.ls0_c00132{letter-spacing:45.600000pt;}
.ws0_c00132{word-spacing:-40.069067pt;}
.ws1_c00132{word-spacing:0.000000pt;}
._2_c00132{margin-left:-3.744000pt;}
._4_c00132{margin-left:-2.738677pt;}
._0_c00132{margin-left:-1.440000pt;}
._1_c00132{width:1.296000pt;}
._3_c00132{width:2.736000pt;}
._5_c00132{width:3.744000pt;}
.fs0_c00132{font-size:144.000000pt;}
.fs1_c00132{font-size:144.133333pt;}
.fs3_c00132{font-size:170.800000pt;}
.fs2_c00132{font-size:234.800000pt;}
.y0_c00132{bottom:0.000000pt;}
.y7_c00132{bottom:48.366667pt;}
.y6_c00132{bottom:108.900000pt;}
.y5_c00132{bottom:182.800000pt;}
.y4_c00132{bottom:256.440000pt;}
.y3_c00132{bottom:330.333333pt;}
.y2_c00132{bottom:404.226667pt;}
.y1_c00132{bottom:478.106667pt;}
.y8_c00132{bottom:593.600000pt;}
.h1_c00132{height:105.257812pt;}
.h2_c00132{height:105.355273pt;}
.h3_c00132{height:171.628711pt;}
.h0_c00132{height:720.000000pt;}
.w0_c00132{width:1280.000000pt;}
.x0_c00132{left:0.000000pt;}
.x1_c00132{left:97.633333pt;}
.x2_c00132{left:121.633333pt;}
.x3_c00132{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_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_c30d020003e2f488bbcab5be.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00133;src:url('chunks/assets/font_02978dba2d64b35933230018.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00133{vertical-align:0.000000px;}
.ls3_c00133{letter-spacing:0.000000px;}
.ls0_c00133{letter-spacing:40.747500px;}
.ls1_c00133{letter-spacing:49.147500px;}
.ls2_c00133{letter-spacing:49.200000px;}
.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:0.000000px;}
.ws0_c00133{word-spacing:1234.776000px;}
._9_c00133{margin-left:-18.980274px;}
._7_c00133{margin-left:-5.953692px;}
._1_c00133{margin-left:-4.035726px;}
._3_c00133{margin-left:-3.026364px;}
._0_c00133{margin-left:-1.152708px;}
._2_c00133{width:1.537200px;}
._4_c00133{width:3.530982px;}
._8_c00133{width:6.196890px;}
._5_c00133{width:426.564564px;}
._6_c00133{width:744.862800px;}
.fc0_c00133{color:rgb(0,0,0);}
.fs2_c00133{font-size:168.000000px;}
.fs1_c00133{font-size:168.150000px;}
.fs0_c00133{font-size:192.150000px;}
.fs3_c00133{font-size:264.150000px;}
.y0_c00133{bottom:0.000000px;}
.y7_c00133{bottom:68.212500px;}
.y6_c00133{bottom:146.250000px;}
.y5_c00133{bottom:216.750000px;}
.y4_c00133{bottom:295.095000px;}
.y3_c00133{bottom:373.125000px;}
.y2_c00133{bottom:451.170000px;}
.y1_c00133{bottom:553.800000px;}
.y8_c00133{bottom:667.800000px;}
.h3_c00133{height:122.800781px;}
.h2_c00133{height:122.910425px;}
.h1_c00133{height:140.453394px;}
.h4_c00133{height:193.082300px;}
.h0_c00133{height:810.000000px;}
.w0_c00133{width:1440.000000px;}
.x0_c00133{left:0.000000px;}
.x1_c00133{left:109.837500px;}
.x2_c00133{left:163.830000px;}
.x4_c00133{left:277.650000px;}
.x3_c00133{left:757.950000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls3_c00133{letter-spacing:0.000000pt;}
.ls0_c00133{letter-spacing:36.220000pt;}
.ls1_c00133{letter-spacing:43.686667pt;}
.ls2_c00133{letter-spacing:43.733333pt;}
.ws1_c00133{word-spacing:0.000000pt;}
.ws0_c00133{word-spacing:1097.578667pt;}
._9_c00133{margin-left:-16.871354pt;}
._7_c00133{margin-left:-5.292171pt;}
._1_c00133{margin-left:-3.587312pt;}
._3_c00133{margin-left:-2.690101pt;}
._0_c00133{margin-left:-1.024629pt;}
._2_c00133{width:1.366400pt;}
._4_c00133{width:3.138651pt;}
._8_c00133{width:5.508347pt;}
._5_c00133{width:379.168501pt;}
._6_c00133{width:662.100267pt;}
.fs2_c00133{font-size:149.333333pt;}
.fs1_c00133{font-size:149.466667pt;}
.fs0_c00133{font-size:170.800000pt;}
.fs3_c00133{font-size:234.800000pt;}
.y0_c00133{bottom:0.000000pt;}
.y7_c00133{bottom:60.633333pt;}
.y6_c00133{bottom:130.000000pt;}
.y5_c00133{bottom:192.666667pt;}
.y4_c00133{bottom:262.306667pt;}
.y3_c00133{bottom:331.666667pt;}
.y2_c00133{bottom:401.040000pt;}
.y1_c00133{bottom:492.266667pt;}
.y8_c00133{bottom:593.600000pt;}
.h3_c00133{height:109.156250pt;}
.h2_c00133{height:109.253711pt;}
.h1_c00133{height:124.847461pt;}
.h4_c00133{height:171.628711pt;}
.h0_c00133{height:720.000000pt;}
.w0_c00133{width:1280.000000pt;}
.x0_c00133{left:0.000000pt;}
.x1_c00133{left:97.633333pt;}
.x2_c00133{left:145.626667pt;}
.x4_c00133{left:246.800000pt;}
.x3_c00133{left:673.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_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_318905c79feb8f544ce96e59.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00134;src:url('chunks/assets/font_c30d020003e2f488bbcab5be.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00134{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00134{vertical-align:0.000000px;}
.ls2_c00134{letter-spacing:0.000000px;}
.ls0_c00134{letter-spacing:40.747500px;}
.ls1_c00134{letter-spacing:40.800000px;}
.sc__c00134{text-shadow:none;}
.sc0_c00134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00134{-webkit-text-stroke:0px transparent;}
.sc0_c00134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00134{word-spacing:-40.073700px;}
.ws1_c00134{word-spacing:0.000000px;}
._3_c00134{margin-left:-4.035150px;}
._2_c00134{margin-left:-2.209950px;}
._0_c00134{margin-left:-1.056600px;}
._4_c00134{width:1.345308px;}
._1_c00134{width:3.483750px;}
.fc0_c00134{color:rgb(0,0,0);}
.fs3_c00134{font-size:144.150000px;}
.fs2_c00134{font-size:192.000000px;}
.fs1_c00134{font-size:192.150000px;}
.fs0_c00134{font-size:264.150000px;}
.y0_c00134{bottom:0.000000px;}
.y8_c00134{bottom:49.650000px;}
.y7_c00134{bottom:137.587500px;}
.y6_c00134{bottom:196.995000px;}
.y5_c00134{bottom:274.425000px;}
.y4_c00134{bottom:371.070000px;}
.y3_c00134{bottom:467.400000px;}
.y2_c00134{bottom:564.030000px;}
.y1_c00134{bottom:667.800000px;}
.h4_c00134{height:105.367456px;}
.h3_c00134{height:140.343750px;}
.h2_c00134{height:140.453394px;}
.h1_c00134{height:193.082300px;}
.h0_c00134{height:810.000000px;}
.w0_c00134{width:1440.000000px;}
.x0_c00134{left:0.000000px;}
.x2_c00134{left:51.150000px;}
.x3_c00134{left:105.150000px;}
.x1_c00134{left:268.620000px;}
.x4_c00134{left:483.225000px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls2_c00134{letter-spacing:0.000000pt;}
.ls0_c00134{letter-spacing:36.220000pt;}
.ls1_c00134{letter-spacing:36.266667pt;}
.ws0_c00134{word-spacing:-35.621067pt;}
.ws1_c00134{word-spacing:0.000000pt;}
._3_c00134{margin-left:-3.586800pt;}
._2_c00134{margin-left:-1.964400pt;}
._0_c00134{margin-left:-0.939200pt;}
._4_c00134{width:1.195829pt;}
._1_c00134{width:3.096667pt;}
.fs3_c00134{font-size:128.133333pt;}
.fs2_c00134{font-size:170.666667pt;}
.fs1_c00134{font-size:170.800000pt;}
.fs0_c00134{font-size:234.800000pt;}
.y0_c00134{bottom:0.000000pt;}
.y8_c00134{bottom:44.133333pt;}
.y7_c00134{bottom:122.300000pt;}
.y6_c00134{bottom:175.106667pt;}
.y5_c00134{bottom:243.933333pt;}
.y4_c00134{bottom:329.840000pt;}
.y3_c00134{bottom:415.466667pt;}
.y2_c00134{bottom:501.360000pt;}
.y1_c00134{bottom:593.600000pt;}
.h4_c00134{height:93.659961pt;}
.h3_c00134{height:124.750000pt;}
.h2_c00134{height:124.847461pt;}
.h1_c00134{height:171.628711pt;}
.h0_c00134{height:720.000000pt;}
.w0_c00134{width:1280.000000pt;}
.x0_c00134{left:0.000000pt;}
.x2_c00134{left:45.466667pt;}
.x3_c00134{left:93.466667pt;}
.x1_c00134{left:238.773333pt;}
.x4_c00134{left:429.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_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_0c949711836d9df73c848188.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:0.981934;font-style:normal;font-weight:normal;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_ef239423de82c21efd4f0de3.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:0.981934;font-style:normal;font-weight:normal;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_58c902b5afa74ce50229c87f.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00135;src:url('chunks/assets/font_5989fd40da01bebd0498e05c.woff2')format("woff");}.ff4_c00135{font-family:ff4_c00135;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00135{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00135{vertical-align:-21.600000px;}
.v3_c00135{vertical-align:-15.660000px;}
.v0_c00135{vertical-align:0.000000px;}
.v1_c00135{vertical-align:21.600000px;}
.ls12_c00135{letter-spacing:-0.876000px;}
.ls11_c00135{letter-spacing:-0.600000px;}
.lsc_c00135{letter-spacing:-0.384000px;}
.lsd_c00135{letter-spacing:-0.336000px;}
.ls18_c00135{letter-spacing:-0.300000px;}
.ls15_c00135{letter-spacing:-0.240000px;}
.ls13_c00135{letter-spacing:-0.192000px;}
.ls17_c00135{letter-spacing:-0.144000px;}
.lsf_c00135{letter-spacing:-0.096000px;}
.lsb_c00135{letter-spacing:0.000000px;}
.ls9_c00135{letter-spacing:0.048000px;}
.ls2_c00135{letter-spacing:0.262800px;}
.ls0_c00135{letter-spacing:0.264000px;}
.ls16_c00135{letter-spacing:0.288000px;}
.ls1_c00135{letter-spacing:0.322800px;}
.ls14_c00135{letter-spacing:0.336000px;}
.ls6_c00135{letter-spacing:0.382800px;}
.lsa_c00135{letter-spacing:0.390000px;}
.ls19_c00135{letter-spacing:0.480000px;}
.ls8_c00135{letter-spacing:0.570000px;}
.lse_c00135{letter-spacing:0.576000px;}
.ls5_c00135{letter-spacing:0.600000px;}
.ls10_c00135{letter-spacing:0.624000px;}
.ls3_c00135{letter-spacing:0.660000px;}
.ls4_c00135{letter-spacing:13.850400px;}
.ls7_c00135{letter-spacing:22.250400px;}
.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;}
}
.ws10_c00135{word-spacing:-14.040000px;}
.ws5_c00135{word-spacing:-13.560000px;}
.wsf_c00135{word-spacing:-13.260000px;}
.ws11_c00135{word-spacing:-12.960000px;}
.ws4_c00135{word-spacing:-11.472000px;}
.ws3_c00135{word-spacing:-11.424000px;}
.wsd_c00135{word-spacing:-11.136000px;}
.ws9_c00135{word-spacing:-10.896000px;}
.ws2_c00135{word-spacing:-10.848000px;}
.wse_c00135{word-spacing:-10.704000px;}
.wsb_c00135{word-spacing:-10.656000px;}
.wsc_c00135{word-spacing:-10.608000px;}
.ws1_c00135{word-spacing:-10.512000px;}
.ws0_c00135{word-spacing:-10.464000px;}
.ws6_c00135{word-spacing:-9.272400px;}
.ws7_c00135{word-spacing:-8.073600px;}
.ws8_c00135{word-spacing:-7.170000px;}
.ws13_c00135{word-spacing:-0.336000px;}
.ws12_c00135{word-spacing:0.000000px;}
.ws14_c00135{word-spacing:0.288000px;}
.ws15_c00135{word-spacing:1.692000px;}
.wsa_c00135{word-spacing:13.680000px;}
._8_c00135{margin-left:-2.148000px;}
._1_c00135{margin-left:-1.080000px;}
._0_c00135{width:1.182000px;}
._7_c00135{width:2.928000px;}
._6_c00135{width:3.936000px;}
._d_c00135{width:5.004000px;}
._c_c00135{width:6.360000px;}
._9_c00135{width:12.528000px;}
._a_c00135{width:13.866000px;}
._b_c00135{width:22.128000px;}
._3_c00135{width:91.302000px;}
._2_c00135{width:261.750000px;}
._4_c00135{width:304.614000px;}
._5_c00135{width:328.230000px;}
.fc1_c00135{color:rgb(0,0,0);}
.fc0_c00135{color:rgb(0,0,255);}
.fs5_c00135{font-size:30.000000px;}
.fs4_c00135{font-size:39.600000px;}
.fs1_c00135{font-size:48.000000px;}
.fs2_c00135{font-size:60.000000px;}
.fs0_c00135{font-size:72.000000px;}
.fs3_c00135{font-size:120.000000px;}
.y0_c00135{bottom:0.000000px;}
.y2_c00135{bottom:15.285000px;}
.yf_c00135{bottom:67.537500px;}
.ye_c00135{bottom:85.237500px;}
.yd_c00135{bottom:99.937500px;}
.yc_c00135{bottom:114.637500px;}
.yb_c00135{bottom:129.337500px;}
.ya_c00135{bottom:143.737500px;}
.y9_c00135{bottom:158.430000px;}
.y8_c00135{bottom:173.175000px;}
.y7_c00135{bottom:187.875000px;}
.y31_c00135{bottom:246.675000px;}
.y30_c00135{bottom:271.875000px;}
.y2f_c00135{bottom:313.875000px;}
.y2e_c00135{bottom:335.775000px;}
.y2d_c00135{bottom:357.705000px;}
.y2c_c00135{bottom:379.620000px;}
.y2b_c00135{bottom:401.820000px;}
.y2a_c00135{bottom:431.220000px;}
.y29_c00135{bottom:521.550000px;}
.y28_c00135{bottom:536.250000px;}
.y27_c00135{bottom:550.650000px;}
.y26_c00135{bottom:580.050000px;}
.y25_c00135{bottom:598.650000px;}
.y24_c00135{bottom:613.350000px;}
.y23_c00135{bottom:627.750000px;}
.y22_c00135{bottom:642.450000px;}
.y21_c00135{bottom:657.150000px;}
.y20_c00135{bottom:671.850000px;}
.y1f_c00135{bottom:686.580000px;}
.y1e_c00135{bottom:701.280000px;}
.y1d_c00135{bottom:715.695000px;}
.y1c_c00135{bottom:730.380000px;}
.y1b_c00135{bottom:745.095000px;}
.y1a_c00135{bottom:759.780000px;}
.y19_c00135{bottom:774.495000px;}
.y18_c00135{bottom:785.295000px;}
.y17_c00135{bottom:803.580000px;}
.y16_c00135{bottom:818.295000px;}
.y15_c00135{bottom:829.695000px;}
.y14_c00135{bottom:848.025000px;}
.y13_c00135{bottom:866.325000px;}
.y12_c00135{bottom:918.825000px;}
.y11_c00135{bottom:962.625000px;}
.y10_c00135{bottom:1006.725000px;}
.y6_c00135{bottom:1075.455000px;}
.y5_c00135{bottom:1090.170000px;}
.y4_c00135{bottom:1104.870000px;}
.y3_c00135{bottom:1119.570000px;}
.y1_c00135{bottom:1145.670000px;}
.ha_c00135{height:21.533203px;}
.h1_c00135{height:32.400000px;}
.h3_c00135{height:34.453125px;}
.h4_c00135{height:38.578125px;}
.h5_c00135{height:38.625000px;}
.hb_c00135{height:43.066406px;}
.h6_c00135{height:48.222656px;}
.h9_c00135{height:49.963828px;}
.h8_c00135{height:50.023828px;}
.h2_c00135{height:57.867188px;}
.h7_c00135{height:96.445312px;}
.h0_c00135{height:1263.000000px;}
.w2_c00135{width:739.125000px;}
.w0_c00135{width:893.100000px;}
.w1_c00135{width:893.250000px;}
.x0_c00135{left:0.000000px;}
.x2_c00135{left:7.800000px;}
.x1_c00135{left:77.137500px;}
.x3_c00135{left:84.937500px;}
.x4_c00135{left:442.650000px;}
@media print{
.v2_c00135{vertical-align:-19.200000pt;}
.v3_c00135{vertical-align:-13.920000pt;}
.v0_c00135{vertical-align:0.000000pt;}
.v1_c00135{vertical-align:19.200000pt;}
.ls12_c00135{letter-spacing:-0.778667pt;}
.ls11_c00135{letter-spacing:-0.533333pt;}
.lsc_c00135{letter-spacing:-0.341333pt;}
.lsd_c00135{letter-spacing:-0.298667pt;}
.ls18_c00135{letter-spacing:-0.266667pt;}
.ls15_c00135{letter-spacing:-0.213333pt;}
.ls13_c00135{letter-spacing:-0.170667pt;}
.ls17_c00135{letter-spacing:-0.128000pt;}
.lsf_c00135{letter-spacing:-0.085333pt;}
.lsb_c00135{letter-spacing:0.000000pt;}
.ls9_c00135{letter-spacing:0.042667pt;}
.ls2_c00135{letter-spacing:0.233600pt;}
.ls0_c00135{letter-spacing:0.234667pt;}
.ls16_c00135{letter-spacing:0.256000pt;}
.ls1_c00135{letter-spacing:0.286933pt;}
.ls14_c00135{letter-spacing:0.298667pt;}
.ls6_c00135{letter-spacing:0.340267pt;}
.lsa_c00135{letter-spacing:0.346667pt;}
.ls19_c00135{letter-spacing:0.426667pt;}
.ls8_c00135{letter-spacing:0.506667pt;}
.lse_c00135{letter-spacing:0.512000pt;}
.ls5_c00135{letter-spacing:0.533333pt;}
.ls10_c00135{letter-spacing:0.554667pt;}
.ls3_c00135{letter-spacing:0.586667pt;}
.ls4_c00135{letter-spacing:12.311467pt;}
.ls7_c00135{letter-spacing:19.778133pt;}
.ws10_c00135{word-spacing:-12.480000pt;}
.ws5_c00135{word-spacing:-12.053333pt;}
.wsf_c00135{word-spacing:-11.786667pt;}
.ws11_c00135{word-spacing:-11.520000pt;}
.ws4_c00135{word-spacing:-10.197333pt;}
.ws3_c00135{word-spacing:-10.154667pt;}
.wsd_c00135{word-spacing:-9.898667pt;}
.ws9_c00135{word-spacing:-9.685333pt;}
.ws2_c00135{word-spacing:-9.642667pt;}
.wse_c00135{word-spacing:-9.514667pt;}
.wsb_c00135{word-spacing:-9.472000pt;}
.wsc_c00135{word-spacing:-9.429333pt;}
.ws1_c00135{word-spacing:-9.344000pt;}
.ws0_c00135{word-spacing:-9.301333pt;}
.ws6_c00135{word-spacing:-8.242133pt;}
.ws7_c00135{word-spacing:-7.176533pt;}
.ws8_c00135{word-spacing:-6.373333pt;}
.ws13_c00135{word-spacing:-0.298667pt;}
.ws12_c00135{word-spacing:0.000000pt;}
.ws14_c00135{word-spacing:0.256000pt;}
.ws15_c00135{word-spacing:1.504000pt;}
.wsa_c00135{word-spacing:12.160000pt;}
._8_c00135{margin-left:-1.909333pt;}
._1_c00135{margin-left:-0.960000pt;}
._0_c00135{width:1.050667pt;}
._7_c00135{width:2.602667pt;}
._6_c00135{width:3.498667pt;}
._d_c00135{width:4.448000pt;}
._c_c00135{width:5.653333pt;}
._9_c00135{width:11.136000pt;}
._a_c00135{width:12.325333pt;}
._b_c00135{width:19.669333pt;}
._3_c00135{width:81.157333pt;}
._2_c00135{width:232.666667pt;}
._4_c00135{width:270.768000pt;}
._5_c00135{width:291.760000pt;}
.fs5_c00135{font-size:26.666667pt;}
.fs4_c00135{font-size:35.200000pt;}
.fs1_c00135{font-size:42.666667pt;}
.fs2_c00135{font-size:53.333333pt;}
.fs0_c00135{font-size:64.000000pt;}
.fs3_c00135{font-size:106.666667pt;}
.y0_c00135{bottom:0.000000pt;}
.y2_c00135{bottom:13.586667pt;}
.yf_c00135{bottom:60.033333pt;}
.ye_c00135{bottom:75.766667pt;}
.yd_c00135{bottom:88.833333pt;}
.yc_c00135{bottom:101.900000pt;}
.yb_c00135{bottom:114.966667pt;}
.ya_c00135{bottom:127.766667pt;}
.y9_c00135{bottom:140.826667pt;}
.y8_c00135{bottom:153.933333pt;}
.y7_c00135{bottom:167.000000pt;}
.y31_c00135{bottom:219.266667pt;}
.y30_c00135{bottom:241.666667pt;}
.y2f_c00135{bottom:279.000000pt;}
.y2e_c00135{bottom:298.466667pt;}
.y2d_c00135{bottom:317.960000pt;}
.y2c_c00135{bottom:337.440000pt;}
.y2b_c00135{bottom:357.173333pt;}
.y2a_c00135{bottom:383.306667pt;}
.y29_c00135{bottom:463.600000pt;}
.y28_c00135{bottom:476.666667pt;}
.y27_c00135{bottom:489.466667pt;}
.y26_c00135{bottom:515.600000pt;}
.y25_c00135{bottom:532.133333pt;}
.y24_c00135{bottom:545.200000pt;}
.y23_c00135{bottom:558.000000pt;}
.y22_c00135{bottom:571.066667pt;}
.y21_c00135{bottom:584.133333pt;}
.y20_c00135{bottom:597.200000pt;}
.y1f_c00135{bottom:610.293333pt;}
.y1e_c00135{bottom:623.360000pt;}
.y1d_c00135{bottom:636.173333pt;}
.y1c_c00135{bottom:649.226667pt;}
.y1b_c00135{bottom:662.306667pt;}
.y1a_c00135{bottom:675.360000pt;}
.y19_c00135{bottom:688.440000pt;}
.y18_c00135{bottom:698.040000pt;}
.y17_c00135{bottom:714.293333pt;}
.y16_c00135{bottom:727.373333pt;}
.y15_c00135{bottom:737.506667pt;}
.y14_c00135{bottom:753.800000pt;}
.y13_c00135{bottom:770.066667pt;}
.y12_c00135{bottom:816.733333pt;}
.y11_c00135{bottom:855.666667pt;}
.y10_c00135{bottom:894.866667pt;}
.y6_c00135{bottom:955.960000pt;}
.y5_c00135{bottom:969.040000pt;}
.y4_c00135{bottom:982.106667pt;}
.y3_c00135{bottom:995.173333pt;}
.y1_c00135{bottom:1018.373333pt;}
.ha_c00135{height:19.140625pt;}
.h1_c00135{height:28.800000pt;}
.h3_c00135{height:30.625000pt;}
.h4_c00135{height:34.291667pt;}
.h5_c00135{height:34.333333pt;}
.hb_c00135{height:38.281250pt;}
.h6_c00135{height:42.864583pt;}
.h9_c00135{height:44.412292pt;}
.h8_c00135{height:44.465625pt;}
.h2_c00135{height:51.437500pt;}
.h7_c00135{height:85.729167pt;}
.h0_c00135{height:1122.666667pt;}
.w2_c00135{width:657.000000pt;}
.w0_c00135{width:793.866667pt;}
.w1_c00135{width:794.000000pt;}
.x0_c00135{left:0.000000pt;}
.x2_c00135{left:6.933333pt;}
.x1_c00135{left:68.566667pt;}
.x3_c00135{left:75.500000pt;}
.x4_c00135{left:393.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_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_3f5183426a7f2211325ce14a.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:0.981934;font-style:normal;font-weight:normal;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_372a98b09db6ef17462dc263.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:0.680176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00136;src:url('chunks/assets/font_3c0fdfce49556f4f6b3be1e7.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00136;src:url('chunks/assets/font_a2debfd5aa9f9949d9c6b160.woff2')format("woff");}.ff4_c00136{font-family:ff4_c00136;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00136;src:url('chunks/assets/font_f29989d33941eff2ae8a285b.woff2')format("woff");}.ff5_c00136{font-family:ff5_c00136;line-height:0.982910;font-style: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;}
.lsa_c00136{letter-spacing:-1.140000px;}
.ls8_c00136{letter-spacing:-0.480000px;}
.ls7_c00136{letter-spacing:-0.360000px;}
.ls5_c00136{letter-spacing:-0.300000px;}
.ls4_c00136{letter-spacing:0.000000px;}
.ls9_c00136{letter-spacing:0.060000px;}
.ls0_c00136{letter-spacing:0.120000px;}
.ls3_c00136{letter-spacing:0.300000px;}
.ls6_c00136{letter-spacing:0.600000px;}
.ls1_c00136{letter-spacing:1.320000px;}
.ls2_c00136{letter-spacing:2.100000px;}
.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;}
}
.ws2_c00136{word-spacing:-14.160000px;}
.ws4_c00136{word-spacing:-13.620000px;}
.ws0_c00136{word-spacing:-13.560000px;}
.ws1_c00136{word-spacing:-13.260000px;}
.ws3_c00136{word-spacing:-13.080000px;}
.ws5_c00136{word-spacing:-12.420000px;}
.ws6_c00136{word-spacing:0.000000px;}
._0_c00136{margin-left:-1.020000px;}
._2_c00136{width:1.080000px;}
._1_c00136{width:2.430000px;}
._7_c00136{width:3.750000px;}
._6_c00136{width:4.800000px;}
._5_c00136{width:6.360000px;}
._4_c00136{width:7.560000px;}
._8_c00136{width:9.300000px;}
._9_c00136{width:11.130000px;}
._3_c00136{width:108.828000px;}
.fc1_c00136{color:rgb(0,0,0);}
.fc0_c00136{color:rgb(0,0,255);}
.fs1_c00136{font-size:54.000000px;}
.fs0_c00136{font-size:60.000000px;}
.fs2_c00136{font-size:84.000000px;}
.y0_c00136{bottom:0.000000px;}
.y4_c00136{bottom:71.137500px;}
.y3_c00136{bottom:88.537500px;}
.y2f_c00136{bottom:168.330000px;}
.y2e_c00136{bottom:190.275000px;}
.y2d_c00136{bottom:212.175000px;}
.y2c_c00136{bottom:234.375000px;}
.y2b_c00136{bottom:256.275000px;}
.y2a_c00136{bottom:278.175000px;}
.y29_c00136{bottom:300.075000px;}
.y28_c00136{bottom:322.275000px;}
.y27_c00136{bottom:344.205000px;}
.y26_c00136{bottom:375.105000px;}
.y25_c00136{bottom:403.005000px;}
.y24_c00136{bottom:424.920000px;}
.y23_c00136{bottom:446.820000px;}
.y22_c00136{bottom:468.705000px;}
.y21_c00136{bottom:490.920000px;}
.y20_c00136{bottom:512.850000px;}
.y1f_c00136{bottom:534.750000px;}
.y1e_c00136{bottom:556.650000px;}
.y1d_c00136{bottom:578.850000px;}
.y1c_c00136{bottom:600.750000px;}
.y1b_c00136{bottom:622.650000px;}
.y1a_c00136{bottom:644.550000px;}
.y19_c00136{bottom:666.750000px;}
.y18_c00136{bottom:688.695000px;}
.y17_c00136{bottom:710.595000px;}
.y16_c00136{bottom:732.495000px;}
.y15_c00136{bottom:754.695000px;}
.y14_c00136{bottom:776.580000px;}
.y13_c00136{bottom:798.495000px;}
.y12_c00136{bottom:820.395000px;}
.y11_c00136{bottom:842.580000px;}
.y10_c00136{bottom:864.525000px;}
.yf_c00136{bottom:886.425000px;}
.ye_c00136{bottom:908.325000px;}
.yd_c00136{bottom:930.525000px;}
.yc_c00136{bottom:952.425000px;}
.yb_c00136{bottom:974.325000px;}
.ya_c00136{bottom:996.225000px;}
.y9_c00136{bottom:1018.170000px;}
.y8_c00136{bottom:1040.370000px;}
.y7_c00136{bottom:1062.255000px;}
.y6_c00136{bottom:1084.170000px;}
.y5_c00136{bottom:1115.370000px;}
.y2_c00136{bottom:1142.070000px;}
.y1_c00136{bottom:1163.670000px;}
.h2_c00136{height:39.990234px;}
.h5_c00136{height:43.066406px;}
.h3_c00136{height:45.509766px;}
.h1_c00136{height:48.222656px;}
.h6_c00136{height:48.281250px;}
.h4_c00136{height:67.511719px;}
.h0_c00136{height:1263.000000px;}
.w0_c00136{width:893.100000px;}
.w1_c00136{width:893.250000px;}
.x0_c00136{left:0.000000px;}
.x1_c00136{left:84.937500px;}
.x4_c00136{left:99.937500px;}
.x3_c00136{left:442.650000px;}
.x2_c00136{left:446.550000px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.lsa_c00136{letter-spacing:-1.013333pt;}
.ls8_c00136{letter-spacing:-0.426667pt;}
.ls7_c00136{letter-spacing:-0.320000pt;}
.ls5_c00136{letter-spacing:-0.266667pt;}
.ls4_c00136{letter-spacing:0.000000pt;}
.ls9_c00136{letter-spacing:0.053333pt;}
.ls0_c00136{letter-spacing:0.106667pt;}
.ls3_c00136{letter-spacing:0.266667pt;}
.ls6_c00136{letter-spacing:0.533333pt;}
.ls1_c00136{letter-spacing:1.173333pt;}
.ls2_c00136{letter-spacing:1.866667pt;}
.ws2_c00136{word-spacing:-12.586667pt;}
.ws4_c00136{word-spacing:-12.106667pt;}
.ws0_c00136{word-spacing:-12.053333pt;}
.ws1_c00136{word-spacing:-11.786667pt;}
.ws3_c00136{word-spacing:-11.626667pt;}
.ws5_c00136{word-spacing:-11.040000pt;}
.ws6_c00136{word-spacing:0.000000pt;}
._0_c00136{margin-left:-0.906667pt;}
._2_c00136{width:0.960000pt;}
._1_c00136{width:2.160000pt;}
._7_c00136{width:3.333333pt;}
._6_c00136{width:4.266667pt;}
._5_c00136{width:5.653333pt;}
._4_c00136{width:6.720000pt;}
._8_c00136{width:8.266667pt;}
._9_c00136{width:9.893333pt;}
._3_c00136{width:96.736000pt;}
.fs1_c00136{font-size:48.000000pt;}
.fs0_c00136{font-size:53.333333pt;}
.fs2_c00136{font-size:74.666667pt;}
.y0_c00136{bottom:0.000000pt;}
.y4_c00136{bottom:63.233333pt;}
.y3_c00136{bottom:78.700000pt;}
.y2f_c00136{bottom:149.626667pt;}
.y2e_c00136{bottom:169.133333pt;}
.y2d_c00136{bottom:188.600000pt;}
.y2c_c00136{bottom:208.333333pt;}
.y2b_c00136{bottom:227.800000pt;}
.y2a_c00136{bottom:247.266667pt;}
.y29_c00136{bottom:266.733333pt;}
.y28_c00136{bottom:286.466667pt;}
.y27_c00136{bottom:305.960000pt;}
.y26_c00136{bottom:333.426667pt;}
.y25_c00136{bottom:358.226667pt;}
.y24_c00136{bottom:377.706667pt;}
.y23_c00136{bottom:397.173333pt;}
.y22_c00136{bottom:416.626667pt;}
.y21_c00136{bottom:436.373333pt;}
.y20_c00136{bottom:455.866667pt;}
.y1f_c00136{bottom:475.333333pt;}
.y1e_c00136{bottom:494.800000pt;}
.y1d_c00136{bottom:514.533333pt;}
.y1c_c00136{bottom:534.000000pt;}
.y1b_c00136{bottom:553.466667pt;}
.y1a_c00136{bottom:572.933333pt;}
.y19_c00136{bottom:592.666667pt;}
.y18_c00136{bottom:612.173333pt;}
.y17_c00136{bottom:631.640000pt;}
.y16_c00136{bottom:651.106667pt;}
.y15_c00136{bottom:670.840000pt;}
.y14_c00136{bottom:690.293333pt;}
.y13_c00136{bottom:709.773333pt;}
.y12_c00136{bottom:729.240000pt;}
.y11_c00136{bottom:748.960000pt;}
.y10_c00136{bottom:768.466667pt;}
.yf_c00136{bottom:787.933333pt;}
.ye_c00136{bottom:807.400000pt;}
.yd_c00136{bottom:827.133333pt;}
.yc_c00136{bottom:846.600000pt;}
.yb_c00136{bottom:866.066667pt;}
.ya_c00136{bottom:885.533333pt;}
.y9_c00136{bottom:905.040000pt;}
.y8_c00136{bottom:924.773333pt;}
.y7_c00136{bottom:944.226667pt;}
.y6_c00136{bottom:963.706667pt;}
.y5_c00136{bottom:991.440000pt;}
.y2_c00136{bottom:1015.173333pt;}
.y1_c00136{bottom:1034.373333pt;}
.h2_c00136{height:35.546875pt;}
.h5_c00136{height:38.281250pt;}
.h3_c00136{height:40.453125pt;}
.h1_c00136{height:42.864583pt;}
.h6_c00136{height:42.916667pt;}
.h4_c00136{height:60.010417pt;}
.h0_c00136{height:1122.666667pt;}
.w0_c00136{width:793.866667pt;}
.w1_c00136{width:794.000000pt;}
.x0_c00136{left:0.000000pt;}
.x1_c00136{left:75.500000pt;}
.x4_c00136{left:88.833333pt;}
.x3_c00136{left:393.466667pt;}
.x2_c00136{left:396.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_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_ed447e7f99a703ddb31653fa.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:0.981934;font-style:normal;font-weight:normal;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_3876de958d521345b1a4d973.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00137;src:url('chunks/assets/font_935b898f4ded75d8bf6537d2.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:0.982910;font-style: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;}
.ls4_c00137{letter-spacing:-1.080000px;}
.ls7_c00137{letter-spacing:-0.480000px;}
.ls1_c00137{letter-spacing:-0.300000px;}
.ls2_c00137{letter-spacing:-0.216000px;}
.ls0_c00137{letter-spacing:0.000000px;}
.ls3_c00137{letter-spacing:0.300000px;}
.ls6_c00137{letter-spacing:0.480000px;}
.ls5_c00137{letter-spacing:0.600000px;}
.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;}
}
.ws2_c00137{word-spacing:-18.768000px;}
.ws5_c00137{word-spacing:-14.160000px;}
.ws6_c00137{word-spacing:-14.040000px;}
.ws3_c00137{word-spacing:-13.860000px;}
.ws0_c00137{word-spacing:-13.560000px;}
.ws1_c00137{word-spacing:-13.260000px;}
.ws4_c00137{word-spacing:-12.480000px;}
.ws7_c00137{word-spacing:0.000000px;}
._0_c00137{margin-left:-1.260000px;}
._3_c00137{width:1.080000px;}
._1_c00137{width:2.130000px;}
._2_c00137{width:3.840000px;}
._4_c00137{width:5.430000px;}
._5_c00137{width:6.510000px;}
._8_c00137{width:7.830000px;}
._6_c00137{width:10.200000px;}
._7_c00137{width:108.828000px;}
.fc1_c00137{color:rgb(0,0,0);}
.fc2_c00137{color:rgb(49,132,155);}
.fc0_c00137{color:rgb(0,0,255);}
.fs1_c00137{font-size:54.000000px;}
.fs0_c00137{font-size:60.000000px;}
.fs2_c00137{font-size:84.000000px;}
.y0_c00137{bottom:0.000000px;}
.y3_c00137{bottom:67.537500px;}
.y2_c00137{bottom:85.537500px;}
.y2e_c00137{bottom:153.630000px;}
.y2d_c00137{bottom:175.575000px;}
.y2c_c00137{bottom:206.475000px;}
.y2b_c00137{bottom:234.375000px;}
.y2a_c00137{bottom:256.275000px;}
.y29_c00137{bottom:278.175000px;}
.y28_c00137{bottom:300.075000px;}
.y27_c00137{bottom:322.275000px;}
.y26_c00137{bottom:344.205000px;}
.y25_c00137{bottom:375.105000px;}
.y24_c00137{bottom:403.005000px;}
.y23_c00137{bottom:424.920000px;}
.y22_c00137{bottom:446.820000px;}
.y21_c00137{bottom:468.705000px;}
.y20_c00137{bottom:490.920000px;}
.y1f_c00137{bottom:512.850000px;}
.y1e_c00137{bottom:534.750000px;}
.y1d_c00137{bottom:556.650000px;}
.y1c_c00137{bottom:578.850000px;}
.y1b_c00137{bottom:600.750000px;}
.y1a_c00137{bottom:622.650000px;}
.y19_c00137{bottom:644.550000px;}
.y18_c00137{bottom:666.750000px;}
.y17_c00137{bottom:688.695000px;}
.y16_c00137{bottom:710.595000px;}
.y15_c00137{bottom:732.495000px;}
.y14_c00137{bottom:754.695000px;}
.y13_c00137{bottom:776.580000px;}
.y12_c00137{bottom:798.495000px;}
.y11_c00137{bottom:820.395000px;}
.y10_c00137{bottom:842.580000px;}
.yf_c00137{bottom:864.525000px;}
.ye_c00137{bottom:886.425000px;}
.yd_c00137{bottom:908.325000px;}
.yc_c00137{bottom:930.525000px;}
.yb_c00137{bottom:961.425000px;}
.ya_c00137{bottom:989.025000px;}
.y9_c00137{bottom:1011.225000px;}
.y8_c00137{bottom:1033.170000px;}
.y7_c00137{bottom:1055.070000px;}
.y6_c00137{bottom:1076.955000px;}
.y5_c00137{bottom:1099.170000px;}
.y4_c00137{bottom:1121.070000px;}
.y1_c00137{bottom:1163.670000px;}
.h2_c00137{height:38.759766px;}
.h3_c00137{height:43.066406px;}
.h1_c00137{height:48.222656px;}
.h5_c00137{height:48.281250px;}
.h4_c00137{height:67.511719px;}
.h0_c00137{height:1263.000000px;}
.w0_c00137{width:893.100000px;}
.w1_c00137{width:893.250000px;}
.x0_c00137{left:0.000000px;}
.x1_c00137{left:84.937500px;}
.x4_c00137{left:99.937500px;}
.x3_c00137{left:442.650000px;}
.x2_c00137{left:446.550000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls4_c00137{letter-spacing:-0.960000pt;}
.ls7_c00137{letter-spacing:-0.426667pt;}
.ls1_c00137{letter-spacing:-0.266667pt;}
.ls2_c00137{letter-spacing:-0.192000pt;}
.ls0_c00137{letter-spacing:0.000000pt;}
.ls3_c00137{letter-spacing:0.266667pt;}
.ls6_c00137{letter-spacing:0.426667pt;}
.ls5_c00137{letter-spacing:0.533333pt;}
.ws2_c00137{word-spacing:-16.682667pt;}
.ws5_c00137{word-spacing:-12.586667pt;}
.ws6_c00137{word-spacing:-12.480000pt;}
.ws3_c00137{word-spacing:-12.320000pt;}
.ws0_c00137{word-spacing:-12.053333pt;}
.ws1_c00137{word-spacing:-11.786667pt;}
.ws4_c00137{word-spacing:-11.093333pt;}
.ws7_c00137{word-spacing:0.000000pt;}
._0_c00137{margin-left:-1.120000pt;}
._3_c00137{width:0.960000pt;}
._1_c00137{width:1.893333pt;}
._2_c00137{width:3.413333pt;}
._4_c00137{width:4.826667pt;}
._5_c00137{width:5.786667pt;}
._8_c00137{width:6.960000pt;}
._6_c00137{width:9.066667pt;}
._7_c00137{width:96.736000pt;}
.fs1_c00137{font-size:48.000000pt;}
.fs0_c00137{font-size:53.333333pt;}
.fs2_c00137{font-size:74.666667pt;}
.y0_c00137{bottom:0.000000pt;}
.y3_c00137{bottom:60.033333pt;}
.y2_c00137{bottom:76.033333pt;}
.y2e_c00137{bottom:136.560000pt;}
.y2d_c00137{bottom:156.066667pt;}
.y2c_c00137{bottom:183.533333pt;}
.y2b_c00137{bottom:208.333333pt;}
.y2a_c00137{bottom:227.800000pt;}
.y29_c00137{bottom:247.266667pt;}
.y28_c00137{bottom:266.733333pt;}
.y27_c00137{bottom:286.466667pt;}
.y26_c00137{bottom:305.960000pt;}
.y25_c00137{bottom:333.426667pt;}
.y24_c00137{bottom:358.226667pt;}
.y23_c00137{bottom:377.706667pt;}
.y22_c00137{bottom:397.173333pt;}
.y21_c00137{bottom:416.626667pt;}
.y20_c00137{bottom:436.373333pt;}
.y1f_c00137{bottom:455.866667pt;}
.y1e_c00137{bottom:475.333333pt;}
.y1d_c00137{bottom:494.800000pt;}
.y1c_c00137{bottom:514.533333pt;}
.y1b_c00137{bottom:534.000000pt;}
.y1a_c00137{bottom:553.466667pt;}
.y19_c00137{bottom:572.933333pt;}
.y18_c00137{bottom:592.666667pt;}
.y17_c00137{bottom:612.173333pt;}
.y16_c00137{bottom:631.640000pt;}
.y15_c00137{bottom:651.106667pt;}
.y14_c00137{bottom:670.840000pt;}
.y13_c00137{bottom:690.293333pt;}
.y12_c00137{bottom:709.773333pt;}
.y11_c00137{bottom:729.240000pt;}
.y10_c00137{bottom:748.960000pt;}
.yf_c00137{bottom:768.466667pt;}
.ye_c00137{bottom:787.933333pt;}
.yd_c00137{bottom:807.400000pt;}
.yc_c00137{bottom:827.133333pt;}
.yb_c00137{bottom:854.600000pt;}
.ya_c00137{bottom:879.133333pt;}
.y9_c00137{bottom:898.866667pt;}
.y8_c00137{bottom:918.373333pt;}
.y7_c00137{bottom:937.840000pt;}
.y6_c00137{bottom:957.293333pt;}
.y5_c00137{bottom:977.040000pt;}
.y4_c00137{bottom:996.506667pt;}
.y1_c00137{bottom:1034.373333pt;}
.h2_c00137{height:34.453125pt;}
.h3_c00137{height:38.281250pt;}
.h1_c00137{height:42.864583pt;}
.h5_c00137{height:42.916667pt;}
.h4_c00137{height:60.010417pt;}
.h0_c00137{height:1122.666667pt;}
.w0_c00137{width:793.866667pt;}
.w1_c00137{width:794.000000pt;}
.x0_c00137{left:0.000000pt;}
.x1_c00137{left:75.500000pt;}
.x4_c00137{left:88.833333pt;}
.x3_c00137{left:393.466667pt;}
.x2_c00137{left:396.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_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_8dc9df9640faff9ea4a74c4d.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:0.981934;font-style:normal;font-weight:normal;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_372a98b09db6ef17462dc263.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:0.680176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00138;src:url('chunks/assets/font_3c0fdfce49556f4f6b3be1e7.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00138;src:url('chunks/assets/font_4ebfc4789173ee6ee72bf987.woff2')format("woff");}.ff4_c00138{font-family:ff4_c00138;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00138;src:url('chunks/assets/font_e78e21bfe5ef4bddbeda3999.woff2')format("woff");}.ff5_c00138{font-family:ff5_c00138;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00138;src:url('chunks/assets/font_c7170f87abd9b3b115e90451.woff2')format("woff");}.ff6_c00138{font-family:ff6_c00138;line-height:0.938965;font-style:normal;font-weight: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_c00138;src:url('chunks/assets/font_6f2b4d3637e5070f1da7069b.woff2')format("woff");}.ff7_c00138{font-family:ff7_c00138;line-height:0.983398;font-style:normal;font-weight: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_c00138;src:url('chunks/assets/font_99077b6a9c11dc0e7e27dcc7.woff2')format("woff");}.ff8_c00138{font-family:ff8_c00138;line-height:0.983398;font-style:normal;font-weight: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_c00138;src:url('chunks/assets/font_3432bb48d6eaf48d1898168c.woff2')format("woff");}.ff9_c00138{font-family:ff9_c00138;line-height:0.982910;font-style: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;}
.ls8_c00138{letter-spacing:-0.540000px;}
.ls6_c00138{letter-spacing:-0.420000px;}
.lsb_c00138{letter-spacing:-0.336000px;}
.ls4_c00138{letter-spacing:-0.300000px;}
.lsa_c00138{letter-spacing:-0.096000px;}
.ls3_c00138{letter-spacing:0.000000px;}
.ls9_c00138{letter-spacing:0.060000px;}
.ls2_c00138{letter-spacing:0.096000px;}
.ls5_c00138{letter-spacing:0.480000px;}
.ls7_c00138{letter-spacing:0.540000px;}
.ls1_c00138{letter-spacing:0.864000px;}
.ls0_c00138{letter-spacing:18.120000px;}
.sc__c00138{text-shadow:none;}
.sc0_c00138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00138{-webkit-text-stroke:0px transparent;}
.sc0_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00138{word-spacing:-60.000000px;}
.ws3_c00138{word-spacing:-14.040000px;}
.ws0_c00138{word-spacing:-13.560000px;}
.ws2_c00138{word-spacing:-13.260000px;}
.ws4_c00138{word-spacing:-13.140000px;}
.ws5_c00138{word-spacing:-13.020000px;}
.ws7_c00138{word-spacing:-10.848000px;}
.ws6_c00138{word-spacing:-10.512000px;}
.ws8_c00138{word-spacing:0.000000px;}
._0_c00138{margin-left:-1.020000px;}
._2_c00138{width:1.080000px;}
._1_c00138{width:2.430000px;}
._4_c00138{width:3.660000px;}
._5_c00138{width:5.100000px;}
._6_c00138{width:6.840000px;}
._7_c00138{width:9.192000px;}
._9_c00138{width:12.168000px;}
._8_c00138{width:13.428000px;}
._3_c00138{width:108.828000px;}
.fc1_c00138{color:rgb(0,0,0);}
.fc0_c00138{color:rgb(0,0,255);}
.fs4_c00138{font-size:48.000000px;}
.fs1_c00138{font-size:54.000000px;}
.fs0_c00138{font-size:60.000000px;}
.fs5_c00138{font-size:66.000000px;}
.fs3_c00138{font-size:72.000000px;}
.fs2_c00138{font-size:84.000000px;}
.y0_c00138{bottom:0.000000px;}
.y4_c00138{bottom:71.137500px;}
.y3_c00138{bottom:88.537500px;}
.y18_c00138{bottom:691.995000px;}
.y17_c00138{bottom:715.080000px;}
.y16_c00138{bottom:734.295000px;}
.y15_c00138{bottom:748.980000px;}
.y14_c00138{bottom:763.695000px;}
.y13_c00138{bottom:790.080000px;}
.y12_c00138{bottom:814.995000px;}
.y11_c00138{bottom:836.880000px;}
.y10_c00138{bottom:858.825000px;}
.yf_c00138{bottom:880.725000px;}
.ye_c00138{bottom:902.925000px;}
.yd_c00138{bottom:933.825000px;}
.yc_c00138{bottom:961.425000px;}
.yb_c00138{bottom:983.325000px;}
.ya_c00138{bottom:1006.125000px;}
.y9_c00138{bottom:1028.955000px;}
.y8_c00138{bottom:1051.755000px;}
.y7_c00138{bottom:1074.570000px;}
.y6_c00138{bottom:1097.370000px;}
.y5_c00138{bottom:1120.170000px;}
.y2_c00138{bottom:1142.070000px;}
.y1_c00138{bottom:1163.670000px;}
.h9_c00138{height:34.453125px;}
.h8_c00138{height:38.625000px;}
.h2_c00138{height:39.990234px;}
.h5_c00138{height:43.066406px;}
.h4_c00138{height:43.710938px;}
.h3_c00138{height:45.509766px;}
.ha_c00138{height:48.082031px;}
.h1_c00138{height:48.222656px;}
.h7_c00138{height:57.867188px;}
.h6_c00138{height:67.511719px;}
.h0_c00138{height:1263.000000px;}
.w0_c00138{width:893.100000px;}
.w1_c00138{width:893.250000px;}
.x0_c00138{left:0.000000px;}
.x1_c00138{left:84.937500px;}
.x5_c00138{left:99.937500px;}
.x6_c00138{left:106.237500px;}
.x4_c00138{left:111.937500px;}
.x7_c00138{left:138.937500px;}
.x3_c00138{left:442.650000px;}
.x2_c00138{left:446.550000px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls8_c00138{letter-spacing:-0.480000pt;}
.ls6_c00138{letter-spacing:-0.373333pt;}
.lsb_c00138{letter-spacing:-0.298667pt;}
.ls4_c00138{letter-spacing:-0.266667pt;}
.lsa_c00138{letter-spacing:-0.085333pt;}
.ls3_c00138{letter-spacing:0.000000pt;}
.ls9_c00138{letter-spacing:0.053333pt;}
.ls2_c00138{letter-spacing:0.085333pt;}
.ls5_c00138{letter-spacing:0.426667pt;}
.ls7_c00138{letter-spacing:0.480000pt;}
.ls1_c00138{letter-spacing:0.768000pt;}
.ls0_c00138{letter-spacing:16.106667pt;}
.ws1_c00138{word-spacing:-53.333333pt;}
.ws3_c00138{word-spacing:-12.480000pt;}
.ws0_c00138{word-spacing:-12.053333pt;}
.ws2_c00138{word-spacing:-11.786667pt;}
.ws4_c00138{word-spacing:-11.680000pt;}
.ws5_c00138{word-spacing:-11.573333pt;}
.ws7_c00138{word-spacing:-9.642667pt;}
.ws6_c00138{word-spacing:-9.344000pt;}
.ws8_c00138{word-spacing:0.000000pt;}
._0_c00138{margin-left:-0.906667pt;}
._2_c00138{width:0.960000pt;}
._1_c00138{width:2.160000pt;}
._4_c00138{width:3.253333pt;}
._5_c00138{width:4.533333pt;}
._6_c00138{width:6.080000pt;}
._7_c00138{width:8.170667pt;}
._9_c00138{width:10.816000pt;}
._8_c00138{width:11.936000pt;}
._3_c00138{width:96.736000pt;}
.fs4_c00138{font-size:42.666667pt;}
.fs1_c00138{font-size:48.000000pt;}
.fs0_c00138{font-size:53.333333pt;}
.fs5_c00138{font-size:58.666667pt;}
.fs3_c00138{font-size:64.000000pt;}
.fs2_c00138{font-size:74.666667pt;}
.y0_c00138{bottom:0.000000pt;}
.y4_c00138{bottom:63.233333pt;}
.y3_c00138{bottom:78.700000pt;}
.y18_c00138{bottom:615.106667pt;}
.y17_c00138{bottom:635.626667pt;}
.y16_c00138{bottom:652.706667pt;}
.y15_c00138{bottom:665.760000pt;}
.y14_c00138{bottom:678.840000pt;}
.y13_c00138{bottom:702.293333pt;}
.y12_c00138{bottom:724.440000pt;}
.y11_c00138{bottom:743.893333pt;}
.y10_c00138{bottom:763.400000pt;}
.yf_c00138{bottom:782.866667pt;}
.ye_c00138{bottom:802.600000pt;}
.yd_c00138{bottom:830.066667pt;}
.yc_c00138{bottom:854.600000pt;}
.yb_c00138{bottom:874.066667pt;}
.ya_c00138{bottom:894.333333pt;}
.y9_c00138{bottom:914.626667pt;}
.y8_c00138{bottom:934.893333pt;}
.y7_c00138{bottom:955.173333pt;}
.y6_c00138{bottom:975.440000pt;}
.y5_c00138{bottom:995.706667pt;}
.y2_c00138{bottom:1015.173333pt;}
.y1_c00138{bottom:1034.373333pt;}
.h9_c00138{height:30.625000pt;}
.h8_c00138{height:34.333333pt;}
.h2_c00138{height:35.546875pt;}
.h5_c00138{height:38.281250pt;}
.h4_c00138{height:38.854167pt;}
.h3_c00138{height:40.453125pt;}
.ha_c00138{height:42.739583pt;}
.h1_c00138{height:42.864583pt;}
.h7_c00138{height:51.437500pt;}
.h6_c00138{height:60.010417pt;}
.h0_c00138{height:1122.666667pt;}
.w0_c00138{width:793.866667pt;}
.w1_c00138{width:794.000000pt;}
.x0_c00138{left:0.000000pt;}
.x1_c00138{left:75.500000pt;}
.x5_c00138{left:88.833333pt;}
.x6_c00138{left:94.433333pt;}
.x4_c00138{left:99.500000pt;}
.x7_c00138{left:123.500000pt;}
.x3_c00138{left:393.466667pt;}
.x2_c00138{left:396.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_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_53394599f26b4d6ab21c5363.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.172852;font-style: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;}
.ls0_c00139{letter-spacing:0.000000px;}
.sc__c00139{text-shadow:none;}
.sc0_c00139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00139{-webkit-text-stroke:0px transparent;}
.sc0_c00139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00139{word-spacing:0.000000px;}
._5_c00139{margin-left:-11.088000px;}
._8_c00139{margin-left:-8.928000px;}
._3_c00139{margin-left:-4.968000px;}
._0_c00139{margin-left:-3.456000px;}
._1_c00139{margin-left:-1.728000px;}
._2_c00139{width:1.728000px;}
._4_c00139{width:21.558000px;}
._6_c00139{width:30.654000px;}
._7_c00139{width:42.768000px;}
.fc0_c00139{color:rgb(0,0,0);}
.fs2_c00139{font-size:144.000000px;}
.fs3_c00139{font-size:144.150000px;}
.fs0_c00139{font-size:216.000000px;}
.fs1_c00139{font-size:216.150000px;}
.y0_c00139{bottom:0.000000px;}
.y8_c00139{bottom:82.462500px;}
.y7_c00139{bottom:210.750000px;}
.y6_c00139{bottom:256.950000px;}
.y5_c00139{bottom:303.150000px;}
.y4_c00139{bottom:349.380000px;}
.y3_c00139{bottom:510.345000px;}
.y2_c00139{bottom:575.130000px;}
.y1_c00139{bottom:639.975000px;}
.h3_c00139{height:143.226562px;}
.h4_c00139{height:143.375757px;}
.h1_c00139{height:214.839844px;}
.h2_c00139{height:214.989038px;}
.h0_c00139{height:810.000000px;}
.w0_c00139{width:1440.000000px;}
.x0_c00139{left:0.000000px;}
.x1_c00139{left:135.112500px;}
.x6_c00139{left:141.787500px;}
.x4_c00139{left:145.087500px;}
.x8_c00139{left:216.030000px;}
.x3_c00139{left:245.220000px;}
.x5_c00139{left:248.595000px;}
.x2_c00139{left:315.750000px;}
.x7_c00139{left:621.255000px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls0_c00139{letter-spacing:0.000000pt;}
.ws0_c00139{word-spacing:0.000000pt;}
._5_c00139{margin-left:-9.856000pt;}
._8_c00139{margin-left:-7.936000pt;}
._3_c00139{margin-left:-4.416000pt;}
._0_c00139{margin-left:-3.072000pt;}
._1_c00139{margin-left:-1.536000pt;}
._2_c00139{width:1.536000pt;}
._4_c00139{width:19.162667pt;}
._6_c00139{width:27.248000pt;}
._7_c00139{width:38.016000pt;}
.fs2_c00139{font-size:128.000000pt;}
.fs3_c00139{font-size:128.133333pt;}
.fs0_c00139{font-size:192.000000pt;}
.fs1_c00139{font-size:192.133333pt;}
.y0_c00139{bottom:0.000000pt;}
.y8_c00139{bottom:73.300000pt;}
.y7_c00139{bottom:187.333333pt;}
.y6_c00139{bottom:228.400000pt;}
.y5_c00139{bottom:269.466667pt;}
.y4_c00139{bottom:310.560000pt;}
.y3_c00139{bottom:453.640000pt;}
.y2_c00139{bottom:511.226667pt;}
.y1_c00139{bottom:568.866667pt;}
.h3_c00139{height:127.312500pt;}
.h4_c00139{height:127.445117pt;}
.h1_c00139{height:190.968750pt;}
.h2_c00139{height:191.101367pt;}
.h0_c00139{height:720.000000pt;}
.w0_c00139{width:1280.000000pt;}
.x0_c00139{left:0.000000pt;}
.x1_c00139{left:120.100000pt;}
.x6_c00139{left:126.033333pt;}
.x4_c00139{left:128.966667pt;}
.x8_c00139{left:192.026667pt;}
.x3_c00139{left:217.973333pt;}
.x5_c00139{left:220.973333pt;}
.x2_c00139{left:280.666667pt;}
.x7_c00139{left:552.226667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9ac0de4f459a6dc277f1f0c7.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.172852;font-style:normal;font-weight:normal;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_413e4764dae0f3722e8b535f.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:0.739746;font-style:normal;font-weight:normal;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_5c65b7fd6d6fedfb02b7a8ca.woff2')format("woff");}.ff3_c00140{font-family:ff3_c00140;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.ls2_c00140{letter-spacing:0.000000px;}
.ls0_c00140{letter-spacing:81.247500px;}
.ls1_c00140{letter-spacing:81.300000px;}
.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:0.000000px;}
._3_c00140{margin-left:-19.543740px;}
._4_c00140{margin-left:-17.442660px;}
._5_c00140{margin-left:-7.110000px;}
._0_c00140{margin-left:-4.754436px;}
._6_c00140{margin-left:-2.940000px;}
._1_c00140{margin-left:-1.585164px;}
._2_c00140{width:1.585164px;}
.fc0_c00140{color:rgb(0,0,0);}
.fs2_c00140{font-size:210.000000px;}
.fs1_c00140{font-size:210.150000px;}
.fs0_c00140{font-size:264.150000px;}
.y0_c00140{bottom:0.000000px;}
.y6_c00140{bottom:118.912500px;}
.y5_c00140{bottom:228.450000px;}
.y4_c00140{bottom:337.980000px;}
.y3_c00140{bottom:447.570000px;}
.y2_c00140{bottom:557.100000px;}
.y1_c00140{bottom:693.255000px;}
.h3_c00140{height:208.872070px;}
.h2_c00140{height:209.021265px;}
.h1_c00140{height:262.731226px;}
.h0_c00140{height:810.000000px;}
.w0_c00140{width:1440.000000px;}
.x0_c00140{left:0.000000px;}
.x2_c00140{left:120.825000px;}
.x1_c00140{left:369.150000px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls2_c00140{letter-spacing:0.000000pt;}
.ls0_c00140{letter-spacing:72.220000pt;}
.ls1_c00140{letter-spacing:72.266667pt;}
.ws0_c00140{word-spacing:0.000000pt;}
._3_c00140{margin-left:-17.372213pt;}
._4_c00140{margin-left:-15.504587pt;}
._5_c00140{margin-left:-6.320000pt;}
._0_c00140{margin-left:-4.226165pt;}
._6_c00140{margin-left:-2.613333pt;}
._1_c00140{margin-left:-1.409035pt;}
._2_c00140{width:1.409035pt;}
.fs2_c00140{font-size:186.666667pt;}
.fs1_c00140{font-size:186.800000pt;}
.fs0_c00140{font-size:234.800000pt;}
.y0_c00140{bottom:0.000000pt;}
.y6_c00140{bottom:105.700000pt;}
.y5_c00140{bottom:203.066667pt;}
.y4_c00140{bottom:300.426667pt;}
.y3_c00140{bottom:397.840000pt;}
.y2_c00140{bottom:495.200000pt;}
.y1_c00140{bottom:616.226667pt;}
.h3_c00140{height:185.664062pt;}
.h2_c00140{height:185.796680pt;}
.h1_c00140{height:233.538867pt;}
.h0_c00140{height:720.000000pt;}
.w0_c00140{width:1280.000000pt;}
.x0_c00140{left:0.000000pt;}
.x2_c00140{left:107.400000pt;}
.x1_c00140{left:328.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_89678fbe3aac5bbd35a05531.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.172852;font-style:normal;font-weight:normal;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_413e4764dae0f3722e8b535f.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:0.739746;font-style:normal;font-weight:normal;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_5dcc314f9a805153666b9b1b.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:1.172852;font-style: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;}
.ls5_c00141{letter-spacing:0.000000px;}
.ls1_c00141{letter-spacing:46.545300px;}
.ls4_c00141{letter-spacing:85.867500px;}
.ls3_c00141{letter-spacing:85.920000px;}
.ls0_c00141{letter-spacing:129.187500px;}
.ls2_c00141{letter-spacing:129.240000px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00141{word-spacing:0.000000px;}
._6_c00141{margin-left:-8.460000px;}
._7_c00141{margin-left:-6.405564px;}
._0_c00141{margin-left:-4.754436px;}
._3_c00141{margin-left:-3.362400px;}
._4_c00141{margin-left:-2.089800px;}
._2_c00141{margin-left:-1.056600px;}
._5_c00141{width:1.261320px;}
._8_c00141{width:2.716200px;}
._1_c00141{width:61.731186px;}
.fc0_c00141{color:rgb(0,0,0);}
.fs3_c00141{font-size:180.000000px;}
.fs4_c00141{font-size:180.150000px;}
.fs2_c00141{font-size:210.000000px;}
.fs1_c00141{font-size:210.150000px;}
.fs0_c00141{font-size:264.150000px;}
.y0_c00141{bottom:0.000000px;}
.y9_c00141{bottom:104.287500px;}
.y8_c00141{bottom:165.825000px;}
.y7_c00141{bottom:227.325000px;}
.y6_c00141{bottom:288.855000px;}
.y5_c00141{bottom:350.370000px;}
.y4_c00141{bottom:413.700000px;}
.y3_c00141{bottom:491.745000px;}
.y2_c00141{bottom:569.775000px;}
.y1_c00141{bottom:684.345000px;}
.h4_c00141{height:179.033203px;}
.h5_c00141{height:179.182397px;}
.h3_c00141{height:208.872070px;}
.h2_c00141{height:209.021265px;}
.h1_c00141{height:262.731226px;}
.h0_c00141{height:810.000000px;}
.w0_c00141{width:1440.000000px;}
.x0_c00141{left:0.000000px;}
.x2_c00141{left:292.320000px;}
.x1_c00141{left:394.950000px;}
.x3_c00141{left:400.320000px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls5_c00141{letter-spacing:0.000000pt;}
.ls1_c00141{letter-spacing:41.373600pt;}
.ls4_c00141{letter-spacing:76.326667pt;}
.ls3_c00141{letter-spacing:76.373333pt;}
.ls0_c00141{letter-spacing:114.833333pt;}
.ls2_c00141{letter-spacing:114.880000pt;}
.ws0_c00141{word-spacing:0.000000pt;}
._6_c00141{margin-left:-7.520000pt;}
._7_c00141{margin-left:-5.693835pt;}
._0_c00141{margin-left:-4.226165pt;}
._3_c00141{margin-left:-2.988800pt;}
._4_c00141{margin-left:-1.857600pt;}
._2_c00141{margin-left:-0.939200pt;}
._5_c00141{width:1.121174pt;}
._8_c00141{width:2.414400pt;}
._1_c00141{width:54.872165pt;}
.fs3_c00141{font-size:160.000000pt;}
.fs4_c00141{font-size:160.133333pt;}
.fs2_c00141{font-size:186.666667pt;}
.fs1_c00141{font-size:186.800000pt;}
.fs0_c00141{font-size:234.800000pt;}
.y0_c00141{bottom:0.000000pt;}
.y9_c00141{bottom:92.700000pt;}
.y8_c00141{bottom:147.400000pt;}
.y7_c00141{bottom:202.066667pt;}
.y6_c00141{bottom:256.760000pt;}
.y5_c00141{bottom:311.440000pt;}
.y4_c00141{bottom:367.733333pt;}
.y3_c00141{bottom:437.106667pt;}
.y2_c00141{bottom:506.466667pt;}
.y1_c00141{bottom:608.306667pt;}
.h4_c00141{height:159.140625pt;}
.h5_c00141{height:159.273242pt;}
.h3_c00141{height:185.664062pt;}
.h2_c00141{height:185.796680pt;}
.h1_c00141{height:233.538867pt;}
.h0_c00141{height:720.000000pt;}
.w0_c00141{width:1280.000000pt;}
.x0_c00141{left:0.000000pt;}
.x2_c00141{left:259.840000pt;}
.x1_c00141{left:351.066667pt;}
.x3_c00141{left:355.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e169208b884a57611231b43.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.172852;font-style:normal;font-weight:normal;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_413e4764dae0f3722e8b535f.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:0.739746;font-style: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;}
.ls4_c00142{letter-spacing:0.000000px;}
.ls2_c00142{letter-spacing:36.547500px;}
.ls1_c00142{letter-spacing:36.600000px;}
.ls3_c00142{letter-spacing:79.867500px;}
.ls0_c00142{letter-spacing:79.920000px;}
.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:-46.137900px;}
.ws1_c00142{word-spacing:0.000000px;}
._4_c00142{margin-left:-8.436000px;}
._5_c00142{margin-left:-4.560000px;}
._3_c00142{margin-left:-3.168000px;}
._0_c00142{margin-left:-2.112000px;}
._2_c00142{margin-left:-1.056000px;}
._1_c00142{width:1.584000px;}
.fc0_c00142{color:rgb(0,0,0);}
.fs2_c00142{font-size:204.000000px;}
.fs3_c00142{font-size:204.150000px;}
.fs1_c00142{font-size:228.000000px;}
.fs4_c00142{font-size:228.150000px;}
.fs0_c00142{font-size:264.000000px;}
.y0_c00142{bottom:0.000000px;}
.y7_c00142{bottom:111.825000px;}
.y6_c00142{bottom:192.855000px;}
.y5_c00142{bottom:276.000000px;}
.y4_c00142{bottom:395.745000px;}
.y3_c00142{bottom:476.745000px;}
.y2_c00142{bottom:559.875000px;}
.y1_c00142{bottom:686.745000px;}
.h3_c00142{height:202.904297px;}
.h4_c00142{height:203.053491px;}
.h2_c00142{height:226.775391px;}
.h5_c00142{height:226.924585px;}
.h1_c00142{height:262.582031px;}
.h0_c00142{height:810.000000px;}
.w0_c00142{width:1440.000000px;}
.x0_c00142{left:0.000000px;}
.x2_c00142{left:193.320000px;}
.x3_c00142{left:247.350000px;}
.x4_c00142{left:301.350000px;}
.x1_c00142{left:427.050000px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls4_c00142{letter-spacing:0.000000pt;}
.ls2_c00142{letter-spacing:32.486667pt;}
.ls1_c00142{letter-spacing:32.533333pt;}
.ls3_c00142{letter-spacing:70.993333pt;}
.ls0_c00142{letter-spacing:71.040000pt;}
.ws0_c00142{word-spacing:-41.011467pt;}
.ws1_c00142{word-spacing:0.000000pt;}
._4_c00142{margin-left:-7.498667pt;}
._5_c00142{margin-left:-4.053333pt;}
._3_c00142{margin-left:-2.816000pt;}
._0_c00142{margin-left:-1.877333pt;}
._2_c00142{margin-left:-0.938667pt;}
._1_c00142{width:1.408000pt;}
.fs2_c00142{font-size:181.333333pt;}
.fs3_c00142{font-size:181.466667pt;}
.fs1_c00142{font-size:202.666667pt;}
.fs4_c00142{font-size:202.800000pt;}
.fs0_c00142{font-size:234.666667pt;}
.y0_c00142{bottom:0.000000pt;}
.y7_c00142{bottom:99.400000pt;}
.y6_c00142{bottom:171.426667pt;}
.y5_c00142{bottom:245.333333pt;}
.y4_c00142{bottom:351.773333pt;}
.y3_c00142{bottom:423.773333pt;}
.y2_c00142{bottom:497.666667pt;}
.y1_c00142{bottom:610.440000pt;}
.h3_c00142{height:180.359375pt;}
.h4_c00142{height:180.491992pt;}
.h2_c00142{height:201.578125pt;}
.h5_c00142{height:201.710742pt;}
.h1_c00142{height:233.406250pt;}
.h0_c00142{height:720.000000pt;}
.w0_c00142{width:1280.000000pt;}
.x0_c00142{left:0.000000pt;}
.x2_c00142{left:171.840000pt;}
.x3_c00142{left:219.866667pt;}
.x4_c00142{left:267.866667pt;}
.x1_c00142{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_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_142f14532d7b5724a0db4b69.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.172852;font-style:normal;font-weight:normal;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_413e4764dae0f3722e8b535f.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:0.739746;font-style: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;}
.ls3_c00143{letter-spacing:0.000000px;}
.ls0_c00143{letter-spacing:85.800000px;}
.ls1_c00143{letter-spacing:87.547500px;}
.ls2_c00143{letter-spacing:126.000000px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00143{word-spacing:0.000000px;}
._0_c00143{margin-left:-24.037914px;}
._4_c00143{margin-left:-3.962514px;}
._1_c00143{margin-left:-2.113200px;}
._2_c00143{margin-left:-1.056600px;}
._5_c00143{width:1.008000px;}
._3_c00143{width:3.698364px;}
._6_c00143{width:77.914650px;}
.fc0_c00143{color:rgb(0,0,0);}
.fs2_c00143{font-size:168.000000px;}
.fs3_c00143{font-size:168.150000px;}
.fs1_c00143{font-size:180.000000px;}
.fs0_c00143{font-size:264.150000px;}
.y0_c00143{bottom:0.000000px;}
.y7_c00143{bottom:89.550000px;}
.y6_c00143{bottom:180.180000px;}
.y5_c00143{bottom:270.825000px;}
.y4_c00143{bottom:361.470000px;}
.y3_c00143{bottom:452.100000px;}
.y2_c00143{bottom:543.900000px;}
.y1_c00143{bottom:670.200000px;}
.h2_c00143{height:167.097656px;}
.h3_c00143{height:167.246851px;}
.h1_c00143{height:262.731226px;}
.h0_c00143{height:810.000000px;}
.w0_c00143{width:1440.000000px;}
.x0_c00143{left:0.000000px;}
.x2_c00143{left:142.650000px;}
.x1_c00143{left:439.950000px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls3_c00143{letter-spacing:0.000000pt;}
.ls0_c00143{letter-spacing:76.266667pt;}
.ls1_c00143{letter-spacing:77.820000pt;}
.ls2_c00143{letter-spacing:112.000000pt;}
.ws0_c00143{word-spacing:0.000000pt;}
._0_c00143{margin-left:-21.367035pt;}
._4_c00143{margin-left:-3.522235pt;}
._1_c00143{margin-left:-1.878400pt;}
._2_c00143{margin-left:-0.939200pt;}
._5_c00143{width:0.896000pt;}
._3_c00143{width:3.287435pt;}
._6_c00143{width:69.257467pt;}
.fs2_c00143{font-size:149.333333pt;}
.fs3_c00143{font-size:149.466667pt;}
.fs1_c00143{font-size:160.000000pt;}
.fs0_c00143{font-size:234.800000pt;}
.y0_c00143{bottom:0.000000pt;}
.y7_c00143{bottom:79.600000pt;}
.y6_c00143{bottom:160.160000pt;}
.y5_c00143{bottom:240.733333pt;}
.y4_c00143{bottom:321.306667pt;}
.y3_c00143{bottom:401.866667pt;}
.y2_c00143{bottom:483.466667pt;}
.y1_c00143{bottom:595.733333pt;}
.h2_c00143{height:148.531250pt;}
.h3_c00143{height:148.663867pt;}
.h1_c00143{height:233.538867pt;}
.h0_c00143{height:720.000000pt;}
.w0_c00143{width:1280.000000pt;}
.x0_c00143{left:0.000000pt;}
.x2_c00143{left:126.800000pt;}
.x1_c00143{left:391.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_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_9c8fa6bb9cb411a100105030.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.172852;font-style:normal;font-weight:normal;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_413e4764dae0f3722e8b535f.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:0.739746;font-style: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;}
.ls3_c00144{letter-spacing:0.000000px;}
.ls0_c00144{letter-spacing:81.720000px;}
.ls1_c00144{letter-spacing:129.667500px;}
.ls2_c00144{letter-spacing:129.720000px;}
.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:0.000000px;}
._0_c00144{margin-left:-24.037914px;}
._8_c00144{margin-left:-16.427400px;}
._9_c00144{margin-left:-7.565466px;}
._6_c00144{margin-left:-5.264172px;}
._4_c00144{margin-left:-3.962514px;}
._1_c00144{margin-left:-2.113200px;}
._2_c00144{margin-left:-1.056600px;}
._5_c00144{width:1.465200px;}
._7_c00144{width:2.478228px;}
._3_c00144{width:3.698364px;}
.fc1_c00144{color:rgb(255,0,0);}
.fc0_c00144{color:rgb(0,0,0);}
.fs2_c00144{font-size:192.000000px;}
.fs1_c00144{font-size:216.000000px;}
.fs3_c00144{font-size:216.150000px;}
.fs0_c00144{font-size:264.150000px;}
.y0_c00144{bottom:0.000000px;}
.y9_c00144{bottom:69.225000px;}
.y8_c00144{bottom:149.062500px;}
.y7_c00144{bottom:228.870000px;}
.y6_c00144{bottom:308.700000px;}
.y5_c00144{bottom:388.530000px;}
.y4_c00144{bottom:468.375000px;}
.y3_c00144{bottom:546.375000px;}
.y2_c00144{bottom:630.720000px;}
.y1_c00144{bottom:737.925000px;}
.h3_c00144{height:190.968750px;}
.h2_c00144{height:214.839844px;}
.h4_c00144{height:214.989038px;}
.h1_c00144{height:262.731226px;}
.h0_c00144{height:810.000000px;}
.w0_c00144{width:1440.000000px;}
.x0_c00144{left:0.000000px;}
.x2_c00144{left:117.450000px;}
.x3_c00144{left:417.225000px;}
.x1_c00144{left:439.950000px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls3_c00144{letter-spacing:0.000000pt;}
.ls0_c00144{letter-spacing:72.640000pt;}
.ls1_c00144{letter-spacing:115.260000pt;}
.ls2_c00144{letter-spacing:115.306667pt;}
.ws0_c00144{word-spacing:0.000000pt;}
._0_c00144{margin-left:-21.367035pt;}
._8_c00144{margin-left:-14.602133pt;}
._9_c00144{margin-left:-6.724859pt;}
._6_c00144{margin-left:-4.679264pt;}
._4_c00144{margin-left:-3.522235pt;}
._1_c00144{margin-left:-1.878400pt;}
._2_c00144{margin-left:-0.939200pt;}
._5_c00144{width:1.302400pt;}
._7_c00144{width:2.202870pt;}
._3_c00144{width:3.287435pt;}
.fs2_c00144{font-size:170.666667pt;}
.fs1_c00144{font-size:192.000000pt;}
.fs3_c00144{font-size:192.133333pt;}
.fs0_c00144{font-size:234.800000pt;}
.y0_c00144{bottom:0.000000pt;}
.y9_c00144{bottom:61.533333pt;}
.y8_c00144{bottom:132.500000pt;}
.y7_c00144{bottom:203.440000pt;}
.y6_c00144{bottom:274.400000pt;}
.y5_c00144{bottom:345.360000pt;}
.y4_c00144{bottom:416.333333pt;}
.y3_c00144{bottom:485.666667pt;}
.y2_c00144{bottom:560.640000pt;}
.y1_c00144{bottom:655.933333pt;}
.h3_c00144{height:169.750000pt;}
.h2_c00144{height:190.968750pt;}
.h4_c00144{height:191.101367pt;}
.h1_c00144{height:233.538867pt;}
.h0_c00144{height:720.000000pt;}
.w0_c00144{width:1280.000000pt;}
.x0_c00144{left:0.000000pt;}
.x2_c00144{left:104.400000pt;}
.x3_c00144{left:370.866667pt;}
.x1_c00144{left:391.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_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_229e825c2e8ec477f021e868.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.172852;font-style:normal;font-weight:normal;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_413e4764dae0f3722e8b535f.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:0.739746;font-style: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;}
.ls5_c00145{letter-spacing:-0.336000px;}
.ls4_c00145{letter-spacing:0.000000px;}
.ls0_c00145{letter-spacing:125.917500px;}
.ls1_c00145{letter-spacing:125.940000px;}
.ls2_c00145{letter-spacing:164.317500px;}
.ls3_c00145{letter-spacing:164.370000px;}
.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:-37.968000px;}
.ws0_c00145{word-spacing:-37.632000px;}
.ws2_c00145{word-spacing:0.000000px;}
._0_c00145{margin-left:-2.640000px;}
._1_c00145{margin-left:-1.320000px;}
._2_c00145{width:1.584000px;}
._3_c00145{width:2.640000px;}
.fc1_c00145{color:rgb(255,255,0);}
.fc0_c00145{color:rgb(0,0,0);}
.fs2_c00145{font-size:168.000000px;}
.fs1_c00145{font-size:168.150000px;}
.fs0_c00145{font-size:264.000000px;}
.y0_c00145{bottom:0.000000px;}
.y7_c00145{bottom:144.000000px;}
.y6_c00145{bottom:227.145000px;}
.y5_c00145{bottom:310.245000px;}
.y4_c00145{bottom:393.375000px;}
.y3_c00145{bottom:476.505000px;}
.y2_c00145{bottom:559.650000px;}
.y1_c00145{bottom:699.630000px;}
.h3_c00145{height:167.097656px;}
.h2_c00145{height:167.246851px;}
.h1_c00145{height:262.582031px;}
.h0_c00145{height:810.000000px;}
.w0_c00145{width:1440.000000px;}
.x0_c00145{left:0.000000px;}
.x2_c00145{left:109.837500px;}
.x3_c00145{left:210.345000px;}
.x1_c00145{left:335.250000px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls5_c00145{letter-spacing:-0.298667pt;}
.ls4_c00145{letter-spacing:0.000000pt;}
.ls0_c00145{letter-spacing:111.926667pt;}
.ls1_c00145{letter-spacing:111.946667pt;}
.ls2_c00145{letter-spacing:146.060000pt;}
.ls3_c00145{letter-spacing:146.106667pt;}
.ws1_c00145{word-spacing:-33.749333pt;}
.ws0_c00145{word-spacing:-33.450667pt;}
.ws2_c00145{word-spacing:0.000000pt;}
._0_c00145{margin-left:-2.346667pt;}
._1_c00145{margin-left:-1.173333pt;}
._2_c00145{width:1.408000pt;}
._3_c00145{width:2.346667pt;}
.fs2_c00145{font-size:149.333333pt;}
.fs1_c00145{font-size:149.466667pt;}
.fs0_c00145{font-size:234.666667pt;}
.y0_c00145{bottom:0.000000pt;}
.y7_c00145{bottom:128.000000pt;}
.y6_c00145{bottom:201.906667pt;}
.y5_c00145{bottom:275.773333pt;}
.y4_c00145{bottom:349.666667pt;}
.y3_c00145{bottom:423.560000pt;}
.y2_c00145{bottom:497.466667pt;}
.y1_c00145{bottom:621.893333pt;}
.h3_c00145{height:148.531250pt;}
.h2_c00145{height:148.663867pt;}
.h1_c00145{height:233.406250pt;}
.h0_c00145{height:720.000000pt;}
.w0_c00145{width:1280.000000pt;}
.x0_c00145{left:0.000000pt;}
.x2_c00145{left:97.633333pt;}
.x3_c00145{left:186.973333pt;}
.x1_c00145{left:298.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_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_21bae245a84c0334aaadbd96.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.172852;font-style:normal;font-weight:normal;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_413e4764dae0f3722e8b535f.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:0.739746;font-style: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:0.000000px;}
.ls4_c00146{letter-spacing:0.195600px;}
.ls1_c00146{letter-spacing:40.747500px;}
.ls2_c00146{letter-spacing:40.800000px;}
.ls0_c00146{letter-spacing:84.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:-43.392000px;}
.ws2_c00146{word-spacing:-32.577900px;}
.ws1_c00146{word-spacing:-32.544000px;}
.ws3_c00146{word-spacing:0.000000px;}
._4_c00146{margin-left:-4.361772px;}
._0_c00146{margin-left:-2.905914px;}
._1_c00146{margin-left:-1.320486px;}
._2_c00146{width:1.753914px;}
._3_c00146{width:3.408228px;}
.fc0_c00146{color:rgb(0,0,0);}
.fs5_c00146{font-size:60.150000px;}
.fs4_c00146{font-size:144.000000px;}
.fs3_c00146{font-size:144.150000px;}
.fs1_c00146{font-size:192.000000px;}
.fs2_c00146{font-size:192.150000px;}
.fs0_c00146{font-size:264.150000px;}
.y0_c00146{bottom:0.000000px;}
.y11_c00146{bottom:38.287500px;}
.y10_c00146{bottom:124.725000px;}
.y6_c00146{bottom:193.650000px;}
.yf_c00146{bottom:211.155000px;}
.y5_c00146{bottom:252.780000px;}
.ye_c00146{bottom:297.570000px;}
.y4_c00146{bottom:321.195000px;}
.yd_c00146{bottom:384.000000px;}
.y3_c00146{bottom:422.625000px;}
.yc_c00146{bottom:470.445000px;}
.y2_c00146{bottom:524.070000px;}
.yb_c00146{bottom:556.875000px;}
.ya_c00146{bottom:633.720000px;}
.y1_c00146{bottom:660.525000px;}
.y9_c00146{bottom:668.505000px;}
.y8_c00146{bottom:711.720000px;}
.y7_c00146{bottom:754.950000px;}
.h6_c00146{height:59.826929px;}
.h5_c00146{height:143.226562px;}
.h4_c00146{height:143.375757px;}
.h2_c00146{height:190.968750px;}
.h3_c00146{height:191.117944px;}
.h1_c00146{height:262.731226px;}
.h0_c00146{height:810.000000px;}
.w0_c00146{width:1440.000000px;}
.x0_c00146{left:0.000000px;}
.x2_c00146{left:109.837500px;}
.x3_c00146{left:163.830000px;}
.x1_c00146{left:226.200000px;}
.x9_c00146{left:1119.570000px;}
.x5_c00146{left:1132.755000px;}
.xa_c00146{left:1145.955000px;}
.xb_c00146{left:1155.255000px;}
.x6_c00146{left:1161.570000px;}
.x7_c00146{left:1179.255000px;}
.x8_c00146{left:1181.670000px;}
.x4_c00146{left:1185.270000px;}
.xc_c00146{left:1212.600000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls3_c00146{letter-spacing:0.000000pt;}
.ls4_c00146{letter-spacing:0.173867pt;}
.ls1_c00146{letter-spacing:36.220000pt;}
.ls2_c00146{letter-spacing:36.266667pt;}
.ls0_c00146{letter-spacing:74.666667pt;}
.ws0_c00146{word-spacing:-38.570667pt;}
.ws2_c00146{word-spacing:-28.958133pt;}
.ws1_c00146{word-spacing:-28.928000pt;}
.ws3_c00146{word-spacing:0.000000pt;}
._4_c00146{margin-left:-3.877130pt;}
._0_c00146{margin-left:-2.583035pt;}
._1_c00146{margin-left:-1.173765pt;}
._2_c00146{width:1.559035pt;}
._3_c00146{width:3.029536pt;}
.fs5_c00146{font-size:53.466667pt;}
.fs4_c00146{font-size:128.000000pt;}
.fs3_c00146{font-size:128.133333pt;}
.fs1_c00146{font-size:170.666667pt;}
.fs2_c00146{font-size:170.800000pt;}
.fs0_c00146{font-size:234.800000pt;}
.y0_c00146{bottom:0.000000pt;}
.y11_c00146{bottom:34.033333pt;}
.y10_c00146{bottom:110.866667pt;}
.y6_c00146{bottom:172.133333pt;}
.yf_c00146{bottom:187.693333pt;}
.y5_c00146{bottom:224.693333pt;}
.ye_c00146{bottom:264.506667pt;}
.y4_c00146{bottom:285.506667pt;}
.yd_c00146{bottom:341.333333pt;}
.y3_c00146{bottom:375.666667pt;}
.yc_c00146{bottom:418.173333pt;}
.y2_c00146{bottom:465.840000pt;}
.yb_c00146{bottom:495.000000pt;}
.ya_c00146{bottom:563.306667pt;}
.y1_c00146{bottom:587.133333pt;}
.y9_c00146{bottom:594.226667pt;}
.y8_c00146{bottom:632.640000pt;}
.y7_c00146{bottom:671.066667pt;}
.h6_c00146{height:53.179492pt;}
.h5_c00146{height:127.312500pt;}
.h4_c00146{height:127.445117pt;}
.h2_c00146{height:169.750000pt;}
.h3_c00146{height:169.882617pt;}
.h1_c00146{height:233.538867pt;}
.h0_c00146{height:720.000000pt;}
.w0_c00146{width:1280.000000pt;}
.x0_c00146{left:0.000000pt;}
.x2_c00146{left:97.633333pt;}
.x3_c00146{left:145.626667pt;}
.x1_c00146{left:201.066667pt;}
.x9_c00146{left:995.173333pt;}
.x5_c00146{left:1006.893333pt;}
.xa_c00146{left:1018.626667pt;}
.xb_c00146{left:1026.893333pt;}
.x6_c00146{left:1032.506667pt;}
.x7_c00146{left:1048.226667pt;}
.x8_c00146{left:1050.373333pt;}
.x4_c00146{left:1053.573333pt;}
.xc_c00146{left:1077.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_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_7e6304346b8f1ab21a0a3f2e.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.172852;font-style:normal;font-weight:normal;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_413e4764dae0f3722e8b535f.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00147{vertical-align:0.000000px;}
.ls3_c00147{letter-spacing:0.000000px;}
.ls2_c00147{letter-spacing:81.547500px;}
.ls1_c00147{letter-spacing:81.600000px;}
.ls0_c00147{letter-spacing:83.947500px;}
.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;}
}
.ws0_c00147{word-spacing:0.000000px;}
._4_c00147{margin-left:-9.294666px;}
._5_c00147{margin-left:-6.960000px;}
._2_c00147{margin-left:-4.800000px;}
._0_c00147{margin-left:-3.120000px;}
._1_c00147{margin-left:-1.440000px;}
._3_c00147{width:1.200000px;}
.fc0_c00147{color:rgb(0,0,0);}
.fs2_c00147{font-size:192.150000px;}
.fs3_c00147{font-size:216.000000px;}
.fs1_c00147{font-size:216.150000px;}
.fs0_c00147{font-size:240.000000px;}
.y0_c00147{bottom:0.000000px;}
.ya_c00147{bottom:73.425000px;}
.y9_c00147{bottom:139.125000px;}
.y8_c00147{bottom:205.170000px;}
.y7_c00147{bottom:270.870000px;}
.y6_c00147{bottom:336.900000px;}
.y5_c00147{bottom:402.645000px;}
.y4_c00147{bottom:468.345000px;}
.y3_c00147{bottom:534.375000px;}
.y2_c00147{bottom:600.120000px;}
.y1_c00147{bottom:708.075000px;}
.h3_c00147{height:214.839844px;}
.h2_c00147{height:214.989038px;}
.h1_c00147{height:238.710938px;}
.h0_c00147{height:810.000000px;}
.w0_c00147{width:1440.000000px;}
.x0_c00147{left:0.000000px;}
.x1_c00147{left:97.012500px;}
.x2_c00147{left:142.837500px;}
.x3_c00147{left:196.845000px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls3_c00147{letter-spacing:0.000000pt;}
.ls2_c00147{letter-spacing:72.486667pt;}
.ls1_c00147{letter-spacing:72.533333pt;}
.ls0_c00147{letter-spacing:74.620000pt;}
.ws0_c00147{word-spacing:0.000000pt;}
._4_c00147{margin-left:-8.261925pt;}
._5_c00147{margin-left:-6.186667pt;}
._2_c00147{margin-left:-4.266667pt;}
._0_c00147{margin-left:-2.773333pt;}
._1_c00147{margin-left:-1.280000pt;}
._3_c00147{width:1.066667pt;}
.fs2_c00147{font-size:170.800000pt;}
.fs3_c00147{font-size:192.000000pt;}
.fs1_c00147{font-size:192.133333pt;}
.fs0_c00147{font-size:213.333333pt;}
.y0_c00147{bottom:0.000000pt;}
.ya_c00147{bottom:65.266667pt;}
.y9_c00147{bottom:123.666667pt;}
.y8_c00147{bottom:182.373333pt;}
.y7_c00147{bottom:240.773333pt;}
.y6_c00147{bottom:299.466667pt;}
.y5_c00147{bottom:357.906667pt;}
.y4_c00147{bottom:416.306667pt;}
.y3_c00147{bottom:475.000000pt;}
.y2_c00147{bottom:533.440000pt;}
.y1_c00147{bottom:629.400000pt;}
.h3_c00147{height:190.968750pt;}
.h2_c00147{height:191.101367pt;}
.h1_c00147{height:212.187500pt;}
.h0_c00147{height:720.000000pt;}
.w0_c00147{width:1280.000000pt;}
.x0_c00147{left:0.000000pt;}
.x1_c00147{left:86.233333pt;}
.x2_c00147{left:126.966667pt;}
.x3_c00147{left:174.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0d5b1dc4b95f0b90627627f3.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.172852;font-style:normal;font-weight:normal;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_413e4764dae0f3722e8b535f.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:0.739746;font-style: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;}
.ls4_c00148{letter-spacing:0.000000px;}
.ls0_c00148{letter-spacing:34.447500px;}
.ls1_c00148{letter-spacing:81.247500px;}
.ls3_c00148{letter-spacing:126.907500px;}
.ls2_c00148{letter-spacing:126.960000px;}
.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:-47.493900px;}
.ws1_c00148{word-spacing:0.000000px;}
._7_c00148{margin-left:-14.076000px;}
._8_c00148{margin-left:-11.346000px;}
._6_c00148{margin-left:-6.600000px;}
._3_c00148{margin-left:-4.752000px;}
._0_c00148{margin-left:-3.432000px;}
._4_c00148{margin-left:-2.112000px;}
._1_c00148{margin-left:-1.056000px;}
._5_c00148{width:1.056000px;}
._2_c00148{width:2.376000px;}
.fc0_c00148{color:rgb(0,0,0);}
.fs2_c00148{font-size:186.000000px;}
.fs3_c00148{font-size:186.150000px;}
.fs1_c00148{font-size:210.150000px;}
.fs0_c00148{font-size:264.000000px;}
.y0_c00148{bottom:0.000000px;}
.yb_c00148{bottom:70.500000px;}
.ya_c00148{bottom:128.137500px;}
.y9_c00148{bottom:186.075000px;}
.y8_c00148{bottom:243.675000px;}
.y7_c00148{bottom:301.320000px;}
.y6_c00148{bottom:359.220000px;}
.y5_c00148{bottom:416.850000px;}
.y4_c00148{bottom:474.750000px;}
.y3_c00148{bottom:533.880000px;}
.y2_c00148{bottom:605.625000px;}
.y1_c00148{bottom:722.595000px;}
.h3_c00148{height:185.000977px;}
.h4_c00148{height:185.150171px;}
.h2_c00148{height:209.021265px;}
.h1_c00148{height:262.582031px;}
.h0_c00148{height:810.000000px;}
.w0_c00148{width:1440.000000px;}
.x0_c00148{left:0.000000px;}
.x2_c00148{left:109.837500px;}
.x1_c00148{left:138.075000px;}
.x3_c00148{left:163.830000px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls4_c00148{letter-spacing:0.000000pt;}
.ls0_c00148{letter-spacing:30.620000pt;}
.ls1_c00148{letter-spacing:72.220000pt;}
.ls3_c00148{letter-spacing:112.806667pt;}
.ls2_c00148{letter-spacing:112.853333pt;}
.ws0_c00148{word-spacing:-42.216800pt;}
.ws1_c00148{word-spacing:0.000000pt;}
._7_c00148{margin-left:-12.512000pt;}
._8_c00148{margin-left:-10.085333pt;}
._6_c00148{margin-left:-5.866667pt;}
._3_c00148{margin-left:-4.224000pt;}
._0_c00148{margin-left:-3.050667pt;}
._4_c00148{margin-left:-1.877333pt;}
._1_c00148{margin-left:-0.938667pt;}
._5_c00148{width:0.938667pt;}
._2_c00148{width:2.112000pt;}
.fs2_c00148{font-size:165.333333pt;}
.fs3_c00148{font-size:165.466667pt;}
.fs1_c00148{font-size:186.800000pt;}
.fs0_c00148{font-size:234.666667pt;}
.y0_c00148{bottom:0.000000pt;}
.yb_c00148{bottom:62.666667pt;}
.ya_c00148{bottom:113.900000pt;}
.y9_c00148{bottom:165.400000pt;}
.y8_c00148{bottom:216.600000pt;}
.y7_c00148{bottom:267.840000pt;}
.y6_c00148{bottom:319.306667pt;}
.y5_c00148{bottom:370.533333pt;}
.y4_c00148{bottom:422.000000pt;}
.y3_c00148{bottom:474.560000pt;}
.y2_c00148{bottom:538.333333pt;}
.y1_c00148{bottom:642.306667pt;}
.h3_c00148{height:164.445312pt;}
.h4_c00148{height:164.577930pt;}
.h2_c00148{height:185.796680pt;}
.h1_c00148{height:233.406250pt;}
.h0_c00148{height:720.000000pt;}
.w0_c00148{width:1280.000000pt;}
.x0_c00148{left:0.000000pt;}
.x2_c00148{left:97.633333pt;}
.x1_c00148{left:122.733333pt;}
.x3_c00148{left:145.626667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_32c5e8cee7df1ef186e5eb8d.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.172852;font-style:normal;font-weight:normal;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_413e4764dae0f3722e8b535f.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:0.739746;font-style:normal;font-weight:normal;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_5dcc314f9a805153666b9b1b.woff2')format("woff");}.ff3_c00149{font-family:ff3_c00149;line-height:1.172852;font-style: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;}
.ls6_c00149{letter-spacing:0.000000px;}
.ls2_c00149{letter-spacing:41.085300px;}
.ls1_c00149{letter-spacing:85.897500px;}
.ls3_c00149{letter-spacing:85.950000px;}
.ls5_c00149{letter-spacing:88.117500px;}
.ls4_c00149{letter-spacing:88.170000px;}
.ls0_c00149{letter-spacing:88.350000px;}
.sc__c00149{text-shadow:none;}
.sc0_c00149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00149{-webkit-text-stroke:0px transparent;}
.sc0_c00149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00149{word-spacing:0.000000px;}
._6_c00149{margin-left:-6.398628px;}
._3_c00149{margin-left:-4.754964px;}
._4_c00149{margin-left:-3.698628px;}
._1_c00149{margin-left:-2.641236px;}
._0_c00149{margin-left:-1.056600px;}
._5_c00149{width:1.056600px;}
._2_c00149{width:2.113200px;}
._7_c00149{width:39.086328px;}
.fc0_c00149{color:rgb(0,0,0);}
.fs1_c00149{font-size:156.000000px;}
.fs4_c00149{font-size:156.150000px;}
.fs2_c00149{font-size:180.000000px;}
.fs3_c00149{font-size:180.150000px;}
.fs0_c00149{font-size:264.150000px;}
.y0_c00149{bottom:0.000000px;}
.y9_c00149{bottom:45.487500px;}
.y8_c00149{bottom:128.325000px;}
.y7_c00149{bottom:196.770000px;}
.y6_c00149{bottom:265.155000px;}
.y5_c00149{bottom:335.700000px;}
.y4_c00149{bottom:420.945000px;}
.y3_c00149{bottom:506.175000px;}
.y2_c00149{bottom:591.375000px;}
.y1_c00149{bottom:706.245000px;}
.h4_c00149{height:155.162109px;}
.h5_c00149{height:155.311304px;}
.h2_c00149{height:179.033203px;}
.h3_c00149{height:179.182397px;}
.h1_c00149{height:262.731226px;}
.h0_c00149{height:810.000000px;}
.w0_c00149{width:1440.000000px;}
.x0_c00149{left:0.000000px;}
.x2_c00149{left:70.800000px;}
.x3_c00149{left:124.837500px;}
.x1_c00149{left:222.780000px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls6_c00149{letter-spacing:0.000000pt;}
.ls2_c00149{letter-spacing:36.520267pt;}
.ls1_c00149{letter-spacing:76.353333pt;}
.ls3_c00149{letter-spacing:76.400000pt;}
.ls5_c00149{letter-spacing:78.326667pt;}
.ls4_c00149{letter-spacing:78.373333pt;}
.ls0_c00149{letter-spacing:78.533333pt;}
.ws0_c00149{word-spacing:0.000000pt;}
._6_c00149{margin-left:-5.687670pt;}
._3_c00149{margin-left:-4.226635pt;}
._4_c00149{margin-left:-3.287670pt;}
._1_c00149{margin-left:-2.347765pt;}
._0_c00149{margin-left:-0.939200pt;}
._5_c00149{width:0.939200pt;}
._2_c00149{width:1.878400pt;}
._7_c00149{width:34.743403pt;}
.fs1_c00149{font-size:138.666667pt;}
.fs4_c00149{font-size:138.800000pt;}
.fs2_c00149{font-size:160.000000pt;}
.fs3_c00149{font-size:160.133333pt;}
.fs0_c00149{font-size:234.800000pt;}
.y0_c00149{bottom:0.000000pt;}
.y9_c00149{bottom:40.433333pt;}
.y8_c00149{bottom:114.066667pt;}
.y7_c00149{bottom:174.906667pt;}
.y6_c00149{bottom:235.693333pt;}
.y5_c00149{bottom:298.400000pt;}
.y4_c00149{bottom:374.173333pt;}
.y3_c00149{bottom:449.933333pt;}
.y2_c00149{bottom:525.666667pt;}
.y1_c00149{bottom:627.773333pt;}
.h4_c00149{height:137.921875pt;}
.h5_c00149{height:138.054492pt;}
.h2_c00149{height:159.140625pt;}
.h3_c00149{height:159.273242pt;}
.h1_c00149{height:233.538867pt;}
.h0_c00149{height:720.000000pt;}
.w0_c00149{width:1280.000000pt;}
.x0_c00149{left:0.000000pt;}
.x2_c00149{left:62.933333pt;}
.x3_c00149{left:110.966667pt;}
.x1_c00149{left:198.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ba700098c3555b7db95798fa.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.172852;font-style:normal;font-weight:normal;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_413e4764dae0f3722e8b535f.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:0.739746;font-style:normal;font-weight:normal;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_5dcc314f9a805153666b9b1b.woff2')format("woff");}.ff3_c00150{font-family:ff3_c00150;line-height:1.172852;font-style:normal;font-weight:normal;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_1f71a4adf903c03a102509e2.woff2')format("woff");}.ff4_c00150{font-family:ff4_c00150;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00150{letter-spacing:-0.192000px;}
.ls4_c00150{letter-spacing:0.000000px;}
.ls3_c00150{letter-spacing:38.532000px;}
.ls1_c00150{letter-spacing:38.736000px;}
.ls2_c00150{letter-spacing:87.547500px;}
.ls0_c00150{letter-spacing:87.600000px;}
.sc__c00150{text-shadow:none;}
.sc0_c00150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00150{-webkit-text-stroke:0px transparent;}
.sc0_c00150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00150{word-spacing:-37.968000px;}
.ws0_c00150{word-spacing:-1.566000px;}
.ws3_c00150{word-spacing:0.000000px;}
.ws2_c00150{word-spacing:38.376000px;}
._6_c00150{margin-left:-12.639000px;}
._3_c00150{margin-left:-4.752000px;}
._0_c00150{margin-left:-3.432000px;}
._4_c00150{margin-left:-2.112000px;}
._1_c00150{margin-left:-1.056000px;}
._5_c00150{width:1.368000px;}
._2_c00150{width:2.376000px;}
.fc1_c00150{color:rgb(255,255,0);}
.fc0_c00150{color:rgb(0,0,0);}
.fs1_c00150{font-size:168.000000px;}
.fs2_c00150{font-size:168.150000px;}
.fs0_c00150{font-size:264.000000px;}
.y0_c00150{bottom:0.000000px;}
.y9_c00150{bottom:21.900000px;}
.y8_c00150{bottom:105.037500px;}
.y7_c00150{bottom:188.175000px;}
.y6_c00150{bottom:271.320000px;}
.y5_c00150{bottom:354.450000px;}
.y4_c00150{bottom:437.550000px;}
.y3_c00150{bottom:520.695000px;}
.y2_c00150{bottom:603.825000px;}
.y1_c00150{bottom:713.850000px;}
.h2_c00150{height:167.097656px;}
.h3_c00150{height:167.246851px;}
.h1_c00150{height:262.582031px;}
.h0_c00150{height:810.000000px;}
.w0_c00150{width:1440.000000px;}
.x0_c00150{left:0.000000px;}
.x2_c00150{left:40.800000px;}
.x3_c00150{left:94.837500px;}
.x1_c00150{left:222.780000px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls5_c00150{letter-spacing:-0.170667pt;}
.ls4_c00150{letter-spacing:0.000000pt;}
.ls3_c00150{letter-spacing:34.250667pt;}
.ls1_c00150{letter-spacing:34.432000pt;}
.ls2_c00150{letter-spacing:77.820000pt;}
.ls0_c00150{letter-spacing:77.866667pt;}
.ws1_c00150{word-spacing:-33.749333pt;}
.ws0_c00150{word-spacing:-1.392000pt;}
.ws3_c00150{word-spacing:0.000000pt;}
.ws2_c00150{word-spacing:34.112000pt;}
._6_c00150{margin-left:-11.234667pt;}
._3_c00150{margin-left:-4.224000pt;}
._0_c00150{margin-left:-3.050667pt;}
._4_c00150{margin-left:-1.877333pt;}
._1_c00150{margin-left:-0.938667pt;}
._5_c00150{width:1.216000pt;}
._2_c00150{width:2.112000pt;}
.fs1_c00150{font-size:149.333333pt;}
.fs2_c00150{font-size:149.466667pt;}
.fs0_c00150{font-size:234.666667pt;}
.y0_c00150{bottom:0.000000pt;}
.y9_c00150{bottom:19.466667pt;}
.y8_c00150{bottom:93.366667pt;}
.y7_c00150{bottom:167.266667pt;}
.y6_c00150{bottom:241.173333pt;}
.y5_c00150{bottom:315.066667pt;}
.y4_c00150{bottom:388.933333pt;}
.y3_c00150{bottom:462.840000pt;}
.y2_c00150{bottom:536.733333pt;}
.y1_c00150{bottom:634.533333pt;}
.h2_c00150{height:148.531250pt;}
.h3_c00150{height:148.663867pt;}
.h1_c00150{height:233.406250pt;}
.h0_c00150{height:720.000000pt;}
.w0_c00150{width:1280.000000pt;}
.x0_c00150{left:0.000000pt;}
.x2_c00150{left:36.266667pt;}
.x3_c00150{left:84.300000pt;}
.x1_c00150{left:198.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_de21fa7a0810661253471ec4.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.172852;font-style:normal;font-weight:normal;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_413e4764dae0f3722e8b535f.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:0.739746;font-style: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;}
.ls4_c00151{letter-spacing:0.000000px;}
.ls5_c00151{letter-spacing:0.250200px;}
.ls3_c00151{letter-spacing:53.400000px;}
.ls0_c00151{letter-spacing:87.750000px;}
.ls1_c00151{letter-spacing:88.147500px;}
.ls2_c00151{letter-spacing:88.200000px;}
.sc__c00151{text-shadow:none;}
.sc0_c00151{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00151{-webkit-text-stroke:0px transparent;}
.sc0_c00151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00151{word-spacing:-35.256000px;}
.ws1_c00151{word-spacing:0.000000px;}
._7_c00151{margin-left:-9.171900px;}
._1_c00151{margin-left:-5.040000px;}
._4_c00151{margin-left:-3.936000px;}
._2_c00151{margin-left:-2.880000px;}
._0_c00151{margin-left:-1.440000px;}
._3_c00151{width:1.164000px;}
._5_c00151{width:2.347650px;}
._6_c00151{width:37.033200px;}
.fc1_c00151{color:rgb(255,255,0);}
.fc0_c00151{color:rgb(0,0,0);}
.fs2_c00151{font-size:156.000000px;}
.fs3_c00151{font-size:156.150000px;}
.fs1_c00151{font-size:168.000000px;}
.fs0_c00151{font-size:240.000000px;}
.y0_c00151{bottom:0.000000px;}
.y8_c00151{bottom:127.125000px;}
.y7_c00151{bottom:204.855000px;}
.y6_c00151{bottom:282.600000px;}
.y5_c00151{bottom:360.300000px;}
.y4_c00151{bottom:430.530000px;}
.y3_c00151{bottom:508.275000px;}
.y2_c00151{bottom:587.475000px;}
.y1_c00151{bottom:708.075000px;}
.h2_c00151{height:155.162109px;}
.h3_c00151{height:155.311304px;}
.h1_c00151{height:238.710938px;}
.h0_c00151{height:810.000000px;}
.w0_c00151{width:1440.000000px;}
.x0_c00151{left:0.000000px;}
.x2_c00151{left:58.800000px;}
.x1_c00151{left:113.587500px;}
.x3_c00151{left:139.837500px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls4_c00151{letter-spacing:0.000000pt;}
.ls5_c00151{letter-spacing:0.222400pt;}
.ls3_c00151{letter-spacing:47.466667pt;}
.ls0_c00151{letter-spacing:78.000000pt;}
.ls1_c00151{letter-spacing:78.353333pt;}
.ls2_c00151{letter-spacing:78.400000pt;}
.ws0_c00151{word-spacing:-31.338667pt;}
.ws1_c00151{word-spacing:0.000000pt;}
._7_c00151{margin-left:-8.152800pt;}
._1_c00151{margin-left:-4.480000pt;}
._4_c00151{margin-left:-3.498667pt;}
._2_c00151{margin-left:-2.560000pt;}
._0_c00151{margin-left:-1.280000pt;}
._3_c00151{width:1.034667pt;}
._5_c00151{width:2.086800pt;}
._6_c00151{width:32.918400pt;}
.fs2_c00151{font-size:138.666667pt;}
.fs3_c00151{font-size:138.800000pt;}
.fs1_c00151{font-size:149.333333pt;}
.fs0_c00151{font-size:213.333333pt;}
.y0_c00151{bottom:0.000000pt;}
.y8_c00151{bottom:113.000000pt;}
.y7_c00151{bottom:182.093333pt;}
.y6_c00151{bottom:251.200000pt;}
.y5_c00151{bottom:320.266667pt;}
.y4_c00151{bottom:382.693333pt;}
.y3_c00151{bottom:451.800000pt;}
.y2_c00151{bottom:522.200000pt;}
.y1_c00151{bottom:629.400000pt;}
.h2_c00151{height:137.921875pt;}
.h3_c00151{height:138.054492pt;}
.h1_c00151{height:212.187500pt;}
.h0_c00151{height:720.000000pt;}
.w0_c00151{width:1280.000000pt;}
.x0_c00151{left:0.000000pt;}
.x2_c00151{left:52.266667pt;}
.x1_c00151{left:100.966667pt;}
.x3_c00151{left:124.300000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0bef98d5db274f115fc5dd4f.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.172852;font-style:normal;font-weight:normal;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_413e4764dae0f3722e8b535f.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:0.739746;font-style:normal;font-weight:normal;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_5dcc314f9a805153666b9b1b.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;line-height:1.172852;font-style: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;}
.ls8_c00152{letter-spacing:0.000000px;}
.ls3_c00152{letter-spacing:31.668000px;}
.ls6_c00152{letter-spacing:32.613300px;}
.ls7_c00152{letter-spacing:32.688000px;}
.ls4_c00152{letter-spacing:32.868000px;}
.ls5_c00152{letter-spacing:89.947500px;}
.ls2_c00152{letter-spacing:90.000000px;}
.ls1_c00152{letter-spacing:126.097500px;}
.ls0_c00152{letter-spacing:126.150000px;}
.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:0.000000px;}
._5_c00152{margin-left:-13.146900px;}
._6_c00152{margin-left:-11.190000px;}
._1_c00152{margin-left:-5.040000px;}
._2_c00152{margin-left:-2.880000px;}
._0_c00152{margin-left:-1.440000px;}
._3_c00152{width:1.032000px;}
._4_c00152{width:2.958000px;}
.fc0_c00152{color:rgb(0,0,0);}
.fs3_c00152{font-size:144.000000px;}
.fs4_c00152{font-size:144.150000px;}
.fs1_c00152{font-size:168.000000px;}
.fs2_c00152{font-size:168.150000px;}
.fs0_c00152{font-size:240.000000px;}
.y0_c00152{bottom:0.000000px;}
.y9_c00152{bottom:60.187500px;}
.y8_c00152{bottom:132.525000px;}
.y7_c00152{bottom:204.855000px;}
.y6_c00152{bottom:277.155000px;}
.y5_c00152{bottom:349.500000px;}
.y4_c00152{bottom:421.845000px;}
.y3_c00152{bottom:496.875000px;}
.y2_c00152{bottom:587.475000px;}
.y1_c00152{bottom:708.075000px;}
.h4_c00152{height:143.226562px;}
.h5_c00152{height:143.375757px;}
.h2_c00152{height:167.097656px;}
.h3_c00152{height:167.246851px;}
.h1_c00152{height:238.710938px;}
.h0_c00152{height:810.000000px;}
.w0_c00152{width:1440.000000px;}
.x0_c00152{left:0.000000px;}
.x2_c00152{left:58.800000px;}
.x3_c00152{left:112.837500px;}
.x1_c00152{left:120.487500px;}
.x4_c00152{left:153.030000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls8_c00152{letter-spacing:0.000000pt;}
.ls3_c00152{letter-spacing:28.149333pt;}
.ls6_c00152{letter-spacing:28.989600pt;}
.ls7_c00152{letter-spacing:29.056000pt;}
.ls4_c00152{letter-spacing:29.216000pt;}
.ls5_c00152{letter-spacing:79.953333pt;}
.ls2_c00152{letter-spacing:80.000000pt;}
.ls1_c00152{letter-spacing:112.086667pt;}
.ls0_c00152{letter-spacing:112.133333pt;}
.ws0_c00152{word-spacing:0.000000pt;}
._5_c00152{margin-left:-11.686133pt;}
._6_c00152{margin-left:-9.946667pt;}
._1_c00152{margin-left:-4.480000pt;}
._2_c00152{margin-left:-2.560000pt;}
._0_c00152{margin-left:-1.280000pt;}
._3_c00152{width:0.917333pt;}
._4_c00152{width:2.629333pt;}
.fs3_c00152{font-size:128.000000pt;}
.fs4_c00152{font-size:128.133333pt;}
.fs1_c00152{font-size:149.333333pt;}
.fs2_c00152{font-size:149.466667pt;}
.fs0_c00152{font-size:213.333333pt;}
.y0_c00152{bottom:0.000000pt;}
.y9_c00152{bottom:53.500000pt;}
.y8_c00152{bottom:117.800000pt;}
.y7_c00152{bottom:182.093333pt;}
.y6_c00152{bottom:246.360000pt;}
.y5_c00152{bottom:310.666667pt;}
.y4_c00152{bottom:374.973333pt;}
.y3_c00152{bottom:441.666667pt;}
.y2_c00152{bottom:522.200000pt;}
.y1_c00152{bottom:629.400000pt;}
.h4_c00152{height:127.312500pt;}
.h5_c00152{height:127.445117pt;}
.h2_c00152{height:148.531250pt;}
.h3_c00152{height:148.663867pt;}
.h1_c00152{height:212.187500pt;}
.h0_c00152{height:720.000000pt;}
.w0_c00152{width:1280.000000pt;}
.x0_c00152{left:0.000000pt;}
.x2_c00152{left:52.266667pt;}
.x3_c00152{left:100.300000pt;}
.x1_c00152{left:107.100000pt;}
.x4_c00152{left:136.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3f5c434aa7cedbd517eb16af.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.172852;font-style:normal;font-weight:normal;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_413e4764dae0f3722e8b535f.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:0.739746;font-style: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;}
.ls2_c00153{letter-spacing:0.000000px;}
.ls1_c00153{letter-spacing:128.347500px;}
.ls0_c00153{letter-spacing:128.400000px;}
.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:0.000000px;}
._3_c00153{margin-left:-4.752000px;}
._0_c00153{margin-left:-3.432000px;}
._4_c00153{margin-left:-2.112000px;}
._1_c00153{margin-left:-1.056000px;}
._5_c00153{width:1.320000px;}
._2_c00153{width:2.376000px;}
.fc1_c00153{color:rgb(255,0,0);}
.fc0_c00153{color:rgb(0,0,0);}
.fs1_c00153{font-size:192.000000px;}
.fs2_c00153{font-size:192.150000px;}
.fs0_c00153{font-size:264.000000px;}
.y0_c00153{bottom:0.000000px;}
.y5_c00153{bottom:92.100000px;}
.y4_c00153{bottom:222.375000px;}
.y3_c00153{bottom:352.620000px;}
.y2_c00153{bottom:482.850000px;}
.y1_c00153{bottom:681.120000px;}
.h2_c00153{height:190.968750px;}
.h3_c00153{height:191.117944px;}
.h1_c00153{height:262.582031px;}
.h0_c00153{height:810.000000px;}
.w0_c00153{width:1440.000000px;}
.x0_c00153{left:0.000000px;}
.x1_c00153{left:153.180000px;}
.x2_c00153{left:185.400000px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls2_c00153{letter-spacing:0.000000pt;}
.ls1_c00153{letter-spacing:114.086667pt;}
.ls0_c00153{letter-spacing:114.133333pt;}
.ws0_c00153{word-spacing:0.000000pt;}
._3_c00153{margin-left:-4.224000pt;}
._0_c00153{margin-left:-3.050667pt;}
._4_c00153{margin-left:-1.877333pt;}
._1_c00153{margin-left:-0.938667pt;}
._5_c00153{width:1.173333pt;}
._2_c00153{width:2.112000pt;}
.fs1_c00153{font-size:170.666667pt;}
.fs2_c00153{font-size:170.800000pt;}
.fs0_c00153{font-size:234.666667pt;}
.y0_c00153{bottom:0.000000pt;}
.y5_c00153{bottom:81.866667pt;}
.y4_c00153{bottom:197.666667pt;}
.y3_c00153{bottom:313.440000pt;}
.y2_c00153{bottom:429.200000pt;}
.y1_c00153{bottom:605.440000pt;}
.h2_c00153{height:169.750000pt;}
.h3_c00153{height:169.882617pt;}
.h1_c00153{height:233.406250pt;}
.h0_c00153{height:720.000000pt;}
.w0_c00153{width:1280.000000pt;}
.x0_c00153{left:0.000000pt;}
.x1_c00153{left:136.160000pt;}
.x2_c00153{left:164.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_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_922a5ff62392bc0a9371bbf7.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.172852;font-style:normal;font-weight:normal;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_5dcc314f9a805153666b9b1b.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.172852;font-style:normal;font-weight:normal;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_413e4764dae0f3722e8b535f.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;line-height:0.739746;font-style: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;}
.ls4_c00154{letter-spacing:0.000000px;}
.ls1_c00154{letter-spacing:49.147500px;}
.ls2_c00154{letter-spacing:57.547500px;}
.ls3_c00154{letter-spacing:57.600000px;}
.ls0_c00154{letter-spacing:59.253300px;}
.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:0.000000px;}
._6_c00154{margin-left:-11.752092px;}
._3_c00154{margin-left:-4.226400px;}
._1_c00154{margin-left:-2.641236px;}
._0_c00154{margin-left:-1.056600px;}
._5_c00154{width:1.105836px;}
._2_c00154{width:2.113200px;}
._4_c00154{width:3.173058px;}
.fc0_c00154{color:rgb(0,0,0);}
.fs3_c00154{font-size:144.000000px;}
.fs2_c00154{font-size:144.150000px;}
.fs1_c00154{font-size:168.150000px;}
.fs0_c00154{font-size:264.150000px;}
.y0_c00154{bottom:0.000000px;}
.ya_c00154{bottom:126.712500px;}
.y9_c00154{bottom:177.450000px;}
.y8_c00154{bottom:220.650000px;}
.y7_c00154{bottom:271.395000px;}
.y6_c00154{bottom:322.095000px;}
.y5_c00154{bottom:372.825000px;}
.y4_c00154{bottom:423.525000px;}
.y3_c00154{bottom:474.255000px;}
.y2_c00154{bottom:554.700000px;}
.y1_c00154{bottom:670.200000px;}
.h4_c00154{height:143.226562px;}
.h3_c00154{height:143.375757px;}
.h2_c00154{height:167.246851px;}
.h1_c00154{height:262.731226px;}
.h0_c00154{height:810.000000px;}
.w0_c00154{width:1440.000000px;}
.x0_c00154{left:0.000000px;}
.x2_c00154{left:109.837500px;}
.x3_c00154{left:163.830000px;}
.x1_c00154{left:203.220000px;}
.x4_c00154{left:806.250000px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls4_c00154{letter-spacing:0.000000pt;}
.ls1_c00154{letter-spacing:43.686667pt;}
.ls2_c00154{letter-spacing:51.153333pt;}
.ls3_c00154{letter-spacing:51.200000pt;}
.ls0_c00154{letter-spacing:52.669600pt;}
.ws0_c00154{word-spacing:0.000000pt;}
._6_c00154{margin-left:-10.446304pt;}
._3_c00154{margin-left:-3.756800pt;}
._1_c00154{margin-left:-2.347765pt;}
._0_c00154{margin-left:-0.939200pt;}
._5_c00154{width:0.982965pt;}
._2_c00154{width:1.878400pt;}
._4_c00154{width:2.820496pt;}
.fs3_c00154{font-size:128.000000pt;}
.fs2_c00154{font-size:128.133333pt;}
.fs1_c00154{font-size:149.466667pt;}
.fs0_c00154{font-size:234.800000pt;}
.y0_c00154{bottom:0.000000pt;}
.ya_c00154{bottom:112.633333pt;}
.y9_c00154{bottom:157.733333pt;}
.y8_c00154{bottom:196.133333pt;}
.y7_c00154{bottom:241.240000pt;}
.y6_c00154{bottom:286.306667pt;}
.y5_c00154{bottom:331.400000pt;}
.y4_c00154{bottom:376.466667pt;}
.y3_c00154{bottom:421.560000pt;}
.y2_c00154{bottom:493.066667pt;}
.y1_c00154{bottom:595.733333pt;}
.h4_c00154{height:127.312500pt;}
.h3_c00154{height:127.445117pt;}
.h2_c00154{height:148.663867pt;}
.h1_c00154{height:233.538867pt;}
.h0_c00154{height:720.000000pt;}
.w0_c00154{width:1280.000000pt;}
.x0_c00154{left:0.000000pt;}
.x2_c00154{left:97.633333pt;}
.x3_c00154{left:145.626667pt;}
.x1_c00154{left:180.640000pt;}
.x4_c00154{left:716.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_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_1088debfb7c1216190e2d642.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.172852;font-style:normal;font-weight:normal;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_413e4764dae0f3722e8b535f.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:0.739746;font-style:normal;font-weight:normal;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_5dcc314f9a805153666b9b1b.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:1.172852;font-style: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:0.000000px;}
.ls3_c00155{letter-spacing:41.280000px;}
.ls2_c00155{letter-spacing:85.747500px;}
.ls1_c00155{letter-spacing:85.800000px;}
.ls0_c00155{letter-spacing:88.200000px;}
.sc__c00155{text-shadow:none;}
.sc0_c00155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00155{-webkit-text-stroke:0px transparent;}
.sc0_c00155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00155{word-spacing:-59.697900px;}
.ws1_c00155{word-spacing:0.000000px;}
._5_c00155{margin-left:-4.842000px;}
._1_c00155{margin-left:-3.600000px;}
._2_c00155{margin-left:-2.230200px;}
._0_c00155{margin-left:-1.056600px;}
._3_c00155{width:1.482660px;}
._4_c00155{width:80.728229px;}
.fc0_c00155{color:rgb(0,0,0);}
.fs1_c00155{font-size:156.000000px;}
.fs2_c00155{font-size:180.000000px;}
.fs3_c00155{font-size:180.150000px;}
.fs0_c00155{font-size:264.150000px;}
.y0_c00155{bottom:0.000000px;}
.y8_c00155{bottom:101.175000px;}
.y7_c00155{bottom:186.105000px;}
.y6_c00155{bottom:270.750000px;}
.y5_c00155{bottom:355.695000px;}
.y4_c00155{bottom:441.795000px;}
.y3_c00155{bottom:527.925000px;}
.y2_c00155{bottom:615.570000px;}
.y1_c00155{bottom:713.325000px;}
.h2_c00155{height:179.033203px;}
.h3_c00155{height:179.182397px;}
.h1_c00155{height:262.731226px;}
.h0_c00155{height:810.000000px;}
.w0_c00155{width:1440.000000px;}
.x0_c00155{left:0.000000px;}
.x2_c00155{left:182.925000px;}
.x1_c00155{left:560.880000px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls4_c00155{letter-spacing:0.000000pt;}
.ls3_c00155{letter-spacing:36.693333pt;}
.ls2_c00155{letter-spacing:76.220000pt;}
.ls1_c00155{letter-spacing:76.266667pt;}
.ls0_c00155{letter-spacing:78.400000pt;}
.ws0_c00155{word-spacing:-53.064800pt;}
.ws1_c00155{word-spacing:0.000000pt;}
._5_c00155{margin-left:-4.304000pt;}
._1_c00155{margin-left:-3.200000pt;}
._2_c00155{margin-left:-1.982400pt;}
._0_c00155{margin-left:-0.939200pt;}
._3_c00155{width:1.317920pt;}
._4_c00155{width:71.758426pt;}
.fs1_c00155{font-size:138.666667pt;}
.fs2_c00155{font-size:160.000000pt;}
.fs3_c00155{font-size:160.133333pt;}
.fs0_c00155{font-size:234.800000pt;}
.y0_c00155{bottom:0.000000pt;}
.y8_c00155{bottom:89.933333pt;}
.y7_c00155{bottom:165.426667pt;}
.y6_c00155{bottom:240.666667pt;}
.y5_c00155{bottom:316.173333pt;}
.y4_c00155{bottom:392.706667pt;}
.y3_c00155{bottom:469.266667pt;}
.y2_c00155{bottom:547.173333pt;}
.y1_c00155{bottom:634.066667pt;}
.h2_c00155{height:159.140625pt;}
.h3_c00155{height:159.273242pt;}
.h1_c00155{height:233.538867pt;}
.h0_c00155{height:720.000000pt;}
.w0_c00155{width:1280.000000pt;}
.x0_c00155{left:0.000000pt;}
.x2_c00155{left:162.600000pt;}
.x1_c00155{left:498.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1913c8f1e2e93191d7bea201.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:0.981934;font-style:normal;font-weight:normal;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_d0972c000f4830ecef4ae175.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:0.687012;font-style:normal;font-weight:normal;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_af0c7a91bf62717b73325e15.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;line-height:0.982910;font-style:normal;font-weight:normal;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_eae33c6359ed7b5f62d2b467.woff2')format("woff");}.ff4_c00156{font-family:ff4_c00156;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00156;src:url('chunks/assets/font_0ce3584ba93b612e0919d628.woff2')format("woff");}.ff5_c00156{font-family:ff5_c00156;line-height:0.982910;font-style:normal;font-weight:normal;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_be96f422cfdc8957a4cb1493.woff2')format("woff");}.ff6_c00156{font-family:ff6_c00156;line-height:0.690918;font-style:normal;font-weight: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_06c0d5cc7599339b4946685b.woff2')format("woff");}.ff7_c00156{font-family:ff7_c00156;line-height:0.941895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00156{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00156{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00156{vertical-align:-23.760000px;}
.v0_c00156{vertical-align:0.000000px;}
.v1_c00156{vertical-align:30.240000px;}
.lsb_c00156{letter-spacing:-0.322800px;}
.ls9_c00156{letter-spacing:-0.295200px;}
.ls3_c00156{letter-spacing:-0.272400px;}
.lsd_c00156{letter-spacing:-0.222600px;}
.lsc_c00156{letter-spacing:-0.216600px;}
.ls4_c00156{letter-spacing:-0.211800px;}
.ls8_c00156{letter-spacing:-0.126000px;}
.lsf_c00156{letter-spacing:-0.107400px;}
.ls5_c00156{letter-spacing:-0.010200px;}
.ls0_c00156{letter-spacing:0.000000px;}
.ls7_c00156{letter-spacing:0.022200px;}
.ls6_c00156{letter-spacing:0.031800px;}
.ls2_c00156{letter-spacing:0.083400px;}
.lse_c00156{letter-spacing:0.175200px;}
.ls1_c00156{letter-spacing:0.180000px;}
.lsa_c00156{letter-spacing:0.208200px;}
.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:-72.000000px;}
.wsa_c00156{word-spacing:-59.760000px;}
.ws2_c00156{word-spacing:-13.505760px;}
.wsb_c00156{word-spacing:-13.398360px;}
.ws1_c00156{word-spacing:-10.902240px;}
.ws4_c00156{word-spacing:-10.892040px;}
.ws5_c00156{word-spacing:-10.776240px;}
.ws8_c00156{word-spacing:-10.685640px;}
.ws9_c00156{word-spacing:-10.679640px;}
.ws6_c00156{word-spacing:-10.607040px;}
.ws7_c00156{word-spacing:-10.579440px;}
.ws3_c00156{word-spacing:-8.514480px;}
.wsc_c00156{word-spacing:0.000000px;}
._0_c00156{margin-left:-1.080000px;}
._1_c00156{width:2.004000px;}
._6_c00156{width:3.059999px;}
._7_c00156{width:4.470000px;}
._a_c00156{width:6.302156px;}
._9_c00156{width:7.410481px;}
._5_c00156{width:8.724719px;}
._b_c00156{width:10.007999px;}
._c_c00156{width:11.115001px;}
._2_c00156{width:92.118094px;}
._8_c00156{width:108.316213px;}
._4_c00156{width:135.100368px;}
._3_c00156{width:159.018143px;}
.fc2_c00156{color:transparent;}
.fc1_c00156{color:rgb(0,0,0);}
.fc0_c00156{color:rgb(0,0,255);}
.fs6_c00156{font-size:30.240000px;}
.fs5_c00156{font-size:38.880000px;}
.fs1_c00156{font-size:48.240000px;}
.fs2_c00156{font-size:54.000000px;}
.fs3_c00156{font-size:59.760000px;}
.fs0_c00156{font-size:72.000000px;}
.fs7_c00156{font-size:84.240000px;}
.fs4_c00156{font-size:120.240000px;}
.y0_c00156{bottom:0.000000px;}
.y2_c00156{bottom:15.300000px;}
.yd_c00156{bottom:67.716000px;}
.yc_c00156{bottom:85.176000px;}
.yb_c00156{bottom:99.936000px;}
.ya_c00156{bottom:114.516000px;}
.y9_c00156{bottom:132.876000px;}
.y33_c00156{bottom:184.170000px;}
.y32_c00156{bottom:206.130000px;}
.y31_c00156{bottom:237.270000px;}
.y30_c00156{bottom:264.990000px;}
.y2f_c00156{bottom:286.995000px;}
.y2e_c00156{bottom:308.955000px;}
.y2d_c00156{bottom:330.915000px;}
.y2c_c00156{bottom:352.875000px;}
.y2b_c00156{bottom:374.835000px;}
.y2a_c00156{bottom:396.795000px;}
.y29_c00156{bottom:418.755000px;}
.y28_c00156{bottom:440.715000px;}
.y27_c00156{bottom:462.675000px;}
.y26_c00156{bottom:484.635000px;}
.y25_c00156{bottom:506.595000px;}
.y24_c00156{bottom:528.735000px;}
.y23_c00156{bottom:559.725000px;}
.y22_c00156{bottom:583.665000px;}
.y21_c00156{bottom:608.325000px;}
.y20_c00156{bottom:638.025000px;}
.y1f_c00156{bottom:658.905000px;}
.y1e_c00156{bottom:679.965000px;}
.y1d_c00156{bottom:701.925000px;}
.y1c_c00156{bottom:723.885000px;}
.y1b_c00156{bottom:745.845000px;}
.y1a_c00156{bottom:775.545000px;}
.y19_c00156{bottom:796.065000px;}
.y18_c00156{bottom:818.565000px;}
.y17_c00156{bottom:836.385000px;}
.y16_c00156{bottom:851.010000px;}
.y15_c00156{bottom:865.770000px;}
.y14_c00156{bottom:880.350000px;}
.y13_c00156{bottom:894.930000px;}
.y12_c00156{bottom:909.690000px;}
.y11_c00156{bottom:924.270000px;}
.y10_c00156{bottom:944.970000px;}
.yf_c00156{bottom:954.330000px;}
.ye_c00156{bottom:1006.530000px;}
.y8_c00156{bottom:1060.890000px;}
.y7_c00156{bottom:1075.470000px;}
.y6_c00156{bottom:1090.230000px;}
.y5_c00156{bottom:1104.810000px;}
.y4_c00156{bottom:1119.390000px;}
.y3_c00156{bottom:1134.180000px;}
.y1_c00156{bottom:1145.520000px;}
.h9_c00156{height:24.333750px;}
.h2_c00156{height:32.400000px;}
.h5_c00156{height:35.991211px;}
.h4_c00156{height:38.818125px;}
.ha_c00156{height:40.472227px;}
.h6_c00156{height:48.088125px;}
.h3_c00156{height:57.867188px;}
.h8_c00156{height:61.526250px;}
.hb_c00156{height:67.704609px;}
.h7_c00156{height:96.638203px;}
.h0_c00156{height:1262.880000px;}
.h1_c00156{height:1263.000000px;}
.w2_c00156{width:739.230000px;}
.w0_c00156{width:892.980000px;}
.w1_c00156{width:893.250000px;}
.x0_c00156{left:0.000000px;}
.x2_c00156{left:7.920000px;}
.x1_c00156{left:77.040000px;}
.x3_c00156{left:84.960000px;}
.x5_c00156{left:99.936000px;}
.x4_c00156{left:442.695000px;}
@media print{
.v2_c00156{vertical-align:-21.120000pt;}
.v0_c00156{vertical-align:0.000000pt;}
.v1_c00156{vertical-align:26.880000pt;}
.lsb_c00156{letter-spacing:-0.286933pt;}
.ls9_c00156{letter-spacing:-0.262400pt;}
.ls3_c00156{letter-spacing:-0.242133pt;}
.lsd_c00156{letter-spacing:-0.197867pt;}
.lsc_c00156{letter-spacing:-0.192533pt;}
.ls4_c00156{letter-spacing:-0.188267pt;}
.ls8_c00156{letter-spacing:-0.112000pt;}
.lsf_c00156{letter-spacing:-0.095467pt;}
.ls5_c00156{letter-spacing:-0.009067pt;}
.ls0_c00156{letter-spacing:0.000000pt;}
.ls7_c00156{letter-spacing:0.019733pt;}
.ls6_c00156{letter-spacing:0.028267pt;}
.ls2_c00156{letter-spacing:0.074133pt;}
.lse_c00156{letter-spacing:0.155733pt;}
.ls1_c00156{letter-spacing:0.160000pt;}
.lsa_c00156{letter-spacing:0.185067pt;}
.ws0_c00156{word-spacing:-64.000000pt;}
.wsa_c00156{word-spacing:-53.120000pt;}
.ws2_c00156{word-spacing:-12.005120pt;}
.wsb_c00156{word-spacing:-11.909653pt;}
.ws1_c00156{word-spacing:-9.690880pt;}
.ws4_c00156{word-spacing:-9.681813pt;}
.ws5_c00156{word-spacing:-9.578880pt;}
.ws8_c00156{word-spacing:-9.498347pt;}
.ws9_c00156{word-spacing:-9.493013pt;}
.ws6_c00156{word-spacing:-9.428480pt;}
.ws7_c00156{word-spacing:-9.403947pt;}
.ws3_c00156{word-spacing:-7.568427pt;}
.wsc_c00156{word-spacing:0.000000pt;}
._0_c00156{margin-left:-0.960000pt;}
._1_c00156{width:1.781333pt;}
._6_c00156{width:2.719999pt;}
._7_c00156{width:3.973333pt;}
._a_c00156{width:5.601917pt;}
._9_c00156{width:6.587094pt;}
._5_c00156{width:7.755306pt;}
._b_c00156{width:8.895999pt;}
._c_c00156{width:9.880001pt;}
._2_c00156{width:81.882750pt;}
._8_c00156{width:96.281078pt;}
._4_c00156{width:120.089216pt;}
._3_c00156{width:141.349460pt;}
.fs6_c00156{font-size:26.880000pt;}
.fs5_c00156{font-size:34.560000pt;}
.fs1_c00156{font-size:42.880000pt;}
.fs2_c00156{font-size:48.000000pt;}
.fs3_c00156{font-size:53.120000pt;}
.fs0_c00156{font-size:64.000000pt;}
.fs7_c00156{font-size:74.880000pt;}
.fs4_c00156{font-size:106.880000pt;}
.y0_c00156{bottom:0.000000pt;}
.y2_c00156{bottom:13.600000pt;}
.yd_c00156{bottom:60.192000pt;}
.yc_c00156{bottom:75.712000pt;}
.yb_c00156{bottom:88.832000pt;}
.ya_c00156{bottom:101.792000pt;}
.y9_c00156{bottom:118.112000pt;}
.y33_c00156{bottom:163.706667pt;}
.y32_c00156{bottom:183.226667pt;}
.y31_c00156{bottom:210.906667pt;}
.y30_c00156{bottom:235.546667pt;}
.y2f_c00156{bottom:255.106667pt;}
.y2e_c00156{bottom:274.626667pt;}
.y2d_c00156{bottom:294.146667pt;}
.y2c_c00156{bottom:313.666667pt;}
.y2b_c00156{bottom:333.186667pt;}
.y2a_c00156{bottom:352.706667pt;}
.y29_c00156{bottom:372.226667pt;}
.y28_c00156{bottom:391.746667pt;}
.y27_c00156{bottom:411.266667pt;}
.y26_c00156{bottom:430.786667pt;}
.y25_c00156{bottom:450.306667pt;}
.y24_c00156{bottom:469.986667pt;}
.y23_c00156{bottom:497.533333pt;}
.y22_c00156{bottom:518.813333pt;}
.y21_c00156{bottom:540.733333pt;}
.y20_c00156{bottom:567.133333pt;}
.y1f_c00156{bottom:585.693333pt;}
.y1e_c00156{bottom:604.413333pt;}
.y1d_c00156{bottom:623.933333pt;}
.y1c_c00156{bottom:643.453333pt;}
.y1b_c00156{bottom:662.973333pt;}
.y1a_c00156{bottom:689.373333pt;}
.y19_c00156{bottom:707.613333pt;}
.y18_c00156{bottom:727.613333pt;}
.y17_c00156{bottom:743.453333pt;}
.y16_c00156{bottom:756.453333pt;}
.y15_c00156{bottom:769.573333pt;}
.y14_c00156{bottom:782.533333pt;}
.y13_c00156{bottom:795.493333pt;}
.y12_c00156{bottom:808.613333pt;}
.y11_c00156{bottom:821.573333pt;}
.y10_c00156{bottom:839.973333pt;}
.yf_c00156{bottom:848.293333pt;}
.ye_c00156{bottom:894.693333pt;}
.y8_c00156{bottom:943.013333pt;}
.y7_c00156{bottom:955.973333pt;}
.y6_c00156{bottom:969.093333pt;}
.y5_c00156{bottom:982.053333pt;}
.y4_c00156{bottom:995.013333pt;}
.y3_c00156{bottom:1008.160000pt;}
.y1_c00156{bottom:1018.240000pt;}
.h9_c00156{height:21.630000pt;}
.h2_c00156{height:28.800000pt;}
.h5_c00156{height:31.992188pt;}
.h4_c00156{height:34.505000pt;}
.ha_c00156{height:35.975313pt;}
.h6_c00156{height:42.745000pt;}
.h3_c00156{height:51.437500pt;}
.h8_c00156{height:54.690000pt;}
.hb_c00156{height:60.181875pt;}
.h7_c00156{height:85.900625pt;}
.h0_c00156{height:1122.560000pt;}
.h1_c00156{height:1122.666667pt;}
.w2_c00156{width:657.093333pt;}
.w0_c00156{width:793.760000pt;}
.w1_c00156{width:794.000000pt;}
.x0_c00156{left:0.000000pt;}
.x2_c00156{left:7.040000pt;}
.x1_c00156{left:68.480000pt;}
.x3_c00156{left:75.520000pt;}
.x5_c00156{left:88.832000pt;}
.x4_c00156{left:393.506667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f3525cb69834a1f949490f68.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:0.981934;font-style:normal;font-weight:normal;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_eae33c6359ed7b5f62d2b467.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00157;src:url('chunks/assets/font_f1909ad5b99ad9e5d7a44a74.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:0.982910;font-style:normal;font-weight:normal;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_6b58cb3547ec912504ba63c9.woff2')format("woff");}.ff4_c00157{font-family:ff4_c00157;line-height:0.941895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00157;src:url('chunks/assets/font_724ea077522c25e5f2942568.woff2')format("woff");}.ff5_c00157{font-family:ff5_c00157;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00157{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.lsc_c00157{letter-spacing:-0.322800px;}
.lsd_c00157{letter-spacing:-0.240600px;}
.ls7_c00157{letter-spacing:-0.058200px;}
.ls3_c00157{letter-spacing:0.000000px;}
.ls1_c00157{letter-spacing:0.022200px;}
.ls5_c00157{letter-spacing:0.024000px;}
.lsb_c00157{letter-spacing:0.031800px;}
.ls9_c00157{letter-spacing:0.083400px;}
.lsa_c00157{letter-spacing:0.148800px;}
.ls8_c00157{letter-spacing:0.180000px;}
.ls6_c00157{letter-spacing:0.186600px;}
.ls2_c00157{letter-spacing:0.306000px;}
.lse_c00157{letter-spacing:0.654000px;}
.ls4_c00157{letter-spacing:0.744000px;}
.ls0_c00157{letter-spacing:5.657760px;}
.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:-13.505760px;}
.ws1_c00157{word-spacing:-13.447560px;}
.ws2_c00157{word-spacing:-11.051040px;}
.ws4_c00157{word-spacing:-10.924440px;}
.ws3_c00157{word-spacing:-10.902240px;}
.ws5_c00157{word-spacing:0.000000px;}
._5_c00157{margin-left:-1.151396px;}
._0_c00157{width:1.255199px;}
._6_c00157{width:2.362791px;}
._1_c00157{width:3.406200px;}
._3_c00157{width:4.698630px;}
._2_c00157{width:5.768394px;}
._4_c00157{width:7.171200px;}
._7_c00157{width:8.366400px;}
._8_c00157{width:108.316213px;}
.fc1_c00157{color:rgb(0,0,0);}
.fc0_c00157{color:rgb(0,0,255);}
.fs4_c00157{font-size:48.240000px;}
.fs1_c00157{font-size:54.000000px;}
.fs0_c00157{font-size:59.760000px;}
.fs3_c00157{font-size:72.000000px;}
.fs2_c00157{font-size:84.240000px;}
.y0_c00157{bottom:0.000000px;}
.y3_c00157{bottom:71.136000px;}
.y2_c00157{bottom:88.776000px;}
.y30_c00157{bottom:133.956000px;}
.y2f_c00157{bottom:156.090000px;}
.y2e_c00157{bottom:178.050000px;}
.y2d_c00157{bottom:200.010000px;}
.y2c_c00157{bottom:229.710000px;}
.y2b_c00157{bottom:254.370000px;}
.y2a_c00157{bottom:276.555000px;}
.y29_c00157{bottom:291.135000px;}
.y28_c00157{bottom:310.395000px;}
.y27_c00157{bottom:324.975000px;}
.y26_c00157{bottom:344.055000px;}
.y25_c00157{bottom:358.815000px;}
.y24_c00157{bottom:385.455000px;}
.y23_c00157{bottom:410.115000px;}
.y22_c00157{bottom:432.075000px;}
.y21_c00157{bottom:454.035000px;}
.y20_c00157{bottom:475.995000px;}
.y1f_c00157{bottom:506.955000px;}
.y1e_c00157{bottom:534.675000px;}
.y1d_c00157{bottom:556.665000px;}
.y1c_c00157{bottom:578.625000px;}
.y1b_c00157{bottom:600.585000px;}
.y1a_c00157{bottom:622.725000px;}
.y19_c00157{bottom:644.685000px;}
.y18_c00157{bottom:666.645000px;}
.y17_c00157{bottom:688.605000px;}
.y16_c00157{bottom:710.565000px;}
.y15_c00157{bottom:732.525000px;}
.y14_c00157{bottom:763.485000px;}
.y13_c00157{bottom:791.205000px;}
.y12_c00157{bottom:813.165000px;}
.y11_c00157{bottom:835.125000px;}
.y10_c00157{bottom:857.130000px;}
.yf_c00157{bottom:879.090000px;}
.ye_c00157{bottom:901.230000px;}
.yd_c00157{bottom:923.190000px;}
.yc_c00157{bottom:945.150000px;}
.yb_c00157{bottom:967.110000px;}
.ya_c00157{bottom:989.070000px;}
.y9_c00157{bottom:1011.030000px;}
.y8_c00157{bottom:1032.990000px;}
.y7_c00157{bottom:1054.950000px;}
.y6_c00157{bottom:1076.910000px;}
.y5_c00157{bottom:1098.870000px;}
.y4_c00157{bottom:1120.830000px;}
.y1_c00157{bottom:1163.520000px;}
.h3_c00157{height:35.991211px;}
.h7_c00157{height:38.818125px;}
.h2_c00157{height:48.029766px;}
.h4_c00157{height:48.088125px;}
.h6_c00157{height:57.867188px;}
.h5_c00157{height:67.704609px;}
.h0_c00157{height:1262.880000px;}
.h1_c00157{height:1263.000000px;}
.w0_c00157{width:892.980000px;}
.w1_c00157{width:893.250000px;}
.x0_c00157{left:0.000000px;}
.x1_c00157{left:84.960000px;}
.x4_c00157{left:99.936000px;}
.x5_c00157{left:106.236000px;}
.x3_c00157{left:442.695000px;}
.x2_c00157{left:446.475000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.lsc_c00157{letter-spacing:-0.286933pt;}
.lsd_c00157{letter-spacing:-0.213867pt;}
.ls7_c00157{letter-spacing:-0.051733pt;}
.ls3_c00157{letter-spacing:0.000000pt;}
.ls1_c00157{letter-spacing:0.019733pt;}
.ls5_c00157{letter-spacing:0.021333pt;}
.lsb_c00157{letter-spacing:0.028267pt;}
.ls9_c00157{letter-spacing:0.074133pt;}
.lsa_c00157{letter-spacing:0.132267pt;}
.ls8_c00157{letter-spacing:0.160000pt;}
.ls6_c00157{letter-spacing:0.165867pt;}
.ls2_c00157{letter-spacing:0.272000pt;}
.lse_c00157{letter-spacing:0.581333pt;}
.ls4_c00157{letter-spacing:0.661333pt;}
.ls0_c00157{letter-spacing:5.029120pt;}
.ws0_c00157{word-spacing:-12.005120pt;}
.ws1_c00157{word-spacing:-11.953387pt;}
.ws2_c00157{word-spacing:-9.823147pt;}
.ws4_c00157{word-spacing:-9.710613pt;}
.ws3_c00157{word-spacing:-9.690880pt;}
.ws5_c00157{word-spacing:0.000000pt;}
._5_c00157{margin-left:-1.023463pt;}
._0_c00157{width:1.115732pt;}
._6_c00157{width:2.100259pt;}
._1_c00157{width:3.027734pt;}
._3_c00157{width:4.176560pt;}
._2_c00157{width:5.127461pt;}
._4_c00157{width:6.374400pt;}
._7_c00157{width:7.436800pt;}
._8_c00157{width:96.281078pt;}
.fs4_c00157{font-size:42.880000pt;}
.fs1_c00157{font-size:48.000000pt;}
.fs0_c00157{font-size:53.120000pt;}
.fs3_c00157{font-size:64.000000pt;}
.fs2_c00157{font-size:74.880000pt;}
.y0_c00157{bottom:0.000000pt;}
.y3_c00157{bottom:63.232000pt;}
.y2_c00157{bottom:78.912000pt;}
.y30_c00157{bottom:119.072000pt;}
.y2f_c00157{bottom:138.746667pt;}
.y2e_c00157{bottom:158.266667pt;}
.y2d_c00157{bottom:177.786667pt;}
.y2c_c00157{bottom:204.186667pt;}
.y2b_c00157{bottom:226.106667pt;}
.y2a_c00157{bottom:245.826667pt;}
.y29_c00157{bottom:258.786667pt;}
.y28_c00157{bottom:275.906667pt;}
.y27_c00157{bottom:288.866667pt;}
.y26_c00157{bottom:305.826667pt;}
.y25_c00157{bottom:318.946667pt;}
.y24_c00157{bottom:342.626667pt;}
.y23_c00157{bottom:364.546667pt;}
.y22_c00157{bottom:384.066667pt;}
.y21_c00157{bottom:403.586667pt;}
.y20_c00157{bottom:423.106667pt;}
.y1f_c00157{bottom:450.626667pt;}
.y1e_c00157{bottom:475.266667pt;}
.y1d_c00157{bottom:494.813333pt;}
.y1c_c00157{bottom:514.333333pt;}
.y1b_c00157{bottom:533.853333pt;}
.y1a_c00157{bottom:553.533333pt;}
.y19_c00157{bottom:573.053333pt;}
.y18_c00157{bottom:592.573333pt;}
.y17_c00157{bottom:612.093333pt;}
.y16_c00157{bottom:631.613333pt;}
.y15_c00157{bottom:651.133333pt;}
.y14_c00157{bottom:678.653333pt;}
.y13_c00157{bottom:703.293333pt;}
.y12_c00157{bottom:722.813333pt;}
.y11_c00157{bottom:742.333333pt;}
.y10_c00157{bottom:761.893333pt;}
.yf_c00157{bottom:781.413333pt;}
.ye_c00157{bottom:801.093333pt;}
.yd_c00157{bottom:820.613333pt;}
.yc_c00157{bottom:840.133333pt;}
.yb_c00157{bottom:859.653333pt;}
.ya_c00157{bottom:879.173333pt;}
.y9_c00157{bottom:898.693333pt;}
.y8_c00157{bottom:918.213333pt;}
.y7_c00157{bottom:937.733333pt;}
.y6_c00157{bottom:957.253333pt;}
.y5_c00157{bottom:976.773333pt;}
.y4_c00157{bottom:996.293333pt;}
.y1_c00157{bottom:1034.240000pt;}
.h3_c00157{height:31.992188pt;}
.h7_c00157{height:34.505000pt;}
.h2_c00157{height:42.693125pt;}
.h4_c00157{height:42.745000pt;}
.h6_c00157{height:51.437500pt;}
.h5_c00157{height:60.181875pt;}
.h0_c00157{height:1122.560000pt;}
.h1_c00157{height:1122.666667pt;}
.w0_c00157{width:793.760000pt;}
.w1_c00157{width:794.000000pt;}
.x0_c00157{left:0.000000pt;}
.x1_c00157{left:75.520000pt;}
.x4_c00157{left:88.832000pt;}
.x5_c00157{left:94.432000pt;}
.x3_c00157{left:393.506667pt;}
.x2_c00157{left:396.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_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_24c10e2af3dfe824870d6f3e.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:0.981934;font-style:normal;font-weight:normal;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_621056efba202855c40a4f6a.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:0.982910;font-style: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;}
.ls3_c00158{letter-spacing:-0.326400px;}
.ls1_c00158{letter-spacing:0.000000px;}
.ls0_c00158{letter-spacing:0.175200px;}
.ls2_c00158{letter-spacing:0.306000px;}
.sc__c00158{text-shadow:none;}
.sc0_c00158{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00158{-webkit-text-stroke:0px transparent;}
.sc0_c00158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00158{word-spacing:-13.505760px;}
.ws1_c00158{word-spacing:0.000000px;}
._0_c00158{width:1.075800px;}
._1_c00158{width:2.091002px;}
._2_c00158{width:3.310764px;}
.fc1_c00158{color:rgb(0,0,0);}
.fc0_c00158{color:rgb(0,0,255);}
.fs1_c00158{font-size:54.000000px;}
.fs0_c00158{font-size:59.760000px;}
.y0_c00158{bottom:0.000000px;}
.y3_c00158{bottom:67.716000px;}
.y2_c00158{bottom:85.716000px;}
.y8_c00158{bottom:1032.990000px;}
.y7_c00158{bottom:1054.950000px;}
.y6_c00158{bottom:1076.910000px;}
.y5_c00158{bottom:1098.870000px;}
.y4_c00158{bottom:1120.830000px;}
.y1_c00158{bottom:1163.520000px;}
.h3_c00158{height:43.453125px;}
.h2_c00158{height:48.029766px;}
.h4_c00158{height:48.088125px;}
.h0_c00158{height:1262.880000px;}
.h1_c00158{height:1263.000000px;}
.w0_c00158{width:892.980000px;}
.w1_c00158{width:893.250000px;}
.x0_c00158{left:0.000000px;}
.x1_c00158{left:84.960000px;}
.x4_c00158{left:99.936000px;}
.x3_c00158{left:442.695000px;}
.x2_c00158{left:446.475000px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls3_c00158{letter-spacing:-0.290133pt;}
.ls1_c00158{letter-spacing:0.000000pt;}
.ls0_c00158{letter-spacing:0.155733pt;}
.ls2_c00158{letter-spacing:0.272000pt;}
.ws0_c00158{word-spacing:-12.005120pt;}
.ws1_c00158{word-spacing:0.000000pt;}
._0_c00158{width:0.956266pt;}
._1_c00158{width:1.858669pt;}
._2_c00158{width:2.942901pt;}
.fs1_c00158{font-size:48.000000pt;}
.fs0_c00158{font-size:53.120000pt;}
.y0_c00158{bottom:0.000000pt;}
.y3_c00158{bottom:60.192000pt;}
.y2_c00158{bottom:76.192000pt;}
.y8_c00158{bottom:918.213333pt;}
.y7_c00158{bottom:937.733333pt;}
.y6_c00158{bottom:957.253333pt;}
.y5_c00158{bottom:976.773333pt;}
.y4_c00158{bottom:996.293333pt;}
.y1_c00158{bottom:1034.240000pt;}
.h3_c00158{height:38.625000pt;}
.h2_c00158{height:42.693125pt;}
.h4_c00158{height:42.745000pt;}
.h0_c00158{height:1122.560000pt;}
.h1_c00158{height:1122.666667pt;}
.w0_c00158{width:793.760000pt;}
.w1_c00158{width:794.000000pt;}
.x0_c00158{left:0.000000pt;}
.x1_c00158{left:75.520000pt;}
.x4_c00158{left:88.832000pt;}
.x3_c00158{left:393.506667pt;}
.x2_c00158{left:396.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_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_34524369504eb6f9a448723c.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00159;src:url('chunks/assets/font_38dc6c314c9389851c8fe80b.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00159;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00159;src:url('chunks/assets/font_b51e09ed9f917bbdffeb09f0.woff2')format("woff");}.ff4_c00159{font-family:ff4_c00159;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00159;src:url('chunks/assets/font_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff5_c00159{font-family:ff5_c00159;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00159{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00159{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c00159{vertical-align:-15.120000px;}
.v0_c00159{vertical-align:0.000000px;}
.v2_c00159{vertical-align:15.120000px;}
.v1_c00159{vertical-align:20.880000px;}
.ls1d_c00159{letter-spacing:-0.601200px;}
.ls26_c00159{letter-spacing:-0.530640px;}
.ls1f_c00159{letter-spacing:-0.504000px;}
.ls1c_c00159{letter-spacing:-0.480960px;}
.ls20_c00159{letter-spacing:-0.418320px;}
.ls1b_c00159{letter-spacing:-0.337680px;}
.ls17_c00159{letter-spacing:-0.289440px;}
.ls16_c00159{letter-spacing:-0.241200px;}
.ls21_c00159{letter-spacing:-0.239040px;}
.ls15_c00159{letter-spacing:-0.216000px;}
.ls19_c00159{letter-spacing:-0.144720px;}
.ls22_c00159{letter-spacing:-0.059760px;}
.ls14_c00159{letter-spacing:0.000000px;}
.ls2_c00159{letter-spacing:0.024120px;}
.ls18_c00159{letter-spacing:0.048240px;}
.lsb_c00159{letter-spacing:0.059760px;}
.ls8_c00159{letter-spacing:0.077760px;}
.ls23_c00159{letter-spacing:0.084240px;}
.ls9_c00159{letter-spacing:0.096480px;}
.ls6_c00159{letter-spacing:0.120240px;}
.ls5_c00159{letter-spacing:0.144720px;}
.lsc_c00159{letter-spacing:0.179280px;}
.lsf_c00159{letter-spacing:0.185256px;}
.ls1a_c00159{letter-spacing:0.192960px;}
.ls4_c00159{letter-spacing:0.197784px;}
.ls13_c00159{letter-spacing:0.216000px;}
.ls1e_c00159{letter-spacing:0.239040px;}
.ls3_c00159{letter-spacing:0.241200px;}
.lse_c00159{letter-spacing:0.298800px;}
.ls0_c00159{letter-spacing:0.337680px;}
.ls25_c00159{letter-spacing:0.358560px;}
.ls7_c00159{letter-spacing:0.403920px;}
.ls12_c00159{letter-spacing:0.492048px;}
.ls24_c00159{letter-spacing:0.896400px;}
.lsa_c00159{letter-spacing:3.764880px;}
.lsd_c00159{letter-spacing:5.199120px;}
.ls1_c00159{letter-spacing:91.318320px;}
.ls10_c00159{letter-spacing:143.899920px;}
.ls11_c00159{letter-spacing:158.999040px;}
.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;}
}
.ws8_c00159{word-spacing:-27.174240px;}
.ws10_c00159{word-spacing:-19.122480px;}
.wsd_c00159{word-spacing:-16.488000px;}
.ws0_c00159{word-spacing:-16.056000px;}
.wsa_c00159{word-spacing:-15.768000px;}
.wsf_c00159{word-spacing:-13.804560px;}
.wsc_c00159{word-spacing:-13.685040px;}
.ws9_c00159{word-spacing:-13.565520px;}
.ws7_c00159{word-spacing:-13.505760px;}
.wse_c00159{word-spacing:-13.446000px;}
.ws12_c00159{word-spacing:-13.266720px;}
.wsb_c00159{word-spacing:-13.087440px;}
.ws5_c00159{word-spacing:-10.950480px;}
.ws3_c00159{word-spacing:-10.902240px;}
.ws2_c00159{word-spacing:-10.757520px;}
.ws1_c00159{word-spacing:-10.661040px;}
.ws4_c00159{word-spacing:-10.612800px;}
.ws6_c00159{word-spacing:-10.564560px;}
.ws14_c00159{word-spacing:-10.371600px;}
.ws11_c00159{word-spacing:-8.786880px;}
.ws13_c00159{word-spacing:-6.834240px;}
.ws1c_c00159{word-spacing:-1.013040px;}
.ws30_c00159{word-spacing:-0.896400px;}
.ws2a_c00159{word-spacing:-0.421200px;}
.ws33_c00159{word-spacing:-0.358560px;}
.ws1a_c00159{word-spacing:-0.289440px;}
.ws24_c00159{word-spacing:-0.192960px;}
.ws18_c00159{word-spacing:-0.144720px;}
.ws21_c00159{word-spacing:-0.120240px;}
.ws31_c00159{word-spacing:-0.119520px;}
.ws1e_c00159{word-spacing:-0.096480px;}
.ws23_c00159{word-spacing:-0.059760px;}
.ws1d_c00159{word-spacing:-0.048240px;}
.ws16_c00159{word-spacing:0.000000px;}
.ws1b_c00159{word-spacing:0.048240px;}
.ws2f_c00159{word-spacing:0.059760px;}
.ws15_c00159{word-spacing:0.072000px;}
.ws19_c00159{word-spacing:0.144720px;}
.ws17_c00159{word-spacing:0.192960px;}
.ws29_c00159{word-spacing:0.239040px;}
.ws1f_c00159{word-spacing:0.241200px;}
.ws28_c00159{word-spacing:0.418320px;}
.ws20_c00159{word-spacing:0.480960px;}
.ws22_c00159{word-spacing:0.601200px;}
.ws34_c00159{word-spacing:2.031840px;}
.ws32_c00159{word-spacing:2.390400px;}
.ws25_c00159{word-spacing:3.466080px;}
.ws27_c00159{word-spacing:3.585600px;}
.ws2b_c00159{word-spacing:3.824640px;}
.ws26_c00159{word-spacing:4.003920px;}
.ws2e_c00159{word-spacing:4.900320px;}
.ws2c_c00159{word-spacing:5.019840px;}
.ws35_c00159{word-spacing:5.139360px;}
.ws2d_c00159{word-spacing:5.258880px;}
._0_c00159{margin-left:-1.512000px;}
._1_c00159{width:1.296000px;}
._7_c00159{width:3.622320px;}
._8_c00159{width:5.695920px;}
._5_c00159{width:9.509760px;}
._9_c00159{width:74.772000px;}
._2_c00159{width:92.048400px;}
._6_c00159{width:108.164160px;}
._4_c00159{width:135.457920px;}
._3_c00159{width:158.999040px;}
.fc3_c00159{color:transparent;}
.fc2_c00159{color:rgb(51,51,255);}
.fc1_c00159{color:rgb(0,0,0);}
.fc0_c00159{color:rgb(0,0,255);}
.fs6_c00159{font-size:30.240000px;}
.fs5_c00159{font-size:38.880000px;}
.fs1_c00159{font-size:48.240000px;}
.fs2_c00159{font-size:54.000000px;}
.fs3_c00159{font-size:59.760000px;}
.fs0_c00159{font-size:72.000000px;}
.fs7_c00159{font-size:84.240000px;}
.fs4_c00159{font-size:120.240000px;}
.y0_c00159{bottom:0.000000px;}
.y2_c00159{bottom:15.300000px;}
.yd_c00159{bottom:71.280000px;}
.yc_c00159{bottom:91.800000px;}
.yb_c00159{bottom:109.440000px;}
.ya_c00159{bottom:127.080000px;}
.y9_c00159{bottom:148.500000px;}
.y32_c00159{bottom:164.520000px;}
.y31_c00159{bottom:179.098020px;}
.y30_c00159{bottom:193.859460px;}
.y2f_c00159{bottom:212.220000px;}
.y2e_c00159{bottom:223.020000px;}
.y2d_c00159{bottom:278.624520px;}
.y2c_c00159{bottom:300.586320px;}
.y2b_c00159{bottom:322.548120px;}
.y2a_c00159{bottom:344.509920px;}
.y29_c00159{bottom:366.471720px;}
.y28_c00159{bottom:388.433520px;}
.y27_c00159{bottom:410.574600px;}
.y26_c00159{bottom:432.536400px;}
.y25_c00159{bottom:454.498200px;}
.y24_c00159{bottom:476.458200px;}
.y23_c00159{bottom:498.420000px;}
.y22_c00159{bottom:529.560000px;}
.y21_c00159{bottom:552.780000px;}
.y20_c00159{bottom:578.160000px;}
.y1f_c00159{bottom:607.860000px;}
.y1e_c00159{bottom:632.520000px;}
.y1d_c00159{bottom:654.480000px;}
.y1c_c00159{bottom:676.440000px;}
.y1b_c00159{bottom:698.400000px;}
.y1a_c00159{bottom:728.100000px;}
.y19_c00159{bottom:751.140000px;}
.y18_c00159{bottom:774.000000px;}
.y17_c00159{bottom:794.516220px;}
.y16_c00159{bottom:812.160000px;}
.y15_c00159{bottom:829.609560px;}
.y14_c00159{bottom:847.253340px;}
.y13_c00159{bottom:864.897120px;}
.y12_c00159{bottom:882.360000px;}
.y11_c00159{bottom:900.000000px;}
.y10_c00159{bottom:917.640000px;}
.yf_c00159{bottom:936.720000px;}
.ye_c00159{bottom:988.920000px;}
.y8_c00159{bottom:1045.962000px;}
.y7_c00159{bottom:1063.605780px;}
.y6_c00159{bottom:1081.249560px;}
.y5_c00159{bottom:1098.712440px;}
.y4_c00159{bottom:1116.356220px;}
.y3_c00159{bottom:1134.000000px;}
.y1_c00159{bottom:1145.520000px;}
.h10_c00159{height:21.705469px;}
.h2_c00159{height:32.400000px;}
.h4_c00159{height:34.625391px;}
.hb_c00159{height:34.667151px;}
.h6_c00159{height:35.025820px;}
.h5_c00159{height:35.991211px;}
.ha_c00159{height:36.825469px;}
.hd_c00159{height:41.522695px;}
.hc_c00159{height:42.894141px;}
.h7_c00159{height:43.390195px;}
.h9_c00159{height:48.787031px;}
.hf_c00159{height:48.794231px;}
.h3_c00159{height:52.277344px;}
.he_c00159{height:61.164492px;}
.h8_c00159{height:87.303164px;}
.h0_c00159{height:1262.880000px;}
.h1_c00159{height:1263.000000px;}
.w2_c00159{width:739.078500px;}
.w0_c00159{width:892.980000px;}
.w1_c00159{width:893.250000px;}
.x0_c00159{left:0.000000px;}
.x2_c00159{left:7.920000px;}
.x1_c00159{left:77.040000px;}
.x3_c00159{left:84.960000px;}
.x5_c00159{left:99.896760px;}
.x6_c00159{left:300.960000px;}
.x4_c00159{left:442.620000px;}
@media print{
.v3_c00159{vertical-align:-13.440000pt;}
.v0_c00159{vertical-align:0.000000pt;}
.v2_c00159{vertical-align:13.440000pt;}
.v1_c00159{vertical-align:18.560000pt;}
.ls1d_c00159{letter-spacing:-0.534400pt;}
.ls26_c00159{letter-spacing:-0.471680pt;}
.ls1f_c00159{letter-spacing:-0.448000pt;}
.ls1c_c00159{letter-spacing:-0.427520pt;}
.ls20_c00159{letter-spacing:-0.371840pt;}
.ls1b_c00159{letter-spacing:-0.300160pt;}
.ls17_c00159{letter-spacing:-0.257280pt;}
.ls16_c00159{letter-spacing:-0.214400pt;}
.ls21_c00159{letter-spacing:-0.212480pt;}
.ls15_c00159{letter-spacing:-0.192000pt;}
.ls19_c00159{letter-spacing:-0.128640pt;}
.ls22_c00159{letter-spacing:-0.053120pt;}
.ls14_c00159{letter-spacing:0.000000pt;}
.ls2_c00159{letter-spacing:0.021440pt;}
.ls18_c00159{letter-spacing:0.042880pt;}
.lsb_c00159{letter-spacing:0.053120pt;}
.ls8_c00159{letter-spacing:0.069120pt;}
.ls23_c00159{letter-spacing:0.074880pt;}
.ls9_c00159{letter-spacing:0.085760pt;}
.ls6_c00159{letter-spacing:0.106880pt;}
.ls5_c00159{letter-spacing:0.128640pt;}
.lsc_c00159{letter-spacing:0.159360pt;}
.lsf_c00159{letter-spacing:0.164672pt;}
.ls1a_c00159{letter-spacing:0.171520pt;}
.ls4_c00159{letter-spacing:0.175808pt;}
.ls13_c00159{letter-spacing:0.192000pt;}
.ls1e_c00159{letter-spacing:0.212480pt;}
.ls3_c00159{letter-spacing:0.214400pt;}
.lse_c00159{letter-spacing:0.265600pt;}
.ls0_c00159{letter-spacing:0.300160pt;}
.ls25_c00159{letter-spacing:0.318720pt;}
.ls7_c00159{letter-spacing:0.359040pt;}
.ls12_c00159{letter-spacing:0.437376pt;}
.ls24_c00159{letter-spacing:0.796800pt;}
.lsa_c00159{letter-spacing:3.346560pt;}
.lsd_c00159{letter-spacing:4.621440pt;}
.ls1_c00159{letter-spacing:81.171840pt;}
.ls10_c00159{letter-spacing:127.911040pt;}
.ls11_c00159{letter-spacing:141.332480pt;}
.ws8_c00159{word-spacing:-24.154880pt;}
.ws10_c00159{word-spacing:-16.997760pt;}
.wsd_c00159{word-spacing:-14.656000pt;}
.ws0_c00159{word-spacing:-14.272000pt;}
.wsa_c00159{word-spacing:-14.016000pt;}
.wsf_c00159{word-spacing:-12.270720pt;}
.wsc_c00159{word-spacing:-12.164480pt;}
.ws9_c00159{word-spacing:-12.058240pt;}
.ws7_c00159{word-spacing:-12.005120pt;}
.wse_c00159{word-spacing:-11.952000pt;}
.ws12_c00159{word-spacing:-11.792640pt;}
.wsb_c00159{word-spacing:-11.633280pt;}
.ws5_c00159{word-spacing:-9.733760pt;}
.ws3_c00159{word-spacing:-9.690880pt;}
.ws2_c00159{word-spacing:-9.562240pt;}
.ws1_c00159{word-spacing:-9.476480pt;}
.ws4_c00159{word-spacing:-9.433600pt;}
.ws6_c00159{word-spacing:-9.390720pt;}
.ws14_c00159{word-spacing:-9.219200pt;}
.ws11_c00159{word-spacing:-7.810560pt;}
.ws13_c00159{word-spacing:-6.074880pt;}
.ws1c_c00159{word-spacing:-0.900480pt;}
.ws30_c00159{word-spacing:-0.796800pt;}
.ws2a_c00159{word-spacing:-0.374400pt;}
.ws33_c00159{word-spacing:-0.318720pt;}
.ws1a_c00159{word-spacing:-0.257280pt;}
.ws24_c00159{word-spacing:-0.171520pt;}
.ws18_c00159{word-spacing:-0.128640pt;}
.ws21_c00159{word-spacing:-0.106880pt;}
.ws31_c00159{word-spacing:-0.106240pt;}
.ws1e_c00159{word-spacing:-0.085760pt;}
.ws23_c00159{word-spacing:-0.053120pt;}
.ws1d_c00159{word-spacing:-0.042880pt;}
.ws16_c00159{word-spacing:0.000000pt;}
.ws1b_c00159{word-spacing:0.042880pt;}
.ws2f_c00159{word-spacing:0.053120pt;}
.ws15_c00159{word-spacing:0.064000pt;}
.ws19_c00159{word-spacing:0.128640pt;}
.ws17_c00159{word-spacing:0.171520pt;}
.ws29_c00159{word-spacing:0.212480pt;}
.ws1f_c00159{word-spacing:0.214400pt;}
.ws28_c00159{word-spacing:0.371840pt;}
.ws20_c00159{word-spacing:0.427520pt;}
.ws22_c00159{word-spacing:0.534400pt;}
.ws34_c00159{word-spacing:1.806080pt;}
.ws32_c00159{word-spacing:2.124800pt;}
.ws25_c00159{word-spacing:3.080960pt;}
.ws27_c00159{word-spacing:3.187200pt;}
.ws2b_c00159{word-spacing:3.399680pt;}
.ws26_c00159{word-spacing:3.559040pt;}
.ws2e_c00159{word-spacing:4.355840pt;}
.ws2c_c00159{word-spacing:4.462080pt;}
.ws35_c00159{word-spacing:4.568320pt;}
.ws2d_c00159{word-spacing:4.674560pt;}
._0_c00159{margin-left:-1.344000pt;}
._1_c00159{width:1.152000pt;}
._7_c00159{width:3.219840pt;}
._8_c00159{width:5.063040pt;}
._5_c00159{width:8.453120pt;}
._9_c00159{width:66.464000pt;}
._2_c00159{width:81.820800pt;}
._6_c00159{width:96.145920pt;}
._4_c00159{width:120.407040pt;}
._3_c00159{width:141.332480pt;}
.fs6_c00159{font-size:26.880000pt;}
.fs5_c00159{font-size:34.560000pt;}
.fs1_c00159{font-size:42.880000pt;}
.fs2_c00159{font-size:48.000000pt;}
.fs3_c00159{font-size:53.120000pt;}
.fs0_c00159{font-size:64.000000pt;}
.fs7_c00159{font-size:74.880000pt;}
.fs4_c00159{font-size:106.880000pt;}
.y0_c00159{bottom:0.000000pt;}
.y2_c00159{bottom:13.600000pt;}
.yd_c00159{bottom:63.360000pt;}
.yc_c00159{bottom:81.600000pt;}
.yb_c00159{bottom:97.280000pt;}
.ya_c00159{bottom:112.960000pt;}
.y9_c00159{bottom:132.000000pt;}
.y32_c00159{bottom:146.240000pt;}
.y31_c00159{bottom:159.198240pt;}
.y30_c00159{bottom:172.319520pt;}
.y2f_c00159{bottom:188.640000pt;}
.y2e_c00159{bottom:198.240000pt;}
.y2d_c00159{bottom:247.666240pt;}
.y2c_c00159{bottom:267.187840pt;}
.y2b_c00159{bottom:286.709440pt;}
.y2a_c00159{bottom:306.231040pt;}
.y29_c00159{bottom:325.752640pt;}
.y28_c00159{bottom:345.274240pt;}
.y27_c00159{bottom:364.955200pt;}
.y26_c00159{bottom:384.476800pt;}
.y25_c00159{bottom:403.998400pt;}
.y24_c00159{bottom:423.518400pt;}
.y23_c00159{bottom:443.040000pt;}
.y22_c00159{bottom:470.720000pt;}
.y21_c00159{bottom:491.360000pt;}
.y20_c00159{bottom:513.920000pt;}
.y1f_c00159{bottom:540.320000pt;}
.y1e_c00159{bottom:562.240000pt;}
.y1d_c00159{bottom:581.760000pt;}
.y1c_c00159{bottom:601.280000pt;}
.y1b_c00159{bottom:620.800000pt;}
.y1a_c00159{bottom:647.200000pt;}
.y19_c00159{bottom:667.680000pt;}
.y18_c00159{bottom:688.000000pt;}
.y17_c00159{bottom:706.236640pt;}
.y16_c00159{bottom:721.920000pt;}
.y15_c00159{bottom:737.430720pt;}
.y14_c00159{bottom:753.114080pt;}
.y13_c00159{bottom:768.797440pt;}
.y12_c00159{bottom:784.320000pt;}
.y11_c00159{bottom:800.000000pt;}
.y10_c00159{bottom:815.680000pt;}
.yf_c00159{bottom:832.640000pt;}
.ye_c00159{bottom:879.040000pt;}
.y8_c00159{bottom:929.744000pt;}
.y7_c00159{bottom:945.427360pt;}
.y6_c00159{bottom:961.110720pt;}
.y5_c00159{bottom:976.633280pt;}
.y4_c00159{bottom:992.316640pt;}
.y3_c00159{bottom:1008.000000pt;}
.y1_c00159{bottom:1018.240000pt;}
.h10_c00159{height:19.293750pt;}
.h2_c00159{height:28.800000pt;}
.h4_c00159{height:30.778125pt;}
.hb_c00159{height:30.815245pt;}
.h6_c00159{height:31.134062pt;}
.h5_c00159{height:31.992188pt;}
.ha_c00159{height:32.733750pt;}
.hd_c00159{height:36.909063pt;}
.hc_c00159{height:38.128125pt;}
.h7_c00159{height:38.569063pt;}
.h9_c00159{height:43.366250pt;}
.hf_c00159{height:43.372650pt;}
.h3_c00159{height:46.468750pt;}
.he_c00159{height:54.368437pt;}
.h8_c00159{height:77.602812pt;}
.h0_c00159{height:1122.560000pt;}
.h1_c00159{height:1122.666667pt;}
.w2_c00159{width:656.958667pt;}
.w0_c00159{width:793.760000pt;}
.w1_c00159{width:794.000000pt;}
.x0_c00159{left:0.000000pt;}
.x2_c00159{left:7.040000pt;}
.x1_c00159{left:68.480000pt;}
.x3_c00159{left:75.520000pt;}
.x5_c00159{left:88.797120pt;}
.x6_c00159{left:267.520000pt;}
.x4_c00159{left:393.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ebadcde8a313ba8e50454113.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00160;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00160;src:url('chunks/assets/font_50da570ff61927e13943666f.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00160{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.lsa_c00160{letter-spacing:-0.298800px;}
.lsb_c00160{letter-spacing:-0.239040px;}
.ls6_c00160{letter-spacing:-0.059760px;}
.ls7_c00160{letter-spacing:0.000000px;}
.ls2_c00160{letter-spacing:0.059760px;}
.ls0_c00160{letter-spacing:0.089640px;}
.lsd_c00160{letter-spacing:0.119520px;}
.lsc_c00160{letter-spacing:0.168480px;}
.ls8_c00160{letter-spacing:0.179280px;}
.ls3_c00160{letter-spacing:0.298800px;}
.ls9_c00160{letter-spacing:0.358560px;}
.lse_c00160{letter-spacing:0.418320px;}
.ls5_c00160{letter-spacing:0.776880px;}
.ls1_c00160{letter-spacing:0.896400px;}
.ls4_c00160{letter-spacing:1.613520px;}
.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;}
}
.ws6_c00160{word-spacing:-13.924080px;}
.ws3_c00160{word-spacing:-13.625280px;}
.ws4_c00160{word-spacing:-13.565520px;}
.ws0_c00160{word-spacing:-13.505760px;}
.ws2_c00160{word-spacing:-13.446000px;}
.ws5_c00160{word-spacing:-13.266720px;}
.ws1_c00160{word-spacing:-13.206960px;}
.ws13_c00160{word-spacing:-0.505440px;}
.ws1d_c00160{word-spacing:-0.418320px;}
.ws9_c00160{word-spacing:-0.358560px;}
.ws15_c00160{word-spacing:-0.179280px;}
.ws1a_c00160{word-spacing:-0.119520px;}
.ws8_c00160{word-spacing:0.000000px;}
.ws7_c00160{word-spacing:0.059760px;}
.wse_c00160{word-spacing:0.239040px;}
.ws17_c00160{word-spacing:0.418320px;}
.wsd_c00160{word-spacing:0.597600px;}
.ws11_c00160{word-spacing:0.956160px;}
.wsc_c00160{word-spacing:1.135440px;}
.wsb_c00160{word-spacing:1.314720px;}
.wsa_c00160{word-spacing:1.852560px;}
.ws16_c00160{word-spacing:2.031840px;}
.ws14_c00160{word-spacing:2.390400px;}
.ws12_c00160{word-spacing:2.748960px;}
.wsf_c00160{word-spacing:2.868480px;}
.ws10_c00160{word-spacing:3.286800px;}
.ws19_c00160{word-spacing:3.466080px;}
.ws18_c00160{word-spacing:3.824640px;}
.ws1c_c00160{word-spacing:4.900320px;}
.ws1b_c00160{word-spacing:5.438160px;}
._0_c00160{margin-left:-1.063728px;}
._1_c00160{width:1.350576px;}
._2_c00160{width:3.203136px;}
._4_c00160{width:5.378400px;}
._5_c00160{width:26.880048px;}
._3_c00160{width:108.164160px;}
.fc1_c00160{color:rgb(0,0,0);}
.fc0_c00160{color:rgb(0,0,255);}
.fs1_c00160{font-size:54.000000px;}
.fs0_c00160{font-size:59.760000px;}
.fs2_c00160{font-size:84.240000px;}
.y0_c00160{bottom:0.000000px;}
.y3_c00160{bottom:71.280000px;}
.y2_c00160{bottom:91.980000px;}
.y1f_c00160{bottom:148.659300px;}
.y1e_c00160{bottom:170.621100px;}
.y1d_c00160{bottom:188.623800px;}
.y1c_c00160{bottom:578.677320px;}
.y1b_c00160{bottom:600.639120px;}
.y1a_c00160{bottom:622.780200px;}
.y19_c00160{bottom:644.742000px;}
.y18_c00160{bottom:666.703800px;}
.y17_c00160{bottom:688.665600px;}
.y16_c00160{bottom:710.627400px;}
.y15_c00160{bottom:732.589200px;}
.y14_c00160{bottom:754.551000px;}
.y13_c00160{bottom:776.512800px;}
.y12_c00160{bottom:798.474600px;}
.y11_c00160{bottom:820.436400px;}
.y10_c00160{bottom:842.398200px;}
.yf_c00160{bottom:864.360000px;}
.ye_c00160{bottom:895.680000px;}
.yd_c00160{bottom:923.203620px;}
.yc_c00160{bottom:945.165420px;}
.yb_c00160{bottom:967.127220px;}
.ya_c00160{bottom:989.089020px;}
.y9_c00160{bottom:1011.050820px;}
.y8_c00160{bottom:1033.012620px;}
.y7_c00160{bottom:1054.974420px;}
.y6_c00160{bottom:1076.936220px;}
.y5_c00160{bottom:1098.898020px;}
.y4_c00160{bottom:1120.859820px;}
.y1_c00160{bottom:1163.520000px;}
.h3_c00160{height:35.991211px;}
.h4_c00160{height:42.894141px;}
.h2_c00160{height:43.390195px;}
.h5_c00160{height:61.164492px;}
.h0_c00160{height:1262.880000px;}
.h1_c00160{height:1263.000000px;}
.w0_c00160{width:892.980000px;}
.w1_c00160{width:893.250000px;}
.x0_c00160{left:0.000000px;}
.x1_c00160{left:84.960000px;}
.x4_c00160{left:99.911340px;}
.x3_c00160{left:442.620000px;}
.x2_c00160{left:446.400000px;}
.x5_c00160{left:765.118440px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.lsa_c00160{letter-spacing:-0.265600pt;}
.lsb_c00160{letter-spacing:-0.212480pt;}
.ls6_c00160{letter-spacing:-0.053120pt;}
.ls7_c00160{letter-spacing:0.000000pt;}
.ls2_c00160{letter-spacing:0.053120pt;}
.ls0_c00160{letter-spacing:0.079680pt;}
.lsd_c00160{letter-spacing:0.106240pt;}
.lsc_c00160{letter-spacing:0.149760pt;}
.ls8_c00160{letter-spacing:0.159360pt;}
.ls3_c00160{letter-spacing:0.265600pt;}
.ls9_c00160{letter-spacing:0.318720pt;}
.lse_c00160{letter-spacing:0.371840pt;}
.ls5_c00160{letter-spacing:0.690560pt;}
.ls1_c00160{letter-spacing:0.796800pt;}
.ls4_c00160{letter-spacing:1.434240pt;}
.ws6_c00160{word-spacing:-12.376960pt;}
.ws3_c00160{word-spacing:-12.111360pt;}
.ws4_c00160{word-spacing:-12.058240pt;}
.ws0_c00160{word-spacing:-12.005120pt;}
.ws2_c00160{word-spacing:-11.952000pt;}
.ws5_c00160{word-spacing:-11.792640pt;}
.ws1_c00160{word-spacing:-11.739520pt;}
.ws13_c00160{word-spacing:-0.449280pt;}
.ws1d_c00160{word-spacing:-0.371840pt;}
.ws9_c00160{word-spacing:-0.318720pt;}
.ws15_c00160{word-spacing:-0.159360pt;}
.ws1a_c00160{word-spacing:-0.106240pt;}
.ws8_c00160{word-spacing:0.000000pt;}
.ws7_c00160{word-spacing:0.053120pt;}
.wse_c00160{word-spacing:0.212480pt;}
.ws17_c00160{word-spacing:0.371840pt;}
.wsd_c00160{word-spacing:0.531200pt;}
.ws11_c00160{word-spacing:0.849920pt;}
.wsc_c00160{word-spacing:1.009280pt;}
.wsb_c00160{word-spacing:1.168640pt;}
.wsa_c00160{word-spacing:1.646720pt;}
.ws16_c00160{word-spacing:1.806080pt;}
.ws14_c00160{word-spacing:2.124800pt;}
.ws12_c00160{word-spacing:2.443520pt;}
.wsf_c00160{word-spacing:2.549760pt;}
.ws10_c00160{word-spacing:2.921600pt;}
.ws19_c00160{word-spacing:3.080960pt;}
.ws18_c00160{word-spacing:3.399680pt;}
.ws1c_c00160{word-spacing:4.355840pt;}
.ws1b_c00160{word-spacing:4.833920pt;}
._0_c00160{margin-left:-0.945536pt;}
._1_c00160{width:1.200512pt;}
._2_c00160{width:2.847232pt;}
._4_c00160{width:4.780800pt;}
._5_c00160{width:23.893376pt;}
._3_c00160{width:96.145920pt;}
.fs1_c00160{font-size:48.000000pt;}
.fs0_c00160{font-size:53.120000pt;}
.fs2_c00160{font-size:74.880000pt;}
.y0_c00160{bottom:0.000000pt;}
.y3_c00160{bottom:63.360000pt;}
.y2_c00160{bottom:81.760000pt;}
.y1f_c00160{bottom:132.141600pt;}
.y1e_c00160{bottom:151.663200pt;}
.y1d_c00160{bottom:167.665600pt;}
.y1c_c00160{bottom:514.379840pt;}
.y1b_c00160{bottom:533.901440pt;}
.y1a_c00160{bottom:553.582400pt;}
.y19_c00160{bottom:573.104000pt;}
.y18_c00160{bottom:592.625600pt;}
.y17_c00160{bottom:612.147200pt;}
.y16_c00160{bottom:631.668800pt;}
.y15_c00160{bottom:651.190400pt;}
.y14_c00160{bottom:670.712000pt;}
.y13_c00160{bottom:690.233600pt;}
.y12_c00160{bottom:709.755200pt;}
.y11_c00160{bottom:729.276800pt;}
.y10_c00160{bottom:748.798400pt;}
.yf_c00160{bottom:768.320000pt;}
.ye_c00160{bottom:796.160000pt;}
.yd_c00160{bottom:820.625440pt;}
.yc_c00160{bottom:840.147040pt;}
.yb_c00160{bottom:859.668640pt;}
.ya_c00160{bottom:879.190240pt;}
.y9_c00160{bottom:898.711840pt;}
.y8_c00160{bottom:918.233440pt;}
.y7_c00160{bottom:937.755040pt;}
.y6_c00160{bottom:957.276640pt;}
.y5_c00160{bottom:976.798240pt;}
.y4_c00160{bottom:996.319840pt;}
.y1_c00160{bottom:1034.240000pt;}
.h3_c00160{height:31.992188pt;}
.h4_c00160{height:38.128125pt;}
.h2_c00160{height:38.569063pt;}
.h5_c00160{height:54.368437pt;}
.h0_c00160{height:1122.560000pt;}
.h1_c00160{height:1122.666667pt;}
.w0_c00160{width:793.760000pt;}
.w1_c00160{width:794.000000pt;}
.x0_c00160{left:0.000000pt;}
.x1_c00160{left:75.520000pt;}
.x4_c00160{left:88.810080pt;}
.x3_c00160{left:393.440000pt;}
.x2_c00160{left:396.800000pt;}
.x5_c00160{left:680.105280pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3bcce8259466f1865708ed10.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00161;src:url('chunks/assets/font_4823db4e61d997ff63c88413.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00161{letter-spacing:-0.239040px;}
.ls4_c00161{letter-spacing:-0.059760px;}
.ls3_c00161{letter-spacing:0.000000px;}
.ls5_c00161{letter-spacing:0.168480px;}
.ls1_c00161{letter-spacing:0.179280px;}
.ls7_c00161{letter-spacing:0.298800px;}
.ls2_c00161{letter-spacing:0.358560px;}
.ls0_c00161{letter-spacing:3.047760px;}
.sc__c00161{text-shadow:none;}
.sc0_c00161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00161{-webkit-text-stroke:0px transparent;}
.sc0_c00161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00161{word-spacing:-13.685040px;}
.ws0_c00161{word-spacing:-13.505760px;}
.ws2_c00161{word-spacing:-13.446000px;}
.ws3_c00161{word-spacing:-13.266720px;}
.ws8_c00161{word-spacing:-0.505440px;}
.ws6_c00161{word-spacing:-0.358560px;}
.ws12_c00161{word-spacing:-0.298800px;}
.ws4_c00161{word-spacing:-0.179280px;}
.ws10_c00161{word-spacing:-0.119520px;}
.ws5_c00161{word-spacing:0.000000px;}
.ws7_c00161{word-spacing:0.239040px;}
.ws11_c00161{word-spacing:0.418320px;}
.wsc_c00161{word-spacing:1.135440px;}
.wsd_c00161{word-spacing:2.748960px;}
.wse_c00161{word-spacing:3.107520px;}
.wsf_c00161{word-spacing:3.286800px;}
.wsb_c00161{word-spacing:3.406320px;}
.wsa_c00161{word-spacing:3.585600px;}
.ws9_c00161{word-spacing:4.003920px;}
._5_c00161{margin-left:-3.609504px;}
._0_c00161{margin-left:-1.231056px;}
._2_c00161{width:1.063728px;}
._4_c00161{width:3.669264px;}
._1_c00161{width:27.047376px;}
._6_c00161{width:43.541136px;}
._3_c00161{width:108.164160px;}
.fc1_c00161{color:rgb(0,0,0);}
.fc0_c00161{color:rgb(0,0,255);}
.fs1_c00161{font-size:54.000000px;}
.fs0_c00161{font-size:59.760000px;}
.fs2_c00161{font-size:84.240000px;}
.y0_c00161{bottom:0.000000px;}
.y3_c00161{bottom:71.280000px;}
.y2_c00161{bottom:92.520000px;}
.ye_c00161{bottom:133.188840px;}
.yd_c00161{bottom:151.370820px;}
.yc_c00161{bottom:572.932800px;}
.yb_c00161{bottom:594.894600px;}
.ya_c00161{bottom:616.856400px;}
.y9_c00161{bottom:638.818200px;}
.y8_c00161{bottom:660.780000px;}
.y7_c00161{bottom:691.920000px;}
.y6_c00161{bottom:719.451900px;}
.y5_c00161{bottom:741.413700px;}
.y4_c00161{bottom:759.416400px;}
.y1_c00161{bottom:1163.520000px;}
.h3_c00161{height:38.759766px;}
.h4_c00161{height:42.894141px;}
.h2_c00161{height:43.390195px;}
.h5_c00161{height:61.164492px;}
.h0_c00161{height:1262.880000px;}
.h1_c00161{height:1263.000000px;}
.w0_c00161{width:892.980000px;}
.w1_c00161{width:893.250000px;}
.x0_c00161{left:0.000000px;}
.x1_c00161{left:84.960000px;}
.x5_c00161{left:99.885060px;}
.x3_c00161{left:442.620000px;}
.x2_c00161{left:446.400000px;}
.x4_c00161{left:757.614960px;}
.x6_c00161{left:765.163260px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls6_c00161{letter-spacing:-0.212480pt;}
.ls4_c00161{letter-spacing:-0.053120pt;}
.ls3_c00161{letter-spacing:0.000000pt;}
.ls5_c00161{letter-spacing:0.149760pt;}
.ls1_c00161{letter-spacing:0.159360pt;}
.ls7_c00161{letter-spacing:0.265600pt;}
.ls2_c00161{letter-spacing:0.318720pt;}
.ls0_c00161{letter-spacing:2.709120pt;}
.ws1_c00161{word-spacing:-12.164480pt;}
.ws0_c00161{word-spacing:-12.005120pt;}
.ws2_c00161{word-spacing:-11.952000pt;}
.ws3_c00161{word-spacing:-11.792640pt;}
.ws8_c00161{word-spacing:-0.449280pt;}
.ws6_c00161{word-spacing:-0.318720pt;}
.ws12_c00161{word-spacing:-0.265600pt;}
.ws4_c00161{word-spacing:-0.159360pt;}
.ws10_c00161{word-spacing:-0.106240pt;}
.ws5_c00161{word-spacing:0.000000pt;}
.ws7_c00161{word-spacing:0.212480pt;}
.ws11_c00161{word-spacing:0.371840pt;}
.wsc_c00161{word-spacing:1.009280pt;}
.wsd_c00161{word-spacing:2.443520pt;}
.wse_c00161{word-spacing:2.762240pt;}
.wsf_c00161{word-spacing:2.921600pt;}
.wsb_c00161{word-spacing:3.027840pt;}
.wsa_c00161{word-spacing:3.187200pt;}
.ws9_c00161{word-spacing:3.559040pt;}
._5_c00161{margin-left:-3.208448pt;}
._0_c00161{margin-left:-1.094272pt;}
._2_c00161{width:0.945536pt;}
._4_c00161{width:3.261568pt;}
._1_c00161{width:24.042112pt;}
._6_c00161{width:38.703232pt;}
._3_c00161{width:96.145920pt;}
.fs1_c00161{font-size:48.000000pt;}
.fs0_c00161{font-size:53.120000pt;}
.fs2_c00161{font-size:74.880000pt;}
.y0_c00161{bottom:0.000000pt;}
.y3_c00161{bottom:63.360000pt;}
.y2_c00161{bottom:82.240000pt;}
.ye_c00161{bottom:118.390080pt;}
.yd_c00161{bottom:134.551840pt;}
.yc_c00161{bottom:509.273600pt;}
.yb_c00161{bottom:528.795200pt;}
.ya_c00161{bottom:548.316800pt;}
.y9_c00161{bottom:567.838400pt;}
.y8_c00161{bottom:587.360000pt;}
.y7_c00161{bottom:615.040000pt;}
.y6_c00161{bottom:639.512800pt;}
.y5_c00161{bottom:659.034400pt;}
.y4_c00161{bottom:675.036800pt;}
.y1_c00161{bottom:1034.240000pt;}
.h3_c00161{height:34.453125pt;}
.h4_c00161{height:38.128125pt;}
.h2_c00161{height:38.569063pt;}
.h5_c00161{height:54.368437pt;}
.h0_c00161{height:1122.560000pt;}
.h1_c00161{height:1122.666667pt;}
.w0_c00161{width:793.760000pt;}
.w1_c00161{width:794.000000pt;}
.x0_c00161{left:0.000000pt;}
.x1_c00161{left:75.520000pt;}
.x5_c00161{left:88.786720pt;}
.x3_c00161{left:393.440000pt;}
.x2_c00161{left:396.800000pt;}
.x4_c00161{left:673.435520pt;}
.x6_c00161{left:680.145120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2a525c7a9bd9a907795e7149.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00162;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00162;src:url('chunks/assets/font_acf95f3b3a3cc49cf90a8c5e.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00162{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00162{vertical-align:0.000000px;}
.lsb_c00162{letter-spacing:-0.298800px;}
.lsd_c00162{letter-spacing:-0.239040px;}
.ls8_c00162{letter-spacing:-0.059760px;}
.ls9_c00162{letter-spacing:0.000000px;}
.lsc_c00162{letter-spacing:0.059760px;}
.ls5_c00162{letter-spacing:0.084240px;}
.ls0_c00162{letter-spacing:0.089640px;}
.lse_c00162{letter-spacing:0.119520px;}
.ls6_c00162{letter-spacing:0.167328px;}
.lsf_c00162{letter-spacing:0.168480px;}
.ls2_c00162{letter-spacing:0.179280px;}
.ls7_c00162{letter-spacing:0.185256px;}
.ls3_c00162{letter-spacing:0.298800px;}
.lsa_c00162{letter-spacing:0.358560px;}
.ls10_c00162{letter-spacing:0.537840px;}
.ls1_c00162{letter-spacing:0.896400px;}
.ls4_c00162{letter-spacing:2.330640px;}
.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;}
}
.ws6_c00162{word-spacing:-19.206720px;}
.ws5_c00162{word-spacing:-19.038240px;}
.ws3_c00162{word-spacing:-13.804560px;}
.ws7_c00162{word-spacing:-13.691016px;}
.ws4_c00162{word-spacing:-13.625280px;}
.ws0_c00162{word-spacing:-13.505760px;}
.ws2_c00162{word-spacing:-13.266720px;}
.ws1_c00162{word-spacing:-13.206960px;}
.ws22_c00162{word-spacing:-0.717120px;}
.ws1f_c00162{word-spacing:-0.537840px;}
.ws1d_c00162{word-spacing:-0.505440px;}
.wsa_c00162{word-spacing:-0.358560px;}
.ws1a_c00162{word-spacing:-0.298800px;}
.ws20_c00162{word-spacing:-0.179280px;}
.ws1c_c00162{word-spacing:-0.168480px;}
.wsf_c00162{word-spacing:-0.119520px;}
.ws9_c00162{word-spacing:0.000000px;}
.ws8_c00162{word-spacing:0.059760px;}
.ws10_c00162{word-spacing:0.119520px;}
.ws11_c00162{word-spacing:0.239040px;}
.ws14_c00162{word-spacing:0.418320px;}
.wsc_c00162{word-spacing:0.597600px;}
.wsd_c00162{word-spacing:0.717120px;}
.ws13_c00162{word-spacing:0.956160px;}
.ws12_c00162{word-spacing:1.135440px;}
.ws19_c00162{word-spacing:1.314720px;}
.wse_c00162{word-spacing:2.031840px;}
.ws1b_c00162{word-spacing:2.211120px;}
.ws15_c00162{word-spacing:2.390400px;}
.ws18_c00162{word-spacing:2.569680px;}
.ws17_c00162{word-spacing:2.748960px;}
.ws16_c00162{word-spacing:3.286800px;}
.ws21_c00162{word-spacing:3.466080px;}
.wsb_c00162{word-spacing:4.183200px;}
.ws1e_c00162{word-spacing:4.721040px;}
._6_c00162{margin-left:-2.199168px;}
._0_c00162{margin-left:-1.063728px;}
._1_c00162{width:1.135440px;}
._2_c00162{width:2.330640px;}
._3_c00162{width:3.334608px;}
._9_c00162{width:4.398336px;}
._8_c00162{width:5.438160px;}
._4_c00162{width:26.880048px;}
._5_c00162{width:71.472960px;}
._7_c00162{width:108.164160px;}
.fc1_c00162{color:rgb(0,0,0);}
.fc0_c00162{color:rgb(0,0,255);}
.fs1_c00162{font-size:54.000000px;}
.fs0_c00162{font-size:59.760000px;}
.fs2_c00162{font-size:84.240000px;}
.y0_c00162{bottom:0.000000px;}
.y3_c00162{bottom:71.280000px;}
.y2_c00162{bottom:91.980000px;}
.y20_c00162{bottom:133.371720px;}
.y1f_c00162{bottom:155.333520px;}
.y1e_c00162{bottom:177.295320px;}
.y1d_c00162{bottom:199.436400px;}
.y1c_c00162{bottom:221.398200px;}
.y1b_c00162{bottom:243.360000px;}
.y1a_c00162{bottom:274.500000px;}
.y19_c00162{bottom:301.998420px;}
.y18_c00162{bottom:323.960220px;}
.y17_c00162{bottom:345.922020px;}
.y16_c00162{bottom:367.883820px;}
.y15_c00162{bottom:389.845620px;}
.y14_c00162{bottom:411.807420px;}
.y13_c00162{bottom:433.769220px;}
.y12_c00162{bottom:455.731020px;}
.y11_c00162{bottom:477.872100px;}
.y10_c00162{bottom:499.833900px;}
.yf_c00162{bottom:517.657320px;}
.ye_c00162{bottom:901.241820px;}
.yd_c00162{bottom:923.203620px;}
.yc_c00162{bottom:945.165420px;}
.yb_c00162{bottom:967.127220px;}
.ya_c00162{bottom:989.089020px;}
.y9_c00162{bottom:1011.050820px;}
.y8_c00162{bottom:1033.012620px;}
.y7_c00162{bottom:1054.974420px;}
.y6_c00162{bottom:1076.936220px;}
.y5_c00162{bottom:1098.898020px;}
.y4_c00162{bottom:1120.859820px;}
.y1_c00162{bottom:1163.520000px;}
.h3_c00162{height:35.991211px;}
.h4_c00162{height:42.894141px;}
.h2_c00162{height:43.390195px;}
.h5_c00162{height:61.164492px;}
.h0_c00162{height:1262.880000px;}
.h1_c00162{height:1263.000000px;}
.w0_c00162{width:892.980000px;}
.w1_c00162{width:893.250000px;}
.x0_c00162{left:0.000000px;}
.x1_c00162{left:84.960000px;}
.x4_c00162{left:99.896400px;}
.x3_c00162{left:442.620000px;}
.x2_c00162{left:446.400000px;}
.x5_c00162{left:757.614960px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.lsb_c00162{letter-spacing:-0.265600pt;}
.lsd_c00162{letter-spacing:-0.212480pt;}
.ls8_c00162{letter-spacing:-0.053120pt;}
.ls9_c00162{letter-spacing:0.000000pt;}
.lsc_c00162{letter-spacing:0.053120pt;}
.ls5_c00162{letter-spacing:0.074880pt;}
.ls0_c00162{letter-spacing:0.079680pt;}
.lse_c00162{letter-spacing:0.106240pt;}
.ls6_c00162{letter-spacing:0.148736pt;}
.lsf_c00162{letter-spacing:0.149760pt;}
.ls2_c00162{letter-spacing:0.159360pt;}
.ls7_c00162{letter-spacing:0.164672pt;}
.ls3_c00162{letter-spacing:0.265600pt;}
.lsa_c00162{letter-spacing:0.318720pt;}
.ls10_c00162{letter-spacing:0.478080pt;}
.ls1_c00162{letter-spacing:0.796800pt;}
.ls4_c00162{letter-spacing:2.071680pt;}
.ws6_c00162{word-spacing:-17.072640pt;}
.ws5_c00162{word-spacing:-16.922880pt;}
.ws3_c00162{word-spacing:-12.270720pt;}
.ws7_c00162{word-spacing:-12.169792pt;}
.ws4_c00162{word-spacing:-12.111360pt;}
.ws0_c00162{word-spacing:-12.005120pt;}
.ws2_c00162{word-spacing:-11.792640pt;}
.ws1_c00162{word-spacing:-11.739520pt;}
.ws22_c00162{word-spacing:-0.637440pt;}
.ws1f_c00162{word-spacing:-0.478080pt;}
.ws1d_c00162{word-spacing:-0.449280pt;}
.wsa_c00162{word-spacing:-0.318720pt;}
.ws1a_c00162{word-spacing:-0.265600pt;}
.ws20_c00162{word-spacing:-0.159360pt;}
.ws1c_c00162{word-spacing:-0.149760pt;}
.wsf_c00162{word-spacing:-0.106240pt;}
.ws9_c00162{word-spacing:0.000000pt;}
.ws8_c00162{word-spacing:0.053120pt;}
.ws10_c00162{word-spacing:0.106240pt;}
.ws11_c00162{word-spacing:0.212480pt;}
.ws14_c00162{word-spacing:0.371840pt;}
.wsc_c00162{word-spacing:0.531200pt;}
.wsd_c00162{word-spacing:0.637440pt;}
.ws13_c00162{word-spacing:0.849920pt;}
.ws12_c00162{word-spacing:1.009280pt;}
.ws19_c00162{word-spacing:1.168640pt;}
.wse_c00162{word-spacing:1.806080pt;}
.ws1b_c00162{word-spacing:1.965440pt;}
.ws15_c00162{word-spacing:2.124800pt;}
.ws18_c00162{word-spacing:2.284160pt;}
.ws17_c00162{word-spacing:2.443520pt;}
.ws16_c00162{word-spacing:2.921600pt;}
.ws21_c00162{word-spacing:3.080960pt;}
.wsb_c00162{word-spacing:3.718400pt;}
.ws1e_c00162{word-spacing:4.196480pt;}
._6_c00162{margin-left:-1.954816pt;}
._0_c00162{margin-left:-0.945536pt;}
._1_c00162{width:1.009280pt;}
._2_c00162{width:2.071680pt;}
._3_c00162{width:2.964096pt;}
._9_c00162{width:3.909632pt;}
._8_c00162{width:4.833920pt;}
._4_c00162{width:23.893376pt;}
._5_c00162{width:63.531520pt;}
._7_c00162{width:96.145920pt;}
.fs1_c00162{font-size:48.000000pt;}
.fs0_c00162{font-size:53.120000pt;}
.fs2_c00162{font-size:74.880000pt;}
.y0_c00162{bottom:0.000000pt;}
.y3_c00162{bottom:63.360000pt;}
.y2_c00162{bottom:81.760000pt;}
.y20_c00162{bottom:118.552640pt;}
.y1f_c00162{bottom:138.074240pt;}
.y1e_c00162{bottom:157.595840pt;}
.y1d_c00162{bottom:177.276800pt;}
.y1c_c00162{bottom:196.798400pt;}
.y1b_c00162{bottom:216.320000pt;}
.y1a_c00162{bottom:244.000000pt;}
.y19_c00162{bottom:268.443040pt;}
.y18_c00162{bottom:287.964640pt;}
.y17_c00162{bottom:307.486240pt;}
.y16_c00162{bottom:327.007840pt;}
.y15_c00162{bottom:346.529440pt;}
.y14_c00162{bottom:366.051040pt;}
.y13_c00162{bottom:385.572640pt;}
.y12_c00162{bottom:405.094240pt;}
.y11_c00162{bottom:424.775200pt;}
.y10_c00162{bottom:444.296800pt;}
.yf_c00162{bottom:460.139840pt;}
.ye_c00162{bottom:801.103840pt;}
.yd_c00162{bottom:820.625440pt;}
.yc_c00162{bottom:840.147040pt;}
.yb_c00162{bottom:859.668640pt;}
.ya_c00162{bottom:879.190240pt;}
.y9_c00162{bottom:898.711840pt;}
.y8_c00162{bottom:918.233440pt;}
.y7_c00162{bottom:937.755040pt;}
.y6_c00162{bottom:957.276640pt;}
.y5_c00162{bottom:976.798240pt;}
.y4_c00162{bottom:996.319840pt;}
.y1_c00162{bottom:1034.240000pt;}
.h3_c00162{height:31.992188pt;}
.h4_c00162{height:38.128125pt;}
.h2_c00162{height:38.569063pt;}
.h5_c00162{height:54.368437pt;}
.h0_c00162{height:1122.560000pt;}
.h1_c00162{height:1122.666667pt;}
.w0_c00162{width:793.760000pt;}
.w1_c00162{width:794.000000pt;}
.x0_c00162{left:0.000000pt;}
.x1_c00162{left:75.520000pt;}
.x4_c00162{left:88.796800pt;}
.x3_c00162{left:393.440000pt;}
.x2_c00162{left:396.800000pt;}
.x5_c00162{left:673.435520pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4176d536fa4fe25575a7a525.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00163;src:url('chunks/assets/font_8a6aec6a3d8f12877d0ea049.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00163;src:url('chunks/assets/font_10a46a6b46f64f5c29978254.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00163{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00163{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00163{vertical-align:0.000000px;}
.ls29_c00163{letter-spacing:-0.675360px;}
.ls1b_c00163{letter-spacing:-0.657360px;}
.ls20_c00163{letter-spacing:-0.537840px;}
.ls28_c00163{letter-spacing:-0.530640px;}
.ls1a_c00163{letter-spacing:-0.478080px;}
.ls1f_c00163{letter-spacing:-0.418320px;}
.ls1c_c00163{letter-spacing:-0.358560px;}
.ls23_c00163{letter-spacing:-0.337680px;}
.ls24_c00163{letter-spacing:-0.289440px;}
.ls26_c00163{letter-spacing:-0.241200px;}
.ls17_c00163{letter-spacing:-0.239040px;}
.ls22_c00163{letter-spacing:-0.216000px;}
.ls27_c00163{letter-spacing:-0.192960px;}
.ls25_c00163{letter-spacing:-0.144720px;}
.ls19_c00163{letter-spacing:-0.059760px;}
.ls16_c00163{letter-spacing:0.000000px;}
.ls10_c00163{letter-spacing:0.024120px;}
.ls2a_c00163{letter-spacing:0.048240px;}
.ls1e_c00163{letter-spacing:0.059760px;}
.ls1d_c00163{letter-spacing:0.084240px;}
.ls3_c00163{letter-spacing:0.119520px;}
.ls0_c00163{letter-spacing:0.179280px;}
.lse_c00163{letter-spacing:0.192960px;}
.ls21_c00163{letter-spacing:0.288000px;}
.ls18_c00163{letter-spacing:0.298800px;}
.lsd_c00163{letter-spacing:0.318384px;}
.lsc_c00163{letter-spacing:0.337680px;}
.ls13_c00163{letter-spacing:0.342504px;}
.ls14_c00163{letter-spacing:0.356976px;}
.ls15_c00163{letter-spacing:0.358560px;}
.ls12_c00163{letter-spacing:0.366624px;}
.ls11_c00163{letter-spacing:0.376272px;}
.ls6_c00163{letter-spacing:0.418320px;}
.lsb_c00163{letter-spacing:0.569232px;}
.lsa_c00163{letter-spacing:0.890424px;}
.ls2_c00163{letter-spacing:0.896400px;}
.ls5_c00163{letter-spacing:1.613520px;}
.ls4_c00163{letter-spacing:1.619496px;}
.ls1_c00163{letter-spacing:3.764880px;}
.ls9_c00163{letter-spacing:4.482000px;}
.ls7_c00163{letter-spacing:5.916240px;}
.ls8_c00163{letter-spacing:6.633360px;}
.lsf_c00163{letter-spacing:9.262080px;}
.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;}
}
.ws5_c00163{word-spacing:-19.122480px;}
.ws8_c00163{word-spacing:-16.056000px;}
.ws4_c00163{word-spacing:-13.924080px;}
.ws3_c00163{word-spacing:-13.804560px;}
.ws2_c00163{word-spacing:-13.685040px;}
.ws6_c00163{word-spacing:-13.565520px;}
.ws0_c00163{word-spacing:-13.505760px;}
.ws1_c00163{word-spacing:-13.266720px;}
.ws7_c00163{word-spacing:-12.967920px;}
.wse_c00163{word-spacing:-10.950480px;}
.wsd_c00163{word-spacing:-10.902240px;}
.ws9_c00163{word-spacing:-10.757520px;}
.wsa_c00163{word-spacing:-10.661040px;}
.wsc_c00163{word-spacing:-10.612800px;}
.wsb_c00163{word-spacing:-10.564560px;}
.ws3f_c00163{word-spacing:-0.192960px;}
.wsf_c00163{word-spacing:-0.179280px;}
.ws18_c00163{word-spacing:-0.119520px;}
.ws28_c00163{word-spacing:-0.059760px;}
.ws3e_c00163{word-spacing:-0.048240px;}
.ws10_c00163{word-spacing:0.000000px;}
.ws1c_c00163{word-spacing:0.059760px;}
.ws29_c00163{word-spacing:0.119520px;}
.ws34_c00163{word-spacing:0.144720px;}
.ws40_c00163{word-spacing:0.192960px;}
.ws13_c00163{word-spacing:0.239040px;}
.ws3c_c00163{word-spacing:0.241200px;}
.ws3d_c00163{word-spacing:0.289440px;}
.ws1d_c00163{word-spacing:0.358560px;}
.ws11_c00163{word-spacing:0.418320px;}
.ws16_c00163{word-spacing:0.478080px;}
.ws12_c00163{word-spacing:0.597600px;}
.ws23_c00163{word-spacing:0.657360px;}
.ws27_c00163{word-spacing:0.717120px;}
.ws22_c00163{word-spacing:0.956160px;}
.ws1e_c00163{word-spacing:1.135440px;}
.ws30_c00163{word-spacing:1.314720px;}
.ws24_c00163{word-spacing:1.494000px;}
.ws26_c00163{word-spacing:1.673280px;}
.ws25_c00163{word-spacing:1.852560px;}
.ws21_c00163{word-spacing:2.031840px;}
.ws15_c00163{word-spacing:2.151360px;}
.ws20_c00163{word-spacing:2.211120px;}
.ws14_c00163{word-spacing:2.390400px;}
.ws1f_c00163{word-spacing:2.569680px;}
.ws17_c00163{word-spacing:3.466080px;}
.ws1a_c00163{word-spacing:3.585600px;}
.ws2f_c00163{word-spacing:3.824640px;}
.ws19_c00163{word-spacing:4.003920px;}
.ws2e_c00163{word-spacing:4.183200px;}
.ws1b_c00163{word-spacing:4.422240px;}
.ws2a_c00163{word-spacing:5.617440px;}
.ws2b_c00163{word-spacing:5.736960px;}
.ws2c_c00163{word-spacing:5.976000px;}
.ws2d_c00163{word-spacing:6.155280px;}
.ws35_c00163{word-spacing:8.345520px;}
.ws38_c00163{word-spacing:9.069120px;}
.ws36_c00163{word-spacing:9.455040px;}
.ws3b_c00163{word-spacing:9.503280px;}
.ws39_c00163{word-spacing:9.599760px;}
.ws37_c00163{word-spacing:9.792720px;}
.ws3a_c00163{word-spacing:9.937440px;}
.ws41_c00163{word-spacing:12.687120px;}
.ws43_c00163{word-spacing:13.169520px;}
.ws42_c00163{word-spacing:13.217760px;}
.ws31_c00163{word-spacing:46.503360px;}
.ws33_c00163{word-spacing:46.985760px;}
.ws32_c00163{word-spacing:47.034000px;}
._0_c00163{margin-left:-1.231056px;}
._1_c00163{width:1.272888px;}
._2_c00163{width:3.131424px;}
._3_c00163{width:4.691160px;}
._5_c00163{width:8.833032px;}
._4_c00163{width:108.164160px;}
.fc1_c00163{color:rgb(0,0,0);}
.fc0_c00163{color:rgb(0,0,255);}
.fs4_c00163{font-size:48.240000px;}
.fs1_c00163{font-size:54.000000px;}
.fs0_c00163{font-size:59.760000px;}
.fs3_c00163{font-size:72.000000px;}
.fs2_c00163{font-size:84.240000px;}
.y0_c00163{bottom:0.000000px;}
.y3_c00163{bottom:71.280000px;}
.y2_c00163{bottom:92.520000px;}
.y24_c00163{bottom:408.420000px;}
.y23_c00163{bottom:430.380000px;}
.y22_c00163{bottom:448.020000px;}
.y21_c00163{bottom:470.157120px;}
.y20_c00163{bottom:487.620000px;}
.y1f_c00163{bottom:509.756220px;}
.y1e_c00163{bottom:527.400000px;}
.y1d_c00163{bottom:554.040000px;}
.y1c_c00163{bottom:578.684520px;}
.y1b_c00163{bottom:600.646320px;}
.y1a_c00163{bottom:622.787400px;}
.y19_c00163{bottom:644.749200px;}
.y18_c00163{bottom:666.711000px;}
.y17_c00163{bottom:688.672800px;}
.y16_c00163{bottom:710.634600px;}
.y15_c00163{bottom:732.596400px;}
.y14_c00163{bottom:754.558200px;}
.y13_c00163{bottom:776.520000px;}
.y12_c00163{bottom:807.660000px;}
.y11_c00163{bottom:835.177140px;}
.y10_c00163{bottom:857.138940px;}
.yf_c00163{bottom:879.100740px;}
.ye_c00163{bottom:901.241820px;}
.yd_c00163{bottom:923.203620px;}
.yc_c00163{bottom:945.165420px;}
.yb_c00163{bottom:967.127220px;}
.ya_c00163{bottom:989.089020px;}
.y9_c00163{bottom:1011.050820px;}
.y8_c00163{bottom:1033.012620px;}
.y7_c00163{bottom:1054.974420px;}
.y6_c00163{bottom:1076.936220px;}
.y5_c00163{bottom:1098.898020px;}
.y4_c00163{bottom:1120.859820px;}
.y1_c00163{bottom:1163.520000px;}
.h7_c00163{height:34.625391px;}
.h9_c00163{height:34.636911px;}
.h8_c00163{height:34.640511px;}
.h3_c00163{height:38.759766px;}
.h4_c00163{height:42.894141px;}
.h2_c00163{height:43.390195px;}
.h6_c00163{height:52.277344px;}
.h5_c00163{height:61.164492px;}
.h0_c00163{height:1262.880000px;}
.h1_c00163{height:1263.000000px;}
.w0_c00163{width:892.980000px;}
.w1_c00163{width:893.250000px;}
.x0_c00163{left:0.000000px;}
.x1_c00163{left:84.960000px;}
.x4_c00163{left:99.881460px;}
.x5_c00163{left:106.197660px;}
.x3_c00163{left:442.620000px;}
.x2_c00163{left:446.400000px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls29_c00163{letter-spacing:-0.600320pt;}
.ls1b_c00163{letter-spacing:-0.584320pt;}
.ls20_c00163{letter-spacing:-0.478080pt;}
.ls28_c00163{letter-spacing:-0.471680pt;}
.ls1a_c00163{letter-spacing:-0.424960pt;}
.ls1f_c00163{letter-spacing:-0.371840pt;}
.ls1c_c00163{letter-spacing:-0.318720pt;}
.ls23_c00163{letter-spacing:-0.300160pt;}
.ls24_c00163{letter-spacing:-0.257280pt;}
.ls26_c00163{letter-spacing:-0.214400pt;}
.ls17_c00163{letter-spacing:-0.212480pt;}
.ls22_c00163{letter-spacing:-0.192000pt;}
.ls27_c00163{letter-spacing:-0.171520pt;}
.ls25_c00163{letter-spacing:-0.128640pt;}
.ls19_c00163{letter-spacing:-0.053120pt;}
.ls16_c00163{letter-spacing:0.000000pt;}
.ls10_c00163{letter-spacing:0.021440pt;}
.ls2a_c00163{letter-spacing:0.042880pt;}
.ls1e_c00163{letter-spacing:0.053120pt;}
.ls1d_c00163{letter-spacing:0.074880pt;}
.ls3_c00163{letter-spacing:0.106240pt;}
.ls0_c00163{letter-spacing:0.159360pt;}
.lse_c00163{letter-spacing:0.171520pt;}
.ls21_c00163{letter-spacing:0.256000pt;}
.ls18_c00163{letter-spacing:0.265600pt;}
.lsd_c00163{letter-spacing:0.283008pt;}
.lsc_c00163{letter-spacing:0.300160pt;}
.ls13_c00163{letter-spacing:0.304448pt;}
.ls14_c00163{letter-spacing:0.317312pt;}
.ls15_c00163{letter-spacing:0.318720pt;}
.ls12_c00163{letter-spacing:0.325888pt;}
.ls11_c00163{letter-spacing:0.334464pt;}
.ls6_c00163{letter-spacing:0.371840pt;}
.lsb_c00163{letter-spacing:0.505984pt;}
.lsa_c00163{letter-spacing:0.791488pt;}
.ls2_c00163{letter-spacing:0.796800pt;}
.ls5_c00163{letter-spacing:1.434240pt;}
.ls4_c00163{letter-spacing:1.439552pt;}
.ls1_c00163{letter-spacing:3.346560pt;}
.ls9_c00163{letter-spacing:3.984000pt;}
.ls7_c00163{letter-spacing:5.258880pt;}
.ls8_c00163{letter-spacing:5.896320pt;}
.lsf_c00163{letter-spacing:8.232960pt;}
.ws5_c00163{word-spacing:-16.997760pt;}
.ws8_c00163{word-spacing:-14.272000pt;}
.ws4_c00163{word-spacing:-12.376960pt;}
.ws3_c00163{word-spacing:-12.270720pt;}
.ws2_c00163{word-spacing:-12.164480pt;}
.ws6_c00163{word-spacing:-12.058240pt;}
.ws0_c00163{word-spacing:-12.005120pt;}
.ws1_c00163{word-spacing:-11.792640pt;}
.ws7_c00163{word-spacing:-11.527040pt;}
.wse_c00163{word-spacing:-9.733760pt;}
.wsd_c00163{word-spacing:-9.690880pt;}
.ws9_c00163{word-spacing:-9.562240pt;}
.wsa_c00163{word-spacing:-9.476480pt;}
.wsc_c00163{word-spacing:-9.433600pt;}
.wsb_c00163{word-spacing:-9.390720pt;}
.ws3f_c00163{word-spacing:-0.171520pt;}
.wsf_c00163{word-spacing:-0.159360pt;}
.ws18_c00163{word-spacing:-0.106240pt;}
.ws28_c00163{word-spacing:-0.053120pt;}
.ws3e_c00163{word-spacing:-0.042880pt;}
.ws10_c00163{word-spacing:0.000000pt;}
.ws1c_c00163{word-spacing:0.053120pt;}
.ws29_c00163{word-spacing:0.106240pt;}
.ws34_c00163{word-spacing:0.128640pt;}
.ws40_c00163{word-spacing:0.171520pt;}
.ws13_c00163{word-spacing:0.212480pt;}
.ws3c_c00163{word-spacing:0.214400pt;}
.ws3d_c00163{word-spacing:0.257280pt;}
.ws1d_c00163{word-spacing:0.318720pt;}
.ws11_c00163{word-spacing:0.371840pt;}
.ws16_c00163{word-spacing:0.424960pt;}
.ws12_c00163{word-spacing:0.531200pt;}
.ws23_c00163{word-spacing:0.584320pt;}
.ws27_c00163{word-spacing:0.637440pt;}
.ws22_c00163{word-spacing:0.849920pt;}
.ws1e_c00163{word-spacing:1.009280pt;}
.ws30_c00163{word-spacing:1.168640pt;}
.ws24_c00163{word-spacing:1.328000pt;}
.ws26_c00163{word-spacing:1.487360pt;}
.ws25_c00163{word-spacing:1.646720pt;}
.ws21_c00163{word-spacing:1.806080pt;}
.ws15_c00163{word-spacing:1.912320pt;}
.ws20_c00163{word-spacing:1.965440pt;}
.ws14_c00163{word-spacing:2.124800pt;}
.ws1f_c00163{word-spacing:2.284160pt;}
.ws17_c00163{word-spacing:3.080960pt;}
.ws1a_c00163{word-spacing:3.187200pt;}
.ws2f_c00163{word-spacing:3.399680pt;}
.ws19_c00163{word-spacing:3.559040pt;}
.ws2e_c00163{word-spacing:3.718400pt;}
.ws1b_c00163{word-spacing:3.930880pt;}
.ws2a_c00163{word-spacing:4.993280pt;}
.ws2b_c00163{word-spacing:5.099520pt;}
.ws2c_c00163{word-spacing:5.312000pt;}
.ws2d_c00163{word-spacing:5.471360pt;}
.ws35_c00163{word-spacing:7.418240pt;}
.ws38_c00163{word-spacing:8.061440pt;}
.ws36_c00163{word-spacing:8.404480pt;}
.ws3b_c00163{word-spacing:8.447360pt;}
.ws39_c00163{word-spacing:8.533120pt;}
.ws37_c00163{word-spacing:8.704640pt;}
.ws3a_c00163{word-spacing:8.833280pt;}
.ws41_c00163{word-spacing:11.277440pt;}
.ws43_c00163{word-spacing:11.706240pt;}
.ws42_c00163{word-spacing:11.749120pt;}
.ws31_c00163{word-spacing:41.336320pt;}
.ws33_c00163{word-spacing:41.765120pt;}
.ws32_c00163{word-spacing:41.808000pt;}
._0_c00163{margin-left:-1.094272pt;}
._1_c00163{width:1.131456pt;}
._2_c00163{width:2.783488pt;}
._3_c00163{width:4.169920pt;}
._5_c00163{width:7.851584pt;}
._4_c00163{width:96.145920pt;}
.fs4_c00163{font-size:42.880000pt;}
.fs1_c00163{font-size:48.000000pt;}
.fs0_c00163{font-size:53.120000pt;}
.fs3_c00163{font-size:64.000000pt;}
.fs2_c00163{font-size:74.880000pt;}
.y0_c00163{bottom:0.000000pt;}
.y3_c00163{bottom:63.360000pt;}
.y2_c00163{bottom:82.240000pt;}
.y24_c00163{bottom:363.040000pt;}
.y23_c00163{bottom:382.560000pt;}
.y22_c00163{bottom:398.240000pt;}
.y21_c00163{bottom:417.917440pt;}
.y20_c00163{bottom:433.440000pt;}
.y1f_c00163{bottom:453.116640pt;}
.y1e_c00163{bottom:468.800000pt;}
.y1d_c00163{bottom:492.480000pt;}
.y1c_c00163{bottom:514.386240pt;}
.y1b_c00163{bottom:533.907840pt;}
.y1a_c00163{bottom:553.588800pt;}
.y19_c00163{bottom:573.110400pt;}
.y18_c00163{bottom:592.632000pt;}
.y17_c00163{bottom:612.153600pt;}
.y16_c00163{bottom:631.675200pt;}
.y15_c00163{bottom:651.196800pt;}
.y14_c00163{bottom:670.718400pt;}
.y13_c00163{bottom:690.240000pt;}
.y12_c00163{bottom:717.920000pt;}
.y11_c00163{bottom:742.379680pt;}
.y10_c00163{bottom:761.901280pt;}
.yf_c00163{bottom:781.422880pt;}
.ye_c00163{bottom:801.103840pt;}
.yd_c00163{bottom:820.625440pt;}
.yc_c00163{bottom:840.147040pt;}
.yb_c00163{bottom:859.668640pt;}
.ya_c00163{bottom:879.190240pt;}
.y9_c00163{bottom:898.711840pt;}
.y8_c00163{bottom:918.233440pt;}
.y7_c00163{bottom:937.755040pt;}
.y6_c00163{bottom:957.276640pt;}
.y5_c00163{bottom:976.798240pt;}
.y4_c00163{bottom:996.319840pt;}
.y1_c00163{bottom:1034.240000pt;}
.h7_c00163{height:30.778125pt;}
.h9_c00163{height:30.788365pt;}
.h8_c00163{height:30.791565pt;}
.h3_c00163{height:34.453125pt;}
.h4_c00163{height:38.128125pt;}
.h2_c00163{height:38.569063pt;}
.h6_c00163{height:46.468750pt;}
.h5_c00163{height:54.368437pt;}
.h0_c00163{height:1122.560000pt;}
.h1_c00163{height:1122.666667pt;}
.w0_c00163{width:793.760000pt;}
.w1_c00163{width:794.000000pt;}
.x0_c00163{left:0.000000pt;}
.x1_c00163{left:75.520000pt;}
.x4_c00163{left:88.783520pt;}
.x5_c00163{left:94.397920pt;}
.x3_c00163{left:393.440000pt;}
.x2_c00163{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_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_1ad675ee7670421e5a28bfce.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:0.981934;font-style:normal;font-weight:normal;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_d0972c000f4830ecef4ae175.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:0.687012;font-style:normal;font-weight:normal;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_2044cd7bcebe20f92f5c91ec.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:1.052734;font-style:normal;font-weight:normal;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_eae33c6359ed7b5f62d2b467.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00164;src:url('chunks/assets/font_14b074ec97ff4ddca2036d0c.woff2')format("woff");}.ff5_c00164{font-family:ff5_c00164;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00164;src:url('chunks/assets/font_c9219384a8a0afcca0f4a52f.woff2')format("woff");}.ff6_c00164{font-family:ff6_c00164;line-height:0.982910;font-style:normal;font-weight: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_c00164;src:url('chunks/assets/font_be96f422cfdc8957a4cb1493.woff2')format("woff");}.ff7_c00164{font-family:ff7_c00164;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00164{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00164{vertical-align:-30.240000px;}
.v3_c00164{vertical-align:-23.760000px;}
.v0_c00164{vertical-align:0.000000px;}
.v4_c00164{vertical-align:23.760000px;}
.v1_c00164{vertical-align:30.240000px;}
.ls8_c00164{letter-spacing:-0.322800px;}
.ls6_c00164{letter-spacing:-0.295200px;}
.lsa_c00164{letter-spacing:-0.222600px;}
.ls9_c00164{letter-spacing:-0.216600px;}
.ls3_c00164{letter-spacing:-0.211800px;}
.ls5_c00164{letter-spacing:-0.126000px;}
.ls0_c00164{letter-spacing:0.000000px;}
.ls2_c00164{letter-spacing:0.022200px;}
.ls4_c00164{letter-spacing:0.031800px;}
.ls1_c00164{letter-spacing:0.180000px;}
.ls7_c00164{letter-spacing:0.208200px;}
.lsb_c00164{letter-spacing:0.306000px;}
.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:-72.000000px;}
.ws2_c00164{word-spacing:-13.505760px;}
.ws1_c00164{word-spacing:-10.902240px;}
.ws4_c00164{word-spacing:-10.776240px;}
.ws7_c00164{word-spacing:-10.685640px;}
.ws8_c00164{word-spacing:-10.679640px;}
.ws5_c00164{word-spacing:-10.607040px;}
.ws6_c00164{word-spacing:-10.579440px;}
.ws3_c00164{word-spacing:-8.786880px;}
.ws9_c00164{word-spacing:0.000000px;}
._0_c00164{margin-left:-1.080000px;}
._a_c00164{width:1.001400px;}
._1_c00164{width:2.004000px;}
._5_c00164{width:3.061200px;}
._b_c00164{width:4.720801px;}
._c_c00164{width:5.775120px;}
._7_c00164{width:6.994800px;}
._6_c00164{width:8.345375px;}
._8_c00164{width:9.513355px;}
._2_c00164{width:92.118094px;}
._d_c00164{width:108.316213px;}
._4_c00164{width:135.100368px;}
._3_c00164{width:159.018143px;}
._9_c00164{width:962.912640px;}
.fc2_c00164{color:transparent;}
.fc1_c00164{color:rgb(0,0,0);}
.fc0_c00164{color:rgb(0,0,255);}
.fs6_c00164{font-size:30.240000px;}
.fs5_c00164{font-size:38.880000px;}
.fs1_c00164{font-size:48.240000px;}
.fs2_c00164{font-size:54.000000px;}
.fs3_c00164{font-size:59.760000px;}
.fs0_c00164{font-size:72.000000px;}
.fs7_c00164{font-size:84.240000px;}
.fs4_c00164{font-size:120.240000px;}
.y0_c00164{bottom:0.000000px;}
.y2_c00164{bottom:15.300000px;}
.yf_c00164{bottom:67.716000px;}
.ye_c00164{bottom:85.176000px;}
.yd_c00164{bottom:99.936000px;}
.yc_c00164{bottom:114.516000px;}
.yb_c00164{bottom:129.276000px;}
.ya_c00164{bottom:143.856000px;}
.y9_c00164{bottom:162.210000px;}
.y35_c00164{bottom:191.730000px;}
.y34_c00164{bottom:213.690000px;}
.y33_c00164{bottom:235.650000px;}
.y32_c00164{bottom:257.610000px;}
.y31_c00164{bottom:279.615000px;}
.y30_c00164{bottom:310.575000px;}
.y2f_c00164{bottom:334.515000px;}
.y2e_c00164{bottom:359.355000px;}
.y2d_c00164{bottom:389.055000px;}
.y2c_c00164{bottom:409.935000px;}
.y2b_c00164{bottom:430.995000px;}
.y2a_c00164{bottom:452.955000px;}
.y29_c00164{bottom:474.915000px;}
.y28_c00164{bottom:496.875000px;}
.y27_c00164{bottom:518.835000px;}
.y26_c00164{bottom:540.795000px;}
.y25_c00164{bottom:562.785000px;}
.y24_c00164{bottom:584.745000px;}
.y23_c00164{bottom:606.705000px;}
.y22_c00164{bottom:628.665000px;}
.y21_c00164{bottom:650.625000px;}
.y20_c00164{bottom:672.585000px;}
.y1f_c00164{bottom:702.285000px;}
.y1e_c00164{bottom:722.805000px;}
.y1d_c00164{bottom:745.485000px;}
.y1c_c00164{bottom:763.125000px;}
.y1b_c00164{bottom:777.705000px;}
.y1a_c00164{bottom:792.465000px;}
.y19_c00164{bottom:807.045000px;}
.y18_c00164{bottom:821.625000px;}
.y17_c00164{bottom:836.385000px;}
.y16_c00164{bottom:851.010000px;}
.y15_c00164{bottom:871.710000px;}
.y14_c00164{bottom:886.290000px;}
.y13_c00164{bottom:900.870000px;}
.y12_c00164{bottom:910.410000px;}
.y11_c00164{bottom:962.610000px;}
.y10_c00164{bottom:1006.530000px;}
.y8_c00164{bottom:1060.890000px;}
.y7_c00164{bottom:1075.470000px;}
.y6_c00164{bottom:1090.230000px;}
.y5_c00164{bottom:1104.810000px;}
.y4_c00164{bottom:1119.390000px;}
.y3_c00164{bottom:1134.180000px;}
.y1_c00164{bottom:1145.520000px;}
.h9_c00164{height:26.445234px;}
.h2_c00164{height:32.400000px;}
.h5_c00164{height:35.991211px;}
.hb_c00164{height:40.472227px;}
.h4_c00164{height:42.186445px;}
.ha_c00164{height:48.088125px;}
.h6_c00164{height:52.260820px;}
.h3_c00164{height:57.867188px;}
.h8_c00164{height:64.241016px;}
.hc_c00164{height:67.704609px;}
.h7_c00164{height:96.638203px;}
.h0_c00164{height:1262.880000px;}
.h1_c00164{height:1263.000000px;}
.w2_c00164{width:739.230000px;}
.w0_c00164{width:892.980000px;}
.w1_c00164{width:893.250000px;}
.x0_c00164{left:0.000000px;}
.x2_c00164{left:7.920000px;}
.x1_c00164{left:77.040000px;}
.x3_c00164{left:84.960000px;}
.x4_c00164{left:442.695000px;}
@media print{
.v2_c00164{vertical-align:-26.880000pt;}
.v3_c00164{vertical-align:-21.120000pt;}
.v0_c00164{vertical-align:0.000000pt;}
.v4_c00164{vertical-align:21.120000pt;}
.v1_c00164{vertical-align:26.880000pt;}
.ls8_c00164{letter-spacing:-0.286933pt;}
.ls6_c00164{letter-spacing:-0.262400pt;}
.lsa_c00164{letter-spacing:-0.197867pt;}
.ls9_c00164{letter-spacing:-0.192533pt;}
.ls3_c00164{letter-spacing:-0.188267pt;}
.ls5_c00164{letter-spacing:-0.112000pt;}
.ls0_c00164{letter-spacing:0.000000pt;}
.ls2_c00164{letter-spacing:0.019733pt;}
.ls4_c00164{letter-spacing:0.028267pt;}
.ls1_c00164{letter-spacing:0.160000pt;}
.ls7_c00164{letter-spacing:0.185067pt;}
.lsb_c00164{letter-spacing:0.272000pt;}
.ws0_c00164{word-spacing:-64.000000pt;}
.ws2_c00164{word-spacing:-12.005120pt;}
.ws1_c00164{word-spacing:-9.690880pt;}
.ws4_c00164{word-spacing:-9.578880pt;}
.ws7_c00164{word-spacing:-9.498347pt;}
.ws8_c00164{word-spacing:-9.493013pt;}
.ws5_c00164{word-spacing:-9.428480pt;}
.ws6_c00164{word-spacing:-9.403947pt;}
.ws3_c00164{word-spacing:-7.810560pt;}
.ws9_c00164{word-spacing:0.000000pt;}
._0_c00164{margin-left:-0.960000pt;}
._a_c00164{width:0.890133pt;}
._1_c00164{width:1.781333pt;}
._5_c00164{width:2.721067pt;}
._b_c00164{width:4.196268pt;}
._c_c00164{width:5.133440pt;}
._7_c00164{width:6.217600pt;}
._6_c00164{width:7.418111pt;}
._8_c00164{width:8.456315pt;}
._2_c00164{width:81.882750pt;}
._d_c00164{width:96.281078pt;}
._4_c00164{width:120.089216pt;}
._3_c00164{width:141.349460pt;}
._9_c00164{width:855.922347pt;}
.fs6_c00164{font-size:26.880000pt;}
.fs5_c00164{font-size:34.560000pt;}
.fs1_c00164{font-size:42.880000pt;}
.fs2_c00164{font-size:48.000000pt;}
.fs3_c00164{font-size:53.120000pt;}
.fs0_c00164{font-size:64.000000pt;}
.fs7_c00164{font-size:74.880000pt;}
.fs4_c00164{font-size:106.880000pt;}
.y0_c00164{bottom:0.000000pt;}
.y2_c00164{bottom:13.600000pt;}
.yf_c00164{bottom:60.192000pt;}
.ye_c00164{bottom:75.712000pt;}
.yd_c00164{bottom:88.832000pt;}
.yc_c00164{bottom:101.792000pt;}
.yb_c00164{bottom:114.912000pt;}
.ya_c00164{bottom:127.872000pt;}
.y9_c00164{bottom:144.186667pt;}
.y35_c00164{bottom:170.426667pt;}
.y34_c00164{bottom:189.946667pt;}
.y33_c00164{bottom:209.466667pt;}
.y32_c00164{bottom:228.986667pt;}
.y31_c00164{bottom:248.546667pt;}
.y30_c00164{bottom:276.066667pt;}
.y2f_c00164{bottom:297.346667pt;}
.y2e_c00164{bottom:319.426667pt;}
.y2d_c00164{bottom:345.826667pt;}
.y2c_c00164{bottom:364.386667pt;}
.y2b_c00164{bottom:383.106667pt;}
.y2a_c00164{bottom:402.626667pt;}
.y29_c00164{bottom:422.146667pt;}
.y28_c00164{bottom:441.666667pt;}
.y27_c00164{bottom:461.186667pt;}
.y26_c00164{bottom:480.706667pt;}
.y25_c00164{bottom:500.253333pt;}
.y24_c00164{bottom:519.773333pt;}
.y23_c00164{bottom:539.293333pt;}
.y22_c00164{bottom:558.813333pt;}
.y21_c00164{bottom:578.333333pt;}
.y20_c00164{bottom:597.853333pt;}
.y1f_c00164{bottom:624.253333pt;}
.y1e_c00164{bottom:642.493333pt;}
.y1d_c00164{bottom:662.653333pt;}
.y1c_c00164{bottom:678.333333pt;}
.y1b_c00164{bottom:691.293333pt;}
.y1a_c00164{bottom:704.413333pt;}
.y19_c00164{bottom:717.373333pt;}
.y18_c00164{bottom:730.333333pt;}
.y17_c00164{bottom:743.453333pt;}
.y16_c00164{bottom:756.453333pt;}
.y15_c00164{bottom:774.853333pt;}
.y14_c00164{bottom:787.813333pt;}
.y13_c00164{bottom:800.773333pt;}
.y12_c00164{bottom:809.253333pt;}
.y11_c00164{bottom:855.653333pt;}
.y10_c00164{bottom:894.693333pt;}
.y8_c00164{bottom:943.013333pt;}
.y7_c00164{bottom:955.973333pt;}
.y6_c00164{bottom:969.093333pt;}
.y5_c00164{bottom:982.053333pt;}
.y4_c00164{bottom:995.013333pt;}
.y3_c00164{bottom:1008.160000pt;}
.y1_c00164{bottom:1018.240000pt;}
.h9_c00164{height:23.506875pt;}
.h2_c00164{height:28.800000pt;}
.h5_c00164{height:31.992188pt;}
.hb_c00164{height:35.975313pt;}
.h4_c00164{height:37.499062pt;}
.ha_c00164{height:42.745000pt;}
.h6_c00164{height:46.454062pt;}
.h3_c00164{height:51.437500pt;}
.h8_c00164{height:57.103125pt;}
.hc_c00164{height:60.181875pt;}
.h7_c00164{height:85.900625pt;}
.h0_c00164{height:1122.560000pt;}
.h1_c00164{height:1122.666667pt;}
.w2_c00164{width:657.093333pt;}
.w0_c00164{width:793.760000pt;}
.w1_c00164{width:794.000000pt;}
.x0_c00164{left:0.000000pt;}
.x2_c00164{left:7.040000pt;}
.x1_c00164{left:68.480000pt;}
.x3_c00164{left:75.520000pt;}
.x4_c00164{left:393.506667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_de67781b5e46db273329b6b1.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:0.981934;font-style:normal;font-weight:normal;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_eae33c6359ed7b5f62d2b467.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00165;src:url('chunks/assets/font_fce4ec01730f55a14fd3cf56.woff2')format("woff");}.ff3_c00165{font-family:ff3_c00165;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00165;src:url('chunks/assets/font_b1ee3f6aff550434eb2f85ef.woff2')format("woff");}.ff4_c00165{font-family:ff4_c00165;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00165;src:url('chunks/assets/font_a30668df5346888c20c84fe3.woff2')format("woff");}.ff5_c00165{font-family:ff5_c00165;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00165;src:url('chunks/assets/font_a0340a8ed5f3dcb3f4762e97.woff2')format("woff");}.ff6_c00165{font-family:ff6_c00165;line-height:0.715820;font-style: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;}
.ls2_c00165{letter-spacing:-0.240600px;}
.ls5_c00165{letter-spacing:-0.064800px;}
.ls3_c00165{letter-spacing:-0.043800px;}
.ls1_c00165{letter-spacing:0.000000px;}
.ls4_c00165{letter-spacing:0.306000px;}
.ls0_c00165{letter-spacing:64.170720px;}
.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:-59.760000px;}
.ws0_c00165{word-spacing:-13.505760px;}
.ws2_c00165{word-spacing:0.000000px;}
._9_c00165{margin-left:-1.015800px;}
._0_c00165{width:1.015800px;}
._2_c00165{width:2.151599px;}
._1_c00165{width:3.162619px;}
._3_c00165{width:4.307381px;}
._4_c00165{width:5.830843px;}
._7_c00165{width:6.872400px;}
._8_c00165{width:8.665200px;}
._5_c00165{width:9.860400px;}
._6_c00165{width:10.996199px;}
.fc1_c00165{color:rgb(0,0,0);}
.fc0_c00165{color:rgb(0,0,255);}
.fs1_c00165{font-size:54.000000px;}
.fs0_c00165{font-size:59.760000px;}
.y0_c00165{bottom:0.000000px;}
.y3_c00165{bottom:71.136000px;}
.y2_c00165{bottom:88.776000px;}
.y30_c00165{bottom:146.016000px;}
.y2f_c00165{bottom:167.970000px;}
.y2e_c00165{bottom:189.930000px;}
.y2d_c00165{bottom:211.890000px;}
.y2c_c00165{bottom:233.850000px;}
.y2b_c00165{bottom:255.810000px;}
.y2a_c00165{bottom:277.815000px;}
.y29_c00165{bottom:299.775000px;}
.y28_c00165{bottom:321.735000px;}
.y27_c00165{bottom:343.695000px;}
.y26_c00165{bottom:365.835000px;}
.y25_c00165{bottom:387.795000px;}
.y24_c00165{bottom:409.755000px;}
.y23_c00165{bottom:431.715000px;}
.y22_c00165{bottom:453.675000px;}
.y21_c00165{bottom:475.635000px;}
.y20_c00165{bottom:497.595000px;}
.y1f_c00165{bottom:519.555000px;}
.y1e_c00165{bottom:541.515000px;}
.y1d_c00165{bottom:563.505000px;}
.y1c_c00165{bottom:585.465000px;}
.y1b_c00165{bottom:607.425000px;}
.y1a_c00165{bottom:629.565000px;}
.y19_c00165{bottom:652.245000px;}
.y18_c00165{bottom:675.105000px;}
.y17_c00165{bottom:697.785000px;}
.y16_c00165{bottom:719.745000px;}
.y15_c00165{bottom:741.705000px;}
.y14_c00165{bottom:763.845000px;}
.y13_c00165{bottom:786.525000px;}
.y12_c00165{bottom:809.385000px;}
.y11_c00165{bottom:832.065000px;}
.y10_c00165{bottom:854.970000px;}
.yf_c00165{bottom:877.650000px;}
.ye_c00165{bottom:900.510000px;}
.yd_c00165{bottom:923.190000px;}
.yc_c00165{bottom:945.150000px;}
.yb_c00165{bottom:967.110000px;}
.ya_c00165{bottom:989.070000px;}
.y9_c00165{bottom:1011.030000px;}
.y8_c00165{bottom:1032.990000px;}
.y7_c00165{bottom:1054.950000px;}
.y6_c00165{bottom:1076.910000px;}
.y5_c00165{bottom:1098.870000px;}
.y4_c00165{bottom:1120.830000px;}
.y1_c00165{bottom:1163.520000px;}
.h3_c00165{height:35.991211px;}
.h2_c00165{height:48.029766px;}
.h5_c00165{height:48.088125px;}
.h4_c00165{height:52.260820px;}
.h0_c00165{height:1262.880000px;}
.h1_c00165{height:1263.000000px;}
.w0_c00165{width:892.980000px;}
.w1_c00165{width:893.250000px;}
.x0_c00165{left:0.000000px;}
.x1_c00165{left:84.960000px;}
.x4_c00165{left:99.936000px;}
.x3_c00165{left:442.695000px;}
.x2_c00165{left:446.475000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls2_c00165{letter-spacing:-0.213867pt;}
.ls5_c00165{letter-spacing:-0.057600pt;}
.ls3_c00165{letter-spacing:-0.038933pt;}
.ls1_c00165{letter-spacing:0.000000pt;}
.ls4_c00165{letter-spacing:0.272000pt;}
.ls0_c00165{letter-spacing:57.040640pt;}
.ws1_c00165{word-spacing:-53.120000pt;}
.ws0_c00165{word-spacing:-12.005120pt;}
.ws2_c00165{word-spacing:0.000000pt;}
._9_c00165{margin-left:-0.902934pt;}
._0_c00165{width:0.902934pt;}
._2_c00165{width:1.912532pt;}
._1_c00165{width:2.811217pt;}
._3_c00165{width:3.828783pt;}
._4_c00165{width:5.182972pt;}
._7_c00165{width:6.108800pt;}
._8_c00165{width:7.702400pt;}
._5_c00165{width:8.764800pt;}
._6_c00165{width:9.774399pt;}
.fs1_c00165{font-size:48.000000pt;}
.fs0_c00165{font-size:53.120000pt;}
.y0_c00165{bottom:0.000000pt;}
.y3_c00165{bottom:63.232000pt;}
.y2_c00165{bottom:78.912000pt;}
.y30_c00165{bottom:129.792000pt;}
.y2f_c00165{bottom:149.306667pt;}
.y2e_c00165{bottom:168.826667pt;}
.y2d_c00165{bottom:188.346667pt;}
.y2c_c00165{bottom:207.866667pt;}
.y2b_c00165{bottom:227.386667pt;}
.y2a_c00165{bottom:246.946667pt;}
.y29_c00165{bottom:266.466667pt;}
.y28_c00165{bottom:285.986667pt;}
.y27_c00165{bottom:305.506667pt;}
.y26_c00165{bottom:325.186667pt;}
.y25_c00165{bottom:344.706667pt;}
.y24_c00165{bottom:364.226667pt;}
.y23_c00165{bottom:383.746667pt;}
.y22_c00165{bottom:403.266667pt;}
.y21_c00165{bottom:422.786667pt;}
.y20_c00165{bottom:442.306667pt;}
.y1f_c00165{bottom:461.826667pt;}
.y1e_c00165{bottom:481.346667pt;}
.y1d_c00165{bottom:500.893333pt;}
.y1c_c00165{bottom:520.413333pt;}
.y1b_c00165{bottom:539.933333pt;}
.y1a_c00165{bottom:559.613333pt;}
.y19_c00165{bottom:579.773333pt;}
.y18_c00165{bottom:600.093333pt;}
.y17_c00165{bottom:620.253333pt;}
.y16_c00165{bottom:639.773333pt;}
.y15_c00165{bottom:659.293333pt;}
.y14_c00165{bottom:678.973333pt;}
.y13_c00165{bottom:699.133333pt;}
.y12_c00165{bottom:719.453333pt;}
.y11_c00165{bottom:739.613333pt;}
.y10_c00165{bottom:759.973333pt;}
.yf_c00165{bottom:780.133333pt;}
.ye_c00165{bottom:800.453333pt;}
.yd_c00165{bottom:820.613333pt;}
.yc_c00165{bottom:840.133333pt;}
.yb_c00165{bottom:859.653333pt;}
.ya_c00165{bottom:879.173333pt;}
.y9_c00165{bottom:898.693333pt;}
.y8_c00165{bottom:918.213333pt;}
.y7_c00165{bottom:937.733333pt;}
.y6_c00165{bottom:957.253333pt;}
.y5_c00165{bottom:976.773333pt;}
.y4_c00165{bottom:996.293333pt;}
.y1_c00165{bottom:1034.240000pt;}
.h3_c00165{height:31.992188pt;}
.h2_c00165{height:42.693125pt;}
.h5_c00165{height:42.745000pt;}
.h4_c00165{height:46.454062pt;}
.h0_c00165{height:1122.560000pt;}
.h1_c00165{height:1122.666667pt;}
.w0_c00165{width:793.760000pt;}
.w1_c00165{width:794.000000pt;}
.x0_c00165{left:0.000000pt;}
.x1_c00165{left:75.520000pt;}
.x4_c00165{left:88.832000pt;}
.x3_c00165{left:393.506667pt;}
.x2_c00165{left:396.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_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_f8d7c26e8f85a65798b91466.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:0.981934;font-style:normal;font-weight:normal;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_0f10d60df273fe3ca24022c4.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.052734;font-style:normal;font-weight:normal;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_51b63d1667517a00c4d28815.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:0.982910;font-style:normal;font-weight:normal;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_a0340a8ed5f3dcb3f4762e97.woff2')format("woff");}.ff4_c00166{font-family:ff4_c00166;line-height:0.715820;font-style: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;}
.ls5_c00166{letter-spacing:-0.078600px;}
.ls6_c00166{letter-spacing:-0.058200px;}
.ls3_c00166{letter-spacing:-0.040800px;}
.ls1_c00166{letter-spacing:0.000000px;}
.ls7_c00166{letter-spacing:0.175200px;}
.ls2_c00166{letter-spacing:0.261600px;}
.ls4_c00166{letter-spacing:0.858000px;}
.ls0_c00166{letter-spacing:46.026720px;}
.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;}
}
.ws1_c00166{word-spacing:-19.299840px;}
.ws0_c00166{word-spacing:-13.505760px;}
.ws2_c00166{word-spacing:-13.447560px;}
.ws3_c00166{word-spacing:0.000000px;}
._2_c00166{margin-left:-1.296013px;}
._0_c00166{width:1.540194px;}
._8_c00166{width:2.569800px;}
._3_c00166{width:4.187443px;}
._7_c00166{width:6.095400px;}
._5_c00166{width:7.424403px;}
._4_c00166{width:8.485800px;}
._6_c00166{width:9.600623px;}
._9_c00166{width:10.998529px;}
._1_c00166{width:108.316080px;}
.fc1_c00166{color:rgb(0,0,0);}
.fc2_c00166{color:rgb(49,132,155);}
.fc0_c00166{color:rgb(0,0,255);}
.fs1_c00166{font-size:54.000000px;}
.fs0_c00166{font-size:59.760000px;}
.fs2_c00166{font-size:84.240000px;}
.y0_c00166{bottom:0.000000px;}
.y3_c00166{bottom:67.716000px;}
.y2_c00166{bottom:85.716000px;}
.y30_c00166{bottom:139.176000px;}
.y2f_c00166{bottom:161.130000px;}
.y2e_c00166{bottom:183.090000px;}
.y2d_c00166{bottom:205.050000px;}
.y2c_c00166{bottom:227.010000px;}
.y2b_c00166{bottom:248.970000px;}
.y2a_c00166{bottom:270.930000px;}
.y29_c00166{bottom:292.935000px;}
.y28_c00166{bottom:315.075000px;}
.y27_c00166{bottom:337.035000px;}
.y26_c00166{bottom:358.995000px;}
.y25_c00166{bottom:380.955000px;}
.y24_c00166{bottom:402.915000px;}
.y23_c00166{bottom:424.875000px;}
.y22_c00166{bottom:446.835000px;}
.y21_c00166{bottom:468.795000px;}
.y20_c00166{bottom:490.755000px;}
.y1f_c00166{bottom:512.715000px;}
.y1e_c00166{bottom:534.675000px;}
.y1d_c00166{bottom:556.665000px;}
.y1c_c00166{bottom:578.625000px;}
.y1b_c00166{bottom:600.585000px;}
.y1a_c00166{bottom:622.725000px;}
.y19_c00166{bottom:644.685000px;}
.y18_c00166{bottom:666.645000px;}
.y17_c00166{bottom:688.605000px;}
.y16_c00166{bottom:710.565000px;}
.y15_c00166{bottom:732.525000px;}
.y14_c00166{bottom:754.485000px;}
.y13_c00166{bottom:776.445000px;}
.y12_c00166{bottom:798.405000px;}
.y11_c00166{bottom:820.365000px;}
.y10_c00166{bottom:842.370000px;}
.yf_c00166{bottom:864.330000px;}
.ye_c00166{bottom:886.290000px;}
.yd_c00166{bottom:908.250000px;}
.yc_c00166{bottom:930.390000px;}
.yb_c00166{bottom:952.350000px;}
.ya_c00166{bottom:974.310000px;}
.y9_c00166{bottom:996.270000px;}
.y8_c00166{bottom:1018.230000px;}
.y7_c00166{bottom:1040.190000px;}
.y6_c00166{bottom:1062.150000px;}
.y5_c00166{bottom:1093.110000px;}
.y4_c00166{bottom:1120.830000px;}
.y1_c00166{bottom:1163.520000px;}
.h3_c00166{height:47.223633px;}
.h2_c00166{height:48.029766px;}
.h6_c00166{height:48.088125px;}
.h4_c00166{height:52.260820px;}
.h5_c00166{height:67.704609px;}
.h0_c00166{height:1262.880000px;}
.h1_c00166{height:1263.000000px;}
.w0_c00166{width:892.980000px;}
.w1_c00166{width:893.250000px;}
.x0_c00166{left:0.000000px;}
.x1_c00166{left:84.960000px;}
.x4_c00166{left:99.936000px;}
.x5_c00166{left:111.996000px;}
.x3_c00166{left:442.695000px;}
.x2_c00166{left:446.475000px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls5_c00166{letter-spacing:-0.069867pt;}
.ls6_c00166{letter-spacing:-0.051733pt;}
.ls3_c00166{letter-spacing:-0.036267pt;}
.ls1_c00166{letter-spacing:0.000000pt;}
.ls7_c00166{letter-spacing:0.155733pt;}
.ls2_c00166{letter-spacing:0.232533pt;}
.ls4_c00166{letter-spacing:0.762667pt;}
.ls0_c00166{letter-spacing:40.912640pt;}
.ws1_c00166{word-spacing:-17.155413pt;}
.ws0_c00166{word-spacing:-12.005120pt;}
.ws2_c00166{word-spacing:-11.953387pt;}
.ws3_c00166{word-spacing:0.000000pt;}
._2_c00166{margin-left:-1.152011pt;}
._0_c00166{width:1.369062pt;}
._8_c00166{width:2.284266pt;}
._3_c00166{width:3.722172pt;}
._7_c00166{width:5.418134pt;}
._5_c00166{width:6.599469pt;}
._4_c00166{width:7.542934pt;}
._6_c00166{width:8.533887pt;}
._9_c00166{width:9.776470pt;}
._1_c00166{width:96.280960pt;}
.fs1_c00166{font-size:48.000000pt;}
.fs0_c00166{font-size:53.120000pt;}
.fs2_c00166{font-size:74.880000pt;}
.y0_c00166{bottom:0.000000pt;}
.y3_c00166{bottom:60.192000pt;}
.y2_c00166{bottom:76.192000pt;}
.y30_c00166{bottom:123.712000pt;}
.y2f_c00166{bottom:143.226667pt;}
.y2e_c00166{bottom:162.746667pt;}
.y2d_c00166{bottom:182.266667pt;}
.y2c_c00166{bottom:201.786667pt;}
.y2b_c00166{bottom:221.306667pt;}
.y2a_c00166{bottom:240.826667pt;}
.y29_c00166{bottom:260.386667pt;}
.y28_c00166{bottom:280.066667pt;}
.y27_c00166{bottom:299.586667pt;}
.y26_c00166{bottom:319.106667pt;}
.y25_c00166{bottom:338.626667pt;}
.y24_c00166{bottom:358.146667pt;}
.y23_c00166{bottom:377.666667pt;}
.y22_c00166{bottom:397.186667pt;}
.y21_c00166{bottom:416.706667pt;}
.y20_c00166{bottom:436.226667pt;}
.y1f_c00166{bottom:455.746667pt;}
.y1e_c00166{bottom:475.266667pt;}
.y1d_c00166{bottom:494.813333pt;}
.y1c_c00166{bottom:514.333333pt;}
.y1b_c00166{bottom:533.853333pt;}
.y1a_c00166{bottom:553.533333pt;}
.y19_c00166{bottom:573.053333pt;}
.y18_c00166{bottom:592.573333pt;}
.y17_c00166{bottom:612.093333pt;}
.y16_c00166{bottom:631.613333pt;}
.y15_c00166{bottom:651.133333pt;}
.y14_c00166{bottom:670.653333pt;}
.y13_c00166{bottom:690.173333pt;}
.y12_c00166{bottom:709.693333pt;}
.y11_c00166{bottom:729.213333pt;}
.y10_c00166{bottom:748.773333pt;}
.yf_c00166{bottom:768.293333pt;}
.ye_c00166{bottom:787.813333pt;}
.yd_c00166{bottom:807.333333pt;}
.yc_c00166{bottom:827.013333pt;}
.yb_c00166{bottom:846.533333pt;}
.ya_c00166{bottom:866.053333pt;}
.y9_c00166{bottom:885.573333pt;}
.y8_c00166{bottom:905.093333pt;}
.y7_c00166{bottom:924.613333pt;}
.y6_c00166{bottom:944.133333pt;}
.y5_c00166{bottom:971.653333pt;}
.y4_c00166{bottom:996.293333pt;}
.y1_c00166{bottom:1034.240000pt;}
.h3_c00166{height:41.976562pt;}
.h2_c00166{height:42.693125pt;}
.h6_c00166{height:42.745000pt;}
.h4_c00166{height:46.454062pt;}
.h5_c00166{height:60.181875pt;}
.h0_c00166{height:1122.560000pt;}
.h1_c00166{height:1122.666667pt;}
.w0_c00166{width:793.760000pt;}
.w1_c00166{width:794.000000pt;}
.x0_c00166{left:0.000000pt;}
.x1_c00166{left:75.520000pt;}
.x4_c00166{left:88.832000pt;}
.x5_c00166{left:99.552000pt;}
.x3_c00166{left:393.506667pt;}
.x2_c00166{left:396.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_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_414e7298c18c1e21d53a0714.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:0.981934;font-style:normal;font-weight:normal;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_eae33c6359ed7b5f62d2b467.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00167;src:url('chunks/assets/font_c20f0eaa786bb47b86bbfd43.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:1.052734;font-style:normal;font-weight:normal;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_b93e6362817966d71c961820.woff2')format("woff");}.ff4_c00167{font-family:ff4_c00167;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00167;src:url('chunks/assets/font_a30668df5346888c20c84fe3.woff2')format("woff");}.ff5_c00167{font-family:ff5_c00167;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00167;src:url('chunks/assets/font_a0340a8ed5f3dcb3f4762e97.woff2')format("woff");}.ff6_c00167{font-family:ff6_c00167;line-height:0.715820;font-style: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;}
.ls5_c00167{letter-spacing:-0.240600px;}
.ls4_c00167{letter-spacing:-0.064800px;}
.ls3_c00167{letter-spacing:0.000000px;}
.ls0_c00167{letter-spacing:0.216000px;}
.ls1_c00167{letter-spacing:0.306000px;}
.ls2_c00167{letter-spacing:64.170720px;}
.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;}
}
.ws3_c00167{word-spacing:-59.760000px;}
.ws1_c00167{word-spacing:-16.488000px;}
.ws2_c00167{word-spacing:-13.811760px;}
.ws0_c00167{word-spacing:-13.505760px;}
.ws4_c00167{word-spacing:0.000000px;}
._3_c00167{margin-left:-1.018209px;}
._0_c00167{width:1.015800px;}
._7_c00167{width:2.151599px;}
._1_c00167{width:3.162619px;}
._a_c00167{width:4.182584px;}
._6_c00167{width:5.204397px;}
._4_c00167{width:6.214801px;}
._5_c00167{width:7.327916px;}
._9_c00167{width:43.596120px;}
._8_c00167{width:60.912000px;}
._2_c00167{width:108.316213px;}
.fc1_c00167{color:rgb(0,0,0);}
.fc0_c00167{color:rgb(0,0,255);}
.fs1_c00167{font-size:54.000000px;}
.fs0_c00167{font-size:59.760000px;}
.fs3_c00167{font-size:72.000000px;}
.fs2_c00167{font-size:84.240000px;}
.y0_c00167{bottom:0.000000px;}
.y3_c00167{bottom:71.136000px;}
.y2_c00167{bottom:88.776000px;}
.y1f_c00167{bottom:131.616000px;}
.y1e_c00167{bottom:153.570000px;}
.y1d_c00167{bottom:175.530000px;}
.y1c_c00167{bottom:198.390000px;}
.y1b_c00167{bottom:221.070000px;}
.y1a_c00167{bottom:243.930000px;}
.y19_c00167{bottom:265.890000px;}
.y18_c00167{bottom:287.895000px;}
.y17_c00167{bottom:306.255000px;}
.y16_c00167{bottom:700.125000px;}
.y15_c00167{bottom:722.085000px;}
.y14_c00167{bottom:751.785000px;}
.y13_c00167{bottom:776.445000px;}
.y12_c00167{bottom:798.405000px;}
.y11_c00167{bottom:820.365000px;}
.y10_c00167{bottom:842.370000px;}
.yf_c00167{bottom:864.330000px;}
.ye_c00167{bottom:886.290000px;}
.yd_c00167{bottom:908.250000px;}
.yc_c00167{bottom:930.390000px;}
.yb_c00167{bottom:952.350000px;}
.ya_c00167{bottom:974.310000px;}
.y9_c00167{bottom:996.270000px;}
.y8_c00167{bottom:1018.230000px;}
.y7_c00167{bottom:1040.190000px;}
.y6_c00167{bottom:1062.150000px;}
.y5_c00167{bottom:1093.110000px;}
.y4_c00167{bottom:1120.830000px;}
.y1_c00167{bottom:1163.520000px;}
.h3_c00167{height:35.991211px;}
.h2_c00167{height:48.029766px;}
.h6_c00167{height:48.088125px;}
.h4_c00167{height:52.260820px;}
.h7_c00167{height:57.867188px;}
.h5_c00167{height:67.704609px;}
.h0_c00167{height:1262.880000px;}
.h1_c00167{height:1263.000000px;}
.w0_c00167{width:892.980000px;}
.w1_c00167{width:893.250000px;}
.x0_c00167{left:0.000000px;}
.x1_c00167{left:84.960000px;}
.x4_c00167{left:99.936000px;}
.x3_c00167{left:442.695000px;}
.x2_c00167{left:446.475000px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls5_c00167{letter-spacing:-0.213867pt;}
.ls4_c00167{letter-spacing:-0.057600pt;}
.ls3_c00167{letter-spacing:0.000000pt;}
.ls0_c00167{letter-spacing:0.192000pt;}
.ls1_c00167{letter-spacing:0.272000pt;}
.ls2_c00167{letter-spacing:57.040640pt;}
.ws3_c00167{word-spacing:-53.120000pt;}
.ws1_c00167{word-spacing:-14.656000pt;}
.ws2_c00167{word-spacing:-12.277120pt;}
.ws0_c00167{word-spacing:-12.005120pt;}
.ws4_c00167{word-spacing:0.000000pt;}
._3_c00167{margin-left:-0.905075pt;}
._0_c00167{width:0.902934pt;}
._7_c00167{width:1.912532pt;}
._1_c00167{width:2.811217pt;}
._a_c00167{width:3.717853pt;}
._6_c00167{width:4.626131pt;}
._4_c00167{width:5.524268pt;}
._5_c00167{width:6.513703pt;}
._9_c00167{width:38.752106pt;}
._8_c00167{width:54.144000pt;}
._2_c00167{width:96.281078pt;}
.fs1_c00167{font-size:48.000000pt;}
.fs0_c00167{font-size:53.120000pt;}
.fs3_c00167{font-size:64.000000pt;}
.fs2_c00167{font-size:74.880000pt;}
.y0_c00167{bottom:0.000000pt;}
.y3_c00167{bottom:63.232000pt;}
.y2_c00167{bottom:78.912000pt;}
.y1f_c00167{bottom:116.992000pt;}
.y1e_c00167{bottom:136.506667pt;}
.y1d_c00167{bottom:156.026667pt;}
.y1c_c00167{bottom:176.346667pt;}
.y1b_c00167{bottom:196.506667pt;}
.y1a_c00167{bottom:216.826667pt;}
.y19_c00167{bottom:236.346667pt;}
.y18_c00167{bottom:255.906667pt;}
.y17_c00167{bottom:272.226667pt;}
.y16_c00167{bottom:622.333333pt;}
.y15_c00167{bottom:641.853333pt;}
.y14_c00167{bottom:668.253333pt;}
.y13_c00167{bottom:690.173333pt;}
.y12_c00167{bottom:709.693333pt;}
.y11_c00167{bottom:729.213333pt;}
.y10_c00167{bottom:748.773333pt;}
.yf_c00167{bottom:768.293333pt;}
.ye_c00167{bottom:787.813333pt;}
.yd_c00167{bottom:807.333333pt;}
.yc_c00167{bottom:827.013333pt;}
.yb_c00167{bottom:846.533333pt;}
.ya_c00167{bottom:866.053333pt;}
.y9_c00167{bottom:885.573333pt;}
.y8_c00167{bottom:905.093333pt;}
.y7_c00167{bottom:924.613333pt;}
.y6_c00167{bottom:944.133333pt;}
.y5_c00167{bottom:971.653333pt;}
.y4_c00167{bottom:996.293333pt;}
.y1_c00167{bottom:1034.240000pt;}
.h3_c00167{height:31.992188pt;}
.h2_c00167{height:42.693125pt;}
.h6_c00167{height:42.745000pt;}
.h4_c00167{height:46.454062pt;}
.h7_c00167{height:51.437500pt;}
.h5_c00167{height:60.181875pt;}
.h0_c00167{height:1122.560000pt;}
.h1_c00167{height:1122.666667pt;}
.w0_c00167{width:793.760000pt;}
.w1_c00167{width:794.000000pt;}
.x0_c00167{left:0.000000pt;}
.x1_c00167{left:75.520000pt;}
.x4_c00167{left:88.832000pt;}
.x3_c00167{left:393.506667pt;}
.x2_c00167{left:396.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_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_0abdd75eb2f813d17aebc391.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:0.981934;font-style:normal;font-weight:normal;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_b8499e7dd21793ab41d22692.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.052734;font-style:normal;font-weight:normal;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_3db543bde2283429984cd817.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:0.982910;font-style:normal;font-weight:normal;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_a30668df5346888c20c84fe3.woff2')format("woff");}.ff4_c00168{font-family:ff4_c00168;line-height:0.690918;font-style:normal;font-weight:normal;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_a0340a8ed5f3dcb3f4762e97.woff2')format("woff");}.ff5_c00168{font-family:ff5_c00168;line-height:0.715820;font-style: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;}
.ls1_c00168{letter-spacing:0.000000px;}
.ls0_c00168{letter-spacing:64.170720px;}
.sc__c00168{text-shadow:none;}
.sc0_c00168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00168{-webkit-text-stroke:0px transparent;}
.sc0_c00168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00168{word-spacing:-59.760000px;}
.ws0_c00168{word-spacing:-13.505760px;}
.ws2_c00168{word-spacing:0.000000px;}
._2_c00168{margin-left:-1.061995px;}
._0_c00168{width:1.540194px;}
._5_c00168{width:3.079791px;}
._3_c00168{width:7.649400px;}
._4_c00168{width:9.046230px;}
._1_c00168{width:43.071726px;}
.fc1_c00168{color:rgb(0,0,0);}
.fc2_c00168{color:rgb(49,132,155);}
.fc0_c00168{color:rgb(0,0,255);}
.fs1_c00168{font-size:54.000000px;}
.fs0_c00168{font-size:59.760000px;}
.y0_c00168{bottom:0.000000px;}
.y3_c00168{bottom:67.716000px;}
.y2_c00168{bottom:85.716000px;}
.y12_c00168{bottom:271.110000px;}
.y11_c00168{bottom:293.295000px;}
.y10_c00168{bottom:311.655000px;}
.yf_c00168{bottom:329.655000px;}
.ye_c00168{bottom:629.745000px;}
.yd_c00168{bottom:651.705000px;}
.yc_c00168{bottom:673.845000px;}
.yb_c00168{bottom:696.525000px;}
.ya_c00168{bottom:719.385000px;}
.y9_c00168{bottom:742.065000px;}
.y8_c00168{bottom:764.025000px;}
.y7_c00168{bottom:785.985000px;}
.y6_c00168{bottom:807.945000px;}
.y5_c00168{bottom:826.485000px;}
.y4_c00168{bottom:844.350000px;}
.y1_c00168{bottom:1163.520000px;}
.h3_c00168{height:47.223633px;}
.h2_c00168{height:48.029766px;}
.h5_c00168{height:48.088125px;}
.h4_c00168{height:52.260820px;}
.h0_c00168{height:1262.880000px;}
.h1_c00168{height:1263.000000px;}
.w0_c00168{width:892.980000px;}
.w1_c00168{width:893.250000px;}
.x0_c00168{left:0.000000px;}
.x1_c00168{left:84.960000px;}
.x3_c00168{left:442.695000px;}
.x2_c00168{left:446.475000px;}
.x4_c00168{left:722.850000px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls1_c00168{letter-spacing:0.000000pt;}
.ls0_c00168{letter-spacing:57.040640pt;}
.ws1_c00168{word-spacing:-53.120000pt;}
.ws0_c00168{word-spacing:-12.005120pt;}
.ws2_c00168{word-spacing:0.000000pt;}
._2_c00168{margin-left:-0.943996pt;}
._0_c00168{width:1.369062pt;}
._5_c00168{width:2.737592pt;}
._3_c00168{width:6.799466pt;}
._4_c00168{width:8.041093pt;}
._1_c00168{width:38.285978pt;}
.fs1_c00168{font-size:48.000000pt;}
.fs0_c00168{font-size:53.120000pt;}
.y0_c00168{bottom:0.000000pt;}
.y3_c00168{bottom:60.192000pt;}
.y2_c00168{bottom:76.192000pt;}
.y12_c00168{bottom:240.986667pt;}
.y11_c00168{bottom:260.706667pt;}
.y10_c00168{bottom:277.026667pt;}
.yf_c00168{bottom:293.026667pt;}
.ye_c00168{bottom:559.773333pt;}
.yd_c00168{bottom:579.293333pt;}
.yc_c00168{bottom:598.973333pt;}
.yb_c00168{bottom:619.133333pt;}
.ya_c00168{bottom:639.453333pt;}
.y9_c00168{bottom:659.613333pt;}
.y8_c00168{bottom:679.133333pt;}
.y7_c00168{bottom:698.653333pt;}
.y6_c00168{bottom:718.173333pt;}
.y5_c00168{bottom:734.653333pt;}
.y4_c00168{bottom:750.533333pt;}
.y1_c00168{bottom:1034.240000pt;}
.h3_c00168{height:41.976562pt;}
.h2_c00168{height:42.693125pt;}
.h5_c00168{height:42.745000pt;}
.h4_c00168{height:46.454062pt;}
.h0_c00168{height:1122.560000pt;}
.h1_c00168{height:1122.666667pt;}
.w0_c00168{width:793.760000pt;}
.w1_c00168{width:794.000000pt;}
.x0_c00168{left:0.000000pt;}
.x1_c00168{left:75.520000pt;}
.x3_c00168{left:393.506667pt;}
.x2_c00168{left:396.866667pt;}
.x4_c00168{left:642.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_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_49549d6be6b7726300def9f7.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:0.981934;font-style:normal;font-weight:normal;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_eae33c6359ed7b5f62d2b467.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00169;src:url('chunks/assets/font_ac5c0c80992a96396e953796.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:1.052734;font-style:normal;font-weight:normal;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_a30668df5346888c20c84fe3.woff2')format("woff");}.ff4_c00169{font-family:ff4_c00169;line-height:0.690918;font-style:normal;font-weight:normal;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_a0340a8ed5f3dcb3f4762e97.woff2')format("woff");}.ff5_c00169{font-family:ff5_c00169;line-height:0.715820;font-style: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;}
.ls2_c00169{letter-spacing:0.654000px;}
.ls0_c00169{letter-spacing:64.170720px;}
.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:-59.760000px;}
.ws0_c00169{word-spacing:-13.505760px;}
.ws2_c00169{word-spacing:0.000000px;}
._3_c00169{margin-left:-1.011020px;}
._0_c00169{width:1.015800px;}
._4_c00169{width:2.121540px;}
._1_c00169{width:3.162619px;}
._6_c00169{width:6.264600px;}
._7_c00169{width:7.341720px;}
._2_c00169{width:43.596120px;}
._5_c00169{width:108.316213px;}
.fc2_c00169{color:rgb(48,48,48);}
.fc1_c00169{color:rgb(0,0,0);}
.fc0_c00169{color:rgb(0,0,255);}
.fs1_c00169{font-size:54.000000px;}
.fs0_c00169{font-size:59.760000px;}
.fs2_c00169{font-size:84.240000px;}
.y0_c00169{bottom:0.000000px;}
.y3_c00169{bottom:71.136000px;}
.y2_c00169{bottom:88.776000px;}
.y15_c00169{bottom:145.836000px;}
.y14_c00169{bottom:167.790000px;}
.y13_c00169{bottom:189.750000px;}
.y12_c00169{bottom:211.710000px;}
.y11_c00169{bottom:243.570000px;}
.y10_c00169{bottom:271.290000px;}
.yf_c00169{bottom:289.695000px;}
.ye_c00169{bottom:307.695000px;}
.yd_c00169{bottom:606.165000px;}
.yc_c00169{bottom:628.305000px;}
.yb_c00169{bottom:650.265000px;}
.ya_c00169{bottom:673.125000px;}
.y9_c00169{bottom:695.805000px;}
.y8_c00169{bottom:718.485000px;}
.y7_c00169{bottom:740.445000px;}
.y6_c00169{bottom:762.405000px;}
.y5_c00169{bottom:780.945000px;}
.y4_c00169{bottom:798.765000px;}
.y1_c00169{bottom:1163.520000px;}
.h3_c00169{height:35.991211px;}
.h2_c00169{height:48.029766px;}
.h4_c00169{height:52.260820px;}
.h5_c00169{height:67.704609px;}
.h0_c00169{height:1262.880000px;}
.h1_c00169{height:1263.000000px;}
.w0_c00169{width:892.980000px;}
.w1_c00169{width:893.250000px;}
.x0_c00169{left:0.000000px;}
.x1_c00169{left:84.960000px;}
.x5_c00169{left:111.996000px;}
.x3_c00169{left:442.695000px;}
.x2_c00169{left:446.475000px;}
.x4_c00169{left:722.850000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls1_c00169{letter-spacing:0.000000pt;}
.ls2_c00169{letter-spacing:0.581333pt;}
.ls0_c00169{letter-spacing:57.040640pt;}
.ws1_c00169{word-spacing:-53.120000pt;}
.ws0_c00169{word-spacing:-12.005120pt;}
.ws2_c00169{word-spacing:0.000000pt;}
._3_c00169{margin-left:-0.898684pt;}
._0_c00169{width:0.902934pt;}
._4_c00169{width:1.885813pt;}
._1_c00169{width:2.811217pt;}
._6_c00169{width:5.568534pt;}
._7_c00169{width:6.525973pt;}
._2_c00169{width:38.752106pt;}
._5_c00169{width:96.281078pt;}
.fs1_c00169{font-size:48.000000pt;}
.fs0_c00169{font-size:53.120000pt;}
.fs2_c00169{font-size:74.880000pt;}
.y0_c00169{bottom:0.000000pt;}
.y3_c00169{bottom:63.232000pt;}
.y2_c00169{bottom:78.912000pt;}
.y15_c00169{bottom:129.632000pt;}
.y14_c00169{bottom:149.146667pt;}
.y13_c00169{bottom:168.666667pt;}
.y12_c00169{bottom:188.186667pt;}
.y11_c00169{bottom:216.506667pt;}
.y10_c00169{bottom:241.146667pt;}
.yf_c00169{bottom:257.506667pt;}
.ye_c00169{bottom:273.506667pt;}
.yd_c00169{bottom:538.813333pt;}
.yc_c00169{bottom:558.493333pt;}
.yb_c00169{bottom:578.013333pt;}
.ya_c00169{bottom:598.333333pt;}
.y9_c00169{bottom:618.493333pt;}
.y8_c00169{bottom:638.653333pt;}
.y7_c00169{bottom:658.173333pt;}
.y6_c00169{bottom:677.693333pt;}
.y5_c00169{bottom:694.173333pt;}
.y4_c00169{bottom:710.013333pt;}
.y1_c00169{bottom:1034.240000pt;}
.h3_c00169{height:31.992188pt;}
.h2_c00169{height:42.693125pt;}
.h4_c00169{height:46.454062pt;}
.h5_c00169{height:60.181875pt;}
.h0_c00169{height:1122.560000pt;}
.h1_c00169{height:1122.666667pt;}
.w0_c00169{width:793.760000pt;}
.w1_c00169{width:794.000000pt;}
.x0_c00169{left:0.000000pt;}
.x1_c00169{left:75.520000pt;}
.x5_c00169{left:99.552000pt;}
.x3_c00169{left:393.506667pt;}
.x2_c00169{left:396.866667pt;}
.x4_c00169{left:642.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_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_aa8f120d4c2dd7026481cd30.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:0.981934;font-style:normal;font-weight:normal;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_71d895c2c535214499ac55b3.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.052734;font-style:normal;font-weight:normal;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_a30668df5346888c20c84fe3.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;line-height:0.690918;font-style:normal;font-weight:normal;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_a0340a8ed5f3dcb3f4762e97.woff2')format("woff");}.ff4_c00170{font-family:ff4_c00170;line-height:0.715820;font-style:normal;font-weight:normal;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_13e3a717175b8b5e2172ced2.woff2')format("woff");}.ff5_c00170{font-family:ff5_c00170;line-height:0.982910;font-style: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;}
.ls3_c00170{letter-spacing:-0.058200px;}
.ls2_c00170{letter-spacing:0.000000px;}
.ls5_c00170{letter-spacing:0.186600px;}
.ls4_c00170{letter-spacing:0.306000px;}
.ls7_c00170{letter-spacing:0.654000px;}
.ls6_c00170{letter-spacing:0.906000px;}
.ls1_c00170{letter-spacing:44.586720px;}
.ls0_c00170{letter-spacing:64.170720px;}
.sc__c00170{text-shadow:none;}
.sc0_c00170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00170{-webkit-text-stroke:0px transparent;}
.sc0_c00170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00170{word-spacing:-59.760000px;}
.ws3_c00170{word-spacing:-13.811760px;}
.ws0_c00170{word-spacing:-13.505760px;}
.ws2_c00170{word-spacing:-13.447560px;}
.ws4_c00170{word-spacing:0.000000px;}
._2_c00170{margin-left:-1.121994px;}
._0_c00170{width:1.540194px;}
._3_c00170{width:2.656810px;}
._1_c00170{width:3.939252px;}
._4_c00170{width:5.856600px;}
._5_c00170{width:7.768800px;}
._6_c00170{width:9.083400px;}
._8_c00170{width:10.591205px;}
._7_c00170{width:11.593201px;}
.fc1_c00170{color:rgb(0,0,0);}
.fc2_c00170{color:rgb(49,132,155);}
.fc0_c00170{color:rgb(0,0,255);}
.fs1_c00170{font-size:54.000000px;}
.fs0_c00170{font-size:59.760000px;}
.fs2_c00170{font-size:72.000000px;}
.y0_c00170{bottom:0.000000px;}
.y3_c00170{bottom:67.716000px;}
.y2_c00170{bottom:85.716000px;}
.y26_c00170{bottom:362.595000px;}
.y25_c00170{bottom:384.555000px;}
.y24_c00170{bottom:406.515000px;}
.y23_c00170{bottom:428.475000px;}
.y22_c00170{bottom:450.435000px;}
.y21_c00170{bottom:472.395000px;}
.y20_c00170{bottom:494.355000px;}
.y1f_c00170{bottom:516.315000px;}
.y1e_c00170{bottom:538.275000px;}
.y1d_c00170{bottom:560.265000px;}
.y1c_c00170{bottom:582.225000px;}
.y1b_c00170{bottom:604.185000px;}
.y1a_c00170{bottom:626.325000px;}
.y19_c00170{bottom:648.285000px;}
.y18_c00170{bottom:670.245000px;}
.y17_c00170{bottom:692.205000px;}
.y16_c00170{bottom:714.165000px;}
.y15_c00170{bottom:736.125000px;}
.y14_c00170{bottom:758.085000px;}
.y13_c00170{bottom:780.045000px;}
.y12_c00170{bottom:802.005000px;}
.y11_c00170{bottom:823.965000px;}
.y10_c00170{bottom:845.970000px;}
.yf_c00170{bottom:867.930000px;}
.ye_c00170{bottom:889.890000px;}
.yd_c00170{bottom:911.850000px;}
.yc_c00170{bottom:941.550000px;}
.yb_c00170{bottom:966.210000px;}
.ya_c00170{bottom:988.170000px;}
.y9_c00170{bottom:1010.130000px;}
.y8_c00170{bottom:1032.270000px;}
.y7_c00170{bottom:1054.230000px;}
.y6_c00170{bottom:1076.190000px;}
.y5_c00170{bottom:1098.150000px;}
.y4_c00170{bottom:1120.110000px;}
.y1_c00170{bottom:1163.520000px;}
.h3_c00170{height:47.223633px;}
.h2_c00170{height:48.029766px;}
.h6_c00170{height:48.088125px;}
.h4_c00170{height:52.260820px;}
.h5_c00170{height:57.867188px;}
.h0_c00170{height:1262.880000px;}
.h1_c00170{height:1263.000000px;}
.w0_c00170{width:892.980000px;}
.w1_c00170{width:893.250000px;}
.x0_c00170{left:0.000000px;}
.x1_c00170{left:84.960000px;}
.x4_c00170{left:111.816000px;}
.x5_c00170{left:138.456000px;}
.x3_c00170{left:442.695000px;}
.x2_c00170{left:446.475000px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls3_c00170{letter-spacing:-0.051733pt;}
.ls2_c00170{letter-spacing:0.000000pt;}
.ls5_c00170{letter-spacing:0.165867pt;}
.ls4_c00170{letter-spacing:0.272000pt;}
.ls7_c00170{letter-spacing:0.581333pt;}
.ls6_c00170{letter-spacing:0.805333pt;}
.ls1_c00170{letter-spacing:39.632640pt;}
.ls0_c00170{letter-spacing:57.040640pt;}
.ws1_c00170{word-spacing:-53.120000pt;}
.ws3_c00170{word-spacing:-12.277120pt;}
.ws0_c00170{word-spacing:-12.005120pt;}
.ws2_c00170{word-spacing:-11.953387pt;}
.ws4_c00170{word-spacing:0.000000pt;}
._2_c00170{margin-left:-0.997328pt;}
._0_c00170{width:1.369062pt;}
._3_c00170{width:2.361609pt;}
._1_c00170{width:3.501558pt;}
._4_c00170{width:5.205866pt;}
._5_c00170{width:6.905600pt;}
._6_c00170{width:8.074134pt;}
._8_c00170{width:9.414404pt;}
._7_c00170{width:10.305068pt;}
.fs1_c00170{font-size:48.000000pt;}
.fs0_c00170{font-size:53.120000pt;}
.fs2_c00170{font-size:64.000000pt;}
.y0_c00170{bottom:0.000000pt;}
.y3_c00170{bottom:60.192000pt;}
.y2_c00170{bottom:76.192000pt;}
.y26_c00170{bottom:322.306667pt;}
.y25_c00170{bottom:341.826667pt;}
.y24_c00170{bottom:361.346667pt;}
.y23_c00170{bottom:380.866667pt;}
.y22_c00170{bottom:400.386667pt;}
.y21_c00170{bottom:419.906667pt;}
.y20_c00170{bottom:439.426667pt;}
.y1f_c00170{bottom:458.946667pt;}
.y1e_c00170{bottom:478.466667pt;}
.y1d_c00170{bottom:498.013333pt;}
.y1c_c00170{bottom:517.533333pt;}
.y1b_c00170{bottom:537.053333pt;}
.y1a_c00170{bottom:556.733333pt;}
.y19_c00170{bottom:576.253333pt;}
.y18_c00170{bottom:595.773333pt;}
.y17_c00170{bottom:615.293333pt;}
.y16_c00170{bottom:634.813333pt;}
.y15_c00170{bottom:654.333333pt;}
.y14_c00170{bottom:673.853333pt;}
.y13_c00170{bottom:693.373333pt;}
.y12_c00170{bottom:712.893333pt;}
.y11_c00170{bottom:732.413333pt;}
.y10_c00170{bottom:751.973333pt;}
.yf_c00170{bottom:771.493333pt;}
.ye_c00170{bottom:791.013333pt;}
.yd_c00170{bottom:810.533333pt;}
.yc_c00170{bottom:836.933333pt;}
.yb_c00170{bottom:858.853333pt;}
.ya_c00170{bottom:878.373333pt;}
.y9_c00170{bottom:897.893333pt;}
.y8_c00170{bottom:917.573333pt;}
.y7_c00170{bottom:937.093333pt;}
.y6_c00170{bottom:956.613333pt;}
.y5_c00170{bottom:976.133333pt;}
.y4_c00170{bottom:995.653333pt;}
.y1_c00170{bottom:1034.240000pt;}
.h3_c00170{height:41.976562pt;}
.h2_c00170{height:42.693125pt;}
.h6_c00170{height:42.745000pt;}
.h4_c00170{height:46.454062pt;}
.h5_c00170{height:51.437500pt;}
.h0_c00170{height:1122.560000pt;}
.h1_c00170{height:1122.666667pt;}
.w0_c00170{width:793.760000pt;}
.w1_c00170{width:794.000000pt;}
.x0_c00170{left:0.000000pt;}
.x1_c00170{left:75.520000pt;}
.x4_c00170{left:99.392000pt;}
.x5_c00170{left:123.072000pt;}
.x3_c00170{left:393.506667pt;}
.x2_c00170{left:396.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_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_fe332061294456cfa7aac6f1.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00171;src:url('chunks/assets/font_d8f94f7ddbf1a6583b016e01.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00171;src:url('chunks/assets/font_5e91674bec51a8079559a01e.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;line-height:0.873535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00171{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00171{vertical-align:0.000000px;}
.ls5_c00171{letter-spacing:-18.300000px;}
.ls4_c00171{letter-spacing:0.000000px;}
.ls0_c00171{letter-spacing:0.018000px;}
.ls3_c00171{letter-spacing:0.036000px;}
.ls2_c00171{letter-spacing:0.144000px;}
.ls1_c00171{letter-spacing:0.186000px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00171{word-spacing:-48.816000px;}
.ws6_c00171{word-spacing:-2.924863px;}
.ws1_c00171{word-spacing:-2.674069px;}
.ws0_c00171{word-spacing:-1.892880px;}
.wsf_c00171{word-spacing:-1.698000px;}
.ws8_c00171{word-spacing:-0.709200px;}
.ws7_c00171{word-spacing:-0.698400px;}
.wsb_c00171{word-spacing:-0.360000px;}
.wsc_c00171{word-spacing:-0.186000px;}
.wse_c00171{word-spacing:-0.144000px;}
.ws10_c00171{word-spacing:-0.036000px;}
.wsd_c00171{word-spacing:0.000000px;}
.ws5_c00171{word-spacing:0.150816px;}
.ws9_c00171{word-spacing:0.786000px;}
.ws3_c00171{word-spacing:1.224816px;}
.wsa_c00171{word-spacing:1.452000px;}
.ws4_c00171{word-spacing:2.331864px;}
._2_c00171{margin-left:-4.823928px;}
._3_c00171{margin-left:-2.314752px;}
._4_c00171{margin-left:-1.185321px;}
._1_c00171{width:1.132141px;}
._7_c00171{width:9.313820px;}
._0_c00171{width:14.413805px;}
._8_c00171{width:15.887082px;}
._6_c00171{width:20.914793px;}
._5_c00171{width:39.373272px;}
.fc1_c00171{color:rgb(0,0,102);}
.fc0_c00171{color:rgb(255,255,255);}
.fs4_c00171{font-size:36.000000px;}
.fs3_c00171{font-size:48.180000px;}
.fs0_c00171{font-size:66.180000px;}
.fs5_c00171{font-size:144.000000px;}
.fs2_c00171{font-size:167.760000px;}
.fs1_c00171{font-size:216.000000px;}
.y0_c00171{bottom:0.000000px;}
.y3_c00171{bottom:4.500000px;}
.yb_c00171{bottom:98.265000px;}
.ya_c00171{bottom:109.065000px;}
.y9_c00171{bottom:120.765000px;}
.y8_c00171{bottom:214.545000px;}
.y7_c00171{bottom:264.960000px;}
.y6_c00171{bottom:315.345000px;}
.yc_c00171{bottom:449.152500px;}
.y5_c00171{bottom:519.660000px;}
.y4_c00171{bottom:584.460000px;}
.y2_c00171{bottom:824.565000px;}
.y1_c00171{bottom:829.065000px;}
.h2_c00171{height:20.325000px;}
.h6_c00171{height:25.839844px;}
.h5_c00171{height:34.982256px;}
.h1_c00171{height:47.502246px;}
.h7_c00171{height:100.125000px;}
.h4_c00171{height:121.806211px;}
.h3_c00171{height:156.832031px;}
.h0_c00171{height:918.000000px;}
.w1_c00171{width:192.960000px;}
.w0_c00171{width:1188.000000px;}
.x0_c00171{left:0.000000px;}
.x1_c00171{left:109.980000px;}
.x9_c00171{left:122.565000px;}
.xa_c00171{left:137.700000px;}
.x8_c00171{left:142.005000px;}
.x4_c00171{left:237.379500px;}
.x3_c00171{left:279.303000px;}
.x5_c00171{left:569.880000px;}
.x6_c00171{left:812.880000px;}
.x7_c00171{left:846.345000px;}
.xb_c00171{left:897.934500px;}
.x2_c00171{left:941.025000px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls5_c00171{letter-spacing:-16.266667pt;}
.ls4_c00171{letter-spacing:0.000000pt;}
.ls0_c00171{letter-spacing:0.016000pt;}
.ls3_c00171{letter-spacing:0.032000pt;}
.ls2_c00171{letter-spacing:0.128000pt;}
.ls1_c00171{letter-spacing:0.165333pt;}
.ws2_c00171{word-spacing:-43.392000pt;}
.ws6_c00171{word-spacing:-2.599878pt;}
.ws1_c00171{word-spacing:-2.376950pt;}
.ws0_c00171{word-spacing:-1.682560pt;}
.wsf_c00171{word-spacing:-1.509333pt;}
.ws8_c00171{word-spacing:-0.630400pt;}
.ws7_c00171{word-spacing:-0.620800pt;}
.wsb_c00171{word-spacing:-0.320000pt;}
.wsc_c00171{word-spacing:-0.165333pt;}
.wse_c00171{word-spacing:-0.128000pt;}
.ws10_c00171{word-spacing:-0.032000pt;}
.wsd_c00171{word-spacing:0.000000pt;}
.ws5_c00171{word-spacing:0.134059pt;}
.ws9_c00171{word-spacing:0.698667pt;}
.ws3_c00171{word-spacing:1.088725pt;}
.wsa_c00171{word-spacing:1.290667pt;}
.ws4_c00171{word-spacing:2.072768pt;}
._2_c00171{margin-left:-4.287936pt;}
._3_c00171{margin-left:-2.057558pt;}
._4_c00171{margin-left:-1.053619pt;}
._1_c00171{width:1.006348pt;}
._7_c00171{width:8.278951pt;}
._0_c00171{width:12.812272pt;}
._8_c00171{width:14.121851pt;}
._6_c00171{width:18.590928pt;}
._5_c00171{width:34.998464pt;}
.fs4_c00171{font-size:32.000000pt;}
.fs3_c00171{font-size:42.826667pt;}
.fs0_c00171{font-size:58.826667pt;}
.fs5_c00171{font-size:128.000000pt;}
.fs2_c00171{font-size:149.120000pt;}
.fs1_c00171{font-size:192.000000pt;}
.y0_c00171{bottom:0.000000pt;}
.y3_c00171{bottom:4.000000pt;}
.yb_c00171{bottom:87.346667pt;}
.ya_c00171{bottom:96.946667pt;}
.y9_c00171{bottom:107.346667pt;}
.y8_c00171{bottom:190.706667pt;}
.y7_c00171{bottom:235.520000pt;}
.y6_c00171{bottom:280.306667pt;}
.yc_c00171{bottom:399.246667pt;}
.y5_c00171{bottom:461.920000pt;}
.y4_c00171{bottom:519.520000pt;}
.y2_c00171{bottom:732.946667pt;}
.y1_c00171{bottom:736.946667pt;}
.h2_c00171{height:18.066667pt;}
.h6_c00171{height:22.968750pt;}
.h5_c00171{height:31.095339pt;}
.h1_c00171{height:42.224219pt;}
.h7_c00171{height:89.000000pt;}
.h4_c00171{height:108.272187pt;}
.h3_c00171{height:139.406250pt;}
.h0_c00171{height:816.000000pt;}
.w1_c00171{width:171.520000pt;}
.w0_c00171{width:1056.000000pt;}
.x0_c00171{left:0.000000pt;}
.x1_c00171{left:97.760000pt;}
.x9_c00171{left:108.946667pt;}
.xa_c00171{left:122.400000pt;}
.x8_c00171{left:126.226667pt;}
.x4_c00171{left:211.004000pt;}
.x3_c00171{left:248.269333pt;}
.x5_c00171{left:506.560000pt;}
.x6_c00171{left:722.560000pt;}
.x7_c00171{left:752.306667pt;}
.xb_c00171{left:798.164000pt;}
.x2_c00171{left:836.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_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_13db8db29e3769f74c9ab7a3.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00172;src:url('chunks/assets/font_208847ac4bb9e542fc54cddd.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00172;src:url('chunks/assets/font_55475068dbfc17ea1ea43fcb.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;line-height:0.722656;font-style:normal;font-weight:normal;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_4a22962d6684792fa77da4e6.woff2')format("woff");}.ff4_c00172{font-family:ff4_c00172;line-height:0.938965;font-style:normal;font-weight:normal;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_0ffff77d5501783b990a9e99.woff2')format("woff");}.ff5_c00172{font-family:ff5_c00172;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.ls3_c00172{letter-spacing:0.000000px;}
.ls2_c00172{letter-spacing:67.824000px;}
.ls1_c00172{letter-spacing:93.237000px;}
.ls0_c00172{letter-spacing:100.975800px;}
.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;}
}
.ws2_c00172{word-spacing:-2.674069px;}
.ws3_c00172{word-spacing:-2.007528px;}
.ws1_c00172{word-spacing:-1.892880px;}
.ws4_c00172{word-spacing:-1.684800px;}
.wsa_c00172{word-spacing:-1.598400px;}
.ws5_c00172{word-spacing:-1.550923px;}
.wsf_c00172{word-spacing:-1.321619px;}
.wsc_c00172{word-spacing:-1.057704px;}
.ws9_c00172{word-spacing:-1.033067px;}
.ws10_c00172{word-spacing:-0.936000px;}
.wsb_c00172{word-spacing:-0.864000px;}
.ws6_c00172{word-spacing:-0.823536px;}
.wsd_c00172{word-spacing:-0.793669px;}
.wse_c00172{word-spacing:-0.661110px;}
.ws0_c00172{word-spacing:-0.065796px;}
.ws11_c00172{word-spacing:0.000000px;}
.ws7_c00172{word-spacing:0.072000px;}
.ws8_c00172{word-spacing:0.589363px;}
._b_c00172{margin-left:-10.563995px;}
._d_c00172{margin-left:-6.982819px;}
._2_c00172{margin-left:-2.418708px;}
._6_c00172{margin-left:-1.152000px;}
._1_c00172{width:1.087811px;}
._c_c00172{width:4.610562px;}
._0_c00172{width:14.539787px;}
._9_c00172{width:22.767516px;}
._8_c00172{width:26.761757px;}
._7_c00172{width:27.894619px;}
._e_c00172{width:29.481756px;}
._a_c00172{width:30.533605px;}
._5_c00172{width:32.256000px;}
._4_c00172{width:33.398713px;}
._3_c00172{width:51.659496px;}
.fc3_c00172{color:rgb(55,96,146);}
.fc2_c00172{color:rgb(31,73,125);}
.fc1_c00172{color:rgb(255,255,255);}
.fc0_c00172{color:rgb(0,0,0);}
.fs0_c00172{font-size:59.760000px;}
.fs1_c00172{font-size:66.180000px;}
.fs6_c00172{font-size:66.960000px;}
.fs7_c00172{font-size:95.760000px;}
.fs3_c00172{font-size:115.140000px;}
.fs5_c00172{font-size:120.180000px;}
.fs4_c00172{font-size:144.000000px;}
.fs2_c00172{font-size:228.180000px;}
.y0_c00172{bottom:0.000000px;}
.y4_c00172{bottom:4.500000px;}
.y1_c00172{bottom:72.720000px;}
.y13_c00172{bottom:73.785000px;}
.y14_c00172{bottom:122.940000px;}
.y12_c00172{bottom:176.025000px;}
.y11_c00172{bottom:220.845000px;}
.y10_c00172{bottom:262.980000px;}
.yf_c00172{bottom:304.920000px;}
.ye_c00172{bottom:348.480000px;}
.yd_c00172{bottom:397.605000px;}
.yc_c00172{bottom:445.305000px;}
.yb_c00172{bottom:487.245000px;}
.ya_c00172{bottom:539.805000px;}
.y9_c00172{bottom:587.505000px;}
.y8_c00172{bottom:627.825000px;}
.y7_c00172{bottom:664.380000px;}
.y6_c00172{bottom:716.940000px;}
.y5_c00172{bottom:759.420000px;}
.y3_c00172{bottom:824.565000px;}
.y2_c00172{bottom:829.065000px;}
.h3_c00172{height:20.325000px;}
.h1_c00172{height:42.894141px;}
.h2_c00172{height:47.502246px;}
.h7_c00172{height:68.733984px;}
.h6_c00172{height:87.553008px;}
.h5_c00172{height:103.359375px;}
.h8_c00172{height:104.554688px;}
.h4_c00172{height:165.675615px;}
.h0_c00172{height:918.000000px;}
.w1_c00172{width:192.960000px;}
.w0_c00172{width:1188.000000px;}
.x0_c00172{left:0.000000px;}
.x7_c00172{left:91.980000px;}
.x2_c00172{left:109.980000px;}
.x4_c00172{left:118.980000px;}
.x5_c00172{left:163.980000px;}
.x8_c00172{left:194.940000px;}
.x6_c00172{left:217.980000px;}
.x1_c00172{left:451.980000px;}
.x3_c00172{left:941.025000px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls3_c00172{letter-spacing:0.000000pt;}
.ls2_c00172{letter-spacing:60.288000pt;}
.ls1_c00172{letter-spacing:82.877333pt;}
.ls0_c00172{letter-spacing:89.756267pt;}
.ws2_c00172{word-spacing:-2.376950pt;}
.ws3_c00172{word-spacing:-1.784469pt;}
.ws1_c00172{word-spacing:-1.682560pt;}
.ws4_c00172{word-spacing:-1.497600pt;}
.wsa_c00172{word-spacing:-1.420800pt;}
.ws5_c00172{word-spacing:-1.378598pt;}
.wsf_c00172{word-spacing:-1.174773pt;}
.wsc_c00172{word-spacing:-0.940181pt;}
.ws9_c00172{word-spacing:-0.918282pt;}
.ws10_c00172{word-spacing:-0.832000pt;}
.wsb_c00172{word-spacing:-0.768000pt;}
.ws6_c00172{word-spacing:-0.732032pt;}
.wsd_c00172{word-spacing:-0.705483pt;}
.wse_c00172{word-spacing:-0.587653pt;}
.ws0_c00172{word-spacing:-0.058485pt;}
.ws11_c00172{word-spacing:0.000000pt;}
.ws7_c00172{word-spacing:0.064000pt;}
.ws8_c00172{word-spacing:0.523878pt;}
._b_c00172{margin-left:-9.390218pt;}
._d_c00172{margin-left:-6.206950pt;}
._2_c00172{margin-left:-2.149963pt;}
._6_c00172{margin-left:-1.024000pt;}
._1_c00172{width:0.966943pt;}
._c_c00172{width:4.098277pt;}
._0_c00172{width:12.924255pt;}
._9_c00172{width:20.237792pt;}
._8_c00172{width:23.788229pt;}
._7_c00172{width:24.795217pt;}
._e_c00172{width:26.206006pt;}
._a_c00172{width:27.140982pt;}
._5_c00172{width:28.672000pt;}
._4_c00172{width:29.687745pt;}
._3_c00172{width:45.919552pt;}
.fs0_c00172{font-size:53.120000pt;}
.fs1_c00172{font-size:58.826667pt;}
.fs6_c00172{font-size:59.520000pt;}
.fs7_c00172{font-size:85.120000pt;}
.fs3_c00172{font-size:102.346667pt;}
.fs5_c00172{font-size:106.826667pt;}
.fs4_c00172{font-size:128.000000pt;}
.fs2_c00172{font-size:202.826667pt;}
.y0_c00172{bottom:0.000000pt;}
.y4_c00172{bottom:4.000000pt;}
.y1_c00172{bottom:64.640000pt;}
.y13_c00172{bottom:65.586667pt;}
.y14_c00172{bottom:109.280000pt;}
.y12_c00172{bottom:156.466667pt;}
.y11_c00172{bottom:196.306667pt;}
.y10_c00172{bottom:233.760000pt;}
.yf_c00172{bottom:271.040000pt;}
.ye_c00172{bottom:309.760000pt;}
.yd_c00172{bottom:353.426667pt;}
.yc_c00172{bottom:395.826667pt;}
.yb_c00172{bottom:433.106667pt;}
.ya_c00172{bottom:479.826667pt;}
.y9_c00172{bottom:522.226667pt;}
.y8_c00172{bottom:558.066667pt;}
.y7_c00172{bottom:590.560000pt;}
.y6_c00172{bottom:637.280000pt;}
.y5_c00172{bottom:675.040000pt;}
.y3_c00172{bottom:732.946667pt;}
.y2_c00172{bottom:736.946667pt;}
.h3_c00172{height:18.066667pt;}
.h1_c00172{height:38.128125pt;}
.h2_c00172{height:42.224219pt;}
.h7_c00172{height:61.096875pt;}
.h6_c00172{height:77.824896pt;}
.h5_c00172{height:91.875000pt;}
.h8_c00172{height:92.937500pt;}
.h4_c00172{height:147.267214pt;}
.h0_c00172{height:816.000000pt;}
.w1_c00172{width:171.520000pt;}
.w0_c00172{width:1056.000000pt;}
.x0_c00172{left:0.000000pt;}
.x7_c00172{left:81.760000pt;}
.x2_c00172{left:97.760000pt;}
.x4_c00172{left:105.760000pt;}
.x5_c00172{left:145.760000pt;}
.x8_c00172{left:173.280000pt;}
.x6_c00172{left:193.760000pt;}
.x1_c00172{left:401.760000pt;}
.x3_c00172{left:836.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_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_f6e1cc4239e8e6da8258bb1a.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00173;src:url('chunks/assets/font_a9d23559d6519f03523ee47e.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00173{letter-spacing:0.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;}
}
.ws2_c00173{word-spacing:-2.674069px;}
.ws3_c00173{word-spacing:-2.030802px;}
.ws1_c00173{word-spacing:-1.892880px;}
.ws4_c00173{word-spacing:-1.065600px;}
.ws0_c00173{word-spacing:-0.065796px;}
.ws5_c00173{word-spacing:0.000000px;}
._5_c00173{margin-left:-12.823716px;}
._a_c00173{margin-left:-11.817353px;}
._9_c00173{margin-left:-7.545600px;}
._2_c00173{margin-left:-3.308382px;}
._3_c00173{margin-left:-1.825896px;}
._1_c00173{width:1.087811px;}
._8_c00173{width:4.619563px;}
._4_c00173{width:6.548310px;}
._0_c00173{width:14.539787px;}
._7_c00173{width:33.116382px;}
._6_c00173{width:51.568908px;}
.fc2_c00173{color:rgb(31,73,125);}
.fc1_c00173{color:rgb(255,255,255);}
.fc0_c00173{color:rgb(0,0,0);}
.fs0_c00173{font-size:59.760000px;}
.fs1_c00173{font-size:66.180000px;}
.fs3_c00173{font-size:144.000000px;}
.fs2_c00173{font-size:228.180000px;}
.y0_c00173{bottom:0.000000px;}
.y4_c00173{bottom:4.500000px;}
.y1_c00173{bottom:72.720000px;}
.y6_c00173{bottom:73.785000px;}
.y7_c00173{bottom:118.245000px;}
.y5_c00173{bottom:745.005000px;}
.y3_c00173{bottom:824.565000px;}
.y2_c00173{bottom:829.065000px;}
.h3_c00173{height:20.325000px;}
.h1_c00173{height:42.894141px;}
.h2_c00173{height:47.502246px;}
.h5_c00173{height:104.554688px;}
.h4_c00173{height:165.675615px;}
.h0_c00173{height:918.000000px;}
.w1_c00173{width:192.960000px;}
.w0_c00173{width:1188.000000px;}
.x0_c00173{left:0.000000px;}
.x6_c00173{left:86.745000px;}
.x5_c00173{left:91.980000px;}
.x2_c00173{left:109.980000px;}
.x4_c00173{left:118.980000px;}
.x1_c00173{left:451.980000px;}
.x3_c00173{left:941.025000px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls0_c00173{letter-spacing:0.000000pt;}
.ws2_c00173{word-spacing:-2.376950pt;}
.ws3_c00173{word-spacing:-1.805157pt;}
.ws1_c00173{word-spacing:-1.682560pt;}
.ws4_c00173{word-spacing:-0.947200pt;}
.ws0_c00173{word-spacing:-0.058485pt;}
.ws5_c00173{word-spacing:0.000000pt;}
._5_c00173{margin-left:-11.398859pt;}
._a_c00173{margin-left:-10.504314pt;}
._9_c00173{margin-left:-6.707200pt;}
._2_c00173{margin-left:-2.940784pt;}
._3_c00173{margin-left:-1.623019pt;}
._1_c00173{width:0.966943pt;}
._8_c00173{width:4.106278pt;}
._4_c00173{width:5.820720pt;}
._0_c00173{width:12.924255pt;}
._7_c00173{width:29.436784pt;}
._6_c00173{width:45.839029pt;}
.fs0_c00173{font-size:53.120000pt;}
.fs1_c00173{font-size:58.826667pt;}
.fs3_c00173{font-size:128.000000pt;}
.fs2_c00173{font-size:202.826667pt;}
.y0_c00173{bottom:0.000000pt;}
.y4_c00173{bottom:4.000000pt;}
.y1_c00173{bottom:64.640000pt;}
.y6_c00173{bottom:65.586667pt;}
.y7_c00173{bottom:105.106667pt;}
.y5_c00173{bottom:662.226667pt;}
.y3_c00173{bottom:732.946667pt;}
.y2_c00173{bottom:736.946667pt;}
.h3_c00173{height:18.066667pt;}
.h1_c00173{height:38.128125pt;}
.h2_c00173{height:42.224219pt;}
.h5_c00173{height:92.937500pt;}
.h4_c00173{height:147.267214pt;}
.h0_c00173{height:816.000000pt;}
.w1_c00173{width:171.520000pt;}
.w0_c00173{width:1056.000000pt;}
.x0_c00173{left:0.000000pt;}
.x6_c00173{left:77.106667pt;}
.x5_c00173{left:81.760000pt;}
.x2_c00173{left:97.760000pt;}
.x4_c00173{left:105.760000pt;}
.x1_c00173{left:401.760000pt;}
.x3_c00173{left:836.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_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_ef46a9b3c62fc505ccdd04f2.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00174;src:url('chunks/assets/font_5a3c39af43ebae5316ab3cfe.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00174;src:url('chunks/assets/font_55475068dbfc17ea1ea43fcb.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:0.722656;font-style:normal;font-weight:normal;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_4a22962d6684792fa77da4e6.woff2')format("woff");}.ff4_c00174{font-family:ff4_c00174;line-height:0.938965;font-style: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;}
.ls3_c00174{letter-spacing:0.000000px;}
.ls1_c00174{letter-spacing:93.237000px;}
.ls0_c00174{letter-spacing:100.975800px;}
.ls2_c00174{letter-spacing:105.904800px;}
.sc__c00174{text-shadow:none;}
.sc0_c00174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00174{-webkit-text-stroke:0px transparent;}
.sc0_c00174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00174{word-spacing:-2.674069px;}
.ws3_c00174{word-spacing:-2.007528px;}
.ws1_c00174{word-spacing:-1.892880px;}
.wsc_c00174{word-spacing:-1.610292px;}
.ws5_c00174{word-spacing:-1.502250px;}
.wse_c00174{word-spacing:-1.334238px;}
.ws7_c00174{word-spacing:-1.261650px;}
.ws9_c00174{word-spacing:-1.057704px;}
.wsf_c00174{word-spacing:-1.045686px;}
.wsd_c00174{word-spacing:-0.913128px;}
.ws6_c00174{word-spacing:-0.841020px;}
.ws8_c00174{word-spacing:-0.829122px;}
.ws12_c00174{word-spacing:-0.803736px;}
.ws4_c00174{word-spacing:-0.792000px;}
.ws13_c00174{word-spacing:-0.504000px;}
.ws10_c00174{word-spacing:-0.246936px;}
.wsb_c00174{word-spacing:-0.072000px;}
.ws0_c00174{word-spacing:-0.065796px;}
.ws14_c00174{word-spacing:0.000000px;}
.wsa_c00174{word-spacing:0.096144px;}
.ws11_c00174{word-spacing:0.859284px;}
._10_c00174{margin-left:-12.225600px;}
._b_c00174{margin-left:-10.406522px;}
._e_c00174{margin-left:-9.029784px;}
._8_c00174{margin-left:-6.994837px;}
._a_c00174{margin-left:-3.790213px;}
._2_c00174{margin-left:-2.418708px;}
._4_c00174{margin-left:-1.411200px;}
._1_c00174{width:1.087811px;}
._7_c00174{width:5.653915px;}
._0_c00174{width:14.539787px;}
._c_c00174{width:25.694484px;}
._6_c00174{width:26.944236px;}
._9_c00174{width:28.292353px;}
._d_c00174{width:29.321881px;}
._f_c00174{width:30.945600px;}
._5_c00174{width:33.004800px;}
._3_c00174{width:51.659496px;}
.fc4_c00174{color:rgb(255,0,0);}
.fc3_c00174{color:rgb(55,96,146);}
.fc2_c00174{color:rgb(31,73,125);}
.fc1_c00174{color:rgb(255,255,255);}
.fc0_c00174{color:rgb(0,0,0);}
.fs0_c00174{font-size:59.760000px;}
.fs1_c00174{font-size:66.180000px;}
.fs6_c00174{font-size:105.840000px;}
.fs3_c00174{font-size:115.140000px;}
.fs5_c00174{font-size:120.180000px;}
.fs7_c00174{font-size:131.760000px;}
.fs4_c00174{font-size:144.000000px;}
.fs2_c00174{font-size:228.180000px;}
.y0_c00174{bottom:0.000000px;}
.y4_c00174{bottom:4.500000px;}
.y1_c00174{bottom:72.720000px;}
.y13_c00174{bottom:73.785000px;}
.y14_c00174{bottom:122.940000px;}
.y12_c00174{bottom:174.240000px;}
.y11_c00174{bottom:219.045000px;}
.y10_c00174{bottom:261.180000px;}
.yf_c00174{bottom:303.105000px;}
.ye_c00174{bottom:345.045000px;}
.yd_c00174{bottom:397.605000px;}
.yc_c00174{bottom:445.305000px;}
.yb_c00174{bottom:487.245000px;}
.ya_c00174{bottom:529.380000px;}
.y9_c00174{bottom:571.305000px;}
.y8_c00174{bottom:613.245000px;}
.y7_c00174{bottom:655.380000px;}
.y6_c00174{bottom:707.940000px;}
.y5_c00174{bottom:750.420000px;}
.y3_c00174{bottom:824.565000px;}
.y2_c00174{bottom:829.065000px;}
.h3_c00174{height:20.325000px;}
.h1_c00174{height:42.894141px;}
.h2_c00174{height:47.502246px;}
.h6_c00174{height:87.553008px;}
.h7_c00174{height:94.573828px;}
.h5_c00174{height:103.359375px;}
.h8_c00174{height:104.554688px;}
.h4_c00174{height:165.675615px;}
.h0_c00174{height:918.000000px;}
.w1_c00174{width:192.960000px;}
.w0_c00174{width:1188.000000px;}
.x0_c00174{left:0.000000px;}
.x6_c00174{left:91.980000px;}
.x2_c00174{left:109.980000px;}
.x4_c00174{left:118.980000px;}
.x7_c00174{left:149.565000px;}
.x5_c00174{left:172.980000px;}
.x1_c00174{left:451.980000px;}
.x3_c00174{left:941.025000px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls3_c00174{letter-spacing:0.000000pt;}
.ls1_c00174{letter-spacing:82.877333pt;}
.ls0_c00174{letter-spacing:89.756267pt;}
.ls2_c00174{letter-spacing:94.137600pt;}
.ws2_c00174{word-spacing:-2.376950pt;}
.ws3_c00174{word-spacing:-1.784469pt;}
.ws1_c00174{word-spacing:-1.682560pt;}
.wsc_c00174{word-spacing:-1.431371pt;}
.ws5_c00174{word-spacing:-1.335333pt;}
.wse_c00174{word-spacing:-1.185990pt;}
.ws7_c00174{word-spacing:-1.121466pt;}
.ws9_c00174{word-spacing:-0.940181pt;}
.wsf_c00174{word-spacing:-0.929499pt;}
.wsd_c00174{word-spacing:-0.811669pt;}
.ws6_c00174{word-spacing:-0.747573pt;}
.ws8_c00174{word-spacing:-0.736997pt;}
.ws12_c00174{word-spacing:-0.714432pt;}
.ws4_c00174{word-spacing:-0.704000pt;}
.ws13_c00174{word-spacing:-0.448000pt;}
.ws10_c00174{word-spacing:-0.219499pt;}
.wsb_c00174{word-spacing:-0.064000pt;}
.ws0_c00174{word-spacing:-0.058485pt;}
.ws14_c00174{word-spacing:0.000000pt;}
.wsa_c00174{word-spacing:0.085461pt;}
.ws11_c00174{word-spacing:0.763808pt;}
._10_c00174{margin-left:-10.867200pt;}
._b_c00174{margin-left:-9.250241pt;}
._e_c00174{margin-left:-8.026475pt;}
._8_c00174{margin-left:-6.217632pt;}
._a_c00174{margin-left:-3.369079pt;}
._2_c00174{margin-left:-2.149963pt;}
._4_c00174{margin-left:-1.254400pt;}
._1_c00174{width:0.966943pt;}
._7_c00174{width:5.025702pt;}
._0_c00174{width:12.924255pt;}
._c_c00174{width:22.839541pt;}
._6_c00174{width:23.950432pt;}
._9_c00174{width:25.148758pt;}
._d_c00174{width:26.063895pt;}
._f_c00174{width:27.507200pt;}
._5_c00174{width:29.337600pt;}
._3_c00174{width:45.919552pt;}
.fs0_c00174{font-size:53.120000pt;}
.fs1_c00174{font-size:58.826667pt;}
.fs6_c00174{font-size:94.080000pt;}
.fs3_c00174{font-size:102.346667pt;}
.fs5_c00174{font-size:106.826667pt;}
.fs7_c00174{font-size:117.120000pt;}
.fs4_c00174{font-size:128.000000pt;}
.fs2_c00174{font-size:202.826667pt;}
.y0_c00174{bottom:0.000000pt;}
.y4_c00174{bottom:4.000000pt;}
.y1_c00174{bottom:64.640000pt;}
.y13_c00174{bottom:65.586667pt;}
.y14_c00174{bottom:109.280000pt;}
.y12_c00174{bottom:154.880000pt;}
.y11_c00174{bottom:194.706667pt;}
.y10_c00174{bottom:232.160000pt;}
.yf_c00174{bottom:269.426667pt;}
.ye_c00174{bottom:306.706667pt;}
.yd_c00174{bottom:353.426667pt;}
.yc_c00174{bottom:395.826667pt;}
.yb_c00174{bottom:433.106667pt;}
.ya_c00174{bottom:470.560000pt;}
.y9_c00174{bottom:507.826667pt;}
.y8_c00174{bottom:545.106667pt;}
.y7_c00174{bottom:582.560000pt;}
.y6_c00174{bottom:629.280000pt;}
.y5_c00174{bottom:667.040000pt;}
.y3_c00174{bottom:732.946667pt;}
.y2_c00174{bottom:736.946667pt;}
.h3_c00174{height:18.066667pt;}
.h1_c00174{height:38.128125pt;}
.h2_c00174{height:42.224219pt;}
.h6_c00174{height:77.824896pt;}
.h7_c00174{height:84.065625pt;}
.h5_c00174{height:91.875000pt;}
.h8_c00174{height:92.937500pt;}
.h4_c00174{height:147.267214pt;}
.h0_c00174{height:816.000000pt;}
.w1_c00174{width:171.520000pt;}
.w0_c00174{width:1056.000000pt;}
.x0_c00174{left:0.000000pt;}
.x6_c00174{left:81.760000pt;}
.x2_c00174{left:97.760000pt;}
.x4_c00174{left:105.760000pt;}
.x7_c00174{left:132.946667pt;}
.x5_c00174{left:153.760000pt;}
.x1_c00174{left:401.760000pt;}
.x3_c00174{left:836.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_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_8a575c926ecae39f5cd4d375.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00175;src:url('chunks/assets/font_90939882b25f37feb269cc3a.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00175;src:url('chunks/assets/font_55475068dbfc17ea1ea43fcb.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:0.722656;font-style:normal;font-weight:normal;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_4a22962d6684792fa77da4e6.woff2')format("woff");}.ff4_c00175{font-family:ff4_c00175;line-height:0.938965;font-style: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;}
.ls1_c00175{letter-spacing:93.237000px;}
.ls0_c00175{letter-spacing:100.975800px;}
.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:-2.674069px;}
.ws1_c00175{word-spacing:-1.892880px;}
.wsd_c00175{word-spacing:-1.584000px;}
.ws8_c00175{word-spacing:-1.540800px;}
.ws7_c00175{word-spacing:-1.442280px;}
.ws6_c00175{word-spacing:-1.345655px;}
.wsc_c00175{word-spacing:-0.841621px;}
.ws3_c00175{word-spacing:-0.524814px;}
.ws4_c00175{word-spacing:-0.518400px;}
.wsb_c00175{word-spacing:-0.444426px;}
.ws5_c00175{word-spacing:-0.263915px;}
.ws9_c00175{word-spacing:-0.252498px;}
.ws0_c00175{word-spacing:-0.065796px;}
.wse_c00175{word-spacing:0.000000px;}
.wsa_c00175{word-spacing:0.096144px;}
._4_c00175{margin-left:-12.755490px;}
._b_c00175{margin-left:-8.835325px;}
._5_c00175{margin-left:-6.708492px;}
._2_c00175{margin-left:-3.103248px;}
._6_c00175{margin-left:-1.939302px;}
._1_c00175{width:1.087811px;}
._3_c00175{width:5.750364px;}
._0_c00175{width:14.539787px;}
._8_c00175{width:26.972435px;}
._7_c00175{width:28.427898px;}
._9_c00175{width:29.545249px;}
._a_c00175{width:32.184000px;}
._c_c00175{width:33.549090px;}
.fc3_c00175{color:rgb(55,96,146);}
.fc2_c00175{color:rgb(31,73,125);}
.fc1_c00175{color:rgb(255,255,255);}
.fc0_c00175{color:rgb(0,0,0);}
.fs0_c00175{font-size:59.760000px;}
.fs1_c00175{font-size:66.180000px;}
.fs3_c00175{font-size:115.140000px;}
.fs5_c00175{font-size:120.180000px;}
.fs4_c00175{font-size:144.000000px;}
.fs2_c00175{font-size:228.180000px;}
.y0_c00175{bottom:0.000000px;}
.y4_c00175{bottom:4.500000px;}
.y1_c00175{bottom:72.720000px;}
.y12_c00175{bottom:73.785000px;}
.y13_c00175{bottom:122.940000px;}
.y11_c00175{bottom:198.720000px;}
.y10_c00175{bottom:234.720000px;}
.yf_c00175{bottom:279.720000px;}
.ye_c00175{bottom:324.720000px;}
.yd_c00175{bottom:369.720000px;}
.yc_c00175{bottom:416.325000px;}
.yb_c00175{bottom:466.920000px;}
.ya_c00175{bottom:513.525000px;}
.y9_c00175{bottom:564.105000px;}
.y8_c00175{bottom:610.740000px;}
.y7_c00175{bottom:661.305000px;}
.y6_c00175{bottom:707.940000px;}
.y5_c00175{bottom:750.420000px;}
.y3_c00175{bottom:824.565000px;}
.y2_c00175{bottom:829.065000px;}
.h3_c00175{height:20.325000px;}
.h1_c00175{height:42.894141px;}
.h2_c00175{height:47.502246px;}
.h7_c00175{height:86.262012px;}
.h6_c00175{height:87.553008px;}
.h5_c00175{height:103.359375px;}
.h8_c00175{height:104.554688px;}
.h4_c00175{height:165.675615px;}
.h0_c00175{height:918.000000px;}
.w1_c00175{width:192.960000px;}
.w0_c00175{width:1188.000000px;}
.x0_c00175{left:0.000000px;}
.x7_c00175{left:91.980000px;}
.x2_c00175{left:109.980000px;}
.x4_c00175{left:118.980000px;}
.x8_c00175{left:156.240000px;}
.x5_c00175{left:163.980000px;}
.x6_c00175{left:197.805000px;}
.x1_c00175{left:451.980000px;}
.x3_c00175{left:941.025000px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls2_c00175{letter-spacing:0.000000pt;}
.ls1_c00175{letter-spacing:82.877333pt;}
.ls0_c00175{letter-spacing:89.756267pt;}
.ws2_c00175{word-spacing:-2.376950pt;}
.ws1_c00175{word-spacing:-1.682560pt;}
.wsd_c00175{word-spacing:-1.408000pt;}
.ws8_c00175{word-spacing:-1.369600pt;}
.ws7_c00175{word-spacing:-1.282027pt;}
.ws6_c00175{word-spacing:-1.196138pt;}
.wsc_c00175{word-spacing:-0.748107pt;}
.ws3_c00175{word-spacing:-0.466501pt;}
.ws4_c00175{word-spacing:-0.460800pt;}
.wsb_c00175{word-spacing:-0.395045pt;}
.ws5_c00175{word-spacing:-0.234591pt;}
.ws9_c00175{word-spacing:-0.224443pt;}
.ws0_c00175{word-spacing:-0.058485pt;}
.wse_c00175{word-spacing:0.000000pt;}
.wsa_c00175{word-spacing:0.085461pt;}
._4_c00175{margin-left:-11.338213pt;}
._b_c00175{margin-left:-7.853622pt;}
._5_c00175{margin-left:-5.963104pt;}
._2_c00175{margin-left:-2.758443pt;}
._6_c00175{margin-left:-1.723824pt;}
._1_c00175{width:0.966943pt;}
._3_c00175{width:5.111435pt;}
._0_c00175{width:12.924255pt;}
._8_c00175{width:23.975498pt;}
._7_c00175{width:25.269243pt;}
._9_c00175{width:26.262443pt;}
._a_c00175{width:28.608000pt;}
._c_c00175{width:29.821413pt;}
.fs0_c00175{font-size:53.120000pt;}
.fs1_c00175{font-size:58.826667pt;}
.fs3_c00175{font-size:102.346667pt;}
.fs5_c00175{font-size:106.826667pt;}
.fs4_c00175{font-size:128.000000pt;}
.fs2_c00175{font-size:202.826667pt;}
.y0_c00175{bottom:0.000000pt;}
.y4_c00175{bottom:4.000000pt;}
.y1_c00175{bottom:64.640000pt;}
.y12_c00175{bottom:65.586667pt;}
.y13_c00175{bottom:109.280000pt;}
.y11_c00175{bottom:176.640000pt;}
.y10_c00175{bottom:208.640000pt;}
.yf_c00175{bottom:248.640000pt;}
.ye_c00175{bottom:288.640000pt;}
.yd_c00175{bottom:328.640000pt;}
.yc_c00175{bottom:370.066667pt;}
.yb_c00175{bottom:415.040000pt;}
.ya_c00175{bottom:456.466667pt;}
.y9_c00175{bottom:501.426667pt;}
.y8_c00175{bottom:542.880000pt;}
.y7_c00175{bottom:587.826667pt;}
.y6_c00175{bottom:629.280000pt;}
.y5_c00175{bottom:667.040000pt;}
.y3_c00175{bottom:732.946667pt;}
.y2_c00175{bottom:736.946667pt;}
.h3_c00175{height:18.066667pt;}
.h1_c00175{height:38.128125pt;}
.h2_c00175{height:42.224219pt;}
.h7_c00175{height:76.677344pt;}
.h6_c00175{height:77.824896pt;}
.h5_c00175{height:91.875000pt;}
.h8_c00175{height:92.937500pt;}
.h4_c00175{height:147.267214pt;}
.h0_c00175{height:816.000000pt;}
.w1_c00175{width:171.520000pt;}
.w0_c00175{width:1056.000000pt;}
.x0_c00175{left:0.000000pt;}
.x7_c00175{left:81.760000pt;}
.x2_c00175{left:97.760000pt;}
.x4_c00175{left:105.760000pt;}
.x8_c00175{left:138.880000pt;}
.x5_c00175{left:145.760000pt;}
.x6_c00175{left:175.826667pt;}
.x1_c00175{left:401.760000pt;}
.x3_c00175{left:836.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_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_5d11931eda5f3fba7f703517.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00176;src:url('chunks/assets/font_17a4a39b3bf405e277dc081c.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00176;src:url('chunks/assets/font_55475068dbfc17ea1ea43fcb.woff2')format("woff");}.ff3_c00176{font-family:ff3_c00176;line-height:0.722656;font-style:normal;font-weight:normal;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_4a22962d6684792fa77da4e6.woff2')format("woff");}.ff4_c00176{font-family:ff4_c00176;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00176;src:url('chunks/assets/font_0ffff77d5501783b990a9e99.woff2')format("woff");}.ff5_c00176{font-family:ff5_c00176;line-height:0.682617;font-style: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;}
.ls3_c00176{letter-spacing:0.000000px;}
.ls2_c00176{letter-spacing:67.824000px;}
.ls1_c00176{letter-spacing:93.237000px;}
.ls0_c00176{letter-spacing:100.975800px;}
.sc__c00176{text-shadow:none;}
.sc0_c00176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00176{-webkit-text-stroke:0px transparent;}
.sc0_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00176{word-spacing:-27.160680px;}
.ws2_c00176{word-spacing:-2.674069px;}
.ws1_c00176{word-spacing:-1.892880px;}
.ws12_c00176{word-spacing:-1.584000px;}
.ws3_c00176{word-spacing:-1.505988px;}
.ws5_c00176{word-spacing:-1.334238px;}
.ws11_c00176{word-spacing:-1.117674px;}
.wsc_c00176{word-spacing:-1.093638px;}
.ws10_c00176{word-spacing:-1.069121px;}
.wsd_c00176{word-spacing:-1.033067px;}
.wse_c00176{word-spacing:-0.925025px;}
.ws6_c00176{word-spacing:-0.745116px;}
.ws8_c00176{word-spacing:-0.733098px;}
.ws7_c00176{word-spacing:-0.720000px;}
.ws9_c00176{word-spacing:-0.669726px;}
.wsf_c00176{word-spacing:-0.517135px;}
.ws4_c00176{word-spacing:-0.489600px;}
.wsb_c00176{word-spacing:-0.316008px;}
.ws0_c00176{word-spacing:-0.065796px;}
.ws13_c00176{word-spacing:0.000000px;}
._2_c00176{margin-left:-12.846762px;}
._8_c00176{margin-left:-10.414270px;}
._d_c00176{margin-left:-8.439061px;}
._b_c00176{margin-left:-6.800133px;}
._5_c00176{margin-left:-4.669553px;}
._3_c00176{margin-left:-2.577978px;}
._7_c00176{margin-left:-1.051901px;}
._1_c00176{width:1.087811px;}
._e_c00176{width:4.865044px;}
._0_c00176{width:14.539787px;}
._c_c00176{width:22.589976px;}
._6_c00176{width:27.840257px;}
._a_c00176{width:29.168118px;}
._9_c00176{width:32.890301px;}
._4_c00176{width:51.682085px;}
.fc4_c00176{color:rgb(255,0,0);}
.fc3_c00176{color:rgb(55,96,146);}
.fc2_c00176{color:rgb(31,73,125);}
.fc1_c00176{color:rgb(255,255,255);}
.fc0_c00176{color:rgb(0,0,0);}
.fs0_c00176{font-size:59.760000px;}
.fs1_c00176{font-size:66.180000px;}
.fs6_c00176{font-size:66.960000px;}
.fs7_c00176{font-size:95.760000px;}
.fs3_c00176{font-size:115.140000px;}
.fs5_c00176{font-size:120.180000px;}
.fs4_c00176{font-size:144.000000px;}
.fs2_c00176{font-size:228.180000px;}
.y0_c00176{bottom:0.000000px;}
.y4_c00176{bottom:4.500000px;}
.y1_c00176{bottom:72.720000px;}
.y12_c00176{bottom:73.785000px;}
.y13_c00176{bottom:122.940000px;}
.y11_c00176{bottom:193.305000px;}
.y10_c00176{bottom:238.305000px;}
.yf_c00176{bottom:283.305000px;}
.ye_c00176{bottom:328.305000px;}
.yd_c00176{bottom:373.305000px;}
.yc_c00176{bottom:418.305000px;}
.yb_c00176{bottom:461.700000px;}
.ya_c00176{bottom:501.105000px;}
.y9_c00176{bottom:556.740000px;}
.y8_c00176{bottom:607.305000px;}
.y7_c00176{bottom:652.305000px;}
.y6_c00176{bottom:707.940000px;}
.y5_c00176{bottom:750.420000px;}
.y3_c00176{bottom:824.565000px;}
.y2_c00176{bottom:829.065000px;}
.h3_c00176{height:20.325000px;}
.h1_c00176{height:42.894141px;}
.h2_c00176{height:47.502246px;}
.h7_c00176{height:68.733984px;}
.h6_c00176{height:87.553008px;}
.h5_c00176{height:103.359375px;}
.h8_c00176{height:104.554688px;}
.h4_c00176{height:165.675615px;}
.h0_c00176{height:918.000000px;}
.w1_c00176{width:192.960000px;}
.w0_c00176{width:1188.000000px;}
.x0_c00176{left:0.000000px;}
.x7_c00176{left:91.980000px;}
.x2_c00176{left:109.980000px;}
.x4_c00176{left:118.980000px;}
.x5_c00176{left:163.980000px;}
.x8_c00176{left:192.765000px;}
.x6_c00176{left:217.980000px;}
.x1_c00176{left:451.980000px;}
.x3_c00176{left:941.025000px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls3_c00176{letter-spacing:0.000000pt;}
.ls2_c00176{letter-spacing:60.288000pt;}
.ls1_c00176{letter-spacing:82.877333pt;}
.ls0_c00176{letter-spacing:89.756267pt;}
.wsa_c00176{word-spacing:-24.142827pt;}
.ws2_c00176{word-spacing:-2.376950pt;}
.ws1_c00176{word-spacing:-1.682560pt;}
.ws12_c00176{word-spacing:-1.408000pt;}
.ws3_c00176{word-spacing:-1.338656pt;}
.ws5_c00176{word-spacing:-1.185990pt;}
.ws11_c00176{word-spacing:-0.993488pt;}
.wsc_c00176{word-spacing:-0.972123pt;}
.ws10_c00176{word-spacing:-0.950330pt;}
.wsd_c00176{word-spacing:-0.918282pt;}
.wse_c00176{word-spacing:-0.822245pt;}
.ws6_c00176{word-spacing:-0.662325pt;}
.ws8_c00176{word-spacing:-0.651643pt;}
.ws7_c00176{word-spacing:-0.640000pt;}
.ws9_c00176{word-spacing:-0.595312pt;}
.wsf_c00176{word-spacing:-0.459675pt;}
.ws4_c00176{word-spacing:-0.435200pt;}
.wsb_c00176{word-spacing:-0.280896pt;}
.ws0_c00176{word-spacing:-0.058485pt;}
.ws13_c00176{word-spacing:0.000000pt;}
._2_c00176{margin-left:-11.419344pt;}
._8_c00176{margin-left:-9.257129pt;}
._d_c00176{margin-left:-7.501387pt;}
._b_c00176{margin-left:-6.044562pt;}
._5_c00176{margin-left:-4.150714pt;}
._3_c00176{margin-left:-2.291536pt;}
._7_c00176{margin-left:-0.935024pt;}
._1_c00176{width:0.966943pt;}
._e_c00176{width:4.324484pt;}
._0_c00176{width:12.924255pt;}
._c_c00176{width:20.079978pt;}
._6_c00176{width:24.746895pt;}
._a_c00176{width:25.927216pt;}
._9_c00176{width:29.235824pt;}
._4_c00176{width:45.939632pt;}
.fs0_c00176{font-size:53.120000pt;}
.fs1_c00176{font-size:58.826667pt;}
.fs6_c00176{font-size:59.520000pt;}
.fs7_c00176{font-size:85.120000pt;}
.fs3_c00176{font-size:102.346667pt;}
.fs5_c00176{font-size:106.826667pt;}
.fs4_c00176{font-size:128.000000pt;}
.fs2_c00176{font-size:202.826667pt;}
.y0_c00176{bottom:0.000000pt;}
.y4_c00176{bottom:4.000000pt;}
.y1_c00176{bottom:64.640000pt;}
.y12_c00176{bottom:65.586667pt;}
.y13_c00176{bottom:109.280000pt;}
.y11_c00176{bottom:171.826667pt;}
.y10_c00176{bottom:211.826667pt;}
.yf_c00176{bottom:251.826667pt;}
.ye_c00176{bottom:291.826667pt;}
.yd_c00176{bottom:331.826667pt;}
.yc_c00176{bottom:371.826667pt;}
.yb_c00176{bottom:410.400000pt;}
.ya_c00176{bottom:445.426667pt;}
.y9_c00176{bottom:494.880000pt;}
.y8_c00176{bottom:539.826667pt;}
.y7_c00176{bottom:579.826667pt;}
.y6_c00176{bottom:629.280000pt;}
.y5_c00176{bottom:667.040000pt;}
.y3_c00176{bottom:732.946667pt;}
.y2_c00176{bottom:736.946667pt;}
.h3_c00176{height:18.066667pt;}
.h1_c00176{height:38.128125pt;}
.h2_c00176{height:42.224219pt;}
.h7_c00176{height:61.096875pt;}
.h6_c00176{height:77.824896pt;}
.h5_c00176{height:91.875000pt;}
.h8_c00176{height:92.937500pt;}
.h4_c00176{height:147.267214pt;}
.h0_c00176{height:816.000000pt;}
.w1_c00176{width:171.520000pt;}
.w0_c00176{width:1056.000000pt;}
.x0_c00176{left:0.000000pt;}
.x7_c00176{left:81.760000pt;}
.x2_c00176{left:97.760000pt;}
.x4_c00176{left:105.760000pt;}
.x5_c00176{left:145.760000pt;}
.x8_c00176{left:171.346667pt;}
.x6_c00176{left:193.760000pt;}
.x1_c00176{left:401.760000pt;}
.x3_c00176{left:836.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_5c663dc1920a27e784a4b0c0.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00177;src:url('chunks/assets/font_c6ced56aa1b210032ca90291.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00177;src:url('chunks/assets/font_f976c11dabe99e378ea57bc5.woff2')format("woff");}.ff3_c00177{font-family:ff3_c00177;line-height:0.722656;font-style: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;}
.ls9_c00177{letter-spacing:0.000000px;}
.ls2_c00177{letter-spacing:17.545560px;}
.ls8_c00177{letter-spacing:18.265560px;}
.ls4_c00177{letter-spacing:18.325560px;}
.ls3_c00177{letter-spacing:21.601920px;}
.ls5_c00177{letter-spacing:32.665560px;}
.ls7_c00177{letter-spacing:32.725560px;}
.ls1_c00177{letter-spacing:36.985560px;}
.ls0_c00177{letter-spacing:40.381920px;}
.ls6_c00177{letter-spacing:51.445560px;}
.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;}
}
.ws14_c00177{word-spacing:-24.408000px;}
.ws6_c00177{word-spacing:-19.024680px;}
.ws7_c00177{word-spacing:-3.030480px;}
.ws2_c00177{word-spacing:-2.674069px;}
.wsd_c00177{word-spacing:-2.322000px;}
.ws8_c00177{word-spacing:-2.222268px;}
.wsf_c00177{word-spacing:-2.214000px;}
.ws5_c00177{word-spacing:-2.104668px;}
.ws4_c00177{word-spacing:-2.019600px;}
.ws1_c00177{word-spacing:-1.892880px;}
.ws3_c00177{word-spacing:-1.871304px;}
.ws9_c00177{word-spacing:-1.782000px;}
.ws15_c00177{word-spacing:-1.709275px;}
.ws10_c00177{word-spacing:-1.695600px;}
.ws17_c00177{word-spacing:-1.684800px;}
.ws16_c00177{word-spacing:-1.675098px;}
.ws13_c00177{word-spacing:-1.649844px;}
.wsb_c00177{word-spacing:-1.607838px;}
.ws12_c00177{word-spacing:-1.557498px;}
.wse_c00177{word-spacing:-1.372050px;}
.wsc_c00177{word-spacing:-1.060668px;}
.ws11_c00177{word-spacing:-0.808044px;}
.wsa_c00177{word-spacing:-0.782874px;}
.ws18_c00177{word-spacing:-0.647849px;}
.ws19_c00177{word-spacing:-0.067681px;}
.ws0_c00177{word-spacing:-0.065796px;}
.ws1a_c00177{word-spacing:0.000000px;}
._2_c00177{margin-left:-2.213346px;}
._3_c00177{margin-left:-1.202129px;}
._1_c00177{width:1.087811px;}
._0_c00177{width:14.539787px;}
._4_c00177{width:23.932800px;}
.fc4_c00177{color:rgb(255,192,0);}
.fc3_c00177{color:rgb(250,190,0);}
.fc2_c00177{color:rgb(31,73,125);}
.fc1_c00177{color:rgb(255,255,255);}
.fc0_c00177{color:rgb(0,0,0);}
.fs0_c00177{font-size:59.760000px;}
.fs1_c00177{font-size:66.180000px;}
.fs5_c00177{font-size:84.180000px;}
.fs4_c00177{font-size:95.760000px;}
.fs3_c00177{font-size:108.000000px;}
.fs2_c00177{font-size:228.180000px;}
.y0_c00177{bottom:0.000000px;}
.y4_c00177{bottom:4.500000px;}
.y1_c00177{bottom:72.720000px;}
.y6_c00177{bottom:73.785000px;}
.yc_c00177{bottom:156.045000px;}
.yb_c00177{bottom:187.545000px;}
.y1b_c00177{bottom:192.765000px;}
.ya_c00177{bottom:219.045000px;}
.y16_c00177{bottom:219.420000px;}
.y1a_c00177{bottom:224.265000px;}
.y9_c00177{bottom:250.545000px;}
.y15_c00177{bottom:250.920000px;}
.y21_c00177{bottom:255.420000px;}
.y19_c00177{bottom:255.765000px;}
.y8_c00177{bottom:282.765000px;}
.y14_c00177{bottom:283.140000px;}
.y20_c00177{bottom:286.920000px;}
.y18_c00177{bottom:287.265000px;}
.y7_c00177{bottom:320.565000px;}
.y13_c00177{bottom:320.940000px;}
.y17_c00177{bottom:321.285000px;}
.y12_c00177{bottom:538.380000px;}
.y1f_c00177{bottom:565.380000px;}
.y11_c00177{bottom:569.880000px;}
.y1e_c00177{bottom:596.880000px;}
.y10_c00177{bottom:601.380000px;}
.y1d_c00177{bottom:628.380000px;}
.yf_c00177{bottom:632.880000px;}
.y1c_c00177{bottom:660.585000px;}
.ye_c00177{bottom:664.380000px;}
.yd_c00177{bottom:698.400000px;}
.y5_c00177{bottom:745.005000px;}
.y3_c00177{bottom:824.565000px;}
.y2_c00177{bottom:829.065000px;}
.h3_c00177{height:20.325000px;}
.h1_c00177{height:42.894141px;}
.h2_c00177{height:47.502246px;}
.h7_c00177{height:61.120928px;}
.h6_c00177{height:69.201563px;}
.h5_c00177{height:78.416016px;}
.h4_c00177{height:165.675615px;}
.h0_c00177{height:918.000000px;}
.w1_c00177{width:192.960000px;}
.w0_c00177{width:1188.000000px;}
.x0_c00177{left:0.000000px;}
.x5_c00177{left:91.980000px;}
.x2_c00177{left:109.980000px;}
.x4_c00177{left:118.980000px;}
.xa_c00177{left:121.140000px;}
.x7_c00177{left:136.980000px;}
.xc_c00177{left:337.140000px;}
.x1_c00177{left:451.980000px;}
.xb_c00177{left:492.660000px;}
.x6_c00177{left:553.140000px;}
.x9_c00177{left:757.980000px;}
.x8_c00177{left:836.460000px;}
.x3_c00177{left:941.025000px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls9_c00177{letter-spacing:0.000000pt;}
.ls2_c00177{letter-spacing:15.596053pt;}
.ls8_c00177{letter-spacing:16.236053pt;}
.ls4_c00177{letter-spacing:16.289387pt;}
.ls3_c00177{letter-spacing:19.201707pt;}
.ls5_c00177{letter-spacing:29.036053pt;}
.ls7_c00177{letter-spacing:29.089387pt;}
.ls1_c00177{letter-spacing:32.876053pt;}
.ls0_c00177{letter-spacing:35.895040pt;}
.ls6_c00177{letter-spacing:45.729387pt;}
.ws14_c00177{word-spacing:-21.696000pt;}
.ws6_c00177{word-spacing:-16.910827pt;}
.ws7_c00177{word-spacing:-2.693760pt;}
.ws2_c00177{word-spacing:-2.376950pt;}
.wsd_c00177{word-spacing:-2.064000pt;}
.ws8_c00177{word-spacing:-1.975349pt;}
.wsf_c00177{word-spacing:-1.968000pt;}
.ws5_c00177{word-spacing:-1.870816pt;}
.ws4_c00177{word-spacing:-1.795200pt;}
.ws1_c00177{word-spacing:-1.682560pt;}
.ws3_c00177{word-spacing:-1.663381pt;}
.ws9_c00177{word-spacing:-1.584000pt;}
.ws15_c00177{word-spacing:-1.519355pt;}
.ws10_c00177{word-spacing:-1.507200pt;}
.ws17_c00177{word-spacing:-1.497600pt;}
.ws16_c00177{word-spacing:-1.488976pt;}
.ws13_c00177{word-spacing:-1.466528pt;}
.wsb_c00177{word-spacing:-1.429189pt;}
.ws12_c00177{word-spacing:-1.384443pt;}
.wse_c00177{word-spacing:-1.219600pt;}
.wsc_c00177{word-spacing:-0.942816pt;}
.ws11_c00177{word-spacing:-0.718261pt;}
.wsa_c00177{word-spacing:-0.695888pt;}
.ws18_c00177{word-spacing:-0.575866pt;}
.ws19_c00177{word-spacing:-0.060161pt;}
.ws0_c00177{word-spacing:-0.058485pt;}
.ws1a_c00177{word-spacing:0.000000pt;}
._2_c00177{margin-left:-1.967419pt;}
._3_c00177{margin-left:-1.068560pt;}
._1_c00177{width:0.966943pt;}
._0_c00177{width:12.924255pt;}
._4_c00177{width:21.273600pt;}
.fs0_c00177{font-size:53.120000pt;}
.fs1_c00177{font-size:58.826667pt;}
.fs5_c00177{font-size:74.826667pt;}
.fs4_c00177{font-size:85.120000pt;}
.fs3_c00177{font-size:96.000000pt;}
.fs2_c00177{font-size:202.826667pt;}
.y0_c00177{bottom:0.000000pt;}
.y4_c00177{bottom:4.000000pt;}
.y1_c00177{bottom:64.640000pt;}
.y6_c00177{bottom:65.586667pt;}
.yc_c00177{bottom:138.706667pt;}
.yb_c00177{bottom:166.706667pt;}
.y1b_c00177{bottom:171.346667pt;}
.ya_c00177{bottom:194.706667pt;}
.y16_c00177{bottom:195.040000pt;}
.y1a_c00177{bottom:199.346667pt;}
.y9_c00177{bottom:222.706667pt;}
.y15_c00177{bottom:223.040000pt;}
.y21_c00177{bottom:227.040000pt;}
.y19_c00177{bottom:227.346667pt;}
.y8_c00177{bottom:251.346667pt;}
.y14_c00177{bottom:251.680000pt;}
.y20_c00177{bottom:255.040000pt;}
.y18_c00177{bottom:255.346667pt;}
.y7_c00177{bottom:284.946667pt;}
.y13_c00177{bottom:285.280000pt;}
.y17_c00177{bottom:285.586667pt;}
.y12_c00177{bottom:478.560000pt;}
.y1f_c00177{bottom:502.560000pt;}
.y11_c00177{bottom:506.560000pt;}
.y1e_c00177{bottom:530.560000pt;}
.y10_c00177{bottom:534.560000pt;}
.y1d_c00177{bottom:558.560000pt;}
.yf_c00177{bottom:562.560000pt;}
.y1c_c00177{bottom:587.186667pt;}
.ye_c00177{bottom:590.560000pt;}
.yd_c00177{bottom:620.800000pt;}
.y5_c00177{bottom:662.226667pt;}
.y3_c00177{bottom:732.946667pt;}
.y2_c00177{bottom:736.946667pt;}
.h3_c00177{height:18.066667pt;}
.h1_c00177{height:38.128125pt;}
.h2_c00177{height:42.224219pt;}
.h7_c00177{height:54.329714pt;}
.h6_c00177{height:61.512500pt;}
.h5_c00177{height:69.703125pt;}
.h4_c00177{height:147.267214pt;}
.h0_c00177{height:816.000000pt;}
.w1_c00177{width:171.520000pt;}
.w0_c00177{width:1056.000000pt;}
.x0_c00177{left:0.000000pt;}
.x5_c00177{left:81.760000pt;}
.x2_c00177{left:97.760000pt;}
.x4_c00177{left:105.760000pt;}
.xa_c00177{left:107.680000pt;}
.x7_c00177{left:121.760000pt;}
.xc_c00177{left:299.680000pt;}
.x1_c00177{left:401.760000pt;}
.xb_c00177{left:437.920000pt;}
.x6_c00177{left:491.680000pt;}
.x9_c00177{left:673.760000pt;}
.x8_c00177{left:743.520000pt;}
.x3_c00177{left:836.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_d2d5febb5daa4c338c690db6.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00178;src:url('chunks/assets/font_83330b809c7e6f182a1158e7.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00178;src:url('chunks/assets/font_55475068dbfc17ea1ea43fcb.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:0.722656;font-style:normal;font-weight:normal;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_4a22962d6684792fa77da4e6.woff2')format("woff");}.ff4_c00178{font-family:ff4_c00178;line-height:0.938965;font-style: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;}
.ls2_c00178{letter-spacing:0.000000px;}
.ls1_c00178{letter-spacing:93.237000px;}
.ls0_c00178{letter-spacing:100.975800px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00178{word-spacing:-2.674069px;}
.ws1_c00178{word-spacing:-1.892880px;}
.ws4_c00178{word-spacing:-1.800000px;}
.ws7_c00178{word-spacing:-1.574238px;}
.wsb_c00178{word-spacing:-1.322220px;}
.ws6_c00178{word-spacing:-1.273668px;}
.ws3_c00178{word-spacing:-1.254534px;}
.ws5_c00178{word-spacing:-0.673128px;}
.wsa_c00178{word-spacing:-0.565086px;}
.ws9_c00178{word-spacing:-0.348522px;}
.ws8_c00178{word-spacing:-0.288000px;}
.ws0_c00178{word-spacing:-0.065796px;}
.wsc_c00178{word-spacing:0.000000px;}
._3_c00178{margin-left:-18.893989px;}
._2_c00178{margin-left:-12.846762px;}
._e_c00178{margin-left:-8.807934px;}
._d_c00178{margin-left:-6.994236px;}
._5_c00178{margin-left:-4.198284px;}
._6_c00178{margin-left:-2.555388px;}
._8_c00178{margin-left:-1.224485px;}
._1_c00178{width:1.087811px;}
._c_c00178{width:5.154611px;}
._0_c00178{width:14.539787px;}
._f_c00178{width:26.920503px;}
._a_c00178{width:28.161660px;}
._b_c00178{width:30.077510px;}
._7_c00178{width:32.212800px;}
._9_c00178{width:33.334777px;}
._4_c00178{width:52.099349px;}
.fc3_c00178{color:rgb(55,96,146);}
.fc2_c00178{color:rgb(31,73,125);}
.fc1_c00178{color:rgb(255,255,255);}
.fc0_c00178{color:rgb(0,0,0);}
.fs0_c00178{font-size:59.760000px;}
.fs1_c00178{font-size:66.180000px;}
.fs3_c00178{font-size:115.140000px;}
.fs5_c00178{font-size:120.180000px;}
.fs4_c00178{font-size:144.000000px;}
.fs2_c00178{font-size:228.180000px;}
.y0_c00178{bottom:0.000000px;}
.y4_c00178{bottom:4.500000px;}
.y1_c00178{bottom:72.720000px;}
.ye_c00178{bottom:73.785000px;}
.yd_c00178{bottom:366.105000px;}
.yc_c00178{bottom:411.105000px;}
.yb_c00178{bottom:456.105000px;}
.ya_c00178{bottom:511.740000px;}
.y9_c00178{bottom:562.305000px;}
.y8_c00178{bottom:607.305000px;}
.y7_c00178{bottom:652.305000px;}
.y6_c00178{bottom:707.940000px;}
.y5_c00178{bottom:750.420000px;}
.y3_c00178{bottom:824.565000px;}
.y2_c00178{bottom:829.065000px;}
.h3_c00178{height:20.325000px;}
.h1_c00178{height:42.894141px;}
.h2_c00178{height:47.502246px;}
.h6_c00178{height:87.553008px;}
.h5_c00178{height:103.359375px;}
.h4_c00178{height:165.675615px;}
.h0_c00178{height:918.000000px;}
.w1_c00178{width:192.960000px;}
.w0_c00178{width:1188.000000px;}
.x0_c00178{left:0.000000px;}
.x6_c00178{left:91.980000px;}
.x2_c00178{left:109.980000px;}
.x4_c00178{left:118.980000px;}
.x5_c00178{left:172.980000px;}
.x1_c00178{left:451.980000px;}
.x3_c00178{left:941.025000px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls2_c00178{letter-spacing:0.000000pt;}
.ls1_c00178{letter-spacing:82.877333pt;}
.ls0_c00178{letter-spacing:89.756267pt;}
.ws2_c00178{word-spacing:-2.376950pt;}
.ws1_c00178{word-spacing:-1.682560pt;}
.ws4_c00178{word-spacing:-1.600000pt;}
.ws7_c00178{word-spacing:-1.399323pt;}
.wsb_c00178{word-spacing:-1.175307pt;}
.ws6_c00178{word-spacing:-1.132149pt;}
.ws3_c00178{word-spacing:-1.115141pt;}
.ws5_c00178{word-spacing:-0.598336pt;}
.wsa_c00178{word-spacing:-0.502299pt;}
.ws9_c00178{word-spacing:-0.309797pt;}
.ws8_c00178{word-spacing:-0.256000pt;}
.ws0_c00178{word-spacing:-0.058485pt;}
.wsc_c00178{word-spacing:0.000000pt;}
._3_c00178{margin-left:-16.794656pt;}
._2_c00178{margin-left:-11.419344pt;}
._e_c00178{margin-left:-7.829274pt;}
._d_c00178{margin-left:-6.217098pt;}
._5_c00178{margin-left:-3.731808pt;}
._6_c00178{margin-left:-2.271456pt;}
._8_c00178{margin-left:-1.088431pt;}
._1_c00178{width:0.966943pt;}
._c_c00178{width:4.581877pt;}
._0_c00178{width:12.924255pt;}
._f_c00178{width:23.929336pt;}
._a_c00178{width:25.032587pt;}
._b_c00178{width:26.735565pt;}
._7_c00178{width:28.633600pt;}
._9_c00178{width:29.630912pt;}
._4_c00178{width:46.310533pt;}
.fs0_c00178{font-size:53.120000pt;}
.fs1_c00178{font-size:58.826667pt;}
.fs3_c00178{font-size:102.346667pt;}
.fs5_c00178{font-size:106.826667pt;}
.fs4_c00178{font-size:128.000000pt;}
.fs2_c00178{font-size:202.826667pt;}
.y0_c00178{bottom:0.000000pt;}
.y4_c00178{bottom:4.000000pt;}
.y1_c00178{bottom:64.640000pt;}
.ye_c00178{bottom:65.586667pt;}
.yd_c00178{bottom:325.426667pt;}
.yc_c00178{bottom:365.426667pt;}
.yb_c00178{bottom:405.426667pt;}
.ya_c00178{bottom:454.880000pt;}
.y9_c00178{bottom:499.826667pt;}
.y8_c00178{bottom:539.826667pt;}
.y7_c00178{bottom:579.826667pt;}
.y6_c00178{bottom:629.280000pt;}
.y5_c00178{bottom:667.040000pt;}
.y3_c00178{bottom:732.946667pt;}
.y2_c00178{bottom:736.946667pt;}
.h3_c00178{height:18.066667pt;}
.h1_c00178{height:38.128125pt;}
.h2_c00178{height:42.224219pt;}
.h6_c00178{height:77.824896pt;}
.h5_c00178{height:91.875000pt;}
.h4_c00178{height:147.267214pt;}
.h0_c00178{height:816.000000pt;}
.w1_c00178{width:171.520000pt;}
.w0_c00178{width:1056.000000pt;}
.x0_c00178{left:0.000000pt;}
.x6_c00178{left:81.760000pt;}
.x2_c00178{left:97.760000pt;}
.x4_c00178{left:105.760000pt;}
.x5_c00178{left:153.760000pt;}
.x1_c00178{left:401.760000pt;}
.x3_c00178{left:836.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_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_33094d6a06257302a2ef8d75.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00179;src:url('chunks/assets/font_b45e6b394d03c992dc141d1f.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.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;}
}
.ws2_c00179{word-spacing:-2.674069px;}
.ws1_c00179{word-spacing:-1.892880px;}
.ws3_c00179{word-spacing:-0.713160px;}
.ws0_c00179{word-spacing:-0.065796px;}
.ws4_c00179{word-spacing:0.000000px;}
._5_c00179{margin-left:-17.278848px;}
._3_c00179{margin-left:-3.504468px;}
._4_c00179{margin-left:-2.017224px;}
._1_c00179{width:1.087811px;}
._0_c00179{width:14.539787px;}
._2_c00179{width:47.313072px;}
.fc2_c00179{color:rgb(31,73,125);}
.fc1_c00179{color:rgb(255,255,255);}
.fc0_c00179{color:rgb(0,0,0);}
.fs0_c00179{font-size:59.760000px;}
.fs1_c00179{font-size:66.180000px;}
.fs2_c00179{font-size:203.760000px;}
.y0_c00179{bottom:0.000000px;}
.y4_c00179{bottom:4.500000px;}
.y1_c00179{bottom:72.720000px;}
.y6_c00179{bottom:73.785000px;}
.y5_c00179{bottom:752.400000px;}
.y3_c00179{bottom:824.565000px;}
.y2_c00179{bottom:829.065000px;}
.h3_c00179{height:20.325000px;}
.h1_c00179{height:42.894141px;}
.h2_c00179{height:47.502246px;}
.h4_c00179{height:147.944883px;}
.h0_c00179{height:918.000000px;}
.w1_c00179{width:192.960000px;}
.w0_c00179{width:1188.000000px;}
.x0_c00179{left:0.000000px;}
.x5_c00179{left:91.980000px;}
.x2_c00179{left:109.980000px;}
.x4_c00179{left:118.980000px;}
.x1_c00179{left:451.980000px;}
.x3_c00179{left:941.025000px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls0_c00179{letter-spacing:0.000000pt;}
.ws2_c00179{word-spacing:-2.376950pt;}
.ws1_c00179{word-spacing:-1.682560pt;}
.ws3_c00179{word-spacing:-0.633920pt;}
.ws0_c00179{word-spacing:-0.058485pt;}
.ws4_c00179{word-spacing:0.000000pt;}
._5_c00179{margin-left:-15.358976pt;}
._3_c00179{margin-left:-3.115083pt;}
._4_c00179{margin-left:-1.793088pt;}
._1_c00179{width:0.966943pt;}
._0_c00179{width:12.924255pt;}
._2_c00179{width:42.056064pt;}
.fs0_c00179{font-size:53.120000pt;}
.fs1_c00179{font-size:58.826667pt;}
.fs2_c00179{font-size:181.120000pt;}
.y0_c00179{bottom:0.000000pt;}
.y4_c00179{bottom:4.000000pt;}
.y1_c00179{bottom:64.640000pt;}
.y6_c00179{bottom:65.586667pt;}
.y5_c00179{bottom:668.800000pt;}
.y3_c00179{bottom:732.946667pt;}
.y2_c00179{bottom:736.946667pt;}
.h3_c00179{height:18.066667pt;}
.h1_c00179{height:38.128125pt;}
.h2_c00179{height:42.224219pt;}
.h4_c00179{height:131.506563pt;}
.h0_c00179{height:816.000000pt;}
.w1_c00179{width:171.520000pt;}
.w0_c00179{width:1056.000000pt;}
.x0_c00179{left:0.000000pt;}
.x5_c00179{left:81.760000pt;}
.x2_c00179{left:97.760000pt;}
.x4_c00179{left:105.760000pt;}
.x1_c00179{left:401.760000pt;}
.x3_c00179{left:836.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_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_9a46374c6b2cb0cb60b320e4.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00180;src:url('chunks/assets/font_50aa9adf9c6cbff6777cf154.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00180{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00180{vertical-align:0.000000px;}
.ls0_c00180{letter-spacing:0.000000px;}
.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;}
}
.ws7_c00180{word-spacing:-24.408000px;}
.ws4_c00180{word-spacing:-13.505760px;}
.ws2_c00180{word-spacing:-2.674069px;}
.ws1_c00180{word-spacing:-1.892880px;}
.ws6_c00180{word-spacing:-1.717200px;}
.ws3_c00180{word-spacing:-0.912492px;}
.ws0_c00180{word-spacing:-0.065796px;}
.ws5_c00180{word-spacing:0.054000px;}
._2_c00180{margin-left:-19.326618px;}
._4_c00180{margin-left:-3.833424px;}
._3_c00180{margin-left:-2.784024px;}
._5_c00180{margin-left:-1.166400px;}
._1_c00180{width:1.087811px;}
._0_c00180{width:14.539787px;}
._6_c00180{width:24.367789px;}
.fc2_c00180{color:rgb(31,73,125);}
.fc1_c00180{color:rgb(255,255,255);}
.fc0_c00180{color:rgb(0,0,0);}
.fs0_c00180{font-size:59.760000px;}
.fs1_c00180{font-size:66.180000px;}
.fs3_c00180{font-size:108.000000px;}
.fs2_c00180{font-size:228.180000px;}
.y0_c00180{bottom:0.000000px;}
.y4_c00180{bottom:4.500000px;}
.y1_c00180{bottom:72.720000px;}
.y6_c00180{bottom:73.785000px;}
.y7_c00180{bottom:408.960000px;}
.y9_c00180{bottom:653.400000px;}
.y8_c00180{bottom:711.345000px;}
.y5_c00180{bottom:750.420000px;}
.y3_c00180{bottom:824.565000px;}
.y2_c00180{bottom:829.065000px;}
.h3_c00180{height:20.325000px;}
.h1_c00180{height:42.894141px;}
.h2_c00180{height:47.502246px;}
.h5_c00180{height:78.416016px;}
.h4_c00180{height:165.675615px;}
.h0_c00180{height:918.000000px;}
.w1_c00180{width:192.960000px;}
.w0_c00180{width:1188.000000px;}
.x0_c00180{left:0.000000px;}
.x6_c00180{left:82.980000px;}
.x5_c00180{left:91.980000px;}
.x2_c00180{left:109.980000px;}
.x4_c00180{left:118.980000px;}
.x1_c00180{left:451.980000px;}
.x7_c00180{left:623.880000px;}
.x3_c00180{left:941.025000px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls0_c00180{letter-spacing:0.000000pt;}
.ws7_c00180{word-spacing:-21.696000pt;}
.ws4_c00180{word-spacing:-12.005120pt;}
.ws2_c00180{word-spacing:-2.376950pt;}
.ws1_c00180{word-spacing:-1.682560pt;}
.ws6_c00180{word-spacing:-1.526400pt;}
.ws3_c00180{word-spacing:-0.811104pt;}
.ws0_c00180{word-spacing:-0.058485pt;}
.ws5_c00180{word-spacing:0.048000pt;}
._2_c00180{margin-left:-17.179216pt;}
._4_c00180{margin-left:-3.407488pt;}
._3_c00180{margin-left:-2.474688pt;}
._5_c00180{margin-left:-1.036800pt;}
._1_c00180{width:0.966943pt;}
._0_c00180{width:12.924255pt;}
._6_c00180{width:21.660257pt;}
.fs0_c00180{font-size:53.120000pt;}
.fs1_c00180{font-size:58.826667pt;}
.fs3_c00180{font-size:96.000000pt;}
.fs2_c00180{font-size:202.826667pt;}
.y0_c00180{bottom:0.000000pt;}
.y4_c00180{bottom:4.000000pt;}
.y1_c00180{bottom:64.640000pt;}
.y6_c00180{bottom:65.586667pt;}
.y7_c00180{bottom:363.520000pt;}
.y9_c00180{bottom:580.800000pt;}
.y8_c00180{bottom:632.306667pt;}
.y5_c00180{bottom:667.040000pt;}
.y3_c00180{bottom:732.946667pt;}
.y2_c00180{bottom:736.946667pt;}
.h3_c00180{height:18.066667pt;}
.h1_c00180{height:38.128125pt;}
.h2_c00180{height:42.224219pt;}
.h5_c00180{height:69.703125pt;}
.h4_c00180{height:147.267214pt;}
.h0_c00180{height:816.000000pt;}
.w1_c00180{width:171.520000pt;}
.w0_c00180{width:1056.000000pt;}
.x0_c00180{left:0.000000pt;}
.x6_c00180{left:73.760000pt;}
.x5_c00180{left:81.760000pt;}
.x2_c00180{left:97.760000pt;}
.x4_c00180{left:105.760000pt;}
.x1_c00180{left:401.760000pt;}
.x7_c00180{left:554.560000pt;}
.x3_c00180{left:836.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_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_1b6e00cf967207c273bb81ad.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00181;src:url('chunks/assets/font_bfb53d9aefce81a16f78a109.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00181;src:url('chunks/assets/font_55475068dbfc17ea1ea43fcb.woff2')format("woff");}.ff3_c00181{font-family:ff3_c00181;line-height:0.722656;font-style:normal;font-weight:normal;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_4a22962d6684792fa77da4e6.woff2')format("woff");}.ff4_c00181{font-family:ff4_c00181;line-height:0.938965;font-style: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;}
.ls3_c00181{letter-spacing:0.000000px;}
.ls1_c00181{letter-spacing:93.237000px;}
.ls0_c00181{letter-spacing:100.975800px;}
.ls2_c00181{letter-spacing:105.904800px;}
.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;}
}
.wsd_c00181{word-spacing:-13.505760px;}
.ws2_c00181{word-spacing:-2.674069px;}
.ws1_c00181{word-spacing:-1.892880px;}
.ws9_c00181{word-spacing:-1.310400px;}
.wse_c00181{word-spacing:-1.224000px;}
.ws4_c00181{word-spacing:-1.166400px;}
.wsc_c00181{word-spacing:-1.105656px;}
.ws7_c00181{word-spacing:-0.913729px;}
.ws8_c00181{word-spacing:-0.841621px;}
.wsb_c00181{word-spacing:-0.300450px;}
.ws5_c00181{word-spacing:-0.252498px;}
.wsa_c00181{word-spacing:-0.223597px;}
.ws6_c00181{word-spacing:-0.167891px;}
.ws0_c00181{word-spacing:-0.065796px;}
.ws3_c00181{word-spacing:-0.022590px;}
.wsf_c00181{word-spacing:0.000000px;}
._4_c00181{margin-left:-12.755490px;}
._8_c00181{margin-left:-9.613919px;}
._a_c00181{margin-left:-4.436417px;}
._2_c00181{margin-left:-3.103248px;}
._6_c00181{margin-left:-1.569600px;}
._1_c00181{width:1.087811px;}
._3_c00181{width:5.750364px;}
._0_c00181{width:14.539787px;}
._7_c00181{width:28.177212px;}
._9_c00181{width:31.226988px;}
._5_c00181{width:32.557837px;}
.fc3_c00181{color:rgb(55,96,146);}
.fc2_c00181{color:rgb(31,73,125);}
.fc1_c00181{color:rgb(255,255,255);}
.fc0_c00181{color:rgb(0,0,0);}
.fs0_c00181{font-size:59.760000px;}
.fs1_c00181{font-size:66.180000px;}
.fs6_c00181{font-size:105.840000px;}
.fs3_c00181{font-size:115.140000px;}
.fs5_c00181{font-size:120.180000px;}
.fs7_c00181{font-size:131.760000px;}
.fs4_c00181{font-size:144.000000px;}
.fs2_c00181{font-size:228.180000px;}
.y0_c00181{bottom:0.000000px;}
.y4_c00181{bottom:4.500000px;}
.y1_c00181{bottom:72.720000px;}
.yf_c00181{bottom:73.785000px;}
.y10_c00181{bottom:141.480000px;}
.ye_c00181{bottom:308.505000px;}
.yd_c00181{bottom:353.505000px;}
.yc_c00181{bottom:399.240000px;}
.yb_c00181{bottom:457.740000px;}
.ya_c00181{bottom:508.305000px;}
.y9_c00181{bottom:553.305000px;}
.y8_c00181{bottom:598.305000px;}
.y7_c00181{bottom:643.305000px;}
.y6_c00181{bottom:698.940000px;}
.y5_c00181{bottom:750.420000px;}
.y3_c00181{bottom:824.565000px;}
.y2_c00181{bottom:829.065000px;}
.h3_c00181{height:20.325000px;}
.h1_c00181{height:42.894141px;}
.h2_c00181{height:47.502246px;}
.h6_c00181{height:87.553008px;}
.h7_c00181{height:94.573828px;}
.h5_c00181{height:103.359375px;}
.h8_c00181{height:104.554688px;}
.h4_c00181{height:165.675615px;}
.h0_c00181{height:918.000000px;}
.w1_c00181{width:192.960000px;}
.w0_c00181{width:1188.000000px;}
.x0_c00181{left:0.000000px;}
.x6_c00181{left:91.980000px;}
.x2_c00181{left:109.980000px;}
.x4_c00181{left:118.980000px;}
.x7_c00181{left:131.940000px;}
.x5_c00181{left:172.980000px;}
.x1_c00181{left:451.980000px;}
.x3_c00181{left:941.025000px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls3_c00181{letter-spacing:0.000000pt;}
.ls1_c00181{letter-spacing:82.877333pt;}
.ls0_c00181{letter-spacing:89.756267pt;}
.ls2_c00181{letter-spacing:94.137600pt;}
.wsd_c00181{word-spacing:-12.005120pt;}
.ws2_c00181{word-spacing:-2.376950pt;}
.ws1_c00181{word-spacing:-1.682560pt;}
.ws9_c00181{word-spacing:-1.164800pt;}
.wse_c00181{word-spacing:-1.088000pt;}
.ws4_c00181{word-spacing:-1.036800pt;}
.wsc_c00181{word-spacing:-0.982805pt;}
.ws7_c00181{word-spacing:-0.812203pt;}
.ws8_c00181{word-spacing:-0.748107pt;}
.wsb_c00181{word-spacing:-0.267067pt;}
.ws5_c00181{word-spacing:-0.224443pt;}
.wsa_c00181{word-spacing:-0.198753pt;}
.ws6_c00181{word-spacing:-0.149237pt;}
.ws0_c00181{word-spacing:-0.058485pt;}
.ws3_c00181{word-spacing:-0.020080pt;}
.wsf_c00181{word-spacing:0.000000pt;}
._4_c00181{margin-left:-11.338213pt;}
._8_c00181{margin-left:-8.545706pt;}
._a_c00181{margin-left:-3.943482pt;}
._2_c00181{margin-left:-2.758443pt;}
._6_c00181{margin-left:-1.395200pt;}
._1_c00181{width:0.966943pt;}
._3_c00181{width:5.111435pt;}
._0_c00181{width:12.924255pt;}
._7_c00181{width:25.046410pt;}
._9_c00181{width:27.757323pt;}
._5_c00181{width:28.940299pt;}
.fs0_c00181{font-size:53.120000pt;}
.fs1_c00181{font-size:58.826667pt;}
.fs6_c00181{font-size:94.080000pt;}
.fs3_c00181{font-size:102.346667pt;}
.fs5_c00181{font-size:106.826667pt;}
.fs7_c00181{font-size:117.120000pt;}
.fs4_c00181{font-size:128.000000pt;}
.fs2_c00181{font-size:202.826667pt;}
.y0_c00181{bottom:0.000000pt;}
.y4_c00181{bottom:4.000000pt;}
.y1_c00181{bottom:64.640000pt;}
.yf_c00181{bottom:65.586667pt;}
.y10_c00181{bottom:125.760000pt;}
.ye_c00181{bottom:274.226667pt;}
.yd_c00181{bottom:314.226667pt;}
.yc_c00181{bottom:354.880000pt;}
.yb_c00181{bottom:406.880000pt;}
.ya_c00181{bottom:451.826667pt;}
.y9_c00181{bottom:491.826667pt;}
.y8_c00181{bottom:531.826667pt;}
.y7_c00181{bottom:571.826667pt;}
.y6_c00181{bottom:621.280000pt;}
.y5_c00181{bottom:667.040000pt;}
.y3_c00181{bottom:732.946667pt;}
.y2_c00181{bottom:736.946667pt;}
.h3_c00181{height:18.066667pt;}
.h1_c00181{height:38.128125pt;}
.h2_c00181{height:42.224219pt;}
.h6_c00181{height:77.824896pt;}
.h7_c00181{height:84.065625pt;}
.h5_c00181{height:91.875000pt;}
.h8_c00181{height:92.937500pt;}
.h4_c00181{height:147.267214pt;}
.h0_c00181{height:816.000000pt;}
.w1_c00181{width:171.520000pt;}
.w0_c00181{width:1056.000000pt;}
.x0_c00181{left:0.000000pt;}
.x6_c00181{left:81.760000pt;}
.x2_c00181{left:97.760000pt;}
.x4_c00181{left:105.760000pt;}
.x7_c00181{left:117.280000pt;}
.x5_c00181{left:153.760000pt;}
.x1_c00181{left:401.760000pt;}
.x3_c00181{left:836.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_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_6d25b34fde566890fd30f07a.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00182;src:url('chunks/assets/font_3b54dc3441dd888cbff970c7.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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:0.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;}
}
.ws5_c00182{word-spacing:-48.816000px;}
.ws4_c00182{word-spacing:-13.505760px;}
.ws2_c00182{word-spacing:-2.674069px;}
.ws1_c00182{word-spacing:-1.892880px;}
.ws6_c00182{word-spacing:-1.728000px;}
.ws3_c00182{word-spacing:-1.391898px;}
.ws7_c00182{word-spacing:-0.712800px;}
.ws0_c00182{word-spacing:-0.065796px;}
._8_c00182{margin-left:-26.289683px;}
._6_c00182{margin-left:-16.456782px;}
._7_c00182{margin-left:-8.642441px;}
._a_c00182{margin-left:-4.816800px;}
._5_c00182{margin-left:-3.764970px;}
._2_c00182{margin-left:-2.532570px;}
._4_c00182{margin-left:-1.255218px;}
._1_c00182{width:1.087811px;}
._0_c00182{width:14.539787px;}
._9_c00182{width:48.945600px;}
._3_c00182{width:52.161492px;}
.fc3_c00182{color:rgb(0,0,255);}
.fc2_c00182{color:rgb(31,73,125);}
.fc1_c00182{color:rgb(255,255,255);}
.fc0_c00182{color:rgb(0,0,0);}
.fs0_c00182{font-size:59.760000px;}
.fs1_c00182{font-size:66.180000px;}
.fs3_c00182{font-size:216.000000px;}
.fs2_c00182{font-size:228.180000px;}
.y0_c00182{bottom:0.000000px;}
.y4_c00182{bottom:4.500000px;}
.y1_c00182{bottom:72.720000px;}
.y6_c00182{bottom:73.785000px;}
.ya_c00182{bottom:460.605000px;}
.y9_c00182{bottom:525.420000px;}
.y8_c00182{bottom:590.220000px;}
.y7_c00182{bottom:655.005000px;}
.y5_c00182{bottom:745.005000px;}
.y3_c00182{bottom:824.565000px;}
.y2_c00182{bottom:829.065000px;}
.h3_c00182{height:20.325000px;}
.h1_c00182{height:42.894141px;}
.h2_c00182{height:47.502246px;}
.h6_c00182{height:155.039062px;}
.h5_c00182{height:156.832031px;}
.h4_c00182{height:165.675615px;}
.h0_c00182{height:918.000000px;}
.w1_c00182{width:192.960000px;}
.w0_c00182{width:1188.000000px;}
.x0_c00182{left:0.000000px;}
.x5_c00182{left:91.980000px;}
.x2_c00182{left:109.980000px;}
.x4_c00182{left:118.980000px;}
.x6_c00182{left:136.980000px;}
.x1_c00182{left:451.980000px;}
.x3_c00182{left:941.025000px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls0_c00182{letter-spacing:0.000000pt;}
.ws5_c00182{word-spacing:-43.392000pt;}
.ws4_c00182{word-spacing:-12.005120pt;}
.ws2_c00182{word-spacing:-2.376950pt;}
.ws1_c00182{word-spacing:-1.682560pt;}
.ws6_c00182{word-spacing:-1.536000pt;}
.ws3_c00182{word-spacing:-1.237243pt;}
.ws7_c00182{word-spacing:-0.633600pt;}
.ws0_c00182{word-spacing:-0.058485pt;}
._8_c00182{margin-left:-23.368607pt;}
._6_c00182{margin-left:-14.628251pt;}
._7_c00182{margin-left:-7.682170pt;}
._a_c00182{margin-left:-4.281600pt;}
._5_c00182{margin-left:-3.346640pt;}
._2_c00182{margin-left:-2.251173pt;}
._4_c00182{margin-left:-1.115749pt;}
._1_c00182{width:0.966943pt;}
._0_c00182{width:12.924255pt;}
._9_c00182{width:43.507200pt;}
._3_c00182{width:46.365770pt;}
.fs0_c00182{font-size:53.120000pt;}
.fs1_c00182{font-size:58.826667pt;}
.fs3_c00182{font-size:192.000000pt;}
.fs2_c00182{font-size:202.826667pt;}
.y0_c00182{bottom:0.000000pt;}
.y4_c00182{bottom:4.000000pt;}
.y1_c00182{bottom:64.640000pt;}
.y6_c00182{bottom:65.586667pt;}
.ya_c00182{bottom:409.426667pt;}
.y9_c00182{bottom:467.040000pt;}
.y8_c00182{bottom:524.640000pt;}
.y7_c00182{bottom:582.226667pt;}
.y5_c00182{bottom:662.226667pt;}
.y3_c00182{bottom:732.946667pt;}
.y2_c00182{bottom:736.946667pt;}
.h3_c00182{height:18.066667pt;}
.h1_c00182{height:38.128125pt;}
.h2_c00182{height:42.224219pt;}
.h6_c00182{height:137.812500pt;}
.h5_c00182{height:139.406250pt;}
.h4_c00182{height:147.267214pt;}
.h0_c00182{height:816.000000pt;}
.w1_c00182{width:171.520000pt;}
.w0_c00182{width:1056.000000pt;}
.x0_c00182{left:0.000000pt;}
.x5_c00182{left:81.760000pt;}
.x2_c00182{left:97.760000pt;}
.x4_c00182{left:105.760000pt;}
.x6_c00182{left:121.760000pt;}
.x1_c00182{left:401.760000pt;}
.x3_c00182{left:836.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_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_2638d6b8c68a77cfa47f80b0.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:0.981934;font-style:normal;font-weight:normal;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_79842eb64124db8c88766a27.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:0.687012;font-style:normal;font-weight:normal;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_cfda8e39ebfb6c899cb49336.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:0.982910;font-style:normal;font-weight:normal;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_eae33c6359ed7b5f62d2b467.woff2')format("woff");}.ff4_c00183{font-family:ff4_c00183;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00183;src:url('chunks/assets/font_8d1ad07e4d12585e6f2bc0af.woff2')format("woff");}.ff5_c00183{font-family:ff5_c00183;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00183;src:url('chunks/assets/font_17147190ac2d3fece228baf7.woff2')format("woff");}.ff6_c00183{font-family:ff6_c00183;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00183{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00183{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00183{vertical-align:0.000000px;}
.v2_c00183{vertical-align:23.760000px;}
.v1_c00183{vertical-align:30.240000px;}
.ls4_c00183{letter-spacing:-0.636000px;}
.ls3_c00183{letter-spacing:-0.540000px;}
.lsa_c00183{letter-spacing:-0.322800px;}
.ls8_c00183{letter-spacing:-0.295200px;}
.lsf_c00183{letter-spacing:-0.240600px;}
.lsc_c00183{letter-spacing:-0.222600px;}
.lsb_c00183{letter-spacing:-0.216600px;}
.ls7_c00183{letter-spacing:-0.126000px;}
.ls13_c00183{letter-spacing:-0.064800px;}
.ls11_c00183{letter-spacing:-0.058200px;}
.ls2_c00183{letter-spacing:0.000000px;}
.ls6_c00183{letter-spacing:0.022200px;}
.ls5_c00183{letter-spacing:0.031800px;}
.ls9_c00183{letter-spacing:0.208200px;}
.lsd_c00183{letter-spacing:0.306000px;}
.ls12_c00183{letter-spacing:0.393600px;}
.lse_c00183{letter-spacing:0.479400px;}
.ls10_c00183{letter-spacing:0.900000px;}
.ls0_c00183{letter-spacing:2.334240px;}
.ls1_c00183{letter-spacing:4.469760px;}
.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;}
}
.ws3_c00183{word-spacing:-120.240000px;}
.ws0_c00183{word-spacing:-72.000000px;}
.ws2_c00183{word-spacing:-13.505760px;}
.wsa_c00183{word-spacing:-13.447560px;}
.ws9_c00183{word-spacing:-13.265160px;}
.ws1_c00183{word-spacing:-10.902240px;}
.ws4_c00183{word-spacing:-10.776240px;}
.ws7_c00183{word-spacing:-10.685640px;}
.ws8_c00183{word-spacing:-10.679640px;}
.ws5_c00183{word-spacing:-10.607040px;}
.ws6_c00183{word-spacing:-10.579440px;}
.wsb_c00183{word-spacing:0.000000px;}
._0_c00183{margin-left:-1.152000px;}
._6_c00183{width:1.022477px;}
._1_c00183{width:2.076000px;}
._5_c00183{width:3.280224px;}
._7_c00183{width:4.469354px;}
._8_c00183{width:5.981970px;}
._9_c00183{width:7.057769px;}
._2_c00183{width:92.190094px;}
._4_c00183{width:135.172368px;}
._3_c00183{width:159.018143px;}
.fc3_c00183{color:transparent;}
.fc2_c00183{color:rgb(51,51,255);}
.fc1_c00183{color:rgb(0,0,0);}
.fc0_c00183{color:rgb(0,0,255);}
.fs6_c00183{font-size:30.240000px;}
.fs5_c00183{font-size:38.880000px;}
.fs1_c00183{font-size:48.240000px;}
.fs2_c00183{font-size:54.000000px;}
.fs3_c00183{font-size:59.760000px;}
.fs0_c00183{font-size:72.000000px;}
.fs4_c00183{font-size:120.240000px;}
.y0_c00183{bottom:0.000000px;}
.y2_c00183{bottom:15.300000px;}
.ye_c00183{bottom:67.716000px;}
.yd_c00183{bottom:85.176000px;}
.yc_c00183{bottom:99.936000px;}
.yb_c00183{bottom:114.516000px;}
.ya_c00183{bottom:129.096000px;}
.y9_c00183{bottom:147.456000px;}
.y35_c00183{bottom:174.630000px;}
.y34_c00183{bottom:196.590000px;}
.y33_c00183{bottom:218.550000px;}
.y32_c00183{bottom:240.510000px;}
.y31_c00183{bottom:262.470000px;}
.y30_c00183{bottom:284.475000px;}
.y2f_c00183{bottom:306.435000px;}
.y2e_c00183{bottom:328.395000px;}
.y2d_c00183{bottom:350.355000px;}
.y2c_c00183{bottom:372.315000px;}
.y2b_c00183{bottom:394.275000px;}
.y2a_c00183{bottom:416.235000px;}
.y29_c00183{bottom:438.195000px;}
.y28_c00183{bottom:460.155000px;}
.y27_c00183{bottom:482.295000px;}
.y26_c00183{bottom:504.255000px;}
.y25_c00183{bottom:526.215000px;}
.y24_c00183{bottom:548.175000px;}
.y23_c00183{bottom:570.165000px;}
.y22_c00183{bottom:592.125000px;}
.y21_c00183{bottom:614.085000px;}
.y20_c00183{bottom:636.045000px;}
.y1f_c00183{bottom:658.005000px;}
.y1e_c00183{bottom:679.965000px;}
.y1d_c00183{bottom:701.925000px;}
.y1c_c00183{bottom:731.625000px;}
.y1b_c00183{bottom:751.965000px;}
.y1a_c00183{bottom:774.645000px;}
.y19_c00183{bottom:792.465000px;}
.y18_c00183{bottom:807.045000px;}
.y17_c00183{bottom:821.625000px;}
.y16_c00183{bottom:836.385000px;}
.y15_c00183{bottom:851.010000px;}
.y14_c00183{bottom:865.770000px;}
.y13_c00183{bottom:880.350000px;}
.y12_c00183{bottom:894.930000px;}
.y11_c00183{bottom:910.410000px;}
.y10_c00183{bottom:962.610000px;}
.yf_c00183{bottom:1006.530000px;}
.y8_c00183{bottom:1060.890000px;}
.y7_c00183{bottom:1075.470000px;}
.y6_c00183{bottom:1090.230000px;}
.y5_c00183{bottom:1104.810000px;}
.y4_c00183{bottom:1119.390000px;}
.y3_c00183{bottom:1134.180000px;}
.y1_c00183{bottom:1145.520000px;}
.h2_c00183{height:32.400000px;}
.h5_c00183{height:35.991211px;}
.h4_c00183{height:38.818125px;}
.h6_c00183{height:48.088125px;}
.h9_c00183{height:48.093750px;}
.h3_c00183{height:57.867188px;}
.h8_c00183{height:61.526250px;}
.h7_c00183{height:96.638203px;}
.h0_c00183{height:1262.880000px;}
.h1_c00183{height:1263.000000px;}
.w2_c00183{width:739.230000px;}
.w0_c00183{width:892.980000px;}
.w1_c00183{width:893.250000px;}
.x0_c00183{left:0.000000px;}
.x2_c00183{left:7.920000px;}
.x1_c00183{left:77.040000px;}
.x3_c00183{left:84.960000px;}
.x5_c00183{left:99.936000px;}
.x4_c00183{left:442.695000px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.v2_c00183{vertical-align:21.120000pt;}
.v1_c00183{vertical-align:26.880000pt;}
.ls4_c00183{letter-spacing:-0.565333pt;}
.ls3_c00183{letter-spacing:-0.480000pt;}
.lsa_c00183{letter-spacing:-0.286933pt;}
.ls8_c00183{letter-spacing:-0.262400pt;}
.lsf_c00183{letter-spacing:-0.213867pt;}
.lsc_c00183{letter-spacing:-0.197867pt;}
.lsb_c00183{letter-spacing:-0.192533pt;}
.ls7_c00183{letter-spacing:-0.112000pt;}
.ls13_c00183{letter-spacing:-0.057600pt;}
.ls11_c00183{letter-spacing:-0.051733pt;}
.ls2_c00183{letter-spacing:0.000000pt;}
.ls6_c00183{letter-spacing:0.019733pt;}
.ls5_c00183{letter-spacing:0.028267pt;}
.ls9_c00183{letter-spacing:0.185067pt;}
.lsd_c00183{letter-spacing:0.272000pt;}
.ls12_c00183{letter-spacing:0.349867pt;}
.lse_c00183{letter-spacing:0.426133pt;}
.ls10_c00183{letter-spacing:0.800000pt;}
.ls0_c00183{letter-spacing:2.074880pt;}
.ls1_c00183{letter-spacing:3.973120pt;}
.ws3_c00183{word-spacing:-106.880000pt;}
.ws0_c00183{word-spacing:-64.000000pt;}
.ws2_c00183{word-spacing:-12.005120pt;}
.wsa_c00183{word-spacing:-11.953387pt;}
.ws9_c00183{word-spacing:-11.791253pt;}
.ws1_c00183{word-spacing:-9.690880pt;}
.ws4_c00183{word-spacing:-9.578880pt;}
.ws7_c00183{word-spacing:-9.498347pt;}
.ws8_c00183{word-spacing:-9.493013pt;}
.ws5_c00183{word-spacing:-9.428480pt;}
.ws6_c00183{word-spacing:-9.403947pt;}
.wsb_c00183{word-spacing:0.000000pt;}
._0_c00183{margin-left:-1.024000pt;}
._6_c00183{width:0.908868pt;}
._1_c00183{width:1.845333pt;}
._5_c00183{width:2.915754pt;}
._7_c00183{width:3.972759pt;}
._8_c00183{width:5.317306pt;}
._9_c00183{width:6.273573pt;}
._2_c00183{width:81.946750pt;}
._4_c00183{width:120.153216pt;}
._3_c00183{width:141.349460pt;}
.fs6_c00183{font-size:26.880000pt;}
.fs5_c00183{font-size:34.560000pt;}
.fs1_c00183{font-size:42.880000pt;}
.fs2_c00183{font-size:48.000000pt;}
.fs3_c00183{font-size:53.120000pt;}
.fs0_c00183{font-size:64.000000pt;}
.fs4_c00183{font-size:106.880000pt;}
.y0_c00183{bottom:0.000000pt;}
.y2_c00183{bottom:13.600000pt;}
.ye_c00183{bottom:60.192000pt;}
.yd_c00183{bottom:75.712000pt;}
.yc_c00183{bottom:88.832000pt;}
.yb_c00183{bottom:101.792000pt;}
.ya_c00183{bottom:114.752000pt;}
.y9_c00183{bottom:131.072000pt;}
.y35_c00183{bottom:155.226667pt;}
.y34_c00183{bottom:174.746667pt;}
.y33_c00183{bottom:194.266667pt;}
.y32_c00183{bottom:213.786667pt;}
.y31_c00183{bottom:233.306667pt;}
.y30_c00183{bottom:252.866667pt;}
.y2f_c00183{bottom:272.386667pt;}
.y2e_c00183{bottom:291.906667pt;}
.y2d_c00183{bottom:311.426667pt;}
.y2c_c00183{bottom:330.946667pt;}
.y2b_c00183{bottom:350.466667pt;}
.y2a_c00183{bottom:369.986667pt;}
.y29_c00183{bottom:389.506667pt;}
.y28_c00183{bottom:409.026667pt;}
.y27_c00183{bottom:428.706667pt;}
.y26_c00183{bottom:448.226667pt;}
.y25_c00183{bottom:467.746667pt;}
.y24_c00183{bottom:487.266667pt;}
.y23_c00183{bottom:506.813333pt;}
.y22_c00183{bottom:526.333333pt;}
.y21_c00183{bottom:545.853333pt;}
.y20_c00183{bottom:565.373333pt;}
.y1f_c00183{bottom:584.893333pt;}
.y1e_c00183{bottom:604.413333pt;}
.y1d_c00183{bottom:623.933333pt;}
.y1c_c00183{bottom:650.333333pt;}
.y1b_c00183{bottom:668.413333pt;}
.y1a_c00183{bottom:688.573333pt;}
.y19_c00183{bottom:704.413333pt;}
.y18_c00183{bottom:717.373333pt;}
.y17_c00183{bottom:730.333333pt;}
.y16_c00183{bottom:743.453333pt;}
.y15_c00183{bottom:756.453333pt;}
.y14_c00183{bottom:769.573333pt;}
.y13_c00183{bottom:782.533333pt;}
.y12_c00183{bottom:795.493333pt;}
.y11_c00183{bottom:809.253333pt;}
.y10_c00183{bottom:855.653333pt;}
.yf_c00183{bottom:894.693333pt;}
.y8_c00183{bottom:943.013333pt;}
.y7_c00183{bottom:955.973333pt;}
.y6_c00183{bottom:969.093333pt;}
.y5_c00183{bottom:982.053333pt;}
.y4_c00183{bottom:995.013333pt;}
.y3_c00183{bottom:1008.160000pt;}
.y1_c00183{bottom:1018.240000pt;}
.h2_c00183{height:28.800000pt;}
.h5_c00183{height:31.992188pt;}
.h4_c00183{height:34.505000pt;}
.h6_c00183{height:42.745000pt;}
.h9_c00183{height:42.750000pt;}
.h3_c00183{height:51.437500pt;}
.h8_c00183{height:54.690000pt;}
.h7_c00183{height:85.900625pt;}
.h0_c00183{height:1122.560000pt;}
.h1_c00183{height:1122.666667pt;}
.w2_c00183{width:657.093333pt;}
.w0_c00183{width:793.760000pt;}
.w1_c00183{width:794.000000pt;}
.x0_c00183{left:0.000000pt;}
.x2_c00183{left:7.040000pt;}
.x1_c00183{left:68.480000pt;}
.x3_c00183{left:75.520000pt;}
.x5_c00183{left:88.832000pt;}
.x4_c00183{left:393.506667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b584a41150b84d951c55c39d.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:0.981934;font-style:normal;font-weight:normal;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_79842eb64124db8c88766a27.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:0.687012;font-style:normal;font-weight:normal;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_eae33c6359ed7b5f62d2b467.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00184;src:url('chunks/assets/font_2b609cfb30a19fc7f5590624.woff2')format("woff");}.ff4_c00184{font-family:ff4_c00184;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00184;src:url('chunks/assets/font_73ec7a10e82d4016ae37dc5f.woff2')format("woff");}.ff5_c00184{font-family:ff5_c00184;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00184;src:url('chunks/assets/font_be96f422cfdc8957a4cb1493.woff2')format("woff");}.ff6_c00184{font-family:ff6_c00184;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00184{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00184{vertical-align:0.000000px;}
.ls4_c00184{letter-spacing:-0.240600px;}
.lsa_c00184{letter-spacing:-0.228000px;}
.lse_c00184{letter-spacing:-0.222600px;}
.ls7_c00184{letter-spacing:-0.107400px;}
.ls9_c00184{letter-spacing:-0.078600px;}
.lsb_c00184{letter-spacing:-0.058200px;}
.ls3_c00184{letter-spacing:0.000000px;}
.ls1_c00184{letter-spacing:0.022200px;}
.ls5_c00184{letter-spacing:0.175200px;}
.lsc_c00184{letter-spacing:0.180000px;}
.ls0_c00184{letter-spacing:0.220320px;}
.lsd_c00184{letter-spacing:0.259800px;}
.lsf_c00184{letter-spacing:0.306000px;}
.ls8_c00184{letter-spacing:0.479400px;}
.ls6_c00184{letter-spacing:0.654000px;}
.ls2_c00184{letter-spacing:74.201760px;}
.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:-59.760000px;}
.ws9_c00184{word-spacing:-13.811760px;}
.ws1_c00184{word-spacing:-13.505760px;}
.ws4_c00184{word-spacing:-13.447560px;}
.ws3_c00184{word-spacing:-13.398360px;}
.ws2_c00184{word-spacing:-13.265160px;}
.ws7_c00184{word-spacing:-11.162040px;}
.ws5_c00184{word-spacing:-10.924440px;}
.ws6_c00184{word-spacing:-10.902240px;}
.ws8_c00184{word-spacing:-10.679640px;}
.wsa_c00184{word-spacing:0.000000px;}
._7_c00184{margin-left:-1.206000px;}
._0_c00184{width:1.075800px;}
._1_c00184{width:2.215816px;}
._2_c00184{width:3.990031px;}
._3_c00184{width:5.421571px;}
._4_c00184{width:7.111201px;}
._5_c00184{width:8.130354px;}
._8_c00184{width:9.840960px;}
._6_c00184{width:10.995601px;}
._9_c00184{width:30.487440px;}
.fc2_c00184{color:rgb(51,51,255);}
.fc1_c00184{color:rgb(0,0,0);}
.fc0_c00184{color:rgb(0,0,255);}
.fs3_c00184{font-size:48.240000px;}
.fs1_c00184{font-size:54.000000px;}
.fs0_c00184{font-size:59.760000px;}
.fs2_c00184{font-size:72.000000px;}
.y0_c00184{bottom:0.000000px;}
.y3_c00184{bottom:71.136000px;}
.y2_c00184{bottom:88.776000px;}
.y2f_c00184{bottom:204.870000px;}
.y2e_c00184{bottom:226.830000px;}
.y2d_c00184{bottom:248.970000px;}
.y2c_c00184{bottom:270.930000px;}
.y2b_c00184{bottom:300.495000px;}
.y2a_c00184{bottom:325.155000px;}
.y29_c00184{bottom:347.475000px;}
.y28_c00184{bottom:362.055000px;}
.y27_c00184{bottom:381.315000px;}
.y26_c00184{bottom:395.895000px;}
.y25_c00184{bottom:414.975000px;}
.y24_c00184{bottom:434.235000px;}
.y23_c00184{bottom:448.815000px;}
.y22_c00184{bottom:468.075000px;}
.y21_c00184{bottom:482.655000px;}
.y20_c00184{bottom:497.235000px;}
.y1f_c00184{bottom:516.495000px;}
.y1e_c00184{bottom:535.575000px;}
.y1d_c00184{bottom:554.655000px;}
.y1c_c00184{bottom:581.325000px;}
.y1b_c00184{bottom:605.985000px;}
.y1a_c00184{bottom:631.725000px;}
.y19_c00184{bottom:661.425000px;}
.y18_c00184{bottom:682.305000px;}
.y17_c00184{bottom:703.365000px;}
.y16_c00184{bottom:725.325000px;}
.y15_c00184{bottom:747.285000px;}
.y14_c00184{bottom:769.245000px;}
.y13_c00184{bottom:791.205000px;}
.y12_c00184{bottom:813.165000px;}
.y11_c00184{bottom:835.125000px;}
.y10_c00184{bottom:857.130000px;}
.yf_c00184{bottom:879.090000px;}
.ye_c00184{bottom:901.230000px;}
.yd_c00184{bottom:923.190000px;}
.yc_c00184{bottom:945.150000px;}
.yb_c00184{bottom:967.110000px;}
.ya_c00184{bottom:989.070000px;}
.y9_c00184{bottom:1011.030000px;}
.y8_c00184{bottom:1032.990000px;}
.y7_c00184{bottom:1054.950000px;}
.y6_c00184{bottom:1076.910000px;}
.y5_c00184{bottom:1098.870000px;}
.y4_c00184{bottom:1120.830000px;}
.y1_c00184{bottom:1163.520000px;}
.h3_c00184{height:35.991211px;}
.h7_c00184{height:38.818125px;}
.h5_c00184{height:40.472227px;}
.h2_c00184{height:48.029766px;}
.h4_c00184{height:48.088125px;}
.h6_c00184{height:57.867188px;}
.h0_c00184{height:1262.880000px;}
.h1_c00184{height:1263.000000px;}
.w0_c00184{width:892.980000px;}
.w1_c00184{width:893.250000px;}
.x0_c00184{left:0.000000px;}
.x1_c00184{left:84.960000px;}
.x4_c00184{left:99.936000px;}
.x5_c00184{left:106.236000px;}
.x3_c00184{left:442.695000px;}
.x2_c00184{left:446.475000px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls4_c00184{letter-spacing:-0.213867pt;}
.lsa_c00184{letter-spacing:-0.202667pt;}
.lse_c00184{letter-spacing:-0.197867pt;}
.ls7_c00184{letter-spacing:-0.095467pt;}
.ls9_c00184{letter-spacing:-0.069867pt;}
.lsb_c00184{letter-spacing:-0.051733pt;}
.ls3_c00184{letter-spacing:0.000000pt;}
.ls1_c00184{letter-spacing:0.019733pt;}
.ls5_c00184{letter-spacing:0.155733pt;}
.lsc_c00184{letter-spacing:0.160000pt;}
.ls0_c00184{letter-spacing:0.195840pt;}
.lsd_c00184{letter-spacing:0.230933pt;}
.lsf_c00184{letter-spacing:0.272000pt;}
.ls8_c00184{letter-spacing:0.426133pt;}
.ls6_c00184{letter-spacing:0.581333pt;}
.ls2_c00184{letter-spacing:65.957120pt;}
.ws0_c00184{word-spacing:-53.120000pt;}
.ws9_c00184{word-spacing:-12.277120pt;}
.ws1_c00184{word-spacing:-12.005120pt;}
.ws4_c00184{word-spacing:-11.953387pt;}
.ws3_c00184{word-spacing:-11.909653pt;}
.ws2_c00184{word-spacing:-11.791253pt;}
.ws7_c00184{word-spacing:-9.921813pt;}
.ws5_c00184{word-spacing:-9.710613pt;}
.ws6_c00184{word-spacing:-9.690880pt;}
.ws8_c00184{word-spacing:-9.493013pt;}
.wsa_c00184{word-spacing:0.000000pt;}
._7_c00184{margin-left:-1.072000pt;}
._0_c00184{width:0.956266pt;}
._1_c00184{width:1.969615pt;}
._2_c00184{width:3.546694pt;}
._3_c00184{width:4.819174pt;}
._4_c00184{width:6.321068pt;}
._5_c00184{width:7.226982pt;}
._8_c00184{width:8.747520pt;}
._6_c00184{width:9.773868pt;}
._9_c00184{width:27.099947pt;}
.fs3_c00184{font-size:42.880000pt;}
.fs1_c00184{font-size:48.000000pt;}
.fs0_c00184{font-size:53.120000pt;}
.fs2_c00184{font-size:64.000000pt;}
.y0_c00184{bottom:0.000000pt;}
.y3_c00184{bottom:63.232000pt;}
.y2_c00184{bottom:78.912000pt;}
.y2f_c00184{bottom:182.106667pt;}
.y2e_c00184{bottom:201.626667pt;}
.y2d_c00184{bottom:221.306667pt;}
.y2c_c00184{bottom:240.826667pt;}
.y2b_c00184{bottom:267.106667pt;}
.y2a_c00184{bottom:289.026667pt;}
.y29_c00184{bottom:308.866667pt;}
.y28_c00184{bottom:321.826667pt;}
.y27_c00184{bottom:338.946667pt;}
.y26_c00184{bottom:351.906667pt;}
.y25_c00184{bottom:368.866667pt;}
.y24_c00184{bottom:385.986667pt;}
.y23_c00184{bottom:398.946667pt;}
.y22_c00184{bottom:416.066667pt;}
.y21_c00184{bottom:429.026667pt;}
.y20_c00184{bottom:441.986667pt;}
.y1f_c00184{bottom:459.106667pt;}
.y1e_c00184{bottom:476.066667pt;}
.y1d_c00184{bottom:493.026667pt;}
.y1c_c00184{bottom:516.733333pt;}
.y1b_c00184{bottom:538.653333pt;}
.y1a_c00184{bottom:561.533333pt;}
.y19_c00184{bottom:587.933333pt;}
.y18_c00184{bottom:606.493333pt;}
.y17_c00184{bottom:625.213333pt;}
.y16_c00184{bottom:644.733333pt;}
.y15_c00184{bottom:664.253333pt;}
.y14_c00184{bottom:683.773333pt;}
.y13_c00184{bottom:703.293333pt;}
.y12_c00184{bottom:722.813333pt;}
.y11_c00184{bottom:742.333333pt;}
.y10_c00184{bottom:761.893333pt;}
.yf_c00184{bottom:781.413333pt;}
.ye_c00184{bottom:801.093333pt;}
.yd_c00184{bottom:820.613333pt;}
.yc_c00184{bottom:840.133333pt;}
.yb_c00184{bottom:859.653333pt;}
.ya_c00184{bottom:879.173333pt;}
.y9_c00184{bottom:898.693333pt;}
.y8_c00184{bottom:918.213333pt;}
.y7_c00184{bottom:937.733333pt;}
.y6_c00184{bottom:957.253333pt;}
.y5_c00184{bottom:976.773333pt;}
.y4_c00184{bottom:996.293333pt;}
.y1_c00184{bottom:1034.240000pt;}
.h3_c00184{height:31.992188pt;}
.h7_c00184{height:34.505000pt;}
.h5_c00184{height:35.975313pt;}
.h2_c00184{height:42.693125pt;}
.h4_c00184{height:42.745000pt;}
.h6_c00184{height:51.437500pt;}
.h0_c00184{height:1122.560000pt;}
.h1_c00184{height:1122.666667pt;}
.w0_c00184{width:793.760000pt;}
.w1_c00184{width:794.000000pt;}
.x0_c00184{left:0.000000pt;}
.x1_c00184{left:75.520000pt;}
.x4_c00184{left:88.832000pt;}
.x5_c00184{left:94.432000pt;}
.x3_c00184{left:393.506667pt;}
.x2_c00184{left:396.866667pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00185 {
      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_c00185 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00185 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00185 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00186 {
      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_c00186 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00186 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00186 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00187 {
      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_c00187 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00187 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00187 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00188 {
      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_c00188 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00188 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00188 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00189 {
      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_c00189 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00189 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00189 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_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;}
.sc__c00190{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00190{-webkit-text-stroke:0px transparent;}
}
.y0_c00190{bottom:0.000000px;}
.h0_c00190{height:1620.000000px;}
.w0_c00190{width:2880.000000px;}
.x0_c00190{left:0.000000px;}
@media print{
.y0_c00190{bottom:0.000000pt;}
.h0_c00190{height:1440.000000pt;}
.w0_c00190{width:2560.000000pt;}
.x0_c00190{left:0.000000pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00191 {
      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_c00191 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00191 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00191 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00192 {
      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_c00192 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00192 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00192 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00193 {
      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_c00193 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00193 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00193 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00194 {
      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_c00194 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00194 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00194 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00195 {
      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_c00195 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00195 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00195 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00196 {
      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_c00196 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00196 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00196 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00197 {
      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_c00197 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00197 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00197 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00198 {
      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_c00198 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00198 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00198 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_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_b566319a72a5b5a6e02508b3.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:0.981934;font-style:normal;font-weight:normal;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_d0972c000f4830ecef4ae175.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:0.687012;font-style:normal;font-weight:normal;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_174f946960a7ad57bec88ad4.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00199;src:url('chunks/assets/font_eae33c6359ed7b5f62d2b467.woff2')format("woff");}.ff4_c00199{font-family:ff4_c00199;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00199;src:url('chunks/assets/font_115eb68ea92b384192f2372d.woff2')format("woff");}.ff5_c00199{font-family:ff5_c00199;line-height:0.937012;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00199;src:url('chunks/assets/font_2e17ceb1b5b1baac6c3738db.woff2')format("woff");}.ff6_c00199{font-family:ff6_c00199;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00199{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c00199{vertical-align:-30.240000px;}
.v0_c00199{vertical-align:0.000000px;}
.v2_c00199{vertical-align:23.760000px;}
.v1_c00199{vertical-align:30.240000px;}
.ls18_c00199{letter-spacing:-0.540000px;}
.lsa_c00199{letter-spacing:-0.322800px;}
.ls8_c00199{letter-spacing:-0.295200px;}
.ls13_c00199{letter-spacing:-0.248400px;}
.lsd_c00199{letter-spacing:-0.240600px;}
.lsc_c00199{letter-spacing:-0.222600px;}
.lsb_c00199{letter-spacing:-0.216600px;}
.ls7_c00199{letter-spacing:-0.126000px;}
.ls11_c00199{letter-spacing:-0.078600px;}
.ls12_c00199{letter-spacing:-0.064800px;}
.ls17_c00199{letter-spacing:-0.058200px;}
.lse_c00199{letter-spacing:-0.043800px;}
.ls2_c00199{letter-spacing:0.000000px;}
.ls4_c00199{letter-spacing:0.022200px;}
.lsf_c00199{letter-spacing:0.024000px;}
.ls6_c00199{letter-spacing:0.031800px;}
.ls10_c00199{letter-spacing:0.043800px;}
.ls1b_c00199{letter-spacing:0.060600px;}
.ls1_c00199{letter-spacing:0.077760px;}
.ls5_c00199{letter-spacing:0.083400px;}
.ls3_c00199{letter-spacing:0.180000px;}
.ls9_c00199{letter-spacing:0.208200px;}
.ls0_c00199{letter-spacing:0.306000px;}
.ls15_c00199{letter-spacing:0.471600px;}
.ls19_c00199{letter-spacing:0.660000px;}
.ls16_c00199{letter-spacing:0.690000px;}
.ls14_c00199{letter-spacing:0.744000px;}
.ls1a_c00199{letter-spacing:0.780000px;}
.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;}
}
.ws4_c00199{word-spacing:-120.240000px;}
.ws0_c00199{word-spacing:-72.000000px;}
.ws11_c00199{word-spacing:-14.249760px;}
.ws13_c00199{word-spacing:-14.195760px;}
.ws16_c00199{word-spacing:-14.165760px;}
.ws12_c00199{word-spacing:-13.977360px;}
.wsd_c00199{word-spacing:-13.811760px;}
.wsc_c00199{word-spacing:-13.529760px;}
.ws3_c00199{word-spacing:-13.505760px;}
.wsb_c00199{word-spacing:-13.461960px;}
.ws15_c00199{word-spacing:-13.447560px;}
.wsf_c00199{word-spacing:-13.440960px;}
.wse_c00199{word-spacing:-13.427160px;}
.wsa_c00199{word-spacing:-13.265160px;}
.ws10_c00199{word-spacing:-13.257360px;}
.ws1_c00199{word-spacing:-10.924440px;}
.ws2_c00199{word-spacing:-10.902240px;}
.ws5_c00199{word-spacing:-10.776240px;}
.ws8_c00199{word-spacing:-10.685640px;}
.ws9_c00199{word-spacing:-10.679640px;}
.ws6_c00199{word-spacing:-10.607040px;}
.ws7_c00199{word-spacing:-10.579440px;}
.ws14_c00199{word-spacing:-8.786880px;}
.ws17_c00199{word-spacing:0.000000px;}
._0_c00199{margin-left:-1.080000px;}
._d_c00199{width:1.000392px;}
._1_c00199{width:2.004000px;}
._8_c00199{width:3.341975px;}
._c_c00199{width:4.468318px;}
._5_c00199{width:6.174624px;}
._e_c00199{width:7.246587px;}
._b_c00199{width:8.426375px;}
._9_c00199{width:9.681000px;}
._a_c00199{width:11.135859px;}
._6_c00199{width:16.305024px;}
._7_c00199{width:17.725577px;}
._2_c00199{width:92.118094px;}
._4_c00199{width:135.100368px;}
._3_c00199{width:159.018143px;}
.fc2_c00199{color:transparent;}
.fc1_c00199{color:rgb(0,0,0);}
.fc0_c00199{color:rgb(0,0,255);}
.fs6_c00199{font-size:30.240000px;}
.fs5_c00199{font-size:38.880000px;}
.fs1_c00199{font-size:48.240000px;}
.fs2_c00199{font-size:54.000000px;}
.fs3_c00199{font-size:59.760000px;}
.fs0_c00199{font-size:72.000000px;}
.fs4_c00199{font-size:120.240000px;}
.y0_c00199{bottom:0.000000px;}
.y2_c00199{bottom:15.300000px;}
.yf_c00199{bottom:67.716000px;}
.ye_c00199{bottom:85.176000px;}
.yd_c00199{bottom:99.936000px;}
.yc_c00199{bottom:114.516000px;}
.yb_c00199{bottom:129.276000px;}
.ya_c00199{bottom:143.856000px;}
.y9_c00199{bottom:162.210000px;}
.y35_c00199{bottom:196.590000px;}
.y34_c00199{bottom:218.550000px;}
.y33_c00199{bottom:240.510000px;}
.y32_c00199{bottom:262.470000px;}
.y31_c00199{bottom:284.475000px;}
.y30_c00199{bottom:306.435000px;}
.y2f_c00199{bottom:328.395000px;}
.y2e_c00199{bottom:350.355000px;}
.y2d_c00199{bottom:372.315000px;}
.y2c_c00199{bottom:394.275000px;}
.y2b_c00199{bottom:416.235000px;}
.y2a_c00199{bottom:438.195000px;}
.y29_c00199{bottom:460.155000px;}
.y28_c00199{bottom:482.295000px;}
.y27_c00199{bottom:504.255000px;}
.y26_c00199{bottom:526.215000px;}
.y25_c00199{bottom:548.175000px;}
.y24_c00199{bottom:570.165000px;}
.y23_c00199{bottom:592.125000px;}
.y22_c00199{bottom:614.085000px;}
.y21_c00199{bottom:636.045000px;}
.y20_c00199{bottom:658.005000px;}
.y1f_c00199{bottom:679.965000px;}
.y1e_c00199{bottom:701.925000px;}
.y1d_c00199{bottom:731.625000px;}
.y1c_c00199{bottom:751.965000px;}
.y1b_c00199{bottom:774.645000px;}
.y1a_c00199{bottom:792.465000px;}
.y19_c00199{bottom:807.045000px;}
.y18_c00199{bottom:821.625000px;}
.y17_c00199{bottom:836.385000px;}
.y16_c00199{bottom:851.010000px;}
.y15_c00199{bottom:865.770000px;}
.y14_c00199{bottom:880.350000px;}
.y13_c00199{bottom:894.930000px;}
.y12_c00199{bottom:910.410000px;}
.y11_c00199{bottom:962.610000px;}
.y10_c00199{bottom:1006.530000px;}
.y8_c00199{bottom:1060.890000px;}
.y7_c00199{bottom:1075.470000px;}
.y6_c00199{bottom:1090.230000px;}
.y5_c00199{bottom:1104.810000px;}
.y4_c00199{bottom:1119.390000px;}
.y3_c00199{bottom:1134.180000px;}
.y1_c00199{bottom:1145.520000px;}
.h2_c00199{height:32.400000px;}
.h5_c00199{height:35.991211px;}
.h4_c00199{height:42.186445px;}
.h9_c00199{height:50.205234px;}
.h6_c00199{height:52.260820px;}
.h3_c00199{height:57.867188px;}
.h8_c00199{height:64.241016px;}
.h7_c00199{height:96.638203px;}
.h0_c00199{height:1262.880000px;}
.h1_c00199{height:1263.000000px;}
.w2_c00199{width:739.230000px;}
.w0_c00199{width:892.980000px;}
.w1_c00199{width:893.250000px;}
.x0_c00199{left:0.000000px;}
.x2_c00199{left:7.920000px;}
.x1_c00199{left:77.040000px;}
.x3_c00199{left:84.960000px;}
.x4_c00199{left:442.695000px;}
@media print{
.v3_c00199{vertical-align:-26.880000pt;}
.v0_c00199{vertical-align:0.000000pt;}
.v2_c00199{vertical-align:21.120000pt;}
.v1_c00199{vertical-align:26.880000pt;}
.ls18_c00199{letter-spacing:-0.480000pt;}
.lsa_c00199{letter-spacing:-0.286933pt;}
.ls8_c00199{letter-spacing:-0.262400pt;}
.ls13_c00199{letter-spacing:-0.220800pt;}
.lsd_c00199{letter-spacing:-0.213867pt;}
.lsc_c00199{letter-spacing:-0.197867pt;}
.lsb_c00199{letter-spacing:-0.192533pt;}
.ls7_c00199{letter-spacing:-0.112000pt;}
.ls11_c00199{letter-spacing:-0.069867pt;}
.ls12_c00199{letter-spacing:-0.057600pt;}
.ls17_c00199{letter-spacing:-0.051733pt;}
.lse_c00199{letter-spacing:-0.038933pt;}
.ls2_c00199{letter-spacing:0.000000pt;}
.ls4_c00199{letter-spacing:0.019733pt;}
.lsf_c00199{letter-spacing:0.021333pt;}
.ls6_c00199{letter-spacing:0.028267pt;}
.ls10_c00199{letter-spacing:0.038933pt;}
.ls1b_c00199{letter-spacing:0.053867pt;}
.ls1_c00199{letter-spacing:0.069120pt;}
.ls5_c00199{letter-spacing:0.074133pt;}
.ls3_c00199{letter-spacing:0.160000pt;}
.ls9_c00199{letter-spacing:0.185067pt;}
.ls0_c00199{letter-spacing:0.272000pt;}
.ls15_c00199{letter-spacing:0.419200pt;}
.ls19_c00199{letter-spacing:0.586667pt;}
.ls16_c00199{letter-spacing:0.613333pt;}
.ls14_c00199{letter-spacing:0.661333pt;}
.ls1a_c00199{letter-spacing:0.693333pt;}
.ws4_c00199{word-spacing:-106.880000pt;}
.ws0_c00199{word-spacing:-64.000000pt;}
.ws11_c00199{word-spacing:-12.666453pt;}
.ws13_c00199{word-spacing:-12.618453pt;}
.ws16_c00199{word-spacing:-12.591787pt;}
.ws12_c00199{word-spacing:-12.424320pt;}
.wsd_c00199{word-spacing:-12.277120pt;}
.wsc_c00199{word-spacing:-12.026453pt;}
.ws3_c00199{word-spacing:-12.005120pt;}
.wsb_c00199{word-spacing:-11.966187pt;}
.ws15_c00199{word-spacing:-11.953387pt;}
.wsf_c00199{word-spacing:-11.947520pt;}
.wse_c00199{word-spacing:-11.935253pt;}
.wsa_c00199{word-spacing:-11.791253pt;}
.ws10_c00199{word-spacing:-11.784320pt;}
.ws1_c00199{word-spacing:-9.710613pt;}
.ws2_c00199{word-spacing:-9.690880pt;}
.ws5_c00199{word-spacing:-9.578880pt;}
.ws8_c00199{word-spacing:-9.498347pt;}
.ws9_c00199{word-spacing:-9.493013pt;}
.ws6_c00199{word-spacing:-9.428480pt;}
.ws7_c00199{word-spacing:-9.403947pt;}
.ws14_c00199{word-spacing:-7.810560pt;}
.ws17_c00199{word-spacing:0.000000pt;}
._0_c00199{margin-left:-0.960000pt;}
._d_c00199{width:0.889237pt;}
._1_c00199{width:1.781333pt;}
._8_c00199{width:2.970644pt;}
._c_c00199{width:3.971838pt;}
._5_c00199{width:5.488554pt;}
._e_c00199{width:6.441411pt;}
._b_c00199{width:7.490111pt;}
._9_c00199{width:8.605334pt;}
._a_c00199{width:9.898541pt;}
._6_c00199{width:14.493354pt;}
._7_c00199{width:15.756068pt;}
._2_c00199{width:81.882750pt;}
._4_c00199{width:120.089216pt;}
._3_c00199{width:141.349460pt;}
.fs6_c00199{font-size:26.880000pt;}
.fs5_c00199{font-size:34.560000pt;}
.fs1_c00199{font-size:42.880000pt;}
.fs2_c00199{font-size:48.000000pt;}
.fs3_c00199{font-size:53.120000pt;}
.fs0_c00199{font-size:64.000000pt;}
.fs4_c00199{font-size:106.880000pt;}
.y0_c00199{bottom:0.000000pt;}
.y2_c00199{bottom:13.600000pt;}
.yf_c00199{bottom:60.192000pt;}
.ye_c00199{bottom:75.712000pt;}
.yd_c00199{bottom:88.832000pt;}
.yc_c00199{bottom:101.792000pt;}
.yb_c00199{bottom:114.912000pt;}
.ya_c00199{bottom:127.872000pt;}
.y9_c00199{bottom:144.186667pt;}
.y35_c00199{bottom:174.746667pt;}
.y34_c00199{bottom:194.266667pt;}
.y33_c00199{bottom:213.786667pt;}
.y32_c00199{bottom:233.306667pt;}
.y31_c00199{bottom:252.866667pt;}
.y30_c00199{bottom:272.386667pt;}
.y2f_c00199{bottom:291.906667pt;}
.y2e_c00199{bottom:311.426667pt;}
.y2d_c00199{bottom:330.946667pt;}
.y2c_c00199{bottom:350.466667pt;}
.y2b_c00199{bottom:369.986667pt;}
.y2a_c00199{bottom:389.506667pt;}
.y29_c00199{bottom:409.026667pt;}
.y28_c00199{bottom:428.706667pt;}
.y27_c00199{bottom:448.226667pt;}
.y26_c00199{bottom:467.746667pt;}
.y25_c00199{bottom:487.266667pt;}
.y24_c00199{bottom:506.813333pt;}
.y23_c00199{bottom:526.333333pt;}
.y22_c00199{bottom:545.853333pt;}
.y21_c00199{bottom:565.373333pt;}
.y20_c00199{bottom:584.893333pt;}
.y1f_c00199{bottom:604.413333pt;}
.y1e_c00199{bottom:623.933333pt;}
.y1d_c00199{bottom:650.333333pt;}
.y1c_c00199{bottom:668.413333pt;}
.y1b_c00199{bottom:688.573333pt;}
.y1a_c00199{bottom:704.413333pt;}
.y19_c00199{bottom:717.373333pt;}
.y18_c00199{bottom:730.333333pt;}
.y17_c00199{bottom:743.453333pt;}
.y16_c00199{bottom:756.453333pt;}
.y15_c00199{bottom:769.573333pt;}
.y14_c00199{bottom:782.533333pt;}
.y13_c00199{bottom:795.493333pt;}
.y12_c00199{bottom:809.253333pt;}
.y11_c00199{bottom:855.653333pt;}
.y10_c00199{bottom:894.693333pt;}
.y8_c00199{bottom:943.013333pt;}
.y7_c00199{bottom:955.973333pt;}
.y6_c00199{bottom:969.093333pt;}
.y5_c00199{bottom:982.053333pt;}
.y4_c00199{bottom:995.013333pt;}
.y3_c00199{bottom:1008.160000pt;}
.y1_c00199{bottom:1018.240000pt;}
.h2_c00199{height:28.800000pt;}
.h5_c00199{height:31.992188pt;}
.h4_c00199{height:37.499062pt;}
.h9_c00199{height:44.626875pt;}
.h6_c00199{height:46.454062pt;}
.h3_c00199{height:51.437500pt;}
.h8_c00199{height:57.103125pt;}
.h7_c00199{height:85.900625pt;}
.h0_c00199{height:1122.560000pt;}
.h1_c00199{height:1122.666667pt;}
.w2_c00199{width:657.093333pt;}
.w0_c00199{width:793.760000pt;}
.w1_c00199{width:794.000000pt;}
.x0_c00199{left:0.000000pt;}
.x2_c00199{left:7.040000pt;}
.x1_c00199{left:68.480000pt;}
.x3_c00199{left:75.520000pt;}
.x4_c00199{left:393.506667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_945a8bed54ff23ab3f88a7da.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:0.981934;font-style:normal;font-weight:normal;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_d0972c000f4830ecef4ae175.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:0.687012;font-style:normal;font-weight:normal;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_05f828649c00e539a2317197.woff2')format("woff");}.ff3_c00200{font-family:ff3_c00200;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00200;src:url('chunks/assets/font_b8c9d823a0c6178cb615c126.woff2')format("woff");}.ff4_c00200{font-family:ff4_c00200;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00200{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.v1_c00200{vertical-align:30.240000px;}
.ls19_c00200{letter-spacing:-0.696000px;}
.ls12_c00200{letter-spacing:-0.303000px;}
.ls18_c00200{letter-spacing:-0.222600px;}
.ls1a_c00200{letter-spacing:-0.126000px;}
.lsb_c00200{letter-spacing:-0.107400px;}
.ls13_c00200{letter-spacing:-0.064800px;}
.ls9_c00200{letter-spacing:-0.058200px;}
.lsa_c00200{letter-spacing:-0.027600px;}
.ls6_c00200{letter-spacing:0.000000px;}
.ls5_c00200{letter-spacing:0.022200px;}
.lsf_c00200{letter-spacing:0.024000px;}
.ls11_c00200{letter-spacing:0.060600px;}
.ls10_c00200{letter-spacing:0.064200px;}
.ls17_c00200{letter-spacing:0.083400px;}
.ls0_c00200{letter-spacing:0.140400px;}
.ls15_c00200{letter-spacing:0.180000px;}
.lse_c00200{letter-spacing:0.186600px;}
.ls16_c00200{letter-spacing:0.208200px;}
.ls14_c00200{letter-spacing:0.288600px;}
.ls7_c00200{letter-spacing:0.306000px;}
.ls2_c00200{letter-spacing:0.447840px;}
.lsd_c00200{letter-spacing:0.660000px;}
.lsc_c00200{letter-spacing:0.690000px;}
.ls8_c00200{letter-spacing:0.858000px;}
.ls1_c00200{letter-spacing:0.894240px;}
.ls3_c00200{letter-spacing:3.054240px;}
.ls4_c00200{letter-spacing:4.494240px;}
.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:-59.760000px;}
.ws2_c00200{word-spacing:-14.363760px;}
.ws6_c00200{word-spacing:-14.195760px;}
.ws7_c00200{word-spacing:-14.165760px;}
.ws15_c00200{word-spacing:-13.811760px;}
.ws8_c00200{word-spacing:-13.692360px;}
.wse_c00200{word-spacing:-13.646160px;}
.wsa_c00200{word-spacing:-13.569960px;}
.ws9_c00200{word-spacing:-13.529760px;}
.ws1_c00200{word-spacing:-13.505760px;}
.ws3_c00200{word-spacing:-13.478160px;}
.wsd_c00200{word-spacing:-13.447560px;}
.wsc_c00200{word-spacing:-13.440960px;}
.ws5_c00200{word-spacing:-13.398360px;}
.wsb_c00200{word-spacing:-13.202760px;}
.wsf_c00200{word-spacing:-11.110440px;}
.ws14_c00200{word-spacing:-10.924440px;}
.ws10_c00200{word-spacing:-10.902240px;}
.ws13_c00200{word-spacing:-10.776240px;}
.ws11_c00200{word-spacing:-10.679640px;}
.ws12_c00200{word-spacing:-10.206240px;}
.ws4_c00200{word-spacing:-8.786880px;}
.ws16_c00200{word-spacing:0.000000px;}
._6_c00200{margin-left:-1.046431px;}
._0_c00200{width:1.042812px;}
._3_c00200{width:2.684300px;}
._1_c00200{width:4.422001px;}
._2_c00200{width:5.658615px;}
._5_c00200{width:6.841146px;}
._4_c00200{width:9.555564px;}
._7_c00200{width:11.713199px;}
._8_c00200{width:14.621838px;}
.fc1_c00200{color:rgb(0,0,0);}
.fc0_c00200{color:rgb(0,0,255);}
.fs1_c00200{font-size:38.880000px;}
.fs3_c00200{font-size:48.240000px;}
.fs0_c00200{font-size:59.760000px;}
.fs2_c00200{font-size:72.000000px;}
.y0_c00200{bottom:0.000000px;}
.y2_c00200{bottom:71.136000px;}
.y27_c00200{bottom:199.830000px;}
.y26_c00200{bottom:221.790000px;}
.y25_c00200{bottom:243.750000px;}
.y24_c00200{bottom:265.710000px;}
.y23_c00200{bottom:287.715000px;}
.y22_c00200{bottom:317.415000px;}
.y21_c00200{bottom:361.155000px;}
.y20_c00200{bottom:383.115000px;}
.y1f_c00200{bottom:405.075000px;}
.y1e_c00200{bottom:427.215000px;}
.y1d_c00200{bottom:449.175000px;}
.y1c_c00200{bottom:478.695000px;}
.y1b_c00200{bottom:522.795000px;}
.y1a_c00200{bottom:537.555000px;}
.y19_c00200{bottom:564.045000px;}
.y18_c00200{bottom:631.725000px;}
.y17_c00200{bottom:653.685000px;}
.y16_c00200{bottom:683.385000px;}
.y15_c00200{bottom:725.325000px;}
.y14_c00200{bottom:747.285000px;}
.y13_c00200{bottom:769.245000px;}
.y12_c00200{bottom:791.205000px;}
.y11_c00200{bottom:813.165000px;}
.y10_c00200{bottom:835.125000px;}
.yf_c00200{bottom:857.130000px;}
.ye_c00200{bottom:879.090000px;}
.yd_c00200{bottom:901.230000px;}
.yc_c00200{bottom:923.190000px;}
.yb_c00200{bottom:945.150000px;}
.ya_c00200{bottom:967.110000px;}
.y9_c00200{bottom:989.070000px;}
.y8_c00200{bottom:1011.030000px;}
.y7_c00200{bottom:1032.990000px;}
.y6_c00200{bottom:1054.950000px;}
.y5_c00200{bottom:1076.910000px;}
.y4_c00200{bottom:1098.870000px;}
.y3_c00200{bottom:1120.830000px;}
.y1_c00200{bottom:1163.520000px;}
.h6_c00200{height:42.186445px;}
.h2_c00200{height:48.029766px;}
.h3_c00200{height:52.260820px;}
.h5_c00200{height:57.867188px;}
.h4_c00200{height:64.241016px;}
.h0_c00200{height:1262.880000px;}
.h1_c00200{height:1263.000000px;}
.w0_c00200{width:892.980000px;}
.w1_c00200{width:893.250000px;}
.x0_c00200{left:0.000000px;}
.x1_c00200{left:84.960000px;}
.x3_c00200{left:106.236000px;}
.x2_c00200{left:442.695000px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.v1_c00200{vertical-align:26.880000pt;}
.ls19_c00200{letter-spacing:-0.618667pt;}
.ls12_c00200{letter-spacing:-0.269333pt;}
.ls18_c00200{letter-spacing:-0.197867pt;}
.ls1a_c00200{letter-spacing:-0.112000pt;}
.lsb_c00200{letter-spacing:-0.095467pt;}
.ls13_c00200{letter-spacing:-0.057600pt;}
.ls9_c00200{letter-spacing:-0.051733pt;}
.lsa_c00200{letter-spacing:-0.024533pt;}
.ls6_c00200{letter-spacing:0.000000pt;}
.ls5_c00200{letter-spacing:0.019733pt;}
.lsf_c00200{letter-spacing:0.021333pt;}
.ls11_c00200{letter-spacing:0.053867pt;}
.ls10_c00200{letter-spacing:0.057067pt;}
.ls17_c00200{letter-spacing:0.074133pt;}
.ls0_c00200{letter-spacing:0.124800pt;}
.ls15_c00200{letter-spacing:0.160000pt;}
.lse_c00200{letter-spacing:0.165867pt;}
.ls16_c00200{letter-spacing:0.185067pt;}
.ls14_c00200{letter-spacing:0.256533pt;}
.ls7_c00200{letter-spacing:0.272000pt;}
.ls2_c00200{letter-spacing:0.398080pt;}
.lsd_c00200{letter-spacing:0.586667pt;}
.lsc_c00200{letter-spacing:0.613333pt;}
.ls8_c00200{letter-spacing:0.762667pt;}
.ls1_c00200{letter-spacing:0.794880pt;}
.ls3_c00200{letter-spacing:2.714880pt;}
.ls4_c00200{letter-spacing:3.994880pt;}
.ws0_c00200{word-spacing:-53.120000pt;}
.ws2_c00200{word-spacing:-12.767787pt;}
.ws6_c00200{word-spacing:-12.618453pt;}
.ws7_c00200{word-spacing:-12.591787pt;}
.ws15_c00200{word-spacing:-12.277120pt;}
.ws8_c00200{word-spacing:-12.170987pt;}
.wse_c00200{word-spacing:-12.129920pt;}
.wsa_c00200{word-spacing:-12.062187pt;}
.ws9_c00200{word-spacing:-12.026453pt;}
.ws1_c00200{word-spacing:-12.005120pt;}
.ws3_c00200{word-spacing:-11.980587pt;}
.wsd_c00200{word-spacing:-11.953387pt;}
.wsc_c00200{word-spacing:-11.947520pt;}
.ws5_c00200{word-spacing:-11.909653pt;}
.wsb_c00200{word-spacing:-11.735787pt;}
.wsf_c00200{word-spacing:-9.875947pt;}
.ws14_c00200{word-spacing:-9.710613pt;}
.ws10_c00200{word-spacing:-9.690880pt;}
.ws13_c00200{word-spacing:-9.578880pt;}
.ws11_c00200{word-spacing:-9.493013pt;}
.ws12_c00200{word-spacing:-9.072213pt;}
.ws4_c00200{word-spacing:-7.810560pt;}
.ws16_c00200{word-spacing:0.000000pt;}
._6_c00200{margin-left:-0.930161pt;}
._0_c00200{width:0.926944pt;}
._3_c00200{width:2.386044pt;}
._1_c00200{width:3.930668pt;}
._2_c00200{width:5.029880pt;}
._5_c00200{width:6.081018pt;}
._4_c00200{width:8.493835pt;}
._7_c00200{width:10.411732pt;}
._8_c00200{width:12.997189pt;}
.fs1_c00200{font-size:34.560000pt;}
.fs3_c00200{font-size:42.880000pt;}
.fs0_c00200{font-size:53.120000pt;}
.fs2_c00200{font-size:64.000000pt;}
.y0_c00200{bottom:0.000000pt;}
.y2_c00200{bottom:63.232000pt;}
.y27_c00200{bottom:177.626667pt;}
.y26_c00200{bottom:197.146667pt;}
.y25_c00200{bottom:216.666667pt;}
.y24_c00200{bottom:236.186667pt;}
.y23_c00200{bottom:255.746667pt;}
.y22_c00200{bottom:282.146667pt;}
.y21_c00200{bottom:321.026667pt;}
.y20_c00200{bottom:340.546667pt;}
.y1f_c00200{bottom:360.066667pt;}
.y1e_c00200{bottom:379.746667pt;}
.y1d_c00200{bottom:399.266667pt;}
.y1c_c00200{bottom:425.506667pt;}
.y1b_c00200{bottom:464.706667pt;}
.y1a_c00200{bottom:477.826667pt;}
.y19_c00200{bottom:501.373333pt;}
.y18_c00200{bottom:561.533333pt;}
.y17_c00200{bottom:581.053333pt;}
.y16_c00200{bottom:607.453333pt;}
.y15_c00200{bottom:644.733333pt;}
.y14_c00200{bottom:664.253333pt;}
.y13_c00200{bottom:683.773333pt;}
.y12_c00200{bottom:703.293333pt;}
.y11_c00200{bottom:722.813333pt;}
.y10_c00200{bottom:742.333333pt;}
.yf_c00200{bottom:761.893333pt;}
.ye_c00200{bottom:781.413333pt;}
.yd_c00200{bottom:801.093333pt;}
.yc_c00200{bottom:820.613333pt;}
.yb_c00200{bottom:840.133333pt;}
.ya_c00200{bottom:859.653333pt;}
.y9_c00200{bottom:879.173333pt;}
.y8_c00200{bottom:898.693333pt;}
.y7_c00200{bottom:918.213333pt;}
.y6_c00200{bottom:937.733333pt;}
.y5_c00200{bottom:957.253333pt;}
.y4_c00200{bottom:976.773333pt;}
.y3_c00200{bottom:996.293333pt;}
.y1_c00200{bottom:1034.240000pt;}
.h6_c00200{height:37.499062pt;}
.h2_c00200{height:42.693125pt;}
.h3_c00200{height:46.454062pt;}
.h5_c00200{height:51.437500pt;}
.h4_c00200{height:57.103125pt;}
.h0_c00200{height:1122.560000pt;}
.h1_c00200{height:1122.666667pt;}
.w0_c00200{width:793.760000pt;}
.w1_c00200{width:794.000000pt;}
.x0_c00200{left:0.000000pt;}
.x1_c00200{left:75.520000pt;}
.x3_c00200{left:94.432000pt;}
.x2_c00200{left:393.506667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_551fd933046b237cb9e3f1d2.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:0.938965;font-style:normal;font-weight:normal;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_6722ab3f827044e91dffab6f.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00201;src:url('chunks/assets/font_9b095f95949cfb4b253079bc.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:0.887695;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00201;src:url('chunks/assets/font_8e38c80e0a9c67e08fcf52d3.woff2')format("woff");}.ff4_c00201{font-family:ff4_c00201;line-height:1.052734;font-style: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;}
.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:-192.240000px;}
.ws1_c00201{word-spacing:0.000000px;}
._1_c00201{margin-left:-9.419952px;}
._4_c00201{margin-left:-4.768848px;}
._3_c00201{margin-left:-2.884992px;}
._2_c00201{margin-left:-1.537728px;}
._0_c00201{width:1.573596px;}
.fc1_c00201{color:rgb(233,204,19);}
.fc0_c00201{color:rgb(255,255,255);}
.fs1_c00201{font-size:59.760000px;}
.fs4_c00201{font-size:95.760000px;}
.fs3_c00201{font-size:167.760000px;}
.fs0_c00201{font-size:167.904000px;}
.fs2_c00201{font-size:192.240000px;}
.y0_c00201{bottom:0.000000px;}
.y7_c00201{bottom:21.312000px;}
.y6_c00201{bottom:50.112000px;}
.y5_c00201{bottom:447.330000px;}
.y4_c00201{bottom:497.730000px;}
.y3_c00201{bottom:547.995000px;}
.y2_c00201{bottom:598.035000px;}
.y1_c00201{bottom:622.155000px;}
.h2_c00201{height:43.536094px;}
.h6_c00201{height:69.762656px;}
.h1_c00201{height:122.320687px;}
.h3_c00201{height:139.955977px;}
.h5_c00201{height:146.708086px;}
.h4_c00201{height:146.834016px;}
.h0_c00201{height:810.000000px;}
.w0_c00201{width:1080.000000px;}
.x0_c00201{left:0.000000px;}
.x1_c00201{left:26.820000px;}
.x2_c00201{left:551.730000px;}
.x3_c00201{left:666.930000px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls0_c00201{letter-spacing:0.000000pt;}
.ws0_c00201{word-spacing:-170.880000pt;}
.ws1_c00201{word-spacing:0.000000pt;}
._1_c00201{margin-left:-8.373291pt;}
._4_c00201{margin-left:-4.238976pt;}
._3_c00201{margin-left:-2.564438pt;}
._2_c00201{margin-left:-1.366869pt;}
._0_c00201{width:1.398752pt;}
.fs1_c00201{font-size:53.120000pt;}
.fs4_c00201{font-size:85.120000pt;}
.fs3_c00201{font-size:149.120000pt;}
.fs0_c00201{font-size:149.248000pt;}
.fs2_c00201{font-size:170.880000pt;}
.y0_c00201{bottom:0.000000pt;}
.y7_c00201{bottom:18.944000pt;}
.y6_c00201{bottom:44.544000pt;}
.y5_c00201{bottom:397.626667pt;}
.y4_c00201{bottom:442.426667pt;}
.y3_c00201{bottom:487.106667pt;}
.y2_c00201{bottom:531.586667pt;}
.y1_c00201{bottom:553.026667pt;}
.h2_c00201{height:38.698750pt;}
.h6_c00201{height:62.011250pt;}
.h1_c00201{height:108.729500pt;}
.h3_c00201{height:124.405313pt;}
.h5_c00201{height:130.407187pt;}
.h4_c00201{height:130.519125pt;}
.h0_c00201{height:720.000000pt;}
.w0_c00201{width:960.000000pt;}
.x0_c00201{left:0.000000pt;}
.x1_c00201{left:23.840000pt;}
.x2_c00201{left:490.426667pt;}
.x3_c00201{left:592.826667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1ffc1274fa49307186e0efd7.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.052734;font-style:normal;font-weight:normal;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_618e747e1ad44354202280e7.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.052734;font-style:normal;font-weight:normal;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_11aa55f385bba171b6df9b29.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00202{letter-spacing:-0.162600px;}
.ls0_c00202{letter-spacing:0.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;}
}
.ws0_c00202{word-spacing:0.000000px;}
._1_c00202{margin-left:-3.437436px;}
._0_c00202{margin-left:-2.030964px;}
._3_c00202{width:1.249608px;}
._2_c00202{width:4.686575px;}
.fc2_c00202{color:rgb(233,204,19);}
.fc1_c00202{color:rgb(0,0,153);}
.fc0_c00202{color:rgb(0,0,0);}
.fs0_c00202{font-size:126.000000px;}
.fs1_c00202{font-size:156.240000px;}
.fs2_c00202{font-size:156.384000px;}
.fs3_c00202{font-size:192.240000px;}
.y0_c00202{bottom:0.000000px;}
.yc_c00202{bottom:200.370000px;}
.yb_c00202{bottom:237.810000px;}
.ya_c00202{bottom:284.610000px;}
.y9_c00202{bottom:331.455000px;}
.y8_c00202{bottom:378.255000px;}
.y7_c00202{bottom:415.695000px;}
.y6_c00202{bottom:462.525000px;}
.y5_c00202{bottom:499.965000px;}
.y4_c00202{bottom:546.765000px;}
.y3_c00202{bottom:593.610000px;}
.y2_c00202{bottom:640.410000px;}
.y1_c00202{bottom:676.050000px;}
.yd_c00202{bottom:721.185000px;}
.h1_c00202{height:110.188477px;}
.h2_c00202{height:136.633711px;}
.h3_c00202{height:136.759641px;}
.h4_c00202{height:139.955977px;}
.h0_c00202{height:810.000000px;}
.w0_c00202{width:1080.000000px;}
.x0_c00202{left:0.000000px;}
.x1_c00202{left:46.188000px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls1_c00202{letter-spacing:-0.144533pt;}
.ls0_c00202{letter-spacing:0.000000pt;}
.ws0_c00202{word-spacing:0.000000pt;}
._1_c00202{margin-left:-3.055499pt;}
._0_c00202{margin-left:-1.805301pt;}
._3_c00202{width:1.110762pt;}
._2_c00202{width:4.165844pt;}
.fs0_c00202{font-size:112.000000pt;}
.fs1_c00202{font-size:138.880000pt;}
.fs2_c00202{font-size:139.008000pt;}
.fs3_c00202{font-size:170.880000pt;}
.y0_c00202{bottom:0.000000pt;}
.yc_c00202{bottom:178.106667pt;}
.yb_c00202{bottom:211.386667pt;}
.ya_c00202{bottom:252.986667pt;}
.y9_c00202{bottom:294.626667pt;}
.y8_c00202{bottom:336.226667pt;}
.y7_c00202{bottom:369.506667pt;}
.y6_c00202{bottom:411.133333pt;}
.y5_c00202{bottom:444.413333pt;}
.y4_c00202{bottom:486.013333pt;}
.y3_c00202{bottom:527.653333pt;}
.y2_c00202{bottom:569.253333pt;}
.y1_c00202{bottom:600.933333pt;}
.yd_c00202{bottom:641.053333pt;}
.h1_c00202{height:97.945312pt;}
.h2_c00202{height:121.452188pt;}
.h3_c00202{height:121.564125pt;}
.h4_c00202{height:124.405313pt;}
.h0_c00202{height:720.000000pt;}
.w0_c00202{width:960.000000pt;}
.x0_c00202{left:0.000000pt;}
.x1_c00202{left:41.056000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b0e19041a03df2fbedf0565d.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00203;src:url('chunks/assets/font_2483362f2de8ac99de968a1d.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.052734;font-style:normal;font-weight:normal;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_ae9ef2e5fd11bca6e671e2ea.woff2')format("woff");}.ff3_c00203{font-family:ff3_c00203;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00203{letter-spacing:-0.162600px;}
.ls1_c00203{letter-spacing:0.000000px;}
.ls0_c00203{letter-spacing:97.560000px;}
.sc__c00203{text-shadow:none;}
.sc0_c00203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00203{-webkit-text-stroke:0px transparent;}
.sc0_c00203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00203{word-spacing:0.000000px;}
._2_c00203{margin-left:-14.802672px;}
._5_c00203{margin-left:-9.396000px;}
._1_c00203{margin-left:-8.074272px;}
._3_c00203{margin-left:-3.268080px;}
._0_c00203{margin-left:-1.153056px;}
._4_c00203{width:1.680791px;}
.fc2_c00203{color:rgb(0,0,0);}
.fc1_c00203{color:rgb(233,204,19);}
.fc0_c00203{color:rgb(0,0,153);}
.fs2_c00203{font-size:108.000000px;}
.fs1_c00203{font-size:108.144000px;}
.fs0_c00203{font-size:192.240000px;}
.y0_c00203{bottom:0.000000px;}
.y8_c00203{bottom:79.704000px;}
.y7_c00203{bottom:112.104000px;}
.y6_c00203{bottom:144.540000px;}
.y5_c00203{bottom:176.940000px;}
.y4_c00203{bottom:209.340000px;}
.y3_c00203{bottom:241.740000px;}
.y2_c00203{bottom:274.140000px;}
.y1_c00203{bottom:721.185000px;}
.h3_c00203{height:94.447266px;}
.h2_c00203{height:94.573195px;}
.h1_c00203{height:139.955977px;}
.h0_c00203{height:810.000000px;}
.w0_c00203{width:1080.000000px;}
.x0_c00203{left:0.000000px;}
.x1_c00203{left:46.188000px;}
.x2_c00203{left:54.432000px;}
.x3_c00203{left:108.468000px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls2_c00203{letter-spacing:-0.144533pt;}
.ls1_c00203{letter-spacing:0.000000pt;}
.ls0_c00203{letter-spacing:86.720000pt;}
.ws0_c00203{word-spacing:0.000000pt;}
._2_c00203{margin-left:-13.157931pt;}
._5_c00203{margin-left:-8.352000pt;}
._1_c00203{margin-left:-7.177131pt;}
._3_c00203{margin-left:-2.904960pt;}
._0_c00203{margin-left:-1.024938pt;}
._4_c00203{width:1.494036pt;}
.fs2_c00203{font-size:96.000000pt;}
.fs1_c00203{font-size:96.128000pt;}
.fs0_c00203{font-size:170.880000pt;}
.y0_c00203{bottom:0.000000pt;}
.y8_c00203{bottom:70.848000pt;}
.y7_c00203{bottom:99.648000pt;}
.y6_c00203{bottom:128.480000pt;}
.y5_c00203{bottom:157.280000pt;}
.y4_c00203{bottom:186.080000pt;}
.y3_c00203{bottom:214.880000pt;}
.y2_c00203{bottom:243.680000pt;}
.y1_c00203{bottom:641.053333pt;}
.h3_c00203{height:83.953125pt;}
.h2_c00203{height:84.065062pt;}
.h1_c00203{height:124.405313pt;}
.h0_c00203{height:720.000000pt;}
.w0_c00203{width:960.000000pt;}
.x0_c00203{left:0.000000pt;}
.x1_c00203{left:41.056000pt;}
.x2_c00203{left:48.384000pt;}
.x3_c00203{left:96.416000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d74a61e7e116c13406bb276f.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:0.938965;font-style:normal;font-weight:normal;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_fdb57a47bb8e240f0a270f64.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:1.052734;font-style:normal;font-weight:normal;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_369d6705df016c53d1244f09.woff2')format("woff");}.ff3_c00204{font-family:ff3_c00204;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00204;src:url('chunks/assets/font_c207bd60f76f8316fc77c107.woff2')format("woff");}.ff4_c00204{font-family:ff4_c00204;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00204{vertical-align:0.000000px;}
.ls2_c00204{letter-spacing:-0.162600px;}
.ls1_c00204{letter-spacing:0.000000px;}
.ls0_c00204{letter-spacing:0.360000px;}
.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:-53.442720px;}
.ws1_c00204{word-spacing:0.000000px;}
._0_c00204{margin-left:-54.432000px;}
._4_c00204{margin-left:-14.033328px;}
._3_c00204{margin-left:-2.808000px;}
._1_c00204{margin-left:-1.404000px;}
._2_c00204{width:1.404000px;}
.fc3_c00204{color:transparent;}
.fc2_c00204{color:rgb(233,204,19);}
.fc1_c00204{color:rgb(0,0,153);}
.fc0_c00204{color:rgb(0,0,0);}
.fs0_c00204{font-size:108.000000px;}
.fs1_c00204{font-size:192.240000px;}
.y0_c00204{bottom:0.000000px;}
.y7_c00204{bottom:135.828000px;}
.y6_c00204{bottom:168.225000px;}
.y5_c00204{bottom:200.625000px;}
.y4_c00204{bottom:233.070000px;}
.y3_c00204{bottom:265.470000px;}
.y2_c00204{bottom:297.870000px;}
.y1_c00204{bottom:395.745000px;}
.y8_c00204{bottom:721.185000px;}
.h1_c00204{height:94.447266px;}
.h2_c00204{height:139.955977px;}
.h0_c00204{height:810.000000px;}
.w0_c00204{width:1080.000000px;}
.x0_c00204{left:0.000000px;}
.x2_c00204{left:46.188000px;}
.x1_c00204{left:536.865000px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls2_c00204{letter-spacing:-0.144533pt;}
.ls1_c00204{letter-spacing:0.000000pt;}
.ls0_c00204{letter-spacing:0.320000pt;}
.ws0_c00204{word-spacing:-47.504640pt;}
.ws1_c00204{word-spacing:0.000000pt;}
._0_c00204{margin-left:-48.384000pt;}
._4_c00204{margin-left:-12.474069pt;}
._3_c00204{margin-left:-2.496000pt;}
._1_c00204{margin-left:-1.248000pt;}
._2_c00204{width:1.248000pt;}
.fs0_c00204{font-size:96.000000pt;}
.fs1_c00204{font-size:170.880000pt;}
.y0_c00204{bottom:0.000000pt;}
.y7_c00204{bottom:120.736000pt;}
.y6_c00204{bottom:149.533333pt;}
.y5_c00204{bottom:178.333333pt;}
.y4_c00204{bottom:207.173333pt;}
.y3_c00204{bottom:235.973333pt;}
.y2_c00204{bottom:264.773333pt;}
.y1_c00204{bottom:351.773333pt;}
.y8_c00204{bottom:641.053333pt;}
.h1_c00204{height:83.953125pt;}
.h2_c00204{height:124.405313pt;}
.h0_c00204{height:720.000000pt;}
.w0_c00204{width:960.000000pt;}
.x0_c00204{left:0.000000pt;}
.x2_c00204{left:41.056000pt;}
.x1_c00204{left:477.213333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ae380a937b78e9f6817f51fa.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:0.887695;font-style:normal;font-weight:normal;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_32fc19fb3eb9c119ef7e099e.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00205;src:url('chunks/assets/font_3505e78cb3d08a829fb38fc5.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;line-height:1.052734;font-style:normal;font-weight:normal;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_3b00aec664358f25ecec2dfa.woff2')format("woff");}.ff4_c00205{font-family:ff4_c00205;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.ls1_c00205{letter-spacing:-0.162600px;}
.ls0_c00205{letter-spacing:0.000000px;}
.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:0.000000px;}
._0_c00205{margin-left:-10.381152px;}
._5_c00205{margin-left:-8.856000px;}
._3_c00205{margin-left:-3.351491px;}
._4_c00205{margin-left:-2.160000px;}
._1_c00205{margin-left:-1.153248px;}
._2_c00205{width:1.116587px;}
._6_c00205{width:2.196000px;}
.fc2_c00205{color:rgb(0,0,0);}
.fc1_c00205{color:rgb(233,204,19);}
.fc0_c00205{color:rgb(0,0,153);}
.fs2_c00205{font-size:108.000000px;}
.fs1_c00205{font-size:108.144000px;}
.fs0_c00205{font-size:192.240000px;}
.y0_c00205{bottom:0.000000px;}
.ye_c00205{bottom:184.140000px;}
.yd_c00205{bottom:216.540000px;}
.yc_c00205{bottom:248.940000px;}
.yb_c00205{bottom:281.340000px;}
.yf_c00205{bottom:324.975000px;}
.ya_c00205{bottom:411.225000px;}
.y9_c00205{bottom:443.625000px;}
.y8_c00205{bottom:476.025000px;}
.y7_c00205{bottom:508.425000px;}
.y6_c00205{bottom:540.870000px;}
.y5_c00205{bottom:573.270000px;}
.y4_c00205{bottom:605.670000px;}
.y3_c00205{bottom:638.070000px;}
.y2_c00205{bottom:670.470000px;}
.y1_c00205{bottom:721.185000px;}
.h4_c00205{height:94.289062px;}
.h3_c00205{height:94.447266px;}
.h2_c00205{height:94.573195px;}
.h1_c00205{height:139.955977px;}
.h0_c00205{height:810.000000px;}
.w0_c00205{width:1080.000000px;}
.x0_c00205{left:0.000000px;}
.x1_c00205{left:46.188000px;}
.x2_c00205{left:58.824000px;}
.x5_c00205{left:100.872000px;}
.x4_c00205{left:107.280000px;}
.x3_c00205{left:112.824000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls1_c00205{letter-spacing:-0.144533pt;}
.ls0_c00205{letter-spacing:0.000000pt;}
.ws0_c00205{word-spacing:0.000000pt;}
._0_c00205{margin-left:-9.227691pt;}
._5_c00205{margin-left:-7.872000pt;}
._3_c00205{margin-left:-2.979103pt;}
._4_c00205{margin-left:-1.920000pt;}
._1_c00205{margin-left:-1.025109pt;}
._2_c00205{width:0.992522pt;}
._6_c00205{width:1.952000pt;}
.fs2_c00205{font-size:96.000000pt;}
.fs1_c00205{font-size:96.128000pt;}
.fs0_c00205{font-size:170.880000pt;}
.y0_c00205{bottom:0.000000pt;}
.ye_c00205{bottom:163.680000pt;}
.yd_c00205{bottom:192.480000pt;}
.yc_c00205{bottom:221.280000pt;}
.yb_c00205{bottom:250.080000pt;}
.yf_c00205{bottom:288.866667pt;}
.ya_c00205{bottom:365.533333pt;}
.y9_c00205{bottom:394.333333pt;}
.y8_c00205{bottom:423.133333pt;}
.y7_c00205{bottom:451.933333pt;}
.y6_c00205{bottom:480.773333pt;}
.y5_c00205{bottom:509.573333pt;}
.y4_c00205{bottom:538.373333pt;}
.y3_c00205{bottom:567.173333pt;}
.y2_c00205{bottom:595.973333pt;}
.y1_c00205{bottom:641.053333pt;}
.h4_c00205{height:83.812500pt;}
.h3_c00205{height:83.953125pt;}
.h2_c00205{height:84.065062pt;}
.h1_c00205{height:124.405313pt;}
.h0_c00205{height:720.000000pt;}
.w0_c00205{width:960.000000pt;}
.x0_c00205{left:0.000000pt;}
.x1_c00205{left:41.056000pt;}
.x2_c00205{left:52.288000pt;}
.x5_c00205{left:89.664000pt;}
.x4_c00205{left:95.360000pt;}
.x3_c00205{left:100.288000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_15b8d62e2620a28d4d393c4c.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00206;src:url('chunks/assets/font_4c118e70b7453632a2d2ef39.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.052734;font-style:normal;font-weight:normal;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_bc5142324329601041428dbf.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:1.052734;font-style:normal;font-weight:normal;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_842893f35f59c63c5cbe26ef.woff2')format("woff");}.ff4_c00206{font-family:ff4_c00206;line-height:0.768555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00206;src:url('chunks/assets/font_08513d306f10dbf8c4249a64.woff2')format("woff");}.ff5_c00206{font-family:ff5_c00206;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.ls1_c00206{letter-spacing:-0.162600px;}
.ls0_c00206{letter-spacing:0.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:0.000000px;}
._0_c00206{margin-left:-14.610048px;}
._7_c00206{margin-left:-9.828000px;}
._2_c00206{margin-left:-8.424000px;}
._5_c00206{margin-left:-7.093824px;}
._8_c00206{margin-left:-4.644000px;}
._9_c00206{margin-left:-3.594527px;}
._3_c00206{margin-left:-2.302176px;}
._1_c00206{margin-left:-1.153824px;}
._4_c00206{width:1.404000px;}
._a_c00206{width:2.763919px;}
._6_c00206{width:4.064351px;}
.fc2_c00206{color:rgb(0,0,0);}
.fc1_c00206{color:rgb(233,204,19);}
.fc0_c00206{color:rgb(0,0,153);}
.fs1_c00206{font-size:108.000000px;}
.fs2_c00206{font-size:108.144000px;}
.fs0_c00206{font-size:192.240000px;}
.y0_c00206{bottom:0.000000px;}
.y15_c00206{bottom:108.864000px;}
.y14_c00206{bottom:141.300000px;}
.y13_c00206{bottom:173.700000px;}
.y12_c00206{bottom:206.100000px;}
.y11_c00206{bottom:238.500000px;}
.y10_c00206{bottom:270.900000px;}
.yf_c00206{bottom:303.330000px;}
.ye_c00206{bottom:335.730000px;}
.yd_c00206{bottom:368.130000px;}
.y2_c00206{bottom:396.105000px;}
.yc_c00206{bottom:400.530000px;}
.yb_c00206{bottom:432.975000px;}
.ya_c00206{bottom:465.375000px;}
.y9_c00206{bottom:497.775000px;}
.y8_c00206{bottom:530.175000px;}
.y3_c00206{bottom:533.985000px;}
.y7_c00206{bottom:562.575000px;}
.y6_c00206{bottom:595.005000px;}
.y5_c00206{bottom:627.405000px;}
.y4_c00206{bottom:659.805000px;}
.y1_c00206{bottom:721.185000px;}
.h4_c00206{height:94.289062px;}
.h2_c00206{height:94.447266px;}
.h3_c00206{height:94.573195px;}
.h1_c00206{height:139.955977px;}
.h0_c00206{height:810.000000px;}
.w0_c00206{width:1080.000000px;}
.x0_c00206{left:0.000000px;}
.x4_c00206{left:43.488000px;}
.x1_c00206{left:46.188000px;}
.x5_c00206{left:97.488000px;}
.x3_c00206{left:379.950000px;}
.x2_c00206{left:536.865000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls1_c00206{letter-spacing:-0.144533pt;}
.ls0_c00206{letter-spacing:0.000000pt;}
.ws0_c00206{word-spacing:0.000000pt;}
._0_c00206{margin-left:-12.986709pt;}
._7_c00206{margin-left:-8.736000pt;}
._2_c00206{margin-left:-7.488000pt;}
._5_c00206{margin-left:-6.305622pt;}
._8_c00206{margin-left:-4.128000pt;}
._9_c00206{margin-left:-3.195135pt;}
._3_c00206{margin-left:-2.046378pt;}
._1_c00206{margin-left:-1.025622pt;}
._4_c00206{width:1.248000pt;}
._a_c00206{width:2.456817pt;}
._6_c00206{width:3.612756pt;}
.fs1_c00206{font-size:96.000000pt;}
.fs2_c00206{font-size:96.128000pt;}
.fs0_c00206{font-size:170.880000pt;}
.y0_c00206{bottom:0.000000pt;}
.y15_c00206{bottom:96.768000pt;}
.y14_c00206{bottom:125.600000pt;}
.y13_c00206{bottom:154.400000pt;}
.y12_c00206{bottom:183.200000pt;}
.y11_c00206{bottom:212.000000pt;}
.y10_c00206{bottom:240.800000pt;}
.yf_c00206{bottom:269.626667pt;}
.ye_c00206{bottom:298.426667pt;}
.yd_c00206{bottom:327.226667pt;}
.y2_c00206{bottom:352.093333pt;}
.yc_c00206{bottom:356.026667pt;}
.yb_c00206{bottom:384.866667pt;}
.ya_c00206{bottom:413.666667pt;}
.y9_c00206{bottom:442.466667pt;}
.y8_c00206{bottom:471.266667pt;}
.y3_c00206{bottom:474.653333pt;}
.y7_c00206{bottom:500.066667pt;}
.y6_c00206{bottom:528.893333pt;}
.y5_c00206{bottom:557.693333pt;}
.y4_c00206{bottom:586.493333pt;}
.y1_c00206{bottom:641.053333pt;}
.h4_c00206{height:83.812500pt;}
.h2_c00206{height:83.953125pt;}
.h3_c00206{height:84.065062pt;}
.h1_c00206{height:124.405313pt;}
.h0_c00206{height:720.000000pt;}
.w0_c00206{width:960.000000pt;}
.x0_c00206{left:0.000000pt;}
.x4_c00206{left:38.656000pt;}
.x1_c00206{left:41.056000pt;}
.x5_c00206{left:86.656000pt;}
.x3_c00206{left:337.733333pt;}
.x2_c00206{left:477.213333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0c22916296824ab147448088.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.052734;font-style:normal;font-weight:normal;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_e4ebd40d0b47f14e8e370c44.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.052734;font-style:normal;font-weight:normal;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_ae9ef2e5fd11bca6e671e2ea.woff2')format("woff");}.ff3_c00207{font-family:ff3_c00207;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00207;src:url('chunks/assets/font_e64315a2948d1e5d15b58614.woff2')format("woff");}.ff4_c00207{font-family:ff4_c00207;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.ls3_c00207{letter-spacing:-0.162600px;}
.ls2_c00207{letter-spacing:0.000000px;}
.ls0_c00207{letter-spacing:0.144288px;}
.ls1_c00207{letter-spacing:124.200000px;}
.sc__c00207{text-shadow:none;}
.sc0_c00207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00207{-webkit-text-stroke:0px transparent;}
.sc0_c00207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00207{word-spacing:0.000000px;}
._6_c00207{margin-left:-13.841472px;}
._5_c00207{margin-left:-11.694851px;}
._0_c00207{margin-left:-8.424000px;}
._4_c00207{margin-left:-7.128000px;}
._7_c00207{margin-left:-3.652176px;}
._2_c00207{margin-left:-2.376000px;}
._1_c00207{margin-left:-1.188000px;}
._3_c00207{width:1.615716px;}
.fc2_c00207{color:rgb(233,204,19);}
.fc1_c00207{color:rgb(0,0,153);}
.fc0_c00207{color:rgb(0,0,0);}
.fs0_c00207{font-size:108.000000px;}
.fs1_c00207{font-size:108.144000px;}
.fs2_c00207{font-size:192.240000px;}
.y0_c00207{bottom:0.000000px;}
.ya_c00207{bottom:246.390000px;}
.y9_c00207{bottom:278.790000px;}
.y8_c00207{bottom:317.670000px;}
.y7_c00207{bottom:356.580000px;}
.y6_c00207{bottom:460.260000px;}
.y5_c00207{bottom:492.690000px;}
.y4_c00207{bottom:531.570000px;}
.y3_c00207{bottom:570.450000px;}
.y2_c00207{bottom:602.850000px;}
.y1_c00207{bottom:641.775000px;}
.yb_c00207{bottom:721.185000px;}
.h1_c00207{height:94.447266px;}
.h2_c00207{height:94.573195px;}
.h3_c00207{height:139.955977px;}
.h0_c00207{height:810.000000px;}
.w0_c00207{width:1080.000000px;}
.x0_c00207{left:0.000000px;}
.x3_c00207{left:46.188000px;}
.x1_c00207{left:64.800000px;}
.x2_c00207{left:105.300000px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls3_c00207{letter-spacing:-0.144533pt;}
.ls2_c00207{letter-spacing:0.000000pt;}
.ls0_c00207{letter-spacing:0.128256pt;}
.ls1_c00207{letter-spacing:110.400000pt;}
.ws0_c00207{word-spacing:0.000000pt;}
._6_c00207{margin-left:-12.303531pt;}
._5_c00207{margin-left:-10.395423pt;}
._0_c00207{margin-left:-7.488000pt;}
._4_c00207{margin-left:-6.336000pt;}
._7_c00207{margin-left:-3.246378pt;}
._2_c00207{margin-left:-2.112000pt;}
._1_c00207{margin-left:-1.056000pt;}
._3_c00207{width:1.436192pt;}
.fs0_c00207{font-size:96.000000pt;}
.fs1_c00207{font-size:96.128000pt;}
.fs2_c00207{font-size:170.880000pt;}
.y0_c00207{bottom:0.000000pt;}
.ya_c00207{bottom:219.013333pt;}
.y9_c00207{bottom:247.813333pt;}
.y8_c00207{bottom:282.373333pt;}
.y7_c00207{bottom:316.960000pt;}
.y6_c00207{bottom:409.120000pt;}
.y5_c00207{bottom:437.946667pt;}
.y4_c00207{bottom:472.506667pt;}
.y3_c00207{bottom:507.066667pt;}
.y2_c00207{bottom:535.866667pt;}
.y1_c00207{bottom:570.466667pt;}
.yb_c00207{bottom:641.053333pt;}
.h1_c00207{height:83.953125pt;}
.h2_c00207{height:84.065062pt;}
.h3_c00207{height:124.405313pt;}
.h0_c00207{height:720.000000pt;}
.w0_c00207{width:960.000000pt;}
.x0_c00207{left:0.000000pt;}
.x3_c00207{left:41.056000pt;}
.x1_c00207{left:57.600000pt;}
.x2_c00207{left:93.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_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_a875feff506c06decfae893f.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00208;src:url('chunks/assets/font_37a4da280092089f9bc02a00.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.051270;font-style:normal;font-weight:normal;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_43a23f2dd0b27c2cd86190d3.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00208;src:url('chunks/assets/font_ae9ef2e5fd11bca6e671e2ea.woff2')format("woff");}.ff4_c00208{font-family:ff4_c00208;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00208;src:url('chunks/assets/font_76e4062d7ac452319260cc1e.woff2')format("woff");}.ff5_c00208{font-family:ff5_c00208;line-height:1.052734;font-style: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;}
.ls3_c00208{letter-spacing:-0.162600px;}
.ls2_c00208{letter-spacing:0.000000px;}
.ls5_c00208{letter-spacing:0.108000px;}
.ls4_c00208{letter-spacing:0.175800px;}
.ls6_c00208{letter-spacing:0.360000px;}
.ls1_c00208{letter-spacing:97.509600px;}
.ls0_c00208{letter-spacing:97.560000px;}
.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:-53.280120px;}
.ws1_c00208{word-spacing:-24.768000px;}
.ws2_c00208{word-spacing:0.000000px;}
._5_c00208{margin-left:-9.005160px;}
._1_c00208{margin-left:-3.366600px;}
._0_c00208{margin-left:-1.922400px;}
._2_c00208{width:1.207560px;}
._7_c00208{width:246.938400px;}
._6_c00208{width:878.915640px;}
._8_c00208{width:953.341680px;}
._3_c00208{width:1707.726840px;}
._4_c00208{width:2992.422960px;}
.fc2_c00208{color:rgb(0,0,0);}
.fc1_c00208{color:rgb(233,204,19);}
.fc0_c00208{color:rgb(0,0,153);}
.fs2_c00208{font-size:72.000000px;}
.fs5_c00208{font-size:95.760000px;}
.fs3_c00208{font-size:108.000000px;}
.fs4_c00208{font-size:108.144000px;}
.fs1_c00208{font-size:120.240000px;}
.fs0_c00208{font-size:192.240000px;}
.y0_c00208{bottom:0.000000px;}
.y15_c00208{bottom:31.680000px;}
.y14_c00208{bottom:62.100000px;}
.y13_c00208{bottom:98.100000px;}
.y12_c00208{bottom:133.380000px;}
.y11_c00208{bottom:165.810000px;}
.y10_c00208{bottom:198.210000px;}
.yf_c00208{bottom:230.610000px;}
.ye_c00208{bottom:263.010000px;}
.yd_c00208{bottom:327.855000px;}
.yc_c00208{bottom:360.255000px;}
.yb_c00208{bottom:392.655000px;}
.ya_c00208{bottom:425.055000px;}
.y9_c00208{bottom:454.965000px;}
.y8_c00208{bottom:479.805000px;}
.y7_c00208{bottom:515.805000px;}
.y6_c00208{bottom:551.085000px;}
.y5_c00208{bottom:583.485000px;}
.y4_c00208{bottom:615.930000px;}
.y3_c00208{bottom:645.810000px;}
.y2_c00208{bottom:670.650000px;}
.y1_c00208{bottom:721.185000px;}
.h8_c00208{height:62.859375px;}
.h3_c00208{height:62.964844px;}
.h9_c00208{height:83.743242px;}
.h6_c00208{height:94.289062px;}
.h4_c00208{height:94.447266px;}
.h5_c00208{height:94.573195px;}
.h7_c00208{height:104.975156px;}
.h2_c00208{height:105.151289px;}
.h1_c00208{height:139.955977px;}
.h0_c00208{height:810.000000px;}
.w0_c00208{width:1080.000000px;}
.x0_c00208{left:0.000000px;}
.x2_c00208{left:39.996000px;}
.x1_c00208{left:46.188000px;}
.x3_c00208{left:93.996000px;}
.x4_c00208{left:127.836000px;}
.x5_c00208{left:947.340000px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls3_c00208{letter-spacing:-0.144533pt;}
.ls2_c00208{letter-spacing:0.000000pt;}
.ls5_c00208{letter-spacing:0.096000pt;}
.ls4_c00208{letter-spacing:0.156267pt;}
.ls6_c00208{letter-spacing:0.320000pt;}
.ls1_c00208{letter-spacing:86.675200pt;}
.ls0_c00208{letter-spacing:86.720000pt;}
.ws0_c00208{word-spacing:-47.360107pt;}
.ws1_c00208{word-spacing:-22.016000pt;}
.ws2_c00208{word-spacing:0.000000pt;}
._5_c00208{margin-left:-8.004586pt;}
._1_c00208{margin-left:-2.992533pt;}
._0_c00208{margin-left:-1.708800pt;}
._2_c00208{width:1.073386pt;}
._7_c00208{width:219.500800pt;}
._6_c00208{width:781.258347pt;}
._8_c00208{width:847.414827pt;}
._3_c00208{width:1517.979414pt;}
._4_c00208{width:2659.931520pt;}
.fs2_c00208{font-size:64.000000pt;}
.fs5_c00208{font-size:85.120000pt;}
.fs3_c00208{font-size:96.000000pt;}
.fs4_c00208{font-size:96.128000pt;}
.fs1_c00208{font-size:106.880000pt;}
.fs0_c00208{font-size:170.880000pt;}
.y0_c00208{bottom:0.000000pt;}
.y15_c00208{bottom:28.160000pt;}
.y14_c00208{bottom:55.200000pt;}
.y13_c00208{bottom:87.200000pt;}
.y12_c00208{bottom:118.560000pt;}
.y11_c00208{bottom:147.386667pt;}
.y10_c00208{bottom:176.186667pt;}
.yf_c00208{bottom:204.986667pt;}
.ye_c00208{bottom:233.786667pt;}
.yd_c00208{bottom:291.426667pt;}
.yc_c00208{bottom:320.226667pt;}
.yb_c00208{bottom:349.026667pt;}
.ya_c00208{bottom:377.826667pt;}
.y9_c00208{bottom:404.413333pt;}
.y8_c00208{bottom:426.493333pt;}
.y7_c00208{bottom:458.493333pt;}
.y6_c00208{bottom:489.853333pt;}
.y5_c00208{bottom:518.653333pt;}
.y4_c00208{bottom:547.493333pt;}
.y3_c00208{bottom:574.053333pt;}
.y2_c00208{bottom:596.133333pt;}
.y1_c00208{bottom:641.053333pt;}
.h8_c00208{height:55.875000pt;}
.h3_c00208{height:55.968750pt;}
.h9_c00208{height:74.438437pt;}
.h6_c00208{height:83.812500pt;}
.h4_c00208{height:83.953125pt;}
.h5_c00208{height:84.065062pt;}
.h7_c00208{height:93.311250pt;}
.h2_c00208{height:93.467812pt;}
.h1_c00208{height:124.405313pt;}
.h0_c00208{height:720.000000pt;}
.w0_c00208{width:960.000000pt;}
.x0_c00208{left:0.000000pt;}
.x2_c00208{left:35.552000pt;}
.x1_c00208{left:41.056000pt;}
.x3_c00208{left:83.552000pt;}
.x4_c00208{left:113.632000pt;}
.x5_c00208{left:842.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f5df8e50e5a40ea6218469c.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:0.887695;font-style:normal;font-weight:normal;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_9d2696eb8e74d3e648145bfc.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00209;src:url('chunks/assets/font_140f737a2c3f14437ced8de9.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;line-height:1.052734;font-style: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.162600px;}
.ls0_c00209{letter-spacing:0.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;}
}
.ws0_c00209{word-spacing:0.000000px;}
._5_c00209{margin-left:-14.040000px;}
._0_c00209{margin-left:-12.780000px;}
._3_c00209{margin-left:-6.300000px;}
._8_c00209{margin-left:-4.536000px;}
._4_c00209{margin-left:-2.700000px;}
._1_c00209{margin-left:-1.620000px;}
._2_c00209{width:1.188000px;}
._6_c00209{width:2.280000px;}
._9_c00209{width:1034.772000px;}
._a_c00209{width:1134.303216px;}
._7_c00209{width:1437.180000px;}
.fc2_c00209{color:rgb(0,0,0);}
.fc1_c00209{color:rgb(233,204,19);}
.fc0_c00209{color:rgb(0,0,153);}
.fs2_c00209{font-size:108.000000px;}
.fs3_c00209{font-size:108.144000px;}
.fs0_c00209{font-size:180.000000px;}
.fs1_c00209{font-size:192.240000px;}
.y0_c00209{bottom:0.000000px;}
.yf_c00209{bottom:137.628000px;}
.ye_c00209{bottom:170.025000px;}
.yd_c00209{bottom:202.470000px;}
.yc_c00209{bottom:234.870000px;}
.yb_c00209{bottom:267.270000px;}
.ya_c00209{bottom:299.670000px;}
.y9_c00209{bottom:332.100000px;}
.y8_c00209{bottom:364.500000px;}
.y7_c00209{bottom:396.900000px;}
.y6_c00209{bottom:494.130000px;}
.y5_c00209{bottom:526.530000px;}
.y4_c00209{bottom:558.930000px;}
.y3_c00209{bottom:591.330000px;}
.y2_c00209{bottom:667.185000px;}
.y1_c00209{bottom:724.065000px;}
.h3_c00209{height:94.447266px;}
.h4_c00209{height:94.573195px;}
.h1_c00209{height:131.044922px;}
.h2_c00209{height:139.955977px;}
.h0_c00209{height:810.000000px;}
.w0_c00209{width:1080.000000px;}
.x0_c00209{left:0.000000px;}
.x1_c00209{left:46.188000px;}
.x2_c00209{left:59.976000px;}
.x3_c00209{left:226.515000px;}
.x4_c00209{left:573.630000px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls1_c00209{letter-spacing:-0.144533pt;}
.ls0_c00209{letter-spacing:0.000000pt;}
.ws0_c00209{word-spacing:0.000000pt;}
._5_c00209{margin-left:-12.480000pt;}
._0_c00209{margin-left:-11.360000pt;}
._3_c00209{margin-left:-5.600000pt;}
._8_c00209{margin-left:-4.032000pt;}
._4_c00209{margin-left:-2.400000pt;}
._1_c00209{margin-left:-1.440000pt;}
._2_c00209{width:1.056000pt;}
._6_c00209{width:2.026667pt;}
._9_c00209{width:919.797333pt;}
._a_c00209{width:1008.269525pt;}
._7_c00209{width:1277.493333pt;}
.fs2_c00209{font-size:96.000000pt;}
.fs3_c00209{font-size:96.128000pt;}
.fs0_c00209{font-size:160.000000pt;}
.fs1_c00209{font-size:170.880000pt;}
.y0_c00209{bottom:0.000000pt;}
.yf_c00209{bottom:122.336000pt;}
.ye_c00209{bottom:151.133333pt;}
.yd_c00209{bottom:179.973333pt;}
.yc_c00209{bottom:208.773333pt;}
.yb_c00209{bottom:237.573333pt;}
.ya_c00209{bottom:266.373333pt;}
.y9_c00209{bottom:295.200000pt;}
.y8_c00209{bottom:324.000000pt;}
.y7_c00209{bottom:352.800000pt;}
.y6_c00209{bottom:439.226667pt;}
.y5_c00209{bottom:468.026667pt;}
.y4_c00209{bottom:496.826667pt;}
.y3_c00209{bottom:525.626667pt;}
.y2_c00209{bottom:593.053333pt;}
.y1_c00209{bottom:643.613333pt;}
.h3_c00209{height:83.953125pt;}
.h4_c00209{height:84.065062pt;}
.h1_c00209{height:116.484375pt;}
.h2_c00209{height:124.405313pt;}
.h0_c00209{height:720.000000pt;}
.w0_c00209{width:960.000000pt;}
.x0_c00209{left:0.000000pt;}
.x1_c00209{left:41.056000pt;}
.x2_c00209{left:53.312000pt;}
.x3_c00209{left:201.346667pt;}
.x4_c00209{left:509.893333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_143dc745bd01b369ff30b303.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00210;src:url('chunks/assets/font_9b095f95949cfb4b253079bc.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:0.887695;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00210{vertical-align:0.000000px;}
.ls1_c00210{letter-spacing:-0.162600px;}
.ls0_c00210{letter-spacing:0.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;}
}
.ws0_c00210{word-spacing:-192.240000px;}
.ws1_c00210{word-spacing:-53.280120px;}
.ws2_c00210{word-spacing:0.000000px;}
._0_c00210{margin-left:-14.225952px;}
._1_c00210{margin-left:-1.482048px;}
.fc1_c00210{color:rgb(233,204,19);}
.fc0_c00210{color:rgb(0,0,153);}
.fs0_c00210{font-size:192.240000px;}
.y0_c00210{bottom:0.000000px;}
.y1_c00210{bottom:741.495000px;}
.h1_c00210{height:139.955977px;}
.h0_c00210{height:810.000000px;}
.w0_c00210{width:1080.000000px;}
.x0_c00210{left:0.000000px;}
.x1_c00210{left:24.192000px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls1_c00210{letter-spacing:-0.144533pt;}
.ls0_c00210{letter-spacing:0.000000pt;}
.ws0_c00210{word-spacing:-170.880000pt;}
.ws1_c00210{word-spacing:-47.360107pt;}
.ws2_c00210{word-spacing:0.000000pt;}
._0_c00210{margin-left:-12.645291pt;}
._1_c00210{margin-left:-1.317376pt;}
.fs0_c00210{font-size:170.880000pt;}
.y0_c00210{bottom:0.000000pt;}
.y1_c00210{bottom:659.106667pt;}
.h1_c00210{height:124.405313pt;}
.h0_c00210{height:720.000000pt;}
.w0_c00210{width:960.000000pt;}
.x0_c00210{left:0.000000pt;}
.x1_c00210{left:21.504000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_891f957998078cdde9b5daf0.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00211;src:url('chunks/assets/font_718d6d3f77ff5aaeadd3773e.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.051270;font-style:normal;font-weight:normal;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_ae9ef2e5fd11bca6e671e2ea.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00211;src:url('chunks/assets/font_87730cd841028978ec9478a9.woff2')format("woff");}.ff4_c00211{font-family:ff4_c00211;line-height:1.052734;font-style:normal;font-weight:normal;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_8cfbca1b7476be55cd8c7545.woff2')format("woff");}.ff5_c00211{font-family:ff5_c00211;line-height:1.052734;font-style: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;}
.ls5_c00211{letter-spacing:-0.162600px;}
.ls4_c00211{letter-spacing:0.000000px;}
.ls3_c00211{letter-spacing:0.144288px;}
.ls2_c00211{letter-spacing:0.216000px;}
.ls0_c00211{letter-spacing:97.560000px;}
.ls1_c00211{letter-spacing:124.200000px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00211{word-spacing:0.000000px;}
._5_c00211{margin-left:-9.504000px;}
._3_c00211{margin-left:-5.940000px;}
._0_c00211{margin-left:-3.460128px;}
._1_c00211{margin-left:-2.307072px;}
._2_c00211{margin-left:-1.152960px;}
._4_c00211{width:1.119072px;}
._6_c00211{width:2.146260px;}
.fc2_c00211{color:rgb(0,0,0);}
.fc1_c00211{color:rgb(233,204,19);}
.fc0_c00211{color:rgb(0,0,153);}
.fs2_c00211{font-size:72.000000px;}
.fs1_c00211{font-size:108.000000px;}
.fs3_c00211{font-size:108.144000px;}
.fs0_c00211{font-size:192.240000px;}
.y0_c00211{bottom:0.000000px;}
.y7_c00211{bottom:108.864000px;}
.y6_c00211{bottom:141.300000px;}
.y5_c00211{bottom:173.700000px;}
.y4_c00211{bottom:203.580000px;}
.y3_c00211{bottom:227.700000px;}
.y2_c00211{bottom:260.100000px;}
.y12_c00211{bottom:338.505000px;}
.y11_c00211{bottom:370.905000px;}
.y10_c00211{bottom:403.350000px;}
.yf_c00211{bottom:435.750000px;}
.ye_c00211{bottom:468.150000px;}
.yd_c00211{bottom:500.550000px;}
.yc_c00211{bottom:532.980000px;}
.yb_c00211{bottom:565.380000px;}
.ya_c00211{bottom:597.780000px;}
.y9_c00211{bottom:630.180000px;}
.y8_c00211{bottom:662.580000px;}
.y1_c00211{bottom:723.210000px;}
.h4_c00211{height:62.964844px;}
.h2_c00211{height:94.289062px;}
.h3_c00211{height:94.447266px;}
.h5_c00211{height:94.573195px;}
.h1_c00211{height:139.955977px;}
.h0_c00211{height:810.000000px;}
.w0_c00211{width:1080.000000px;}
.x0_c00211{left:0.000000px;}
.x1_c00211{left:30.168000px;}
.x2_c00211{left:40.608000px;}
.x3_c00211{left:94.644000px;}
.x4_c00211{left:259.560000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls5_c00211{letter-spacing:-0.144533pt;}
.ls4_c00211{letter-spacing:0.000000pt;}
.ls3_c00211{letter-spacing:0.128256pt;}
.ls2_c00211{letter-spacing:0.192000pt;}
.ls0_c00211{letter-spacing:86.720000pt;}
.ls1_c00211{letter-spacing:110.400000pt;}
.ws0_c00211{word-spacing:0.000000pt;}
._5_c00211{margin-left:-8.448000pt;}
._3_c00211{margin-left:-5.280000pt;}
._0_c00211{margin-left:-3.075669pt;}
._1_c00211{margin-left:-2.050731pt;}
._2_c00211{margin-left:-1.024853pt;}
._4_c00211{width:0.994731pt;}
._6_c00211{width:1.907787pt;}
.fs2_c00211{font-size:64.000000pt;}
.fs1_c00211{font-size:96.000000pt;}
.fs3_c00211{font-size:96.128000pt;}
.fs0_c00211{font-size:170.880000pt;}
.y0_c00211{bottom:0.000000pt;}
.y7_c00211{bottom:96.768000pt;}
.y6_c00211{bottom:125.600000pt;}
.y5_c00211{bottom:154.400000pt;}
.y4_c00211{bottom:180.960000pt;}
.y3_c00211{bottom:202.400000pt;}
.y2_c00211{bottom:231.200000pt;}
.y12_c00211{bottom:300.893333pt;}
.y11_c00211{bottom:329.693333pt;}
.y10_c00211{bottom:358.533333pt;}
.yf_c00211{bottom:387.333333pt;}
.ye_c00211{bottom:416.133333pt;}
.yd_c00211{bottom:444.933333pt;}
.yc_c00211{bottom:473.760000pt;}
.yb_c00211{bottom:502.560000pt;}
.ya_c00211{bottom:531.360000pt;}
.y9_c00211{bottom:560.160000pt;}
.y8_c00211{bottom:588.960000pt;}
.y1_c00211{bottom:642.853333pt;}
.h4_c00211{height:55.968750pt;}
.h2_c00211{height:83.812500pt;}
.h3_c00211{height:83.953125pt;}
.h5_c00211{height:84.065062pt;}
.h1_c00211{height:124.405313pt;}
.h0_c00211{height:720.000000pt;}
.w0_c00211{width:960.000000pt;}
.x0_c00211{left:0.000000pt;}
.x1_c00211{left:26.816000pt;}
.x2_c00211{left:36.096000pt;}
.x3_c00211{left:84.128000pt;}
.x4_c00211{left:230.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d4b43596926b0a956de5a295.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00212{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00212{vertical-align:0.000000px;}
.ls1_c00212{letter-spacing:-0.162600px;}
.ls0_c00212{letter-spacing:0.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:0.000000px;}
._2_c00212{margin-left:-14.802672px;}
._0_c00212{margin-left:-3.652752px;}
._1_c00212{margin-left:-1.537728px;}
.fc1_c00212{color:rgb(233,204,19);}
.fc0_c00212{color:rgb(0,0,153);}
.fs0_c00212{font-size:192.240000px;}
.y0_c00212{bottom:0.000000px;}
.y2_c00212{bottom:663.585000px;}
.y1_c00212{bottom:721.185000px;}
.h1_c00212{height:139.955977px;}
.h0_c00212{height:810.000000px;}
.w0_c00212{width:1080.000000px;}
.x0_c00212{left:0.000000px;}
.x1_c00212{left:46.188000px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls1_c00212{letter-spacing:-0.144533pt;}
.ls0_c00212{letter-spacing:0.000000pt;}
.ws0_c00212{word-spacing:0.000000pt;}
._2_c00212{margin-left:-13.157931pt;}
._0_c00212{margin-left:-3.246891pt;}
._1_c00212{margin-left:-1.366869pt;}
.fs0_c00212{font-size:170.880000pt;}
.y0_c00212{bottom:0.000000pt;}
.y2_c00212{bottom:589.853333pt;}
.y1_c00212{bottom:641.053333pt;}
.h1_c00212{height:124.405313pt;}
.h0_c00212{height:720.000000pt;}
.w0_c00212{width:960.000000pt;}
.x0_c00212{left:0.000000pt;}
.x1_c00212{left:41.056000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5c480354d4ad7977e4178261.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.051270;font-style:normal;font-weight:normal;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_4ab5edd146216e9b2af15c1b.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.052734;font-style:normal;font-weight:normal;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_90fed3fc1643e43a1125e3d0.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:1.051270;font-style: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.250029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);}
.v0_c00213{vertical-align:0.000000px;}
.ls8_c00213{letter-spacing:-0.187251px;}
.ls7_c00213{letter-spacing:-0.101336px;}
.ls6_c00213{letter-spacing:-0.092524px;}
.ls4_c00213{letter-spacing:-0.042737px;}
.ls3_c00213{letter-spacing:0.000000px;}
.ls1_c00213{letter-spacing:0.026435px;}
.ls0_c00213{letter-spacing:0.086708px;}
.ls2_c00213{letter-spacing:0.118959px;}
.ls5_c00213{letter-spacing:0.132177px;}
.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:-10.992901px;}
.ws6_c00213{word-spacing:-10.891565px;}
.ws0_c00213{word-spacing:-9.917509px;}
.ws2_c00213{word-spacing:-9.874771px;}
.ws3_c00213{word-spacing:-8.961604px;}
.ws4_c00213{word-spacing:-8.005700px;}
.ws5_c00213{word-spacing:-7.913176px;}
.ws7_c00213{word-spacing:-7.818449px;}
.ws8_c00213{word-spacing:0.000000px;}
._0_c00213{margin-left:-1.057416px;}
._1_c00213{width:1.127911px;}
.fc2_c00213{color:transparent;}
.fc1_c00213{color:rgb(152,72,6);}
.fc0_c00213{color:rgb(0,0,0);}
.fs1_c00213{font-size:22.205745px;}
.fs3_c00213{font-size:30.665076px;}
.fs6_c00213{font-size:35.423450px;}
.fs5_c00213{font-size:39.653116px;}
.fs4_c00213{font-size:43.882781px;}
.fs2_c00213{font-size:48.641155px;}
.fs0_c00213{font-size:52.870821px;}
.y3e_c00213{bottom:-43.785698px;}
.y3d_c00213{bottom:-12.433301px;}
.y0_c00213{bottom:0.000000px;}
.yc_c00213{bottom:2.775718px;}
.y4_c00213{bottom:3.040072px;}
.y7_c00213{bottom:3.436603px;}
.y31_c00213{bottom:5.022728px;}
.y14_c00213{bottom:5.947967px;}
.y18_c00213{bottom:8.723685px;}
.y16_c00213{bottom:10.045456px;}
.y1d_c00213{bottom:10.838518px;}
.y21_c00213{bottom:12.160289px;}
.y26_c00213{bottom:14.671653px;}
.ya_c00213{bottom:14.825859px;}
.y3c_c00213{bottom:15.588235px;}
.y30_c00213{bottom:15.861246px;}
.y25_c00213{bottom:16.676338px;}
.y2b_c00213{bottom:17.183017px;}
.y6_c00213{bottom:17.843902px;}
.y32_c00213{bottom:18.108256px;}
.y24_c00213{bottom:18.240433px;}
.y13_c00213{bottom:18.769141px;}
.y17_c00213{bottom:20.751797px;}
.y11_c00213{bottom:21.280505px;}
.y1c_c00213{bottom:21.566889px;}
.y15_c00213{bottom:21.809214px;}
.y20_c00213{bottom:22.888660px;}
.yb_c00213{bottom:25.003492px;}
.y2f_c00213{bottom:26.567588px;}
.y9_c00213{bottom:26.986148px;}
.y33_c00213{bottom:27.616346px;}
.y2a_c00213{bottom:27.889358px;}
.y22_c00213{bottom:30.687106px;}
.y2d_c00213{bottom:32.912086px;}
.y1b_c00213{bottom:32.934116px;}
.y3b_c00213{bottom:33.047568px;}
.y10_c00213{bottom:33.440794px;}
.y1f_c00213{bottom:33.727178px;}
.y2e_c00213{bottom:37.670460px;}
.y29_c00213{bottom:38.727876px;}
.yf_c00213{bottom:45.490936px;}
.y1a_c00213{bottom:46.416175px;}
.y1e_c00213{bottom:47.473591px;}
.y2c_c00213{bottom:47.715916px;}
.y3a_c00213{bottom:47.873427px;}
.y28_c00213{bottom:49.698572px;}
.y12_c00213{bottom:55.668569px;}
.ye_c00213{bottom:57.651224px;}
.y39_c00213{bottom:62.677257px;}
.y38_c00213{bottom:77.481087px;}
.y37_c00213{bottom:92.284917px;}
.y36_c00213{bottom:107.088747px;}
.y35_c00213{bottom:109.071402px;}
.y34_c00213{bottom:121.760399px;}
.y27_c00213{bottom:161.437902px;}
.y19_c00213{bottom:221.049753px;}
.y23_c00213{bottom:248.300255px;}
.yd_c00213{bottom:278.436623px;}
.y8_c00213{bottom:309.101699px;}
.y5_c00213{bottom:346.529835px;}
.y3_c00213{bottom:375.873140px;}
.y2_c00213{bottom:406.934748px;}
.y1_c00213{bottom:435.518035px;}
.h4_c00213{height:13.482059px;}
.h10_c00213{height:26.065315px;}
.h6_c00213{height:28.285889px;}
.hf_c00213{height:29.607660px;}
.hb_c00213{height:30.136368px;}
.hc_c00213{height:30.978222px;}
.h9_c00213{height:34.677114px;}
.h8_c00213{height:36.375125px;}
.h5_c00213{height:38.311725px;}
.he_c00213{height:38.376007px;}
.h7_c00213{height:42.466009px;}
.h3_c00213{height:42.537260px;}
.h2_c00213{height:46.158705px;}
.hd_c00213{height:56.862568px;}
.h11_c00213{height:59.083143px;}
.ha_c00213{height:67.040201px;}
.h12_c00213{height:133.157366px;}
.h1_c00213{height:448.067145px;}
.h13_c00213{height:451.371571px;}
.h0_c00213{height:810.000000px;}
.w4_c00213{width:85.555046px;}
.w3_c00213{width:85.687239px;}
.w2_c00213{width:171.244488px;}
.w5_c00213{width:430.286890px;}
.w1_c00213{width:537.120537px;}
.w6_c00213{width:555.098730px;}
.w0_c00213{width:1080.000000px;}
.x0_c00213{left:0.000000px;}
.x5_c00213{left:5.419896px;}
.xb_c00213{left:7.667170px;}
.x3_c00213{left:13.615837px;}
.x1_c00213{left:34.938000px;}
.x4_c00213{left:49.611378px;}
.x2_c00213{left:124.018684px;}
.x8_c00213{left:135.563001px;}
.x6_c00213{left:222.045599px;}
.x9_c00213{left:307.860624px;}
.x7_c00213{left:394.347628px;}
.xa_c00213{left:480.294845px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls8_c00213{letter-spacing:-0.166445pt;}
.ls7_c00213{letter-spacing:-0.090076pt;}
.ls6_c00213{letter-spacing:-0.082243pt;}
.ls4_c00213{letter-spacing:-0.037989pt;}
.ls3_c00213{letter-spacing:0.000000pt;}
.ls1_c00213{letter-spacing:0.023498pt;}
.ls0_c00213{letter-spacing:0.077074pt;}
.ls2_c00213{letter-spacing:0.105742pt;}
.ls5_c00213{letter-spacing:0.117491pt;}
.ws1_c00213{word-spacing:-9.771468pt;}
.ws6_c00213{word-spacing:-9.681391pt;}
.ws0_c00213{word-spacing:-8.815563pt;}
.ws2_c00213{word-spacing:-8.777575pt;}
.ws3_c00213{word-spacing:-7.965870pt;}
.ws4_c00213{word-spacing:-7.116178pt;}
.ws5_c00213{word-spacing:-7.033934pt;}
.ws7_c00213{word-spacing:-6.949732pt;}
.ws8_c00213{word-spacing:0.000000pt;}
._0_c00213{margin-left:-0.939926pt;}
._1_c00213{width:1.002587pt;}
.fs1_c00213{font-size:19.738440pt;}
.fs3_c00213{font-size:27.257846pt;}
.fs6_c00213{font-size:31.487511pt;}
.fs5_c00213{font-size:35.247214pt;}
.fs4_c00213{font-size:39.006917pt;}
.fs2_c00213{font-size:43.236583pt;}
.fs0_c00213{font-size:46.996285pt;}
.y3e_c00213{bottom:-38.920620pt;}
.y3d_c00213{bottom:-11.051823pt;}
.y0_c00213{bottom:0.000000pt;}
.yc_c00213{bottom:2.467305pt;}
.y4_c00213{bottom:2.702286pt;}
.y7_c00213{bottom:3.054759pt;}
.y31_c00213{bottom:4.464647pt;}
.y14_c00213{bottom:5.287082pt;}
.y18_c00213{bottom:7.754387pt;}
.y16_c00213{bottom:8.929294pt;}
.y1d_c00213{bottom:9.634239pt;}
.y21_c00213{bottom:10.809146pt;}
.y26_c00213{bottom:13.041469pt;}
.ya_c00213{bottom:13.178542pt;}
.y3c_c00213{bottom:13.856208pt;}
.y30_c00213{bottom:14.098886pt;}
.y25_c00213{bottom:14.823412pt;}
.y2b_c00213{bottom:15.273793pt;}
.y6_c00213{bottom:15.861246pt;}
.y32_c00213{bottom:16.096228pt;}
.y24_c00213{bottom:16.213718pt;}
.y13_c00213{bottom:16.683681pt;}
.y17_c00213{bottom:18.446042pt;}
.y11_c00213{bottom:18.916005pt;}
.y1c_c00213{bottom:19.170568pt;}
.y15_c00213{bottom:19.385968pt;}
.y20_c00213{bottom:20.345475pt;}
.yb_c00213{bottom:22.225327pt;}
.y2f_c00213{bottom:23.615633pt;}
.y9_c00213{bottom:23.987687pt;}
.y33_c00213{bottom:24.547863pt;}
.y2a_c00213{bottom:24.790541pt;}
.y22_c00213{bottom:27.277427pt;}
.y2d_c00213{bottom:29.255188pt;}
.y1b_c00213{bottom:29.274769pt;}
.y3b_c00213{bottom:29.375616pt;}
.y10_c00213{bottom:29.725151pt;}
.y1f_c00213{bottom:29.979714pt;}
.y2e_c00213{bottom:33.484853pt;}
.y29_c00213{bottom:34.424779pt;}
.yf_c00213{bottom:40.436387pt;}
.y1a_c00213{bottom:41.258822pt;}
.y1e_c00213{bottom:42.198748pt;}
.y2c_c00213{bottom:42.414148pt;}
.y3a_c00213{bottom:42.554157pt;}
.y28_c00213{bottom:44.176508pt;}
.y12_c00213{bottom:49.483172pt;}
.ye_c00213{bottom:51.245533pt;}
.y39_c00213{bottom:55.713117pt;}
.y38_c00213{bottom:68.872077pt;}
.y37_c00213{bottom:82.031037pt;}
.y36_c00213{bottom:95.189997pt;}
.y35_c00213{bottom:96.952358pt;}
.y34_c00213{bottom:108.231466pt;}
.y27_c00213{bottom:143.500357pt;}
.y19_c00213{bottom:196.488669pt;}
.y23_c00213{bottom:220.711338pt;}
.yd_c00213{bottom:247.499220pt;}
.y8_c00213{bottom:274.757066pt;}
.y5_c00213{bottom:308.026520pt;}
.y3_c00213{bottom:334.109458pt;}
.y2_c00213{bottom:361.719776pt;}
.y1_c00213{bottom:387.127143pt;}
.h4_c00213{height:11.984053pt;}
.h10_c00213{height:23.169169pt;}
.h6_c00213{height:25.143013pt;}
.hf_c00213{height:26.317920pt;}
.hb_c00213{height:26.787883pt;}
.hc_c00213{height:27.536198pt;}
.h9_c00213{height:30.824102pt;}
.h8_c00213{height:32.333444pt;}
.h5_c00213{height:34.054867pt;}
.he_c00213{height:34.112006pt;}
.h7_c00213{height:37.747563pt;}
.h3_c00213{height:37.810898pt;}
.h2_c00213{height:41.029960pt;}
.hd_c00213{height:50.544505pt;}
.h11_c00213{height:52.518349pt;}
.ha_c00213{height:59.591290pt;}
.h12_c00213{height:118.362103pt;}
.h1_c00213{height:398.281907pt;}
.h13_c00213{height:401.219175pt;}
.h0_c00213{height:720.000000pt;}
.w4_c00213{width:76.048930pt;}
.w3_c00213{width:76.166434pt;}
.w2_c00213{width:152.217323pt;}
.w5_c00213{width:382.477236pt;}
.w1_c00213{width:477.440477pt;}
.w6_c00213{width:493.421093pt;}
.w0_c00213{width:960.000000pt;}
.x0_c00213{left:0.000000pt;}
.x5_c00213{left:4.817686pt;}
.xb_c00213{left:6.815263pt;}
.x3_c00213{left:12.102966pt;}
.x1_c00213{left:31.056000pt;}
.x4_c00213{left:44.099002pt;}
.x2_c00213{left:110.238830pt;}
.x8_c00213{left:120.500446pt;}
.x6_c00213{left:197.373866pt;}
.x9_c00213{left:273.653888pt;}
.x7_c00213{left:350.531225pt;}
.xa_c00213{left:426.928751pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d2c62e4788ec13485c9bba6.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.051270;font-style:normal;font-weight:normal;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_6fdff93dabcc04f3e225621e.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.052734;font-style:normal;font-weight:normal;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_24125fe063638d74e91f1a49.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:1.052734;font-style:normal;font-weight:normal;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_cb4b22cc566535d649581186.woff2')format("woff");}.ff4_c00214{font-family:ff4_c00214;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.162600px;}
.ls0_c00214{letter-spacing:0.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:0.000000px;}
._6_c00214{margin-left:-14.300941px;}
._5_c00214{margin-left:-8.266128px;}
._0_c00214{margin-left:-5.623164px;}
._4_c00214{margin-left:-3.633697px;}
._2_c00214{margin-left:-2.423939px;}
._1_c00214{margin-left:-1.297836px;}
._3_c00214{width:1.126211px;}
.fc2_c00214{color:rgb(233,204,19);}
.fc1_c00214{color:rgb(0,0,0);}
.fc0_c00214{color:rgb(0,0,153);}
.fs2_c00214{font-size:66.240000px;}
.fs3_c00214{font-size:84.384000px;}
.fs1_c00214{font-size:108.000000px;}
.fs0_c00214{font-size:108.144000px;}
.fs4_c00214{font-size:192.240000px;}
.y0_c00214{bottom:0.000000px;}
.y2_c00214{bottom:122.148000px;}
.y1_c00214{bottom:154.545000px;}
.y8_c00214{bottom:293.940000px;}
.y7_c00214{bottom:317.910000px;}
.y6_c00214{bottom:337.710000px;}
.y5_c00214{bottom:357.510000px;}
.y4_c00214{bottom:377.310000px;}
.y3_c00214{bottom:397.110000px;}
.y9_c00214{bottom:741.630000px;}
.h3_c00214{height:57.830625px;}
.h4_c00214{height:57.927656px;}
.h5_c00214{height:73.794797px;}
.h2_c00214{height:94.447266px;}
.h1_c00214{height:94.573195px;}
.h6_c00214{height:139.955977px;}
.h0_c00214{height:810.000000px;}
.w0_c00214{width:1080.000000px;}
.x0_c00214{left:0.000000px;}
.x3_c00214{left:42.084000px;}
.x1_c00214{left:64.800000px;}
.x2_c00214{left:492.690000px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls1_c00214{letter-spacing:-0.144533pt;}
.ls0_c00214{letter-spacing:0.000000pt;}
.ws0_c00214{word-spacing:0.000000pt;}
._6_c00214{margin-left:-12.711947pt;}
._5_c00214{margin-left:-7.347669pt;}
._0_c00214{margin-left:-4.998368pt;}
._4_c00214{margin-left:-3.229953pt;}
._2_c00214{margin-left:-2.154613pt;}
._1_c00214{margin-left:-1.153632pt;}
._3_c00214{width:1.001077pt;}
.fs2_c00214{font-size:58.880000pt;}
.fs3_c00214{font-size:75.008000pt;}
.fs1_c00214{font-size:96.000000pt;}
.fs0_c00214{font-size:96.128000pt;}
.fs4_c00214{font-size:170.880000pt;}
.y0_c00214{bottom:0.000000pt;}
.y2_c00214{bottom:108.576000pt;}
.y1_c00214{bottom:137.373333pt;}
.y8_c00214{bottom:261.280000pt;}
.y7_c00214{bottom:282.586667pt;}
.y6_c00214{bottom:300.186667pt;}
.y5_c00214{bottom:317.786667pt;}
.y4_c00214{bottom:335.386667pt;}
.y3_c00214{bottom:352.986667pt;}
.y9_c00214{bottom:659.226667pt;}
.h3_c00214{height:51.405000pt;}
.h4_c00214{height:51.491250pt;}
.h5_c00214{height:65.595375pt;}
.h2_c00214{height:83.953125pt;}
.h1_c00214{height:84.065062pt;}
.h6_c00214{height:124.405313pt;}
.h0_c00214{height:720.000000pt;}
.w0_c00214{width:960.000000pt;}
.x0_c00214{left:0.000000pt;}
.x3_c00214{left:37.408000pt;}
.x1_c00214{left:57.600000pt;}
.x2_c00214{left:437.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7b25f58cec7f4602514c2ac2.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.051270;font-style:normal;font-weight:normal;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_5167d63150a887695d8244e0.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.051270;font-style:normal;font-weight:normal;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_8127a638b740eae522a05e5e.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:1.052734;font-style:normal;font-weight:normal;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_5124dd00834aa58590301a70.woff2')format("woff");}.ff4_c00215{font-family:ff4_c00215;line-height:1.052734;font-style:normal;font-weight:normal;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_d74a61e7e116c13406bb276f.woff2')format("woff");}.ff5_c00215{font-family:ff5_c00215;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00215;src:url('chunks/assets/font_77a6d85094f8e0a524951614.woff2')format("woff");}.ff6_c00215{font-family:ff6_c00215;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00215{letter-spacing:-0.202800px;}
.ls4_c00215{letter-spacing:-0.144000px;}
.ls3_c00215{letter-spacing:0.000000px;}
.ls1_c00215{letter-spacing:0.142800px;}
.ls2_c00215{letter-spacing:0.155520px;}
.ls0_c00215{letter-spacing:0.216000px;}
.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:-72.000000px;}
.ws2_c00215{word-spacing:-16.447344px;}
.ws1_c00215{word-spacing:-16.128000px;}
.ws3_c00215{word-spacing:0.000000px;}
._3_c00215{margin-left:-5.760000px;}
._4_c00215{margin-left:-4.176000px;}
._0_c00215{margin-left:-2.695764px;}
._1_c00215{margin-left:-1.263010px;}
._2_c00215{width:1.094952px;}
._5_c00215{width:2.828303px;}
.fc3_c00215{color:rgb(233,204,19);}
.fc2_c00215{color:rgb(0,0,153);}
.fc1_c00215{color:rgb(0,0,0);}
.fc0_c00215{color:rgb(255,255,255);}
.fs1_c00215{font-size:66.240000px;}
.fs2_c00215{font-size:72.000000px;}
.fs3_c00215{font-size:72.144000px;}
.fs6_c00215{font-size:77.760000px;}
.fs0_c00215{font-size:84.240000px;}
.fs4_c00215{font-size:108.000000px;}
.fs5_c00215{font-size:192.384000px;}
.y0_c00215{bottom:0.000000px;}
.y4_c00215{bottom:5.760000px;}
.y2b_c00215{bottom:8.460000px;}
.y53_c00215{bottom:8.895000px;}
.y45_c00215{bottom:13.500000px;}
.y1d_c00215{bottom:13.575000px;}
.y27_c00215{bottom:14.400000px;}
.y34_c00215{bottom:14.865000px;}
.y29_c00215{bottom:18.180000px;}
.y38_c00215{bottom:18.285000px;}
.y1b_c00215{bottom:20.415000px;}
.y36_c00215{bottom:20.445000px;}
.y8_c00215{bottom:20.595000px;}
.y41_c00215{bottom:22.680000px;}
.y17_c00215{bottom:22.755000px;}
.y32_c00215{bottom:22.785000px;}
.y25_c00215{bottom:22.860000px;}
.y57_c00215{bottom:23.115000px;}
.y5c_c00215{bottom:25.095000px;}
.y6_c00215{bottom:25.815000px;}
.y15_c00215{bottom:30.315000px;}
.y50_c00215{bottom:33.195000px;}
.y3f_c00215{bottom:34.560000px;}
.y59_c00215{bottom:35.355000px;}
.y43_c00215{bottom:36.360000px;}
.y19_c00215{bottom:36.435000px;}
.y30_c00215{bottom:37.005000px;}
.y23_c00215{bottom:39.420000px;}
.y47_c00215{bottom:44.280000px;}
.y3a_c00215{bottom:44.385000px;}
.y13_c00215{bottom:45.795000px;}
.y10_c00215{bottom:46.875000px;}
.y5f_c00215{bottom:49.755000px;}
.y4d_c00215{bottom:50.655000px;}
.y55_c00215{bottom:57.135000px;}
.yd_c00215{bottom:58.755000px;}
.y1f_c00215{bottom:64.515000px;}
.y12_c00215{bottom:67.395000px;}
.ya_c00215{bottom:67.935000px;}
.yf_c00215{bottom:68.475000px;}
.y2e_c00215{bottom:74.700000px;}
.y3d_c00215{bottom:75.345000px;}
.yc_c00215{bottom:80.355000px;}
.y21_c00215{bottom:94.215000px;}
.y4b_c00215{bottom:94.680000px;}
.y2d_c00215{bottom:96.300000px;}
.y3c_c00215{bottom:96.945000px;}
.y4a_c00215{bottom:116.280000px;}
.y65_c00215{bottom:131.616000px;}
.y49_c00215{bottom:137.880000px;}
.y64_c00215{bottom:164.010000px;}
.y2_c00215{bottom:197.640000px;}
.y63_c00215{bottom:211.395000px;}
.y5e_c00215{bottom:224.100000px;}
.y62_c00215{bottom:234.795000px;}
.y5a_c00215{bottom:237.420000px;}
.y58_c00215{bottom:238.500000px;}
.y5b_c00215{bottom:248.760000px;}
.y56_c00215{bottom:250.740000px;}
.y5d_c00215{bottom:260.280000px;}
.y54_c00215{bottom:277.200000px;}
.y48_c00215{bottom:279.720000px;}
.y4c_c00215{bottom:283.680000px;}
.y4f_c00215{bottom:301.140000px;}
.y4e_c00215{bottom:311.580000px;}
.y51_c00215{bottom:313.920000px;}
.y52_c00215{bottom:325.440000px;}
.y46_c00215{bottom:373.320000px;}
.y3b_c00215{bottom:378.000000px;}
.y42_c00215{bottom:381.240000px;}
.y3e_c00215{bottom:383.040000px;}
.y40_c00215{bottom:394.920000px;}
.y44_c00215{bottom:404.100000px;}
.y39_c00215{bottom:430.560000px;}
.y2c_c00215{bottom:435.960000px;}
.y2f_c00215{bottom:437.940000px;}
.y31_c00215{bottom:452.160000px;}
.y35_c00215{bottom:454.500000px;}
.y37_c00215{bottom:456.660000px;}
.y33_c00215{bottom:460.080000px;}
.y22_c00215{bottom:492.840000px;}
.y20_c00215{bottom:495.900000px;}
.y1_c00215{bottom:496.080000px;}
.y24_c00215{bottom:509.400000px;}
.y28_c00215{bottom:514.080000px;}
.y26_c00215{bottom:517.860000px;}
.y2a_c00215{bottom:523.800000px;}
.y1e_c00215{bottom:525.600000px;}
.y18_c00215{bottom:553.680000px;}
.y14_c00215{bottom:559.800000px;}
.y16_c00215{bottom:567.360000px;}
.y1a_c00215{bottom:569.700000px;}
.yb_c00215{bottom:570.240000px;}
.y1c_c00215{bottom:576.540000px;}
.ye_c00215{bottom:582.120000px;}
.y9_c00215{bottom:582.660000px;}
.y11_c00215{bottom:583.200000px;}
.y5_c00215{bottom:624.780000px;}
.y7_c00215{bottom:630.000000px;}
.y60_c00215{bottom:686.310000px;}
.y3_c00215{bottom:692.100000px;}
.y61_c00215{bottom:745.200000px;}
.h3_c00215{height:23.580000px;}
.h18_c00215{height:29.700000px;}
.h24_c00215{height:30.780000px;}
.h11_c00215{height:39.960000px;}
.h16_c00215{height:41.580000px;}
.h1b_c00215{height:42.480000px;}
.h17_c00215{height:49.140000px;}
.h1c_c00215{height:49.320000px;}
.h10_c00215{height:53.640000px;}
.h7_c00215{height:53.820000px;}
.h4_c00215{height:57.830625px;}
.he_c00215{height:58.320000px;}
.h15_c00215{height:58.500000px;}
.h26_c00215{height:59.220000px;}
.h6_c00215{height:62.859375px;}
.hd_c00215{height:62.964844px;}
.h20_c00215{height:63.090773px;}
.h28_c00215{height:63.180000px;}
.h5_c00215{height:64.260000px;}
.h2c_c00215{height:68.002031px;}
.hc_c00215{height:73.440000px;}
.h2_c00215{height:73.545469px;}
.h2a_c00215{height:78.679688px;}
.h23_c00215{height:79.200000px;}
.h1f_c00215{height:81.900000px;}
.h27_c00215{height:83.700000px;}
.hf_c00215{height:85.680000px;}
.h1a_c00215{height:86.940000px;}
.h14_c00215{height:91.620000px;}
.h2d_c00215{height:94.289062px;}
.h2e_c00215{height:94.447266px;}
.h1d_c00215{height:101.520000px;}
.h29_c00215{height:112.320000px;}
.h22_c00215{height:114.120000px;}
.hb_c00215{height:126.000000px;}
.h25_c00215{height:127.080000px;}
.ha_c00215{height:128.160000px;}
.h2b_c00215{height:140.060812px;}
.h12_c00215{height:141.840000px;}
.h8_c00215{height:148.680000px;}
.h9_c00215{height:151.920000px;}
.h19_c00215{height:183.780000px;}
.h1e_c00215{height:185.040000px;}
.h13_c00215{height:201.060000px;}
.h21_c00215{height:245.340000px;}
.h1_c00215{height:313.920000px;}
.h0_c00215{height:810.000000px;}
.w4_c00215{width:88.920000px;}
.w3_c00215{width:110.160000px;}
.w7_c00215{width:114.120000px;}
.wb_c00215{width:114.300000px;}
.w6_c00215{width:141.120000px;}
.w5_c00215{width:145.260000px;}
.wa_c00215{width:145.440000px;}
.w8_c00215{width:156.600000px;}
.w2_c00215{width:204.120000px;}
.w9_c00215{width:204.300000px;}
.wc_c00215{width:360.900000px;}
.w1_c00215{width:756.900000px;}
.w0_c00215{width:1080.000000px;}
.x0_c00215{left:0.000000px;}
.x2_c00215{left:7.056000px;}
.x7_c00215{left:9.210000px;}
.xc_c00215{left:14.685000px;}
.x9_c00215{left:16.275000px;}
.xd_c00215{left:26.610000px;}
.x5_c00215{left:28.365000px;}
.x1_c00215{left:32.760000px;}
.xf_c00215{left:36.975000px;}
.xa_c00215{left:41.475000px;}
.x10_c00215{left:51.375000px;}
.x11_c00215{left:60.915000px;}
.x12_c00215{left:77.655000px;}
.x4_c00215{left:142.920000px;}
.x6_c00215{left:232.020000px;}
.x13_c00215{left:275.190000px;}
.x8_c00215{left:377.460000px;}
.xb_c00215{left:518.760000px;}
.x14_c00215{left:562.650000px;}
.xe_c00215{left:633.240000px;}
.x15_c00215{left:737.970000px;}
.x3_c00215{left:789.840000px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls5_c00215{letter-spacing:-0.180267pt;}
.ls4_c00215{letter-spacing:-0.128000pt;}
.ls3_c00215{letter-spacing:0.000000pt;}
.ls1_c00215{letter-spacing:0.126933pt;}
.ls2_c00215{letter-spacing:0.138240pt;}
.ls0_c00215{letter-spacing:0.192000pt;}
.ws0_c00215{word-spacing:-64.000000pt;}
.ws2_c00215{word-spacing:-14.619861pt;}
.ws1_c00215{word-spacing:-14.336000pt;}
.ws3_c00215{word-spacing:0.000000pt;}
._3_c00215{margin-left:-5.120000pt;}
._4_c00215{margin-left:-3.712000pt;}
._0_c00215{margin-left:-2.396235pt;}
._1_c00215{margin-left:-1.122676pt;}
._2_c00215{width:0.973290pt;}
._5_c00215{width:2.514047pt;}
.fs1_c00215{font-size:58.880000pt;}
.fs2_c00215{font-size:64.000000pt;}
.fs3_c00215{font-size:64.128000pt;}
.fs6_c00215{font-size:69.120000pt;}
.fs0_c00215{font-size:74.880000pt;}
.fs4_c00215{font-size:96.000000pt;}
.fs5_c00215{font-size:171.008000pt;}
.y0_c00215{bottom:0.000000pt;}
.y4_c00215{bottom:5.120000pt;}
.y2b_c00215{bottom:7.520000pt;}
.y53_c00215{bottom:7.906667pt;}
.y45_c00215{bottom:12.000000pt;}
.y1d_c00215{bottom:12.066667pt;}
.y27_c00215{bottom:12.800000pt;}
.y34_c00215{bottom:13.213333pt;}
.y29_c00215{bottom:16.160000pt;}
.y38_c00215{bottom:16.253333pt;}
.y1b_c00215{bottom:18.146667pt;}
.y36_c00215{bottom:18.173333pt;}
.y8_c00215{bottom:18.306667pt;}
.y41_c00215{bottom:20.160000pt;}
.y17_c00215{bottom:20.226667pt;}
.y32_c00215{bottom:20.253333pt;}
.y25_c00215{bottom:20.320000pt;}
.y57_c00215{bottom:20.546667pt;}
.y5c_c00215{bottom:22.306667pt;}
.y6_c00215{bottom:22.946667pt;}
.y15_c00215{bottom:26.946667pt;}
.y50_c00215{bottom:29.506667pt;}
.y3f_c00215{bottom:30.720000pt;}
.y59_c00215{bottom:31.426667pt;}
.y43_c00215{bottom:32.320000pt;}
.y19_c00215{bottom:32.386667pt;}
.y30_c00215{bottom:32.893333pt;}
.y23_c00215{bottom:35.040000pt;}
.y47_c00215{bottom:39.360000pt;}
.y3a_c00215{bottom:39.453333pt;}
.y13_c00215{bottom:40.706667pt;}
.y10_c00215{bottom:41.666667pt;}
.y5f_c00215{bottom:44.226667pt;}
.y4d_c00215{bottom:45.026667pt;}
.y55_c00215{bottom:50.786667pt;}
.yd_c00215{bottom:52.226667pt;}
.y1f_c00215{bottom:57.346667pt;}
.y12_c00215{bottom:59.906667pt;}
.ya_c00215{bottom:60.386667pt;}
.yf_c00215{bottom:60.866667pt;}
.y2e_c00215{bottom:66.400000pt;}
.y3d_c00215{bottom:66.973333pt;}
.yc_c00215{bottom:71.426667pt;}
.y21_c00215{bottom:83.746667pt;}
.y4b_c00215{bottom:84.160000pt;}
.y2d_c00215{bottom:85.600000pt;}
.y3c_c00215{bottom:86.173333pt;}
.y4a_c00215{bottom:103.360000pt;}
.y65_c00215{bottom:116.992000pt;}
.y49_c00215{bottom:122.560000pt;}
.y64_c00215{bottom:145.786667pt;}
.y2_c00215{bottom:175.680000pt;}
.y63_c00215{bottom:187.906667pt;}
.y5e_c00215{bottom:199.200000pt;}
.y62_c00215{bottom:208.706667pt;}
.y5a_c00215{bottom:211.040000pt;}
.y58_c00215{bottom:212.000000pt;}
.y5b_c00215{bottom:221.120000pt;}
.y56_c00215{bottom:222.880000pt;}
.y5d_c00215{bottom:231.360000pt;}
.y54_c00215{bottom:246.400000pt;}
.y48_c00215{bottom:248.640000pt;}
.y4c_c00215{bottom:252.160000pt;}
.y4f_c00215{bottom:267.680000pt;}
.y4e_c00215{bottom:276.960000pt;}
.y51_c00215{bottom:279.040000pt;}
.y52_c00215{bottom:289.280000pt;}
.y46_c00215{bottom:331.840000pt;}
.y3b_c00215{bottom:336.000000pt;}
.y42_c00215{bottom:338.880000pt;}
.y3e_c00215{bottom:340.480000pt;}
.y40_c00215{bottom:351.040000pt;}
.y44_c00215{bottom:359.200000pt;}
.y39_c00215{bottom:382.720000pt;}
.y2c_c00215{bottom:387.520000pt;}
.y2f_c00215{bottom:389.280000pt;}
.y31_c00215{bottom:401.920000pt;}
.y35_c00215{bottom:404.000000pt;}
.y37_c00215{bottom:405.920000pt;}
.y33_c00215{bottom:408.960000pt;}
.y22_c00215{bottom:438.080000pt;}
.y20_c00215{bottom:440.800000pt;}
.y1_c00215{bottom:440.960000pt;}
.y24_c00215{bottom:452.800000pt;}
.y28_c00215{bottom:456.960000pt;}
.y26_c00215{bottom:460.320000pt;}
.y2a_c00215{bottom:465.600000pt;}
.y1e_c00215{bottom:467.200000pt;}
.y18_c00215{bottom:492.160000pt;}
.y14_c00215{bottom:497.600000pt;}
.y16_c00215{bottom:504.320000pt;}
.y1a_c00215{bottom:506.400000pt;}
.yb_c00215{bottom:506.880000pt;}
.y1c_c00215{bottom:512.480000pt;}
.ye_c00215{bottom:517.440000pt;}
.y9_c00215{bottom:517.920000pt;}
.y11_c00215{bottom:518.400000pt;}
.y5_c00215{bottom:555.360000pt;}
.y7_c00215{bottom:560.000000pt;}
.y60_c00215{bottom:610.053333pt;}
.y3_c00215{bottom:615.200000pt;}
.y61_c00215{bottom:662.400000pt;}
.h3_c00215{height:20.960000pt;}
.h18_c00215{height:26.400000pt;}
.h24_c00215{height:27.360000pt;}
.h11_c00215{height:35.520000pt;}
.h16_c00215{height:36.960000pt;}
.h1b_c00215{height:37.760000pt;}
.h17_c00215{height:43.680000pt;}
.h1c_c00215{height:43.840000pt;}
.h10_c00215{height:47.680000pt;}
.h7_c00215{height:47.840000pt;}
.h4_c00215{height:51.405000pt;}
.he_c00215{height:51.840000pt;}
.h15_c00215{height:52.000000pt;}
.h26_c00215{height:52.640000pt;}
.h6_c00215{height:55.875000pt;}
.hd_c00215{height:55.968750pt;}
.h20_c00215{height:56.080687pt;}
.h28_c00215{height:56.160000pt;}
.h5_c00215{height:57.120000pt;}
.h2c_c00215{height:60.446250pt;}
.hc_c00215{height:65.280000pt;}
.h2_c00215{height:65.373750pt;}
.h2a_c00215{height:69.937500pt;}
.h23_c00215{height:70.400000pt;}
.h1f_c00215{height:72.800000pt;}
.h27_c00215{height:74.400000pt;}
.hf_c00215{height:76.160000pt;}
.h1a_c00215{height:77.280000pt;}
.h14_c00215{height:81.440000pt;}
.h2d_c00215{height:83.812500pt;}
.h2e_c00215{height:83.953125pt;}
.h1d_c00215{height:90.240000pt;}
.h29_c00215{height:99.840000pt;}
.h22_c00215{height:101.440000pt;}
.hb_c00215{height:112.000000pt;}
.h25_c00215{height:112.960000pt;}
.ha_c00215{height:113.920000pt;}
.h2b_c00215{height:124.498500pt;}
.h12_c00215{height:126.080000pt;}
.h8_c00215{height:132.160000pt;}
.h9_c00215{height:135.040000pt;}
.h19_c00215{height:163.360000pt;}
.h1e_c00215{height:164.480000pt;}
.h13_c00215{height:178.720000pt;}
.h21_c00215{height:218.080000pt;}
.h1_c00215{height:279.040000pt;}
.h0_c00215{height:720.000000pt;}
.w4_c00215{width:79.040000pt;}
.w3_c00215{width:97.920000pt;}
.w7_c00215{width:101.440000pt;}
.wb_c00215{width:101.600000pt;}
.w6_c00215{width:125.440000pt;}
.w5_c00215{width:129.120000pt;}
.wa_c00215{width:129.280000pt;}
.w8_c00215{width:139.200000pt;}
.w2_c00215{width:181.440000pt;}
.w9_c00215{width:181.600000pt;}
.wc_c00215{width:320.800000pt;}
.w1_c00215{width:672.800000pt;}
.w0_c00215{width:960.000000pt;}
.x0_c00215{left:0.000000pt;}
.x2_c00215{left:6.272000pt;}
.x7_c00215{left:8.186667pt;}
.xc_c00215{left:13.053333pt;}
.x9_c00215{left:14.466667pt;}
.xd_c00215{left:23.653333pt;}
.x5_c00215{left:25.213333pt;}
.x1_c00215{left:29.120000pt;}
.xf_c00215{left:32.866667pt;}
.xa_c00215{left:36.866667pt;}
.x10_c00215{left:45.666667pt;}
.x11_c00215{left:54.146667pt;}
.x12_c00215{left:69.026667pt;}
.x4_c00215{left:127.040000pt;}
.x6_c00215{left:206.240000pt;}
.x13_c00215{left:244.613333pt;}
.x8_c00215{left:335.520000pt;}
.xb_c00215{left:461.120000pt;}
.x14_c00215{left:500.133333pt;}
.xe_c00215{left:562.880000pt;}
.x15_c00215{left:655.973333pt;}
.x3_c00215{left:702.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_07705cda5fb6a9ea53803b4c.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00216;src:url('chunks/assets/font_c1b3a7c0469d38d853046ef6.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.051270;font-style:normal;font-weight:normal;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_e4dba3c8486578c00e7fc167.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:1.052734;font-style: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;}
.ls1_c00216{letter-spacing:-0.162600px;}
.ls0_c00216{letter-spacing:0.000000px;}
.sc__c00216{text-shadow:none;}
.sc0_c00216{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00216{-webkit-text-stroke:0px transparent;}
.sc0_c00216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00216{word-spacing:0.000000px;}
._1_c00216{margin-left:-14.610624px;}
._6_c00216{margin-left:-6.573072px;}
._4_c00216{margin-left:-4.989072px;}
._0_c00216{margin-left:-2.498928px;}
._2_c00216{margin-left:-1.008000px;}
._3_c00216{width:1.080000px;}
._5_c00216{width:2.687976px;}
._7_c00216{width:4.070639px;}
.fc2_c00216{color:rgb(0,0,0);}
.fc1_c00216{color:rgb(233,204,19);}
.fc0_c00216{color:rgb(0,0,153);}
.fs2_c00216{font-size:66.240000px;}
.fs1_c00216{font-size:72.000000px;}
.fs3_c00216{font-size:72.144000px;}
.fs0_c00216{font-size:192.240000px;}
.y0_c00216{bottom:0.000000px;}
.y15_c00216{bottom:57.816000px;}
.y14_c00216{bottom:79.416000px;}
.y13_c00216{bottom:101.016000px;}
.y12_c00216{bottom:122.652000px;}
.y11_c00216{bottom:144.252000px;}
.y10_c00216{bottom:165.855000px;}
.yf_c00216{bottom:217.410000px;}
.ye_c00216{bottom:239.010000px;}
.yd_c00216{bottom:260.610000px;}
.yc_c00216{bottom:281.850000px;}
.yb_c00216{bottom:301.680000px;}
.ya_c00216{bottom:321.480000px;}
.y9_c00216{bottom:341.640000px;}
.y8_c00216{bottom:363.240000px;}
.y7_c00216{bottom:384.840000px;}
.y6_c00216{bottom:406.440000px;}
.y5_c00216{bottom:428.040000px;}
.y4_c00216{bottom:449.670000px;}
.y3_c00216{bottom:471.270000px;}
.y2_c00216{bottom:492.870000px;}
.y1_c00216{bottom:733.290000px;}
.h3_c00216{height:57.927656px;}
.h2_c00216{height:62.964844px;}
.h4_c00216{height:63.090773px;}
.h1_c00216{height:139.955977px;}
.h0_c00216{height:810.000000px;}
.w0_c00216{width:1080.000000px;}
.x0_c00216{left:0.000000px;}
.x2_c00216{left:32.796000px;}
.x1_c00216{left:40.212000px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls1_c00216{letter-spacing:-0.144533pt;}
.ls0_c00216{letter-spacing:0.000000pt;}
.ws0_c00216{word-spacing:0.000000pt;}
._1_c00216{margin-left:-12.987222pt;}
._6_c00216{margin-left:-5.842731pt;}
._4_c00216{margin-left:-4.434731pt;}
._0_c00216{margin-left:-2.221269pt;}
._2_c00216{margin-left:-0.896000pt;}
._3_c00216{width:0.960000pt;}
._5_c00216{width:2.389312pt;}
._7_c00216{width:3.618346pt;}
.fs2_c00216{font-size:58.880000pt;}
.fs1_c00216{font-size:64.000000pt;}
.fs3_c00216{font-size:64.128000pt;}
.fs0_c00216{font-size:170.880000pt;}
.y0_c00216{bottom:0.000000pt;}
.y15_c00216{bottom:51.392000pt;}
.y14_c00216{bottom:70.592000pt;}
.y13_c00216{bottom:89.792000pt;}
.y12_c00216{bottom:109.024000pt;}
.y11_c00216{bottom:128.224000pt;}
.y10_c00216{bottom:147.426667pt;}
.yf_c00216{bottom:193.253333pt;}
.ye_c00216{bottom:212.453333pt;}
.yd_c00216{bottom:231.653333pt;}
.yc_c00216{bottom:250.533333pt;}
.yb_c00216{bottom:268.160000pt;}
.ya_c00216{bottom:285.760000pt;}
.y9_c00216{bottom:303.680000pt;}
.y8_c00216{bottom:322.880000pt;}
.y7_c00216{bottom:342.080000pt;}
.y6_c00216{bottom:361.280000pt;}
.y5_c00216{bottom:380.480000pt;}
.y4_c00216{bottom:399.706667pt;}
.y3_c00216{bottom:418.906667pt;}
.y2_c00216{bottom:438.106667pt;}
.y1_c00216{bottom:651.813333pt;}
.h3_c00216{height:51.491250pt;}
.h2_c00216{height:55.968750pt;}
.h4_c00216{height:56.080687pt;}
.h1_c00216{height:124.405313pt;}
.h0_c00216{height:720.000000pt;}
.w0_c00216{width:960.000000pt;}
.x0_c00216{left:0.000000pt;}
.x2_c00216{left:29.152000pt;}
.x1_c00216{left:35.744000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_70804b00fab99a8b0de0f526.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.051270;font-style:normal;font-weight:normal;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_a6582c994768d61e0c67c19c.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.052734;font-style:normal;font-weight:normal;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_f8f0f20b52f76097f3baa9fc.woff2')format("woff");}.ff3_c00217{font-family:ff3_c00217;line-height:1.051270;font-style: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.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m1_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;}
.lsa_c00217{letter-spacing:-0.220004px;}
.ls9_c00217{letter-spacing:-0.189275px;}
.ls8_c00217{letter-spacing:-0.102431px;}
.ls7_c00217{letter-spacing:-0.093524px;}
.ls4_c00217{letter-spacing:-0.043199px;}
.ls3_c00217{letter-spacing:0.000000px;}
.ls1_c00217{letter-spacing:0.026721px;}
.ls0_c00217{letter-spacing:0.087645px;}
.ls2_c00217{letter-spacing:0.120245px;}
.ls6_c00217{letter-spacing:0.133606px;}
.ls5_c00217{letter-spacing:0.190166px;}
.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;}
}
.ws4_c00217{word-spacing:-11.301888px;}
.ws1_c00217{word-spacing:-11.111723px;}
.ws7_c00217{word-spacing:-11.009292px;}
.ws9_c00217{word-spacing:-10.891719px;}
.ws0_c00217{word-spacing:-10.024706px;}
.ws2_c00217{word-spacing:-9.981507px;}
.ws3_c00217{word-spacing:-9.058470px;}
.ws5_c00217{word-spacing:-8.092233px;}
.ws6_c00217{word-spacing:-7.998709px;}
.ws8_c00217{word-spacing:-7.902958px;}
.wsa_c00217{word-spacing:0.000000px;}
._4_c00217{margin-left:-13.204204px;}
._2_c00217{margin-left:-6.380352px;}
._3_c00217{margin-left:-2.210862px;}
._0_c00217{margin-left:-1.068846px;}
._1_c00217{width:1.140102px;}
._5_c00217{width:2.760048px;}
.fc3_c00217{color:transparent;}
.fc2_c00217{color:rgb(0,0,153);}
.fc1_c00217{color:rgb(152,72,6);}
.fc0_c00217{color:rgb(0,0,0);}
.fs1_c00217{font-size:22.445765px;}
.fs3_c00217{font-size:30.996533px;}
.fs6_c00217{font-size:35.806340px;}
.fs5_c00217{font-size:40.081724px;}
.fs4_c00217{font-size:44.357108px;}
.fs2_c00217{font-size:49.166915px;}
.fs0_c00217{font-size:53.442298px;}
.fs8_c00217{font-size:108.000000px;}
.fs7_c00217{font-size:120.384000px;}
.y0_c00217{bottom:0.000000px;}
.yd_c00217{bottom:2.805721px;}
.y5_c00217{bottom:3.072932px;}
.y8_c00217{bottom:3.473749px;}
.y34_c00217{bottom:5.077018px;}
.y15_c00217{bottom:6.012259px;}
.y19_c00217{bottom:8.817979px;}
.y17_c00217{bottom:10.154037px;}
.y1e_c00217{bottom:10.955671px;}
.y23_c00217{bottom:12.291729px;}
.y28_c00217{bottom:14.830238px;}
.yb_c00217{bottom:14.963844px;}
.y43_c00217{bottom:15.793313px;}
.y33_c00217{bottom:16.032690px;}
.y41_c00217{bottom:16.727439px;}
.y27_c00217{bottom:16.834324px;}
.y2d_c00217{bottom:17.368747px;}
.y7_c00217{bottom:18.036776px;}
.y30_c00217{bottom:18.303987px;}
.y3f_c00217{bottom:18.437593px;}
.y26_c00217{bottom:18.459861px;}
.y14_c00217{bottom:18.972016px;}
.y18_c00217{bottom:20.976102px;}
.y12_c00217{bottom:21.510525px;}
.y1d_c00217{bottom:21.777737px;}
.y16_c00217{bottom:22.044948px;}
.y22_c00217{bottom:23.113794px;}
.yc_c00217{bottom:25.251486px;}
.y32_c00217{bottom:26.877023px;}
.ya_c00217{bottom:27.255572px;}
.y2c_c00217{bottom:28.213080px;}
.y24_c00217{bottom:30.996533px;}
.y1c_c00217{bottom:33.267831px;}
.y2f_c00217{bottom:33.290098px;}
.y3e_c00217{bottom:33.424818px;}
.y11_c00217{bottom:33.802254px;}
.y21_c00217{bottom:34.069465px;}
.y31_c00217{bottom:38.099905px;}
.y2b_c00217{bottom:39.168751px;}
.y40_c00217{bottom:45.051858px;}
.y10_c00217{bottom:45.960377px;}
.y20_c00217{bottom:45.982644px;}
.y1b_c00217{bottom:46.917884px;}
.y1f_c00217{bottom:47.986730px;}
.y2e_c00217{bottom:48.253942px;}
.y3d_c00217{bottom:48.388661px;}
.y2a_c00217{bottom:50.258028px;}
.y13_c00217{bottom:56.248019px;}
.yf_c00217{bottom:58.252105px;}
.y3c_c00217{bottom:63.352505px;}
.y3b_c00217{bottom:78.316348px;}
.y3a_c00217{bottom:93.280192px;}
.y39_c00217{bottom:108.277437px;}
.y42_c00217{bottom:108.821995px;}
.y38_c00217{bottom:123.241280px;}
.y37_c00217{bottom:125.245367px;}
.y36_c00217{bottom:138.071518px;}
.y45_c00217{bottom:138.564000px;}
.y1_c00217{bottom:139.579151px;}
.y44_c00217{bottom:171.690000px;}
.y35_c00217{bottom:196.789131px;}
.y29_c00217{bottom:347.018772px;}
.y1a_c00217{bottom:407.297232px;}
.y25_c00217{bottom:434.820015px;}
.y3_c00217{bottom:455.623429px;}
.ye_c00217{bottom:465.304393px;}
.y2_c00217{bottom:484.504537px;}
.y9_c00217{bottom:496.300926px;}
.y6_c00217{bottom:534.144754px;}
.y4_c00217{bottom:563.805229px;}
.h4_c00217{height:13.627786px;}
.h10_c00217{height:26.320332px;}
.h6_c00217{height:28.591630px;}
.hf_c00217{height:29.954408px;}
.hb_c00217{height:30.462110px;}
.hc_c00217{height:31.313064px;}
.h9_c00217{height:35.051937px;}
.h8_c00217{height:36.768301px;}
.h5_c00217{height:38.725834px;}
.he_c00217{height:38.790810px;}
.h7_c00217{height:42.925021px;}
.h3_c00217{height:42.997043px;}
.h2_c00217{height:46.657632px;}
.hd_c00217{height:57.477192px;}
.h11_c00217{height:59.748490px;}
.ha_c00217{height:67.764834px;}
.h15_c00217{height:94.447266px;}
.h14_c00217{height:105.100875px;}
.h12_c00217{height:149.560499px;}
.h1_c00217{height:497.202650px;}
.h13_c00217{height:531.294385px;}
.h0_c00217{height:810.000000px;}
.w4_c00217{width:86.468534px;}
.w3_c00217{width:86.602138px;}
.w2_c00217{width:173.072899px;}
.w5_c00217{width:434.881147px;}
.w1_c00217{width:542.855478px;}
.w6_c00217{width:561.025627px;}
.w0_c00217{width:1080.000000px;}
.x0_c00217{left:0.000000px;}
.x5_c00217{left:5.477766px;}
.xb_c00217{left:7.749034px;}
.x3_c00217{left:13.761216px;}
.xc_c00217{left:39.168000px;}
.x2_c00217{left:125.342856px;}
.x1_c00217{left:161.609997px;}
.x4_c00217{left:176.440045px;}
.x8_c00217{left:263.309391px;}
.x6_c00217{left:350.715380px;}
.x9_c00217{left:437.446669px;}
.x7_c00217{left:524.857111px;}
.xa_c00217{left:611.722004px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.lsa_c00217{letter-spacing:-0.195559pt;}
.ls9_c00217{letter-spacing:-0.168244pt;}
.ls8_c00217{letter-spacing:-0.091050pt;}
.ls7_c00217{letter-spacing:-0.083132pt;}
.ls4_c00217{letter-spacing:-0.038399pt;}
.ls3_c00217{letter-spacing:0.000000pt;}
.ls1_c00217{letter-spacing:0.023752pt;}
.ls0_c00217{letter-spacing:0.077907pt;}
.ls2_c00217{letter-spacing:0.106885pt;}
.ls6_c00217{letter-spacing:0.118761pt;}
.ls5_c00217{letter-spacing:0.169036pt;}
.ws4_c00217{word-spacing:-10.046123pt;}
.ws1_c00217{word-spacing:-9.877087pt;}
.ws7_c00217{word-spacing:-9.786037pt;}
.ws9_c00217{word-spacing:-9.681528pt;}
.ws0_c00217{word-spacing:-8.910850pt;}
.ws2_c00217{word-spacing:-8.872451pt;}
.ws3_c00217{word-spacing:-8.051973pt;}
.ws5_c00217{word-spacing:-7.193096pt;}
.ws6_c00217{word-spacing:-7.109963pt;}
.ws8_c00217{word-spacing:-7.024852pt;}
.wsa_c00217{word-spacing:0.000000pt;}
._4_c00217{margin-left:-11.737071pt;}
._2_c00217{margin-left:-5.671424pt;}
._3_c00217{margin-left:-1.965211pt;}
._0_c00217{margin-left:-0.950085pt;}
._1_c00217{width:1.013424pt;}
._5_c00217{width:2.453376pt;}
.fs1_c00217{font-size:19.951791pt;}
.fs3_c00217{font-size:27.552474pt;}
.fs6_c00217{font-size:31.827858pt;}
.fs5_c00217{font-size:35.628199pt;}
.fs4_c00217{font-size:39.428540pt;}
.fs2_c00217{font-size:43.703924pt;}
.fs0_c00217{font-size:47.504265pt;}
.fs8_c00217{font-size:96.000000pt;}
.fs7_c00217{font-size:107.008000pt;}
.y0_c00217{bottom:0.000000pt;}
.yd_c00217{bottom:2.493974pt;}
.y5_c00217{bottom:2.731495pt;}
.y8_c00217{bottom:3.087777pt;}
.y34_c00217{bottom:4.512905pt;}
.y15_c00217{bottom:5.344230pt;}
.y19_c00217{bottom:7.838204pt;}
.y17_c00217{bottom:9.025810pt;}
.y1e_c00217{bottom:9.738374pt;}
.y23_c00217{bottom:10.925981pt;}
.y28_c00217{bottom:13.182434pt;}
.yb_c00217{bottom:13.301194pt;}
.y43_c00217{bottom:14.038500pt;}
.y33_c00217{bottom:14.251280pt;}
.y41_c00217{bottom:14.868835pt;}
.y27_c00217{bottom:14.963844pt;}
.y2d_c00217{bottom:15.438886pt;}
.y7_c00217{bottom:16.032690pt;}
.y30_c00217{bottom:16.270211pt;}
.y3f_c00217{bottom:16.388972pt;}
.y26_c00217{bottom:16.408765pt;}
.y14_c00217{bottom:16.864014pt;}
.y18_c00217{bottom:18.645424pt;}
.y12_c00217{bottom:19.120467pt;}
.y1d_c00217{bottom:19.357988pt;}
.y16_c00217{bottom:19.595509pt;}
.y22_c00217{bottom:20.545595pt;}
.yc_c00217{bottom:22.445765pt;}
.y32_c00217{bottom:23.890687pt;}
.ya_c00217{bottom:24.227175pt;}
.y2c_c00217{bottom:25.078293pt;}
.y24_c00217{bottom:27.552474pt;}
.y1c_c00217{bottom:29.571405pt;}
.y2f_c00217{bottom:29.591199pt;}
.y3e_c00217{bottom:29.710949pt;}
.y11_c00217{bottom:30.046448pt;}
.y21_c00217{bottom:30.283969pt;}
.y31_c00217{bottom:33.866582pt;}
.y2b_c00217{bottom:34.816668pt;}
.y40_c00217{bottom:40.046096pt;}
.y10_c00217{bottom:40.853668pt;}
.y20_c00217{bottom:40.873462pt;}
.y1b_c00217{bottom:41.704786pt;}
.y1f_c00217{bottom:42.654872pt;}
.y2e_c00217{bottom:42.892393pt;}
.y3d_c00217{bottom:43.012143pt;}
.y2a_c00217{bottom:44.673803pt;}
.y13_c00217{bottom:49.998239pt;}
.yf_c00217{bottom:51.779649pt;}
.y3c_c00217{bottom:56.313337pt;}
.y3b_c00217{bottom:69.614532pt;}
.y3a_c00217{bottom:82.915726pt;}
.y39_c00217{bottom:96.246610pt;}
.y42_c00217{bottom:96.730662pt;}
.y38_c00217{bottom:109.547805pt;}
.y37_c00217{bottom:111.329215pt;}
.y36_c00217{bottom:122.730238pt;}
.y45_c00217{bottom:123.168000pt;}
.y1_c00217{bottom:124.070356pt;}
.y44_c00217{bottom:152.613333pt;}
.y35_c00217{bottom:174.923672pt;}
.y29_c00217{bottom:308.461131pt;}
.y1a_c00217{bottom:362.041984pt;}
.y25_c00217{bottom:386.506680pt;}
.y3_c00217{bottom:404.998603pt;}
.ye_c00217{bottom:413.603905pt;}
.y2_c00217{bottom:430.670700pt;}
.y9_c00217{bottom:441.156379pt;}
.y6_c00217{bottom:474.795337pt;}
.y4_c00217{bottom:501.160204pt;}
.h4_c00217{height:12.113588pt;}
.h10_c00217{height:23.395851pt;}
.h6_c00217{height:25.414782pt;}
.hf_c00217{height:26.626141pt;}
.hb_c00217{height:27.077431pt;}
.hc_c00217{height:27.833835pt;}
.h9_c00217{height:31.157278pt;}
.h8_c00217{height:32.682935pt;}
.h5_c00217{height:34.422964pt;}
.he_c00217{height:34.480720pt;}
.h7_c00217{height:38.155574pt;}
.h3_c00217{height:38.219594pt;}
.h2_c00217{height:41.473450pt;}
.hd_c00217{height:51.090837pt;}
.h11_c00217{height:53.109769pt;}
.ha_c00217{height:60.235408pt;}
.h15_c00217{height:83.953125pt;}
.h14_c00217{height:93.423000pt;}
.h12_c00217{height:132.942666pt;}
.h1_c00217{height:441.957911pt;}
.h13_c00217{height:472.261676pt;}
.h0_c00217{height:720.000000pt;}
.w4_c00217{width:76.860919pt;}
.w3_c00217{width:76.979678pt;}
.w2_c00217{width:153.842577pt;}
.w5_c00217{width:386.561019pt;}
.w1_c00217{width:482.538202pt;}
.w6_c00217{width:498.689446pt;}
.w0_c00217{width:960.000000pt;}
.x0_c00217{left:0.000000pt;}
.x5_c00217{left:4.869125pt;}
.xb_c00217{left:6.888030pt;}
.x3_c00217{left:12.232192pt;}
.xc_c00217{left:34.816000pt;}
.x2_c00217{left:111.415872pt;}
.x1_c00217{left:143.653331pt;}
.x4_c00217{left:156.835596pt;}
.x8_c00217{left:234.052792pt;}
.x6_c00217{left:311.747005pt;}
.x9_c00217{left:388.841484pt;}
.x7_c00217{left:466.539655pt;}
.xa_c00217{left:543.752893pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c84af597d199cb165cf775e6.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.051270;font-style:normal;font-weight:normal;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_8300e034558821be817ed46c.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.052734;font-style:normal;font-weight:normal;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_f6da6a3e4095d00b47cd4a34.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00218{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00218{vertical-align:0.000000px;}
.ls1_c00218{letter-spacing:-0.162600px;}
.ls0_c00218{letter-spacing:0.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;}
}
.ws0_c00218{word-spacing:0.000000px;}
._0_c00218{margin-left:-2.268000px;}
._1_c00218{width:1.188000px;}
.fc2_c00218{color:rgb(233,204,19);}
.fc1_c00218{color:rgb(0,0,153);}
.fc0_c00218{color:rgb(0,0,0);}
.fs0_c00218{font-size:108.000000px;}
.fs1_c00218{font-size:192.240000px;}
.y0_c00218{bottom:0.000000px;}
.y2_c00218{bottom:203.970000px;}
.y1_c00218{bottom:236.370000px;}
.y3_c00218{bottom:721.185000px;}
.h1_c00218{height:94.447266px;}
.h2_c00218{height:139.955977px;}
.h0_c00218{height:810.000000px;}
.w0_c00218{width:1080.000000px;}
.x0_c00218{left:0.000000px;}
.x2_c00218{left:46.188000px;}
.x1_c00218{left:716.940000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls1_c00218{letter-spacing:-0.144533pt;}
.ls0_c00218{letter-spacing:0.000000pt;}
.ws0_c00218{word-spacing:0.000000pt;}
._0_c00218{margin-left:-2.016000pt;}
._1_c00218{width:1.056000pt;}
.fs0_c00218{font-size:96.000000pt;}
.fs1_c00218{font-size:170.880000pt;}
.y0_c00218{bottom:0.000000pt;}
.y2_c00218{bottom:181.306667pt;}
.y1_c00218{bottom:210.106667pt;}
.y3_c00218{bottom:641.053333pt;}
.h1_c00218{height:83.953125pt;}
.h2_c00218{height:124.405313pt;}
.h0_c00218{height:720.000000pt;}
.w0_c00218{width:960.000000pt;}
.x0_c00218{left:0.000000pt;}
.x2_c00218{left:41.056000pt;}
.x1_c00218{left:637.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2ce0caba654cc7f49585fbfc.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00219;src:url('chunks/assets/font_7950503b3e40096728a9aa89.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.051270;font-style:normal;font-weight:normal;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_837cce4bd589605eb2496eca.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:1.052734;font-style: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:-0.162600px;}
.ls1_c00219{letter-spacing:0.000000px;}
.ls0_c00219{letter-spacing:0.354000px;}
.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:-15.324240px;}
.ws1_c00219{word-spacing:0.000000px;}
._1_c00219{margin-left:-14.994528px;}
._0_c00219{margin-left:-10.381152px;}
._2_c00219{margin-left:-6.536544px;}
._6_c00219{margin-left:-3.165054px;}
._3_c00219{margin-left:-1.922400px;}
._5_c00219{width:1.072800px;}
._4_c00219{width:3.607200px;}
.fc3_c00219{color:rgb(0,0,0);}
.fc2_c00219{color:rgb(255,255,255);}
.fc1_c00219{color:rgb(233,204,19);}
.fc0_c00219{color:rgb(0,0,153);}
.fs2_c00219{font-size:66.240000px;}
.fs3_c00219{font-size:66.384000px;}
.fs1_c00219{font-size:120.240000px;}
.fs0_c00219{font-size:192.240000px;}
.y0_c00219{bottom:0.000000px;}
.y5_c00219{bottom:16.995000px;}
.y47_c00219{bottom:18.825000px;}
.y2c_c00219{bottom:18.900000px;}
.y22_c00219{bottom:18.930000px;}
.y13_c00219{bottom:18.975000px;}
.y45_c00219{bottom:20.445000px;}
.y41_c00219{bottom:22.245000px;}
.y3a_c00219{bottom:22.290000px;}
.y31_c00219{bottom:22.320000px;}
.y1e_c00219{bottom:22.350000px;}
.y18_c00219{bottom:22.395000px;}
.y11_c00219{bottom:23.115000px;}
.y35_c00219{bottom:23.220000px;}
.y1c_c00219{bottom:23.250000px;}
.yd_c00219{bottom:23.835000px;}
.y7_c00219{bottom:25.995000px;}
.y2a_c00219{bottom:27.360000px;}
.y38_c00219{bottom:28.590000px;}
.y3f_c00219{bottom:28.725000px;}
.y3c_c00219{bottom:28.770000px;}
.yb_c00219{bottom:34.635000px;}
.y9_c00219{bottom:36.795000px;}
.y1a_c00219{bottom:53.850000px;}
.y15_c00219{bottom:53.895000px;}
.y28_c00219{bottom:57.960000px;}
.yf_c00219{bottom:58.035000px;}
.y3_c00219{bottom:59.940000px;}
.y2e_c00219{bottom:64.800000px;}
.y33_c00219{bottom:95.040000px;}
.y44_c00219{bottom:237.600000px;}
.y46_c00219{bottom:239.220000px;}
.y42_c00219{bottom:271.440000px;}
.y43_c00219{bottom:277.920000px;}
.y3e_c00219{bottom:292.500000px;}
.y40_c00219{bottom:298.980000px;}
.y32_c00219{bottom:310.500000px;}
.y3b_c00219{bottom:313.560000px;}
.y3d_c00219{bottom:320.040000px;}
.y37_c00219{bottom:334.800000px;}
.y39_c00219{bottom:341.100000px;}
.y34_c00219{bottom:382.320000px;}
.y2d_c00219{bottom:382.860000px;}
.y36_c00219{bottom:383.220000px;}
.y27_c00219{bottom:410.760000px;}
.y2f_c00219{bottom:420.300000px;}
.y30_c00219{bottom:425.340000px;}
.y24_c00219{bottom:435.960000px;}
.y29_c00219{bottom:441.360000px;}
.y2b_c00219{bottom:449.820000px;}
.y1f_c00219{bottom:457.020000px;}
.y25_c00219{bottom:466.560000px;}
.y26_c00219{bottom:467.460000px;}
.y19_c00219{bottom:478.080000px;}
.y20_c00219{bottom:487.620000px;}
.y23_c00219{bottom:488.520000px;}
.y21_c00219{bottom:491.940000px;}
.y14_c00219{bottom:499.140000px;}
.y1b_c00219{bottom:508.680000px;}
.y1d_c00219{bottom:509.580000px;}
.ye_c00219{bottom:516.060000px;}
.y16_c00219{bottom:529.920000px;}
.y17_c00219{bottom:530.640000px;}
.y10_c00219{bottom:550.980000px;}
.y12_c00219{bottom:555.120000px;}
.y8_c00219{bottom:558.360000px;}
.ya_c00219{bottom:560.520000px;}
.y6_c00219{bottom:569.160000px;}
.yc_c00219{bottom:571.320000px;}
.y2_c00219{bottom:577.260000px;}
.y4_c00219{bottom:578.160000px;}
.y1_c00219{bottom:721.185000px;}
.h4_c00219{height:45.360000px;}
.h10_c00219{height:49.140000px;}
.hc_c00219{height:49.320000px;}
.h17_c00219{height:52.200000px;}
.he_c00219{height:55.980000px;}
.hb_c00219{height:57.600000px;}
.hf_c00219{height:57.780000px;}
.h5_c00219{height:57.927656px;}
.h11_c00219{height:58.053586px;}
.h9_c00219{height:58.860000px;}
.h6_c00219{height:63.360000px;}
.h12_c00219{height:66.060000px;}
.h15_c00219{height:68.580000px;}
.h16_c00219{height:68.760000px;}
.h8_c00219{height:80.640000px;}
.h7_c00219{height:84.960000px;}
.h3_c00219{height:104.975156px;}
.hd_c00219{height:118.980000px;}
.ha_c00219{height:127.440000px;}
.h1_c00219{height:139.955977px;}
.h2_c00219{height:140.220000px;}
.h13_c00219{height:140.940000px;}
.h14_c00219{height:201.420000px;}
.h0_c00219{height:810.000000px;}
.w3_c00219{width:94.500000px;}
.w2_c00219{width:109.440000px;}
.w4_c00219{width:226.440000px;}
.w1_c00219{width:472.500000px;}
.w0_c00219{width:1080.000000px;}
.x0_c00219{left:0.000000px;}
.xc_c00219{left:22.284000px;}
.x1_c00219{left:46.188000px;}
.xb_c00219{left:52.524000px;}
.x8_c00219{left:55.080000px;}
.x9_c00219{left:59.364000px;}
.xa_c00219{left:63.504000px;}
.xd_c00219{left:88.704000px;}
.xe_c00219{left:96.810000px;}
.x3_c00219{left:281.520000px;}
.x2_c00219{left:390.960000px;}
.x4_c00219{left:485.460000px;}
.x5_c00219{left:579.960000px;}
.x6_c00219{left:674.460000px;}
.x7_c00219{left:768.960000px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls2_c00219{letter-spacing:-0.144533pt;}
.ls1_c00219{letter-spacing:0.000000pt;}
.ls0_c00219{letter-spacing:0.314667pt;}
.ws0_c00219{word-spacing:-13.621547pt;}
.ws1_c00219{word-spacing:0.000000pt;}
._1_c00219{margin-left:-13.328469pt;}
._0_c00219{margin-left:-9.227691pt;}
._2_c00219{margin-left:-5.810262pt;}
._6_c00219{margin-left:-2.813381pt;}
._3_c00219{margin-left:-1.708800pt;}
._5_c00219{width:0.953600pt;}
._4_c00219{width:3.206400pt;}
.fs2_c00219{font-size:58.880000pt;}
.fs3_c00219{font-size:59.008000pt;}
.fs1_c00219{font-size:106.880000pt;}
.fs0_c00219{font-size:170.880000pt;}
.y0_c00219{bottom:0.000000pt;}
.y5_c00219{bottom:15.106667pt;}
.y47_c00219{bottom:16.733333pt;}
.y2c_c00219{bottom:16.800000pt;}
.y22_c00219{bottom:16.826667pt;}
.y13_c00219{bottom:16.866667pt;}
.y45_c00219{bottom:18.173333pt;}
.y41_c00219{bottom:19.773333pt;}
.y3a_c00219{bottom:19.813333pt;}
.y31_c00219{bottom:19.840000pt;}
.y1e_c00219{bottom:19.866667pt;}
.y18_c00219{bottom:19.906667pt;}
.y11_c00219{bottom:20.546667pt;}
.y35_c00219{bottom:20.640000pt;}
.y1c_c00219{bottom:20.666667pt;}
.yd_c00219{bottom:21.186667pt;}
.y7_c00219{bottom:23.106667pt;}
.y2a_c00219{bottom:24.320000pt;}
.y38_c00219{bottom:25.413333pt;}
.y3f_c00219{bottom:25.533333pt;}
.y3c_c00219{bottom:25.573333pt;}
.yb_c00219{bottom:30.786667pt;}
.y9_c00219{bottom:32.706667pt;}
.y1a_c00219{bottom:47.866667pt;}
.y15_c00219{bottom:47.906667pt;}
.y28_c00219{bottom:51.520000pt;}
.yf_c00219{bottom:51.586667pt;}
.y3_c00219{bottom:53.280000pt;}
.y2e_c00219{bottom:57.600000pt;}
.y33_c00219{bottom:84.480000pt;}
.y44_c00219{bottom:211.200000pt;}
.y46_c00219{bottom:212.640000pt;}
.y42_c00219{bottom:241.280000pt;}
.y43_c00219{bottom:247.040000pt;}
.y3e_c00219{bottom:260.000000pt;}
.y40_c00219{bottom:265.760000pt;}
.y32_c00219{bottom:276.000000pt;}
.y3b_c00219{bottom:278.720000pt;}
.y3d_c00219{bottom:284.480000pt;}
.y37_c00219{bottom:297.600000pt;}
.y39_c00219{bottom:303.200000pt;}
.y34_c00219{bottom:339.840000pt;}
.y2d_c00219{bottom:340.320000pt;}
.y36_c00219{bottom:340.640000pt;}
.y27_c00219{bottom:365.120000pt;}
.y2f_c00219{bottom:373.600000pt;}
.y30_c00219{bottom:378.080000pt;}
.y24_c00219{bottom:387.520000pt;}
.y29_c00219{bottom:392.320000pt;}
.y2b_c00219{bottom:399.840000pt;}
.y1f_c00219{bottom:406.240000pt;}
.y25_c00219{bottom:414.720000pt;}
.y26_c00219{bottom:415.520000pt;}
.y19_c00219{bottom:424.960000pt;}
.y20_c00219{bottom:433.440000pt;}
.y23_c00219{bottom:434.240000pt;}
.y21_c00219{bottom:437.280000pt;}
.y14_c00219{bottom:443.680000pt;}
.y1b_c00219{bottom:452.160000pt;}
.y1d_c00219{bottom:452.960000pt;}
.ye_c00219{bottom:458.720000pt;}
.y16_c00219{bottom:471.040000pt;}
.y17_c00219{bottom:471.680000pt;}
.y10_c00219{bottom:489.760000pt;}
.y12_c00219{bottom:493.440000pt;}
.y8_c00219{bottom:496.320000pt;}
.ya_c00219{bottom:498.240000pt;}
.y6_c00219{bottom:505.920000pt;}
.yc_c00219{bottom:507.840000pt;}
.y2_c00219{bottom:513.120000pt;}
.y4_c00219{bottom:513.920000pt;}
.y1_c00219{bottom:641.053333pt;}
.h4_c00219{height:40.320000pt;}
.h10_c00219{height:43.680000pt;}
.hc_c00219{height:43.840000pt;}
.h17_c00219{height:46.400000pt;}
.he_c00219{height:49.760000pt;}
.hb_c00219{height:51.200000pt;}
.hf_c00219{height:51.360000pt;}
.h5_c00219{height:51.491250pt;}
.h11_c00219{height:51.603187pt;}
.h9_c00219{height:52.320000pt;}
.h6_c00219{height:56.320000pt;}
.h12_c00219{height:58.720000pt;}
.h15_c00219{height:60.960000pt;}
.h16_c00219{height:61.120000pt;}
.h8_c00219{height:71.680000pt;}
.h7_c00219{height:75.520000pt;}
.h3_c00219{height:93.311250pt;}
.hd_c00219{height:105.760000pt;}
.ha_c00219{height:113.280000pt;}
.h1_c00219{height:124.405313pt;}
.h2_c00219{height:124.640000pt;}
.h13_c00219{height:125.280000pt;}
.h14_c00219{height:179.040000pt;}
.h0_c00219{height:720.000000pt;}
.w3_c00219{width:84.000000pt;}
.w2_c00219{width:97.280000pt;}
.w4_c00219{width:201.280000pt;}
.w1_c00219{width:420.000000pt;}
.w0_c00219{width:960.000000pt;}
.x0_c00219{left:0.000000pt;}
.xc_c00219{left:19.808000pt;}
.x1_c00219{left:41.056000pt;}
.xb_c00219{left:46.688000pt;}
.x8_c00219{left:48.960000pt;}
.x9_c00219{left:52.768000pt;}
.xa_c00219{left:56.448000pt;}
.xd_c00219{left:78.848000pt;}
.xe_c00219{left:86.053333pt;}
.x3_c00219{left:250.240000pt;}
.x2_c00219{left:347.520000pt;}
.x4_c00219{left:431.520000pt;}
.x5_c00219{left:515.520000pt;}
.x6_c00219{left:599.520000pt;}
.x7_c00219{left:683.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8380253d36cd7ce691869f83.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00220;src:url('chunks/assets/font_9b095f95949cfb4b253079bc.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:0.887695;font-style:normal;font-weight:normal;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_c8df0fd86f291dab48a68cfd.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:0.938965;font-style:normal;font-weight:normal;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_8300e034558821be817ed46c.woff2')format("woff");}.ff4_c00220{font-family:ff4_c00220;line-height:1.052734;font-style:normal;font-weight:normal;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_7a77f61901d9e92d7578057c.woff2')format("woff");}.ff5_c00220{font-family:ff5_c00220;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00220{letter-spacing:-0.202800px;}
.ls1_c00220{letter-spacing:0.000000px;}
.ls0_c00220{letter-spacing:0.018600px;}
.ls3_c00220{letter-spacing:0.738000px;}
.sc__c00220{text-shadow:none;}
.sc0_c00220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00220{-webkit-text-stroke:0px transparent;}
.sc0_c00220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00220{word-spacing:-192.384000px;}
.ws1_c00220{word-spacing:-26.621280px;}
.ws2_c00220{word-spacing:0.000000px;}
._5_c00220{margin-left:-6.775456px;}
._1_c00220{margin-left:-3.270528px;}
._0_c00220{margin-left:-2.116224px;}
._3_c00220{margin-left:-1.070384px;}
._2_c00220{width:1.436208px;}
._4_c00220{width:2.825040px;}
.fc2_c00220{color:rgb(0,0,0);}
.fc1_c00220{color:rgb(233,204,19);}
.fc0_c00220{color:rgb(0,0,153);}
.fs4_c00220{font-size:84.240000px;}
.fs1_c00220{font-size:95.760000px;}
.fs2_c00220{font-size:95.904000px;}
.fs3_c00220{font-size:108.000000px;}
.fs0_c00220{font-size:192.384000px;}
.y0_c00220{bottom:0.000000px;}
.y1d_c00220{bottom:32.076000px;}
.y1c_c00220{bottom:56.736000px;}
.y1b_c00220{bottom:81.936000px;}
.y1a_c00220{bottom:107.136000px;}
.y19_c00220{bottom:132.336000px;}
.y18_c00220{bottom:158.115000px;}
.y17_c00220{bottom:182.775000px;}
.y16_c00220{bottom:207.975000px;}
.y14_c00220{bottom:211.170000px;}
.y15_c00220{bottom:233.175000px;}
.y13_c00220{bottom:243.570000px;}
.y12_c00220{bottom:274.890000px;}
.y11_c00220{bottom:302.970000px;}
.y10_c00220{bottom:331.770000px;}
.yf_c00220{bottom:360.615000px;}
.ye_c00220{bottom:389.415000px;}
.yc_c00220{bottom:394.890000px;}
.yd_c00220{bottom:418.215000px;}
.yb_c00220{bottom:427.290000px;}
.ya_c00220{bottom:458.610000px;}
.y9_c00220{bottom:486.690000px;}
.y8_c00220{bottom:515.490000px;}
.y6_c00220{bottom:524.010000px;}
.y7_c00220{bottom:544.320000px;}
.y5_c00220{bottom:556.410000px;}
.y4_c00220{bottom:587.730000px;}
.y3_c00220{bottom:615.855000px;}
.y2_c00220{bottom:644.655000px;}
.y1_c00220{bottom:732.345000px;}
.h6_c00220{height:61.370156px;}
.h2_c00220{height:69.762656px;}
.h7_c00220{height:73.668867px;}
.h5_c00220{height:83.743242px;}
.h3_c00220{height:83.869172px;}
.h4_c00220{height:94.447266px;}
.h1_c00220{height:140.060812px;}
.h0_c00220{height:810.000000px;}
.w0_c00220{width:1080.000000px;}
.x0_c00220{left:0.000000px;}
.x3_c00220{left:33.552000px;}
.x1_c00220{left:36.648000px;}
.x2_c00220{left:516.855000px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls2_c00220{letter-spacing:-0.180267pt;}
.ls1_c00220{letter-spacing:0.000000pt;}
.ls0_c00220{letter-spacing:0.016533pt;}
.ls3_c00220{letter-spacing:0.656000pt;}
.ws0_c00220{word-spacing:-171.008000pt;}
.ws1_c00220{word-spacing:-23.663360pt;}
.ws2_c00220{word-spacing:0.000000pt;}
._5_c00220{margin-left:-6.022628pt;}
._1_c00220{margin-left:-2.907136pt;}
._0_c00220{margin-left:-1.881088pt;}
._3_c00220{margin-left:-0.951452pt;}
._2_c00220{width:1.276630pt;}
._4_c00220{width:2.511147pt;}
.fs4_c00220{font-size:74.880000pt;}
.fs1_c00220{font-size:85.120000pt;}
.fs2_c00220{font-size:85.248000pt;}
.fs3_c00220{font-size:96.000000pt;}
.fs0_c00220{font-size:171.008000pt;}
.y0_c00220{bottom:0.000000pt;}
.y1d_c00220{bottom:28.512000pt;}
.y1c_c00220{bottom:50.432000pt;}
.y1b_c00220{bottom:72.832000pt;}
.y1a_c00220{bottom:95.232000pt;}
.y19_c00220{bottom:117.632000pt;}
.y18_c00220{bottom:140.546667pt;}
.y17_c00220{bottom:162.466667pt;}
.y16_c00220{bottom:184.866667pt;}
.y14_c00220{bottom:187.706667pt;}
.y15_c00220{bottom:207.266667pt;}
.y13_c00220{bottom:216.506667pt;}
.y12_c00220{bottom:244.346667pt;}
.y11_c00220{bottom:269.306667pt;}
.y10_c00220{bottom:294.906667pt;}
.yf_c00220{bottom:320.546667pt;}
.ye_c00220{bottom:346.146667pt;}
.yc_c00220{bottom:351.013333pt;}
.yd_c00220{bottom:371.746667pt;}
.yb_c00220{bottom:379.813333pt;}
.ya_c00220{bottom:407.653333pt;}
.y9_c00220{bottom:432.613333pt;}
.y8_c00220{bottom:458.213333pt;}
.y6_c00220{bottom:465.786667pt;}
.y7_c00220{bottom:483.840000pt;}
.y5_c00220{bottom:494.586667pt;}
.y4_c00220{bottom:522.426667pt;}
.y3_c00220{bottom:547.426667pt;}
.y2_c00220{bottom:573.026667pt;}
.y1_c00220{bottom:650.973333pt;}
.h6_c00220{height:54.551250pt;}
.h2_c00220{height:62.011250pt;}
.h7_c00220{height:65.483437pt;}
.h5_c00220{height:74.438437pt;}
.h3_c00220{height:74.550375pt;}
.h4_c00220{height:83.953125pt;}
.h1_c00220{height:124.498500pt;}
.h0_c00220{height:720.000000pt;}
.w0_c00220{width:960.000000pt;}
.x0_c00220{left:0.000000pt;}
.x3_c00220{left:29.824000pt;}
.x1_c00220{left:32.576000pt;}
.x2_c00220{left:459.426667pt;}
}





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





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

.ir_c00222:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00222{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00222;src:url('chunks/assets/font_d5111c92ea79b750a78ef4b2.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00222;src:url('chunks/assets/font_bd234bee1aa527d700857f2d.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00222;src:url('chunks/assets/font_a267e5d0f279dfd16876e09e.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00222{vertical-align:0.000000px;}
.ls8_c00222{letter-spacing:-15.048000px;}
.ls3_c00222{letter-spacing:-5.478000px;}
.ls2_c00222{letter-spacing:-0.402000px;}
.ls1_c00222{letter-spacing:-0.354000px;}
.ls9_c00222{letter-spacing:-0.280800px;}
.lsa_c00222{letter-spacing:-0.216000px;}
.ls7_c00222{letter-spacing:-0.024000px;}
.lsb_c00222{letter-spacing:-0.010800px;}
.ls4_c00222{letter-spacing:0.000000px;}
.ls0_c00222{letter-spacing:0.006000px;}
.ls5_c00222{letter-spacing:0.216000px;}
.ls6_c00222{letter-spacing:0.234000px;}
.sc__c00222{text-shadow:none;}
.sc0_c00222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00222{-webkit-text-stroke:0px transparent;}
.sc0_c00222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00222{word-spacing:-37.614000px;}
.ws0_c00222{word-spacing:-37.566000px;}
.ws2_c00222{word-spacing:-27.120000px;}
.ws3_c00222{word-spacing:-24.408000px;}
.ws9_c00222{word-spacing:-0.366000px;}
.wsb_c00222{word-spacing:-0.360000px;}
.wsa_c00222{word-spacing:-0.048000px;}
.ws4_c00222{word-spacing:0.000000px;}
.ws6_c00222{word-spacing:0.672000px;}
.ws8_c00222{word-spacing:0.840000px;}
.ws5_c00222{word-spacing:1.176000px;}
.ws7_c00222{word-spacing:1.344000px;}
._2_c00222{margin-left:-2.658000px;}
._0_c00222{margin-left:-1.050000px;}
._1_c00222{width:1.314000px;}
.fc0_c00222{color:rgb(0,0,0);}
.fs2_c00222{font-size:108.000000px;}
.fs1_c00222{font-size:120.000000px;}
.fs0_c00222{font-size:168.000000px;}
.y0_c00222{bottom:0.000000px;}
.y9_c00222{bottom:27.738000px;}
.y8_c00222{bottom:60.489000px;}
.y7_c00222{bottom:92.160000px;}
.y6_c00222{bottom:189.458400px;}
.y5_c00222{bottom:222.219000px;}
.y4_c00222{bottom:270.459000px;}
.y3_c00222{bottom:414.099000px;}
.y2_c00222{bottom:459.099000px;}
.y1_c00222{bottom:555.928500px;}
.h4_c00222{height:77.519531px;}
.h3_c00222{height:86.132812px;}
.h2_c00222{height:119.847656px;}
.h1_c00222{height:122.308594px;}
.h0_c00222{height:810.000000px;}
.w0_c00222{width:1440.000000px;}
.x0_c00222{left:0.000000px;}
.x1_c00222{left:166.330500px;}
.x2_c00222{left:203.728500px;}
.x3_c00222{left:224.026500px;}
.x4_c00222{left:478.440000px;}
.x8_c00222{left:552.060600px;}
.x5_c00222{left:553.293000px;}
.x6_c00222{left:557.065050px;}
.x9_c00222{left:619.047600px;}
.x7_c00222{left:626.148600px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls8_c00222{letter-spacing:-13.376000pt;}
.ls3_c00222{letter-spacing:-4.869333pt;}
.ls2_c00222{letter-spacing:-0.357333pt;}
.ls1_c00222{letter-spacing:-0.314667pt;}
.ls9_c00222{letter-spacing:-0.249600pt;}
.lsa_c00222{letter-spacing:-0.192000pt;}
.ls7_c00222{letter-spacing:-0.021333pt;}
.lsb_c00222{letter-spacing:-0.009600pt;}
.ls4_c00222{letter-spacing:0.000000pt;}
.ls0_c00222{letter-spacing:0.005333pt;}
.ls5_c00222{letter-spacing:0.192000pt;}
.ls6_c00222{letter-spacing:0.208000pt;}
.ws1_c00222{word-spacing:-33.434667pt;}
.ws0_c00222{word-spacing:-33.392000pt;}
.ws2_c00222{word-spacing:-24.106667pt;}
.ws3_c00222{word-spacing:-21.696000pt;}
.ws9_c00222{word-spacing:-0.325333pt;}
.wsb_c00222{word-spacing:-0.320000pt;}
.wsa_c00222{word-spacing:-0.042667pt;}
.ws4_c00222{word-spacing:0.000000pt;}
.ws6_c00222{word-spacing:0.597333pt;}
.ws8_c00222{word-spacing:0.746667pt;}
.ws5_c00222{word-spacing:1.045333pt;}
.ws7_c00222{word-spacing:1.194667pt;}
._2_c00222{margin-left:-2.362667pt;}
._0_c00222{margin-left:-0.933333pt;}
._1_c00222{width:1.168000pt;}
.fs2_c00222{font-size:96.000000pt;}
.fs1_c00222{font-size:106.666667pt;}
.fs0_c00222{font-size:149.333333pt;}
.y0_c00222{bottom:0.000000pt;}
.y9_c00222{bottom:24.656000pt;}
.y8_c00222{bottom:53.768000pt;}
.y7_c00222{bottom:81.920000pt;}
.y6_c00222{bottom:168.407467pt;}
.y5_c00222{bottom:197.528000pt;}
.y4_c00222{bottom:240.408000pt;}
.y3_c00222{bottom:368.088000pt;}
.y2_c00222{bottom:408.088000pt;}
.y1_c00222{bottom:494.158667pt;}
.h4_c00222{height:68.906250pt;}
.h3_c00222{height:76.562500pt;}
.h2_c00222{height:106.531250pt;}
.h1_c00222{height:108.718750pt;}
.h0_c00222{height:720.000000pt;}
.w0_c00222{width:1280.000000pt;}
.x0_c00222{left:0.000000pt;}
.x1_c00222{left:147.849333pt;}
.x2_c00222{left:181.092000pt;}
.x3_c00222{left:199.134667pt;}
.x4_c00222{left:425.280000pt;}
.x8_c00222{left:490.720533pt;}
.x5_c00222{left:491.816000pt;}
.x6_c00222{left:495.168933pt;}
.x9_c00222{left:550.264533pt;}
.x7_c00222{left:556.576533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_26e721b9bc35a0637eb18d32.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00223;src:url('chunks/assets/font_cf4894dfa245a0641a9530da.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c00223{letter-spacing:-15.002400px;}
.ls2_c00223{letter-spacing:-0.336000px;}
.ls5_c00223{letter-spacing:-0.302400px;}
.ls1_c00223{letter-spacing:0.000000px;}
.ls0_c00223{letter-spacing:0.105600px;}
.ls3_c00223{letter-spacing:0.352800px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00223{word-spacing:-38.320800px;}
.ws0_c00223{word-spacing:-37.632000px;}
.ws2_c00223{word-spacing:0.000000px;}
._1_c00223{margin-left:-2.184000px;}
._0_c00223{margin-left:-1.008000px;}
._2_c00223{width:1.008000px;}
._4_c00223{width:13.440000px;}
._3_c00223{width:14.616000px;}
._5_c00223{width:15.624000px;}
.fc1_c00223{color:rgb(137,137,137);}
.fc0_c00223{color:rgb(0,0,0);}
.fs1_c00223{font-size:72.000000px;}
.fs2_c00223{font-size:168.000000px;}
.fs0_c00223{font-size:264.000000px;}
.y0_c00223{bottom:0.000000px;}
.y2_c00223{bottom:32.040000px;}
.y6_c00223{bottom:256.344000px;}
.y5_c00223{bottom:356.766000px;}
.y4_c00223{bottom:458.658000px;}
.y3_c00223{bottom:559.080000px;}
.y1_c00223{bottom:670.320000px;}
.h2_c00223{height:51.679688px;}
.h3_c00223{height:120.585938px;}
.h1_c00223{height:188.332031px;}
.h0_c00223{height:810.000000px;}
.w0_c00223{width:1440.000000px;}
.x0_c00223{left:0.000000px;}
.x3_c00223{left:109.799850px;}
.x1_c00223{left:622.312350px;}
.x2_c00223{left:1320.862500px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls4_c00223{letter-spacing:-13.335467pt;}
.ls2_c00223{letter-spacing:-0.298667pt;}
.ls5_c00223{letter-spacing:-0.268800pt;}
.ls1_c00223{letter-spacing:0.000000pt;}
.ls0_c00223{letter-spacing:0.093867pt;}
.ls3_c00223{letter-spacing:0.313600pt;}
.ws1_c00223{word-spacing:-34.062933pt;}
.ws0_c00223{word-spacing:-33.450667pt;}
.ws2_c00223{word-spacing:0.000000pt;}
._1_c00223{margin-left:-1.941333pt;}
._0_c00223{margin-left:-0.896000pt;}
._2_c00223{width:0.896000pt;}
._4_c00223{width:11.946667pt;}
._3_c00223{width:12.992000pt;}
._5_c00223{width:13.888000pt;}
.fs1_c00223{font-size:64.000000pt;}
.fs2_c00223{font-size:149.333333pt;}
.fs0_c00223{font-size:234.666667pt;}
.y0_c00223{bottom:0.000000pt;}
.y2_c00223{bottom:28.480000pt;}
.y6_c00223{bottom:227.861333pt;}
.y5_c00223{bottom:317.125333pt;}
.y4_c00223{bottom:407.696000pt;}
.y3_c00223{bottom:496.960000pt;}
.y1_c00223{bottom:595.840000pt;}
.h2_c00223{height:45.937500pt;}
.h3_c00223{height:107.187500pt;}
.h1_c00223{height:167.406250pt;}
.h0_c00223{height:720.000000pt;}
.w0_c00223{width:1280.000000pt;}
.x0_c00223{left:0.000000pt;}
.x3_c00223{left:97.599867pt;}
.x1_c00223{left:553.166533pt;}
.x2_c00223{left:1174.100000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_241984d33ce8a2065903a7ca.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00224;src:url('chunks/assets/font_a584a1feb2fe699d361e8ef0.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00224{letter-spacing:-1.192800px;}
.ls7_c00224{letter-spacing:-0.420000px;}
.ls4_c00224{letter-spacing:-0.235200px;}
.ls6_c00224{letter-spacing:-0.067200px;}
.ls3_c00224{letter-spacing:0.000000px;}
.ls0_c00224{letter-spacing:0.079200px;}
.ls9_c00224{letter-spacing:0.100800px;}
.lsa_c00224{letter-spacing:0.235200px;}
.ls5_c00224{letter-spacing:0.302400px;}
.ls2_c00224{letter-spacing:0.336000px;}
.ls1_c00224{letter-spacing:164.640000px;}
.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;}
}
.ws0_c00224{word-spacing:-264.079200px;}
.ws2_c00224{word-spacing:-38.068800px;}
.ws1_c00224{word-spacing:-37.548000px;}
.ws3_c00224{word-spacing:0.000000px;}
._1_c00224{margin-left:-5.544000px;}
._5_c00224{margin-left:-4.233600px;}
._0_c00224{margin-left:-2.640000px;}
._3_c00224{margin-left:-1.104000px;}
._2_c00224{width:1.248000px;}
._4_c00224{width:2.400000px;}
.fc1_c00224{color:rgb(0,0,0);}
.fc0_c00224{color:rgb(137,137,137);}
.fs0_c00224{font-size:72.000000px;}
.fs2_c00224{font-size:168.000000px;}
.fs1_c00224{font-size:264.000000px;}
.y0_c00224{bottom:0.000000px;}
.y1_c00224{bottom:32.040000px;}
.y8_c00224{bottom:313.938000px;}
.y7_c00224{bottom:363.270000px;}
.y6_c00224{bottom:414.384000px;}
.y5_c00224{bottom:465.498000px;}
.y4_c00224{bottom:514.806000px;}
.y3_c00224{bottom:565.920000px;}
.y2_c00224{bottom:670.320000px;}
.h1_c00224{height:51.679688px;}
.h3_c00224{height:120.585938px;}
.h2_c00224{height:188.332031px;}
.h0_c00224{height:810.000000px;}
.w0_c00224{width:1440.000000px;}
.x0_c00224{left:0.000000px;}
.x3_c00224{left:51.071250px;}
.x4_c00224{left:105.083250px;}
.x2_c00224{left:109.800000px;}
.x1_c00224{left:1320.862500px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls8_c00224{letter-spacing:-1.060267pt;}
.ls7_c00224{letter-spacing:-0.373333pt;}
.ls4_c00224{letter-spacing:-0.209067pt;}
.ls6_c00224{letter-spacing:-0.059733pt;}
.ls3_c00224{letter-spacing:0.000000pt;}
.ls0_c00224{letter-spacing:0.070400pt;}
.ls9_c00224{letter-spacing:0.089600pt;}
.lsa_c00224{letter-spacing:0.209067pt;}
.ls5_c00224{letter-spacing:0.268800pt;}
.ls2_c00224{letter-spacing:0.298667pt;}
.ls1_c00224{letter-spacing:146.346667pt;}
.ws0_c00224{word-spacing:-234.737067pt;}
.ws2_c00224{word-spacing:-33.838933pt;}
.ws1_c00224{word-spacing:-33.376000pt;}
.ws3_c00224{word-spacing:0.000000pt;}
._1_c00224{margin-left:-4.928000pt;}
._5_c00224{margin-left:-3.763200pt;}
._0_c00224{margin-left:-2.346667pt;}
._3_c00224{margin-left:-0.981333pt;}
._2_c00224{width:1.109333pt;}
._4_c00224{width:2.133333pt;}
.fs0_c00224{font-size:64.000000pt;}
.fs2_c00224{font-size:149.333333pt;}
.fs1_c00224{font-size:234.666667pt;}
.y0_c00224{bottom:0.000000pt;}
.y1_c00224{bottom:28.480000pt;}
.y8_c00224{bottom:279.056000pt;}
.y7_c00224{bottom:322.906667pt;}
.y6_c00224{bottom:368.341333pt;}
.y5_c00224{bottom:413.776000pt;}
.y4_c00224{bottom:457.605333pt;}
.y3_c00224{bottom:503.040000pt;}
.y2_c00224{bottom:595.840000pt;}
.h1_c00224{height:45.937500pt;}
.h3_c00224{height:107.187500pt;}
.h2_c00224{height:167.406250pt;}
.h0_c00224{height:720.000000pt;}
.w0_c00224{width:1280.000000pt;}
.x0_c00224{left:0.000000pt;}
.x3_c00224{left:45.396667pt;}
.x4_c00224{left:93.407333pt;}
.x2_c00224{left:97.600000pt;}
.x1_c00224{left:1174.100000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4b69a60eb30a43978ab33c2a.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00225;src:url('chunks/assets/font_4848e92af3963c813903fbd5.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00225;src:url('chunks/assets/font_aff665a1099b68d6468fa26f.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00225{transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.ls3_c00225{letter-spacing:-0.240000px;}
.ls2_c00225{letter-spacing:-0.150000px;}
.ls1_c00225{letter-spacing:0.000000px;}
.ls0_c00225{letter-spacing:0.079200px;}
.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:-264.079200px;}
.ws6_c00225{word-spacing:-27.120000px;}
.ws1_c00225{word-spacing:-14.027616px;}
.ws4_c00225{word-spacing:-13.560000px;}
.ws3_c00225{word-spacing:-13.410000px;}
.ws5_c00225{word-spacing:-13.320000px;}
.ws7_c00225{word-spacing:0.000000px;}
.ws2_c00225{word-spacing:259.092136px;}
._1_c00225{margin-left:-5.544000px;}
._4_c00225{margin-left:-4.234752px;}
._0_c00225{margin-left:-2.640000px;}
._3_c00225{margin-left:-1.058688px;}
._2_c00225{width:1.191024px;}
.fc3_c00225{color:rgb(255,0,0);}
.fc2_c00225{color:rgb(35,31,32);}
.fc1_c00225{color:rgb(0,0,0);}
.fc0_c00225{color:rgb(137,137,137);}
.fs4_c00225{font-size:60.000000px;}
.fs2_c00225{font-size:66.168000px;}
.fs3_c00225{font-size:70.894800px;}
.fs0_c00225{font-size:72.000000px;}
.fs5_c00225{font-size:120.000000px;}
.fs1_c00225{font-size:264.000000px;}
.y0_c00225{bottom:0.000000px;}
.y13_c00225{bottom:4.122948px;}
.y9_c00225{bottom:9.636900px;}
.y12_c00225{bottom:23.973348px;}
.y8_c00225{bottom:29.487300px;}
.y1_c00225{bottom:32.040000px;}
.y10_c00225{bottom:92.986572px;}
.y3_c00225{bottom:129.685500px;}
.yb_c00225{bottom:167.988000px;}
.ya_c00225{bottom:187.838400px;}
.y11_c00225{bottom:192.701748px;}
.y27_c00225{bottom:195.840000px;}
.y6_c00225{bottom:218.039400px;}
.yf_c00225{bottom:230.566386px;}
.y26_c00225{bottom:231.840000px;}
.ye_c00225{bottom:250.416786px;}
.y7_c00225{bottom:251.721300px;}
.y25_c00225{bottom:267.840000px;}
.y24_c00225{bottom:303.840000px;}
.yd_c00225{bottom:304.393332px;}
.yc_c00225{bottom:324.243732px;}
.y23_c00225{bottom:451.440000px;}
.y1e_c00225{bottom:451.717650px;}
.y1d_c00225{bottom:471.568050px;}
.y22_c00225{bottom:487.440000px;}
.y21_c00225{bottom:523.440000px;}
.y1a_c00225{bottom:534.024348px;}
.y19_c00225{bottom:553.031106px;}
.y1c_c00225{bottom:554.205588px;}
.y20_c00225{bottom:559.440000px;}
.y5_c00225{bottom:564.833550px;}
.y18_c00225{bottom:572.501040px;}
.y1b_c00225{bottom:573.675522px;}
.y4_c00225{bottom:584.683950px;}
.y17_c00225{bottom:593.195082px;}
.y1f_c00225{bottom:602.640000px;}
.y16_c00225{bottom:612.846978px;}
.y15_c00225{bottom:632.349996px;}
.y14_c00225{bottom:649.504050px;}
.y2_c00225{bottom:675.000000px;}
.h6_c00225{height:43.066406px;}
.h4_c00225{height:47.707128px;}
.h5_c00225{height:51.115151px;}
.h1_c00225{height:51.679688px;}
.h7_c00225{height:86.132812px;}
.h2_c00225{height:188.332031px;}
.h3_c00225{height:663.958500px;}
.h0_c00225{height:810.000000px;}
.w1_c00225{width:977.205000px;}
.w0_c00225{width:1440.000000px;}
.x0_c00225{left:0.000000px;}
.xf_c00225{left:11.618400px;}
.xc_c00225{left:44.797274px;}
.x2_c00225{left:50.885550px;}
.xa_c00225{left:111.172826px;}
.x10_c00225{left:119.618400px;}
.xd_c00225{left:127.568100px;}
.x9_c00225{left:183.643985px;}
.xb_c00225{left:198.184535px;}
.x5_c00225{left:254.934000px;}
.x8_c00225{left:410.039850px;}
.x3_c00225{left:448.474500px;}
.x6_c00225{left:460.626900px;}
.x4_c00225{left:650.642400px;}
.xe_c00225{left:722.103750px;}
.x7_c00225{left:880.276350px;}
.x1_c00225{left:1320.862500px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls3_c00225{letter-spacing:-0.213333pt;}
.ls2_c00225{letter-spacing:-0.133333pt;}
.ls1_c00225{letter-spacing:0.000000pt;}
.ls0_c00225{letter-spacing:0.070400pt;}
.ws0_c00225{word-spacing:-234.737067pt;}
.ws6_c00225{word-spacing:-24.106667pt;}
.ws1_c00225{word-spacing:-12.468992pt;}
.ws4_c00225{word-spacing:-12.053333pt;}
.ws3_c00225{word-spacing:-11.920000pt;}
.ws5_c00225{word-spacing:-11.840000pt;}
.ws7_c00225{word-spacing:0.000000pt;}
.ws2_c00225{word-spacing:230.304121pt;}
._1_c00225{margin-left:-4.928000pt;}
._4_c00225{margin-left:-3.764224pt;}
._0_c00225{margin-left:-2.346667pt;}
._3_c00225{margin-left:-0.941056pt;}
._2_c00225{width:1.058688pt;}
.fs4_c00225{font-size:53.333333pt;}
.fs2_c00225{font-size:58.816000pt;}
.fs3_c00225{font-size:63.017600pt;}
.fs0_c00225{font-size:64.000000pt;}
.fs5_c00225{font-size:106.666667pt;}
.fs1_c00225{font-size:234.666667pt;}
.y0_c00225{bottom:0.000000pt;}
.y13_c00225{bottom:3.664843pt;}
.y9_c00225{bottom:8.566133pt;}
.y12_c00225{bottom:21.309643pt;}
.y8_c00225{bottom:26.210933pt;}
.y1_c00225{bottom:28.480000pt;}
.y10_c00225{bottom:82.654731pt;}
.y3_c00225{bottom:115.276000pt;}
.yb_c00225{bottom:149.322667pt;}
.ya_c00225{bottom:166.967467pt;}
.y11_c00225{bottom:171.290443pt;}
.y27_c00225{bottom:174.080000pt;}
.y6_c00225{bottom:193.812800pt;}
.yf_c00225{bottom:204.947899pt;}
.y26_c00225{bottom:206.080000pt;}
.ye_c00225{bottom:222.592699pt;}
.y7_c00225{bottom:223.752267pt;}
.y25_c00225{bottom:238.080000pt;}
.y24_c00225{bottom:270.080000pt;}
.yd_c00225{bottom:270.571851pt;}
.yc_c00225{bottom:288.216651pt;}
.y23_c00225{bottom:401.280000pt;}
.y1e_c00225{bottom:401.526800pt;}
.y1d_c00225{bottom:419.171600pt;}
.y22_c00225{bottom:433.280000pt;}
.y21_c00225{bottom:465.280000pt;}
.y1a_c00225{bottom:474.688309pt;}
.y19_c00225{bottom:491.583205pt;}
.y1c_c00225{bottom:492.627189pt;}
.y20_c00225{bottom:497.280000pt;}
.y5_c00225{bottom:502.074267pt;}
.y18_c00225{bottom:508.889813pt;}
.y1b_c00225{bottom:509.933797pt;}
.y4_c00225{bottom:519.719067pt;}
.y17_c00225{bottom:527.284517pt;}
.y1f_c00225{bottom:535.680000pt;}
.y16_c00225{bottom:544.752869pt;}
.y15_c00225{bottom:562.088885pt;}
.y14_c00225{bottom:577.336933pt;}
.y2_c00225{bottom:600.000000pt;}
.h6_c00225{height:38.281250pt;}
.h4_c00225{height:42.406336pt;}
.h5_c00225{height:45.435690pt;}
.h1_c00225{height:45.937500pt;}
.h7_c00225{height:76.562500pt;}
.h2_c00225{height:167.406250pt;}
.h3_c00225{height:590.185333pt;}
.h0_c00225{height:720.000000pt;}
.w1_c00225{width:868.626667pt;}
.w0_c00225{width:1280.000000pt;}
.x0_c00225{left:0.000000pt;}
.xf_c00225{left:10.327467pt;}
.xc_c00225{left:39.819799pt;}
.x2_c00225{left:45.231600pt;}
.xa_c00225{left:98.820290pt;}
.x10_c00225{left:106.327467pt;}
.xd_c00225{left:113.393867pt;}
.x9_c00225{left:163.239098pt;}
.xb_c00225{left:176.164031pt;}
.x5_c00225{left:226.608000pt;}
.x8_c00225{left:364.479867pt;}
.x3_c00225{left:398.644000pt;}
.x6_c00225{left:409.446133pt;}
.x4_c00225{left:578.348800pt;}
.xe_c00225{left:641.870000pt;}
.x7_c00225{left:782.467867pt;}
.x1_c00225{left:1174.100000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2282072b781cb5a18f97ac33.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00226;src:url('chunks/assets/font_f8f52b63f4a6595aa273b6f7.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00226;src:url('chunks/assets/font_c3e814a437556a66f9f28b42.woff2')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:0.862000;font-style: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;}
.ls8_c00226{letter-spacing:-0.244800px;}
.ls7_c00226{letter-spacing:-0.144000px;}
.ls5_c00226{letter-spacing:-0.129600px;}
.ls3_c00226{letter-spacing:-0.072000px;}
.ls2_c00226{letter-spacing:0.000000px;}
.ls6_c00226{letter-spacing:0.028800px;}
.ls0_c00226{letter-spacing:0.079200px;}
.ls1_c00226{letter-spacing:0.144000px;}
.ls4_c00226{letter-spacing:0.244800px;}
.sc__c00226{text-shadow:none;}
.sc0_c00226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00226{-webkit-text-stroke:0px transparent;}
.sc0_c00226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00226{word-spacing:-264.079200px;}
.ws1_c00226{word-spacing:0.000000px;}
._1_c00226{margin-left:-5.544000px;}
._4_c00226{margin-left:-3.926400px;}
._0_c00226{margin-left:-2.640000px;}
._2_c00226{margin-left:-1.612800px;}
._3_c00226{width:1.036800px;}
.fc3_c00226{color:rgb(255,0,0);}
.fc2_c00226{color:rgb(68,84,106);}
.fc1_c00226{color:rgb(0,0,0);}
.fc0_c00226{color:rgb(137,137,137);}
.fs0_c00226{font-size:72.000000px;}
.fs2_c00226{font-size:144.000000px;}
.fs1_c00226{font-size:264.000000px;}
.y0_c00226{bottom:0.000000px;}
.y1_c00226{bottom:32.040000px;}
.yb_c00226{bottom:176.400000px;}
.ya_c00226{bottom:219.960000px;}
.y9_c00226{bottom:262.080000px;}
.y8_c00226{bottom:305.640000px;}
.y7_c00226{bottom:349.200000px;}
.y6_c00226{bottom:392.400000px;}
.y5_c00226{bottom:435.960000px;}
.y4_c00226{bottom:549.720000px;}
.y3_c00226{bottom:592.920000px;}
.y2_c00226{bottom:695.160000px;}
.h1_c00226{height:51.679688px;}
.h3_c00226{height:98.496000px;}
.h4_c00226{height:103.359375px;}
.h2_c00226{height:188.332031px;}
.h0_c00226{height:810.000000px;}
.w0_c00226{width:1440.000000px;}
.x0_c00226{left:0.000000px;}
.x4_c00226{left:58.271100px;}
.x2_c00226{left:109.800000px;}
.x3_c00226{left:136.535100px;}
.x1_c00226{left:1320.862500px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls8_c00226{letter-spacing:-0.217600pt;}
.ls7_c00226{letter-spacing:-0.128000pt;}
.ls5_c00226{letter-spacing:-0.115200pt;}
.ls3_c00226{letter-spacing:-0.064000pt;}
.ls2_c00226{letter-spacing:0.000000pt;}
.ls6_c00226{letter-spacing:0.025600pt;}
.ls0_c00226{letter-spacing:0.070400pt;}
.ls1_c00226{letter-spacing:0.128000pt;}
.ls4_c00226{letter-spacing:0.217600pt;}
.ws0_c00226{word-spacing:-234.737067pt;}
.ws1_c00226{word-spacing:0.000000pt;}
._1_c00226{margin-left:-4.928000pt;}
._4_c00226{margin-left:-3.490133pt;}
._0_c00226{margin-left:-2.346667pt;}
._2_c00226{margin-left:-1.433600pt;}
._3_c00226{width:0.921600pt;}
.fs0_c00226{font-size:64.000000pt;}
.fs2_c00226{font-size:128.000000pt;}
.fs1_c00226{font-size:234.666667pt;}
.y0_c00226{bottom:0.000000pt;}
.y1_c00226{bottom:28.480000pt;}
.yb_c00226{bottom:156.800000pt;}
.ya_c00226{bottom:195.520000pt;}
.y9_c00226{bottom:232.960000pt;}
.y8_c00226{bottom:271.680000pt;}
.y7_c00226{bottom:310.400000pt;}
.y6_c00226{bottom:348.800000pt;}
.y5_c00226{bottom:387.520000pt;}
.y4_c00226{bottom:488.640000pt;}
.y3_c00226{bottom:527.040000pt;}
.y2_c00226{bottom:617.920000pt;}
.h1_c00226{height:45.937500pt;}
.h3_c00226{height:87.552000pt;}
.h4_c00226{height:91.875000pt;}
.h2_c00226{height:167.406250pt;}
.h0_c00226{height:720.000000pt;}
.w0_c00226{width:1280.000000pt;}
.x0_c00226{left:0.000000pt;}
.x4_c00226{left:51.796533pt;}
.x2_c00226{left:97.600000pt;}
.x3_c00226{left:121.364533pt;}
.x1_c00226{left:1174.100000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_31bbcffcda6e8bd3ba415859.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00227;src:url('chunks/assets/font_1c64cb393007d22f94c74ba6.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00227{letter-spacing:-7.070400px;}
.ls3_c00227{letter-spacing:-0.144000px;}
.ls6_c00227{letter-spacing:-0.129600px;}
.ls2_c00227{letter-spacing:0.000000px;}
.ls0_c00227{letter-spacing:0.079200px;}
.ls1_c00227{letter-spacing:0.144000px;}
.ls4_c00227{letter-spacing:0.230400px;}
.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:-264.079200px;}
.ws1_c00227{word-spacing:0.000000px;}
._1_c00227{margin-left:-5.544000px;}
._0_c00227{margin-left:-2.640000px;}
._2_c00227{margin-left:-1.094400px;}
._3_c00227{width:1.027200px;}
._5_c00227{width:5.904000px;}
._4_c00227{width:7.344000px;}
.fc1_c00227{color:rgb(0,0,0);}
.fc0_c00227{color:rgb(137,137,137);}
.fs0_c00227{font-size:72.000000px;}
.fs2_c00227{font-size:144.000000px;}
.fs1_c00227{font-size:264.000000px;}
.y0_c00227{bottom:0.000000px;}
.y1_c00227{bottom:32.040000px;}
.y8_c00227{bottom:243.720000px;}
.y7_c00227{bottom:286.920000px;}
.y6_c00227{bottom:372.600000px;}
.y5_c00227{bottom:416.160000px;}
.y4_c00227{bottom:459.720000px;}
.y3_c00227{bottom:546.480000px;}
.y2_c00227{bottom:673.560000px;}
.h1_c00227{height:51.679688px;}
.h3_c00227{height:103.359375px;}
.h2_c00227{height:188.332031px;}
.h0_c00227{height:810.000000px;}
.w0_c00227{width:1440.000000px;}
.x0_c00227{left:0.000000px;}
.x2_c00227{left:109.800000px;}
.x3_c00227{left:131.794650px;}
.x4_c00227{left:239.794650px;}
.x1_c00227{left:1320.862500px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls5_c00227{letter-spacing:-6.284800pt;}
.ls3_c00227{letter-spacing:-0.128000pt;}
.ls6_c00227{letter-spacing:-0.115200pt;}
.ls2_c00227{letter-spacing:0.000000pt;}
.ls0_c00227{letter-spacing:0.070400pt;}
.ls1_c00227{letter-spacing:0.128000pt;}
.ls4_c00227{letter-spacing:0.204800pt;}
.ws0_c00227{word-spacing:-234.737067pt;}
.ws1_c00227{word-spacing:0.000000pt;}
._1_c00227{margin-left:-4.928000pt;}
._0_c00227{margin-left:-2.346667pt;}
._2_c00227{margin-left:-0.972800pt;}
._3_c00227{width:0.913067pt;}
._5_c00227{width:5.248000pt;}
._4_c00227{width:6.528000pt;}
.fs0_c00227{font-size:64.000000pt;}
.fs2_c00227{font-size:128.000000pt;}
.fs1_c00227{font-size:234.666667pt;}
.y0_c00227{bottom:0.000000pt;}
.y1_c00227{bottom:28.480000pt;}
.y8_c00227{bottom:216.640000pt;}
.y7_c00227{bottom:255.040000pt;}
.y6_c00227{bottom:331.200000pt;}
.y5_c00227{bottom:369.920000pt;}
.y4_c00227{bottom:408.640000pt;}
.y3_c00227{bottom:485.760000pt;}
.y2_c00227{bottom:598.720000pt;}
.h1_c00227{height:45.937500pt;}
.h3_c00227{height:91.875000pt;}
.h2_c00227{height:167.406250pt;}
.h0_c00227{height:720.000000pt;}
.w0_c00227{width:1280.000000pt;}
.x0_c00227{left:0.000000pt;}
.x2_c00227{left:97.600000pt;}
.x3_c00227{left:117.150800pt;}
.x4_c00227{left:213.150800pt;}
.x1_c00227{left:1174.100000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_30abc4b6c702274ee47bb666.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00228;src:url('chunks/assets/font_d6d0904941656a5b596259ec.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00228{letter-spacing:-0.316800px;}
.ls5_c00228{letter-spacing:-0.086400px;}
.ls3_c00228{letter-spacing:-0.057600px;}
.ls1_c00228{letter-spacing:0.000000px;}
.ls4_c00228{letter-spacing:0.288000px;}
.ls0_c00228{letter-spacing:117.936000px;}
.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:-263.683200px;}
.ws1_c00228{word-spacing:-32.832000px;}
.ws2_c00228{word-spacing:-32.544000px;}
.ws3_c00228{word-spacing:-32.457600px;}
.ws4_c00228{word-spacing:0.000000px;}
._4_c00228{margin-left:-8.481600px;}
._1_c00228{margin-left:-2.664000px;}
._2_c00228{margin-left:-1.008000px;}
._0_c00228{width:1.056000px;}
._3_c00228{width:117.936000px;}
.fc1_c00228{color:rgb(0,0,0);}
.fc0_c00228{color:rgb(137,137,137);}
.fs0_c00228{font-size:72.000000px;}
.fs2_c00228{font-size:144.000000px;}
.fs1_c00228{font-size:264.000000px;}
.y0_c00228{bottom:0.000000px;}
.y1_c00228{bottom:32.040000px;}
.y9_c00228{bottom:263.880000px;}
.y8_c00228{bottom:307.440000px;}
.y7_c00228{bottom:351.000000px;}
.y6_c00228{bottom:392.760000px;}
.y5_c00228{bottom:479.880000px;}
.y4_c00228{bottom:523.440000px;}
.y3_c00228{bottom:567.000000px;}
.y2_c00228{bottom:670.320000px;}
.h1_c00228{height:51.679688px;}
.h3_c00228{height:103.359375px;}
.h2_c00228{height:188.332031px;}
.h0_c00228{height:810.000000px;}
.w0_c00228{width:1440.000000px;}
.x0_c00228{left:0.000000px;}
.x3_c00228{left:54.139950px;}
.x4_c00228{left:108.139950px;}
.x2_c00228{left:109.800000px;}
.x5_c00228{left:148.639950px;}
.x1_c00228{left:1320.862500px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls2_c00228{letter-spacing:-0.281600pt;}
.ls5_c00228{letter-spacing:-0.076800pt;}
.ls3_c00228{letter-spacing:-0.051200pt;}
.ls1_c00228{letter-spacing:0.000000pt;}
.ls4_c00228{letter-spacing:0.256000pt;}
.ls0_c00228{letter-spacing:104.832000pt;}
.ws0_c00228{word-spacing:-234.385067pt;}
.ws1_c00228{word-spacing:-29.184000pt;}
.ws2_c00228{word-spacing:-28.928000pt;}
.ws3_c00228{word-spacing:-28.851200pt;}
.ws4_c00228{word-spacing:0.000000pt;}
._4_c00228{margin-left:-7.539200pt;}
._1_c00228{margin-left:-2.368000pt;}
._2_c00228{margin-left:-0.896000pt;}
._0_c00228{width:0.938667pt;}
._3_c00228{width:104.832000pt;}
.fs0_c00228{font-size:64.000000pt;}
.fs2_c00228{font-size:128.000000pt;}
.fs1_c00228{font-size:234.666667pt;}
.y0_c00228{bottom:0.000000pt;}
.y1_c00228{bottom:28.480000pt;}
.y9_c00228{bottom:234.560000pt;}
.y8_c00228{bottom:273.280000pt;}
.y7_c00228{bottom:312.000000pt;}
.y6_c00228{bottom:349.120000pt;}
.y5_c00228{bottom:426.560000pt;}
.y4_c00228{bottom:465.280000pt;}
.y3_c00228{bottom:504.000000pt;}
.y2_c00228{bottom:595.840000pt;}
.h1_c00228{height:45.937500pt;}
.h3_c00228{height:91.875000pt;}
.h2_c00228{height:167.406250pt;}
.h0_c00228{height:720.000000pt;}
.w0_c00228{width:1280.000000pt;}
.x0_c00228{left:0.000000pt;}
.x3_c00228{left:48.124400pt;}
.x4_c00228{left:96.124400pt;}
.x2_c00228{left:97.600000pt;}
.x5_c00228{left:132.124400pt;}
.x1_c00228{left:1174.100000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a005500ba860c68efd7a9d40.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00229;src:url('chunks/assets/font_c63dd1791a91419728d2ba81.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00229;src:url('chunks/assets/font_01049d75475f77a907dde341.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:0.904000;font-style: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;}
.ls5_c00229{letter-spacing:-2.462400px;}
.ls2_c00229{letter-spacing:-0.316800px;}
.ls6_c00229{letter-spacing:-0.194400px;}
.ls7_c00229{letter-spacing:-0.075600px;}
.ls8_c00229{letter-spacing:-0.010800px;}
.ls1_c00229{letter-spacing:0.000000px;}
.ls4_c00229{letter-spacing:0.064800px;}
.ls3_c00229{letter-spacing:0.291600px;}
.ls0_c00229{letter-spacing:24.948000px;}
.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:-263.683200px;}
.ws1_c00229{word-spacing:0.000000px;}
._1_c00229{margin-left:-2.664000px;}
._2_c00229{margin-left:-1.188000px;}
._0_c00229{width:1.056000px;}
._3_c00229{width:2.640000px;}
._5_c00229{width:3.660000px;}
._4_c00229{width:5.256000px;}
._6_c00229{width:293.425200px;}
._b_c00229{width:554.882400px;}
._a_c00229{width:704.829600px;}
._8_c00229{width:729.453600px;}
._7_c00229{width:771.940800px;}
._9_c00229{width:879.573600px;}
.fc2_c00229{color:rgb(255,255,255);}
.fc1_c00229{color:rgb(0,0,0);}
.fc0_c00229{color:rgb(137,137,137);}
.fs0_c00229{font-size:72.000000px;}
.fs3_c00229{font-size:108.000000px;}
.fs2_c00229{font-size:144.000000px;}
.fs1_c00229{font-size:264.000000px;}
.y0_c00229{bottom:0.000000px;}
.y1_c00229{bottom:32.040000px;}
.y19_c00229{bottom:49.680000px;}
.y17_c00229{bottom:93.600000px;}
.yb_c00229{bottom:104.040000px;}
.y5_c00229{bottom:104.400000px;}
.y15_c00229{bottom:137.160000px;}
.y1a_c00229{bottom:154.080000px;}
.y13_c00229{bottom:181.080000px;}
.y18_c00229{bottom:197.640000px;}
.y11_c00229{bottom:225.000000px;}
.y16_c00229{bottom:241.560000px;}
.yf_c00229{bottom:268.560000px;}
.y14_c00229{bottom:285.480000px;}
.yd_c00229{bottom:312.480000px;}
.y12_c00229{bottom:329.040000px;}
.ya_c00229{bottom:356.400000px;}
.y10_c00229{bottom:372.960000px;}
.y8_c00229{bottom:399.960000px;}
.ye_c00229{bottom:416.880000px;}
.yc_c00229{bottom:460.440000px;}
.y4_c00229{bottom:475.560000px;}
.y9_c00229{bottom:504.360000px;}
.y7_c00229{bottom:548.640000px;}
.y6_c00229{bottom:579.960000px;}
.y3_c00229{bottom:627.120000px;}
.y2_c00229{bottom:670.320000px;}
.h1_c00229{height:51.679688px;}
.h6_c00229{height:77.519531px;}
.h5_c00229{height:78.408000px;}
.h3_c00229{height:103.359375px;}
.h2_c00229{height:188.332031px;}
.h4_c00229{height:227.160000px;}
.h0_c00229{height:810.000000px;}
.w1_c00229{width:243.000000px;}
.w2_c00229{width:252.360000px;}
.w3_c00229{width:364.320000px;}
.w0_c00229{width:1440.000000px;}
.x0_c00229{left:0.000000px;}
.x4_c00229{left:10.800000px;}
.x3_c00229{left:99.000000px;}
.x2_c00229{left:109.800000px;}
.xb_c00229{left:282.482250px;}
.x5_c00229{left:341.640000px;}
.x9_c00229{left:400.843650px;}
.xd_c00229{left:433.187400px;}
.xe_c00229{left:454.093650px;}
.xa_c00229{left:593.640000px;}
.x6_c00229{left:628.896150px;}
.x7_c00229{left:717.591150px;}
.x8_c00229{left:957.600000px;}
.xc_c00229{left:1038.714300px;}
.x1_c00229{left:1320.862500px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls5_c00229{letter-spacing:-2.188800pt;}
.ls2_c00229{letter-spacing:-0.281600pt;}
.ls6_c00229{letter-spacing:-0.172800pt;}
.ls7_c00229{letter-spacing:-0.067200pt;}
.ls8_c00229{letter-spacing:-0.009600pt;}
.ls1_c00229{letter-spacing:0.000000pt;}
.ls4_c00229{letter-spacing:0.057600pt;}
.ls3_c00229{letter-spacing:0.259200pt;}
.ls0_c00229{letter-spacing:22.176000pt;}
.ws0_c00229{word-spacing:-234.385067pt;}
.ws1_c00229{word-spacing:0.000000pt;}
._1_c00229{margin-left:-2.368000pt;}
._2_c00229{margin-left:-1.056000pt;}
._0_c00229{width:0.938667pt;}
._3_c00229{width:2.346667pt;}
._5_c00229{width:3.253333pt;}
._4_c00229{width:4.672000pt;}
._6_c00229{width:260.822400pt;}
._b_c00229{width:493.228800pt;}
._a_c00229{width:626.515200pt;}
._8_c00229{width:648.403200pt;}
._7_c00229{width:686.169600pt;}
._9_c00229{width:781.843200pt;}
.fs0_c00229{font-size:64.000000pt;}
.fs3_c00229{font-size:96.000000pt;}
.fs2_c00229{font-size:128.000000pt;}
.fs1_c00229{font-size:234.666667pt;}
.y0_c00229{bottom:0.000000pt;}
.y1_c00229{bottom:28.480000pt;}
.y19_c00229{bottom:44.160000pt;}
.y17_c00229{bottom:83.200000pt;}
.yb_c00229{bottom:92.480000pt;}
.y5_c00229{bottom:92.800000pt;}
.y15_c00229{bottom:121.920000pt;}
.y1a_c00229{bottom:136.960000pt;}
.y13_c00229{bottom:160.960000pt;}
.y18_c00229{bottom:175.680000pt;}
.y11_c00229{bottom:200.000000pt;}
.y16_c00229{bottom:214.720000pt;}
.yf_c00229{bottom:238.720000pt;}
.y14_c00229{bottom:253.760000pt;}
.yd_c00229{bottom:277.760000pt;}
.y12_c00229{bottom:292.480000pt;}
.ya_c00229{bottom:316.800000pt;}
.y10_c00229{bottom:331.520000pt;}
.y8_c00229{bottom:355.520000pt;}
.ye_c00229{bottom:370.560000pt;}
.yc_c00229{bottom:409.280000pt;}
.y4_c00229{bottom:422.720000pt;}
.y9_c00229{bottom:448.320000pt;}
.y7_c00229{bottom:487.680000pt;}
.y6_c00229{bottom:515.520000pt;}
.y3_c00229{bottom:557.440000pt;}
.y2_c00229{bottom:595.840000pt;}
.h1_c00229{height:45.937500pt;}
.h6_c00229{height:68.906250pt;}
.h5_c00229{height:69.696000pt;}
.h3_c00229{height:91.875000pt;}
.h2_c00229{height:167.406250pt;}
.h4_c00229{height:201.920000pt;}
.h0_c00229{height:720.000000pt;}
.w1_c00229{width:216.000000pt;}
.w2_c00229{width:224.320000pt;}
.w3_c00229{width:323.840000pt;}
.w0_c00229{width:1280.000000pt;}
.x0_c00229{left:0.000000pt;}
.x4_c00229{left:9.600000pt;}
.x3_c00229{left:88.000000pt;}
.x2_c00229{left:97.600000pt;}
.xb_c00229{left:251.095333pt;}
.x5_c00229{left:303.680000pt;}
.x9_c00229{left:356.305467pt;}
.xd_c00229{left:385.055467pt;}
.xe_c00229{left:403.638800pt;}
.xa_c00229{left:527.680000pt;}
.x6_c00229{left:559.018800pt;}
.x7_c00229{left:637.858800pt;}
.x8_c00229{left:851.200000pt;}
.xc_c00229{left:923.301600pt;}
.x1_c00229{left:1174.100000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_91f8f59b4f3464a38c018c3e.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00230;src:url('chunks/assets/font_a3a1c528121d80c4155728d3.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00230;src:url('chunks/assets/font_8063fdd4b75b172a209fb0e6.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:0.927000;font-style:normal;font-weight:normal;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_0d6d55eb436cf3f536e5bb75.woff2')format("woff");}.ff4_c00230{font-family:ff4_c00230;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00230;src:url('chunks/assets/font_348ea2ed697feb859d44bb2f.woff2')format("woff");}.ff5_c00230{font-family:ff5_c00230;line-height:0.945312;font-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_c00230{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_c00230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00230{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);}
.v2_c00230{vertical-align:-28.800000px;}
.v0_c00230{vertical-align:0.000000px;}
.v3_c00230{vertical-align:25.020600px;}
.v1_c00230{vertical-align:109.440000px;}
.ls5_c00230{letter-spacing:-3.139200px;}
.ls4_c00230{letter-spacing:-0.331200px;}
.ls2_c00230{letter-spacing:-0.316800px;}
.ls6_c00230{letter-spacing:-0.187200px;}
.ls8_c00230{letter-spacing:-0.172800px;}
.ls7_c00230{letter-spacing:-0.129600px;}
.ls3_c00230{letter-spacing:0.000000px;}
.ls0_c00230{letter-spacing:0.144000px;}
.ls1_c00230{letter-spacing:2.414196px;}
.sc__c00230{text-shadow:none;}
.sc0_c00230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00230{-webkit-text-stroke:0px transparent;}
.sc0_c00230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00230{word-spacing:-263.683200px;}
.ws3_c00230{word-spacing:-32.544000px;}
.ws1_c00230{word-spacing:-29.404800px;}
.ws6_c00230{word-spacing:-0.144000px;}
.ws7_c00230{word-spacing:0.000000px;}
.ws2_c00230{word-spacing:0.057600px;}
.ws4_c00230{word-spacing:31.536000px;}
.ws5_c00230{word-spacing:97.293000px;}
._1_c00230{margin-left:-2.664000px;}
._3_c00230{margin-left:-1.022400px;}
._0_c00230{width:1.056000px;}
._4_c00230{width:3.024000px;}
._6_c00230{width:39.600000px;}
._5_c00230{width:43.632000px;}
._2_c00230{width:117.936000px;}
.fc2_c00230{color:rgb(38,38,38);}
.fc1_c00230{color:rgb(137,137,137);}
.fc0_c00230{color:rgb(0,0,0);}
.fs5_c00230{font-size:37.531200px;}
.fs8_c00230{font-size:40.659000px;}
.fs4_c00230{font-size:50.041800px;}
.fs7_c00230{font-size:53.169600px;}
.fs6_c00230{font-size:56.297400px;}
.fs9_c00230{font-size:62.552400px;}
.fs3_c00230{font-size:72.000000px;}
.fs2_c00230{font-size:108.000000px;}
.fs1_c00230{font-size:144.000000px;}
.fs0_c00230{font-size:264.000000px;}
.y0_c00230{bottom:0.000000px;}
.ye_c00230{bottom:31.510050px;}
.ya_c00230{bottom:32.040000px;}
.yc_c00230{bottom:46.131750px;}
.yd_c00230{bottom:52.386900px;}
.yf_c00230{bottom:60.597000px;}
.y10_c00230{bottom:108.061647px;}
.y11_c00230{bottom:155.526295px;}
.y12_c00230{bottom:202.990942px;}
.yb_c00230{bottom:211.356000px;}
.y1a_c00230{bottom:212.677500px;}
.y13_c00230{bottom:250.455589px;}
.y8_c00230{bottom:289.080000px;}
.y14_c00230{bottom:297.920236px;}
.y7_c00230{bottom:313.200000px;}
.y15_c00230{bottom:345.384884px;}
.y9_c00230{bottom:351.000000px;}
.y16_c00230{bottom:392.849531px;}
.y6_c00230{bottom:430.200000px;}
.y17_c00230{bottom:440.314178px;}
.y5_c00230{bottom:473.760000px;}
.y18_c00230{bottom:487.778826px;}
.y1c_c00230{bottom:500.614350px;}
.y1b_c00230{bottom:517.034400px;}
.y4_c00230{bottom:517.320000px;}
.y19_c00230{bottom:535.243473px;}
.y3_c00230{bottom:560.520000px;}
.y2_c00230{bottom:604.080000px;}
.y1_c00230{bottom:704.880000px;}
.h9_c00230{height:27.653604px;}
.h8_c00230{height:36.871619px;}
.ha_c00230{height:41.480848px;}
.hc_c00230{height:46.089635px;}
.h6_c00230{height:51.679688px;}
.hb_c00230{height:54.978818px;}
.h5_c00230{height:75.384000px;}
.h4_c00230{height:101.664000px;}
.h2_c00230{height:103.359375px;}
.h1_c00230{height:188.332031px;}
.h3_c00230{height:211.104000px;}
.h7_c00230{height:582.519000px;}
.h0_c00230{height:810.000000px;}
.w1_c00230{width:1012.569000px;}
.w0_c00230{width:1440.000000px;}
.x0_c00230{left:0.000000px;}
.x2_c00230{left:26.518200px;}
.x1_c00230{left:59.066400px;}
.x3_c00230{left:67.018200px;}
.x4_c00230{left:78.358200px;}
.x16_c00230{left:100.866000px;}
.x15_c00230{left:106.586554px;}
.x14_c00230{left:113.617427px;}
.x9_c00230{left:120.413700px;}
.xa_c00230{left:134.488050px;}
.x17_c00230{left:170.064750px;}
.x5_c00230{left:297.520650px;}
.xb_c00230{left:315.890250px;}
.xc_c00230{left:329.964600px;}
.x6_c00230{left:356.536650px;}
.x8_c00230{left:427.431000px;}
.x13_c00230{left:474.813150px;}
.xd_c00230{left:512.148750px;}
.xe_c00230{left:526.223100px;}
.xf_c00230{left:708.407250px;}
.x10_c00230{left:722.481600px;}
.x11_c00230{left:904.665750px;}
.x12_c00230{left:918.740100px;}
.x7_c00230{left:1320.862500px;}
@media print{
.v2_c00230{vertical-align:-25.600000pt;}
.v0_c00230{vertical-align:0.000000pt;}
.v3_c00230{vertical-align:22.240533pt;}
.v1_c00230{vertical-align:97.280000pt;}
.ls5_c00230{letter-spacing:-2.790400pt;}
.ls4_c00230{letter-spacing:-0.294400pt;}
.ls2_c00230{letter-spacing:-0.281600pt;}
.ls6_c00230{letter-spacing:-0.166400pt;}
.ls8_c00230{letter-spacing:-0.153600pt;}
.ls7_c00230{letter-spacing:-0.115200pt;}
.ls3_c00230{letter-spacing:0.000000pt;}
.ls0_c00230{letter-spacing:0.128000pt;}
.ls1_c00230{letter-spacing:2.145952pt;}
.ws0_c00230{word-spacing:-234.385067pt;}
.ws3_c00230{word-spacing:-28.928000pt;}
.ws1_c00230{word-spacing:-26.137600pt;}
.ws6_c00230{word-spacing:-0.128000pt;}
.ws7_c00230{word-spacing:0.000000pt;}
.ws2_c00230{word-spacing:0.051200pt;}
.ws4_c00230{word-spacing:28.032000pt;}
.ws5_c00230{word-spacing:86.482667pt;}
._1_c00230{margin-left:-2.368000pt;}
._3_c00230{margin-left:-0.908800pt;}
._0_c00230{width:0.938667pt;}
._4_c00230{width:2.688000pt;}
._6_c00230{width:35.200000pt;}
._5_c00230{width:38.784000pt;}
._2_c00230{width:104.832000pt;}
.fs5_c00230{font-size:33.361067pt;}
.fs8_c00230{font-size:36.141333pt;}
.fs4_c00230{font-size:44.481600pt;}
.fs7_c00230{font-size:47.261867pt;}
.fs6_c00230{font-size:50.042133pt;}
.fs9_c00230{font-size:55.602133pt;}
.fs3_c00230{font-size:64.000000pt;}
.fs2_c00230{font-size:96.000000pt;}
.fs1_c00230{font-size:128.000000pt;}
.fs0_c00230{font-size:234.666667pt;}
.y0_c00230{bottom:0.000000pt;}
.ye_c00230{bottom:28.008933pt;}
.ya_c00230{bottom:28.480000pt;}
.yc_c00230{bottom:41.006000pt;}
.yd_c00230{bottom:46.566133pt;}
.yf_c00230{bottom:53.864000pt;}
.y10_c00230{bottom:96.054798pt;}
.y11_c00230{bottom:138.245595pt;}
.y12_c00230{bottom:180.436393pt;}
.yb_c00230{bottom:187.872000pt;}
.y1a_c00230{bottom:189.046667pt;}
.y13_c00230{bottom:222.627190pt;}
.y8_c00230{bottom:256.960000pt;}
.y14_c00230{bottom:264.817988pt;}
.y7_c00230{bottom:278.400000pt;}
.y15_c00230{bottom:307.008786pt;}
.y9_c00230{bottom:312.000000pt;}
.y16_c00230{bottom:349.199583pt;}
.y6_c00230{bottom:382.400000pt;}
.y17_c00230{bottom:391.390381pt;}
.y5_c00230{bottom:421.120000pt;}
.y18_c00230{bottom:433.581178pt;}
.y1c_c00230{bottom:444.990533pt;}
.y1b_c00230{bottom:459.586133pt;}
.y4_c00230{bottom:459.840000pt;}
.y19_c00230{bottom:475.771976pt;}
.y3_c00230{bottom:498.240000pt;}
.y2_c00230{bottom:536.960000pt;}
.y1_c00230{bottom:626.560000pt;}
.h9_c00230{height:24.580981pt;}
.h8_c00230{height:32.774773pt;}
.ha_c00230{height:36.871865pt;}
.hc_c00230{height:40.968564pt;}
.h6_c00230{height:45.937500pt;}
.hb_c00230{height:48.870061pt;}
.h5_c00230{height:67.008000pt;}
.h4_c00230{height:90.368000pt;}
.h2_c00230{height:91.875000pt;}
.h1_c00230{height:167.406250pt;}
.h3_c00230{height:187.648000pt;}
.h7_c00230{height:517.794667pt;}
.h0_c00230{height:720.000000pt;}
.w1_c00230{width:900.061333pt;}
.w0_c00230{width:1280.000000pt;}
.x0_c00230{left:0.000000pt;}
.x2_c00230{left:23.571733pt;}
.x1_c00230{left:52.503467pt;}
.x3_c00230{left:59.571733pt;}
.x4_c00230{left:69.651733pt;}
.x16_c00230{left:89.658667pt;}
.x15_c00230{left:94.743604pt;}
.x14_c00230{left:100.993269pt;}
.x9_c00230{left:107.034400pt;}
.xa_c00230{left:119.544933pt;}
.x17_c00230{left:151.168667pt;}
.x5_c00230{left:264.462800pt;}
.xb_c00230{left:280.791333pt;}
.xc_c00230{left:293.301867pt;}
.x6_c00230{left:316.921467pt;}
.x8_c00230{left:379.938667pt;}
.x13_c00230{left:422.056133pt;}
.xd_c00230{left:455.243333pt;}
.xe_c00230{left:467.753867pt;}
.xf_c00230{left:629.695333pt;}
.x10_c00230{left:642.205867pt;}
.x11_c00230{left:804.147333pt;}
.x12_c00230{left:816.657867pt;}
.x7_c00230{left:1174.100000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aa1410a51d10f1d630f81d5e.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00231;src:url('chunks/assets/font_451e8c7f30a5678d956a8bd5.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00231;src:url('chunks/assets/font_a1bb7a148640effd7ef84e6a.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:0.674000;font-style:normal;font-weight:normal;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_d4488076e19d1ae54537679a.woff2')format("woff");}.ff4_c00231{font-family:ff4_c00231;line-height:0.676000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00231;src:url('chunks/assets/font_dfa427b8975c7b45e35c900a.woff2')format("woff");}.ff5_c00231{font-family:ff5_c00231;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00231;src:url('chunks/assets/font_0d6d55eb436cf3f536e5bb75.woff2')format("woff");}.ff6_c00231{font-family:ff6_c00231;line-height:0.708000;font-style:normal;font-weight: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_c00231;src:url('chunks/assets/font_a5cbb88deeedddaf6b83e840.woff2')format("woff");}.ff7_c00231{font-family:ff7_c00231;line-height:0.945312;font-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_c00231{transform:matrix(0.000000,-0.249996,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249996,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249996,0.250000,0.000000,0,0);}
.m2_c00231{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v6_c00231{vertical-align:-28.800000px;}
.v1_c00231{vertical-align:-24.480000px;}
.v0_c00231{vertical-align:0.000000px;}
.v2_c00231{vertical-align:4.320000px;}
.v7_c00231{vertical-align:19.207200px;}
.v3_c00231{vertical-align:51.840000px;}
.v5_c00231{vertical-align:83.520000px;}
.v4_c00231{vertical-align:109.440000px;}
.ls3_c00231{letter-spacing:-0.316800px;}
.ls6_c00231{letter-spacing:-0.273600px;}
.ls5_c00231{letter-spacing:-0.172800px;}
.ls7_c00231{letter-spacing:-0.028800px;}
.ls8_c00231{letter-spacing:-0.010800px;}
.ls4_c00231{letter-spacing:0.000000px;}
.ls2_c00231{letter-spacing:0.244800px;}
.ls1_c00231{letter-spacing:45.918000px;}
.ls0_c00231{letter-spacing:80.961600px;}
.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:-263.683200px;}
.wsa_c00231{word-spacing:-24.397200px;}
.wsb_c00231{word-spacing:-10.679036px;}
.ws7_c00231{word-spacing:-0.144000px;}
.ws1_c00231{word-spacing:-0.120000px;}
.ws8_c00231{word-spacing:-0.115200px;}
.wse_c00231{word-spacing:0.000000px;}
.ws2_c00231{word-spacing:31.536000px;}
.ws5_c00231{word-spacing:39.456000px;}
.ws4_c00231{word-spacing:59.310000px;}
.ws3_c00231{word-spacing:61.866600px;}
.ws6_c00231{word-spacing:113.888400px;}
.ws9_c00231{word-spacing:126.555600px;}
.wsc_c00231{word-spacing:523.380097px;}
.wsd_c00231{word-spacing:525.781297px;}
._3_c00231{margin-left:-3.216000px;}
._1_c00231{margin-left:-1.572000px;}
._0_c00231{width:1.056000px;}
._7_c00231{width:3.657600px;}
._5_c00231{width:39.600000px;}
._6_c00231{width:42.336000px;}
._4_c00231{width:43.632000px;}
._2_c00231{width:125.280000px;}
.fc3_c00231{color:transparent;}
.fc2_c00231{color:rgb(38,38,38);}
.fc1_c00231{color:rgb(0,0,0);}
.fc0_c00231{color:rgb(137,137,137);}
.fs7_c00231{font-size:28.810200px;}
.fsa_c00231{font-size:31.211400px;}
.fs6_c00231{font-size:38.413800px;}
.fs9_c00231{font-size:40.815000px;}
.fs8_c00231{font-size:43.215600px;}
.fsb_c00231{font-size:48.017400px;}
.fs0_c00231{font-size:72.000000px;}
.fs3_c00231{font-size:90.000000px;}
.fs5_c00231{font-size:108.000000px;}
.fs2_c00231{font-size:120.000000px;}
.fs4_c00231{font-size:144.000000px;}
.fs1_c00231{font-size:264.000000px;}
.y0_c00231{bottom:0.000000px;}
.y10_c00231{bottom:24.188250px;}
.y1_c00231{bottom:32.040000px;}
.yf_c00231{bottom:35.412300px;}
.y11_c00231{bottom:46.516350px;}
.y12_c00231{bottom:82.951839px;}
.y13_c00231{bottom:119.387329px;}
.y14_c00231{bottom:155.822818px;}
.y1c_c00231{bottom:163.258350px;}
.yc_c00231{bottom:186.840000px;}
.y15_c00231{bottom:192.258307px;}
.yb_c00231{bottom:205.200000px;}
.y16_c00231{bottom:228.693797px;}
.ya_c00231{bottom:240.480000px;}
.y17_c00231{bottom:265.129286px;}
.y1d_c00231{bottom:280.300500px;}
.ye_c00231{bottom:281.839500px;}
.y1e_c00231{bottom:285.102150px;}
.y18_c00231{bottom:301.564775px;}
.y9_c00231{bottom:337.320000px;}
.y19_c00231{bottom:338.000264px;}
.y1a_c00231{bottom:374.435754px;}
.y20_c00231{bottom:384.288000px;}
.y8_c00231{bottom:386.280000px;}
.y1f_c00231{bottom:396.892500px;}
.y1b_c00231{bottom:410.871243px;}
.y7_c00231{bottom:427.320000px;}
.y6_c00231{bottom:483.480000px;}
.yd_c00231{bottom:485.280000px;}
.y5_c00231{bottom:519.480000px;}
.y4_c00231{bottom:555.480000px;}
.y21_c00231{bottom:576.360000px;}
.y3_c00231{bottom:591.480000px;}
.y2_c00231{bottom:668.520000px;}
.hf_c00231{height:22.997072px;}
.hd_c00231{height:28.303918px;}
.he_c00231{height:30.073162px;}
.hc_c00231{height:31.841963px;}
.h10_c00231{height:35.380008px;}
.hb_c00231{height:40.435028px;}
.h1_c00231{height:51.679688px;}
.h9_c00231{height:77.519531px;}
.h4_c00231{height:79.920000px;}
.h3_c00231{height:86.132812px;}
.h8_c00231{height:101.664000px;}
.h5_c00231{height:127.224000px;}
.h7_c00231{height:185.184000px;}
.h2_c00231{height:188.332031px;}
.h6_c00231{height:211.104000px;}
.ha_c00231{height:447.160500px;}
.h0_c00231{height:810.000000px;}
.w1_c00231{width:772.312500px;}
.w0_c00231{width:1440.000000px;}
.x0_c00231{left:0.000000px;}
.x11_c00231{left:72.626400px;}
.x10_c00231{left:77.428050px;}
.x3_c00231{left:78.574950px;}
.x5_c00231{left:82.264950px;}
.xf_c00231{left:87.216461px;}
.xd_c00231{left:92.433450px;}
.x7_c00231{left:102.776400px;}
.x2_c00231{left:109.800000px;}
.x8_c00231{left:110.888250px;}
.x6_c00231{left:131.169900px;}
.x4_c00231{left:132.574950px;}
.x9_c00231{left:239.623950px;}
.xa_c00231{left:295.890450px;}
.xe_c00231{left:364.482450px;}
.xc_c00231{left:667.687500px;}
.x12_c00231{left:1133.032950px;}
.xb_c00231{left:1148.987400px;}
.x1_c00231{left:1311.675000px;}
@media print{
.v6_c00231{vertical-align:-25.600000pt;}
.v1_c00231{vertical-align:-21.760000pt;}
.v0_c00231{vertical-align:0.000000pt;}
.v2_c00231{vertical-align:3.840000pt;}
.v7_c00231{vertical-align:17.073067pt;}
.v3_c00231{vertical-align:46.080000pt;}
.v5_c00231{vertical-align:74.240000pt;}
.v4_c00231{vertical-align:97.280000pt;}
.ls3_c00231{letter-spacing:-0.281600pt;}
.ls6_c00231{letter-spacing:-0.243200pt;}
.ls5_c00231{letter-spacing:-0.153600pt;}
.ls7_c00231{letter-spacing:-0.025600pt;}
.ls8_c00231{letter-spacing:-0.009600pt;}
.ls4_c00231{letter-spacing:0.000000pt;}
.ls2_c00231{letter-spacing:0.217600pt;}
.ls1_c00231{letter-spacing:40.816000pt;}
.ls0_c00231{letter-spacing:71.965867pt;}
.ws0_c00231{word-spacing:-234.385067pt;}
.wsa_c00231{word-spacing:-21.686400pt;}
.wsb_c00231{word-spacing:-9.492477pt;}
.ws7_c00231{word-spacing:-0.128000pt;}
.ws1_c00231{word-spacing:-0.106667pt;}
.ws8_c00231{word-spacing:-0.102400pt;}
.wse_c00231{word-spacing:0.000000pt;}
.ws2_c00231{word-spacing:28.032000pt;}
.ws5_c00231{word-spacing:35.072000pt;}
.ws4_c00231{word-spacing:52.720000pt;}
.ws3_c00231{word-spacing:54.992533pt;}
.ws6_c00231{word-spacing:101.234133pt;}
.ws9_c00231{word-spacing:112.493867pt;}
.wsc_c00231{word-spacing:465.226753pt;}
.wsd_c00231{word-spacing:467.361153pt;}
._3_c00231{margin-left:-2.858667pt;}
._1_c00231{margin-left:-1.397333pt;}
._0_c00231{width:0.938667pt;}
._7_c00231{width:3.251200pt;}
._5_c00231{width:35.200000pt;}
._6_c00231{width:37.632000pt;}
._4_c00231{width:38.784000pt;}
._2_c00231{width:111.360000pt;}
.fs7_c00231{font-size:25.609067pt;}
.fsa_c00231{font-size:27.743467pt;}
.fs6_c00231{font-size:34.145600pt;}
.fs9_c00231{font-size:36.280000pt;}
.fs8_c00231{font-size:38.413867pt;}
.fsb_c00231{font-size:42.682133pt;}
.fs0_c00231{font-size:64.000000pt;}
.fs3_c00231{font-size:80.000000pt;}
.fs5_c00231{font-size:96.000000pt;}
.fs2_c00231{font-size:106.666667pt;}
.fs4_c00231{font-size:128.000000pt;}
.fs1_c00231{font-size:234.666667pt;}
.y0_c00231{bottom:0.000000pt;}
.y10_c00231{bottom:21.500667pt;}
.y1_c00231{bottom:28.480000pt;}
.yf_c00231{bottom:31.477600pt;}
.y11_c00231{bottom:41.347867pt;}
.y12_c00231{bottom:73.734968pt;}
.y13_c00231{bottom:106.122070pt;}
.y14_c00231{bottom:138.509171pt;}
.y1c_c00231{bottom:145.118533pt;}
.yc_c00231{bottom:166.080000pt;}
.y15_c00231{bottom:170.896273pt;}
.yb_c00231{bottom:182.400000pt;}
.y16_c00231{bottom:203.283375pt;}
.ya_c00231{bottom:213.760000pt;}
.y17_c00231{bottom:235.670476pt;}
.y1d_c00231{bottom:249.156000pt;}
.ye_c00231{bottom:250.524000pt;}
.y1e_c00231{bottom:253.424133pt;}
.y18_c00231{bottom:268.057578pt;}
.y9_c00231{bottom:299.840000pt;}
.y19_c00231{bottom:300.444679pt;}
.y1a_c00231{bottom:332.831781pt;}
.y20_c00231{bottom:341.589333pt;}
.y8_c00231{bottom:343.360000pt;}
.y1f_c00231{bottom:352.793333pt;}
.y1b_c00231{bottom:365.218883pt;}
.y7_c00231{bottom:379.840000pt;}
.y6_c00231{bottom:429.760000pt;}
.yd_c00231{bottom:431.360000pt;}
.y5_c00231{bottom:461.760000pt;}
.y4_c00231{bottom:493.760000pt;}
.y21_c00231{bottom:512.320000pt;}
.y3_c00231{bottom:525.760000pt;}
.y2_c00231{bottom:594.240000pt;}
.hf_c00231{height:20.441841pt;}
.hd_c00231{height:25.159038pt;}
.he_c00231{height:26.731699pt;}
.hc_c00231{height:28.303967pt;}
.h10_c00231{height:31.448896pt;}
.hb_c00231{height:35.942247pt;}
.h1_c00231{height:45.937500pt;}
.h9_c00231{height:68.906250pt;}
.h4_c00231{height:71.040000pt;}
.h3_c00231{height:76.562500pt;}
.h8_c00231{height:90.368000pt;}
.h5_c00231{height:113.088000pt;}
.h7_c00231{height:164.608000pt;}
.h2_c00231{height:167.406250pt;}
.h6_c00231{height:187.648000pt;}
.ha_c00231{height:397.476000pt;}
.h0_c00231{height:720.000000pt;}
.w1_c00231{width:686.500000pt;}
.w0_c00231{width:1280.000000pt;}
.x0_c00231{left:0.000000pt;}
.x11_c00231{left:64.556800pt;}
.x10_c00231{left:68.824933pt;}
.x3_c00231{left:69.844400pt;}
.x5_c00231{left:73.124400pt;}
.xf_c00231{left:77.525743pt;}
.xd_c00231{left:82.163067pt;}
.x7_c00231{left:91.356800pt;}
.x2_c00231{left:97.600000pt;}
.x8_c00231{left:98.567333pt;}
.x6_c00231{left:116.595467pt;}
.x4_c00231{left:117.844400pt;}
.x9_c00231{left:212.999067pt;}
.xa_c00231{left:263.013733pt;}
.xe_c00231{left:323.984400pt;}
.xc_c00231{left:593.500000pt;}
.x12_c00231{left:1007.140400pt;}
.xb_c00231{left:1021.322133pt;}
.x1_c00231{left:1165.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_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_da529a2cf8782d4e0d092ff7.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00232;src:url('chunks/assets/font_54aacff4d9cdd44517164870.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00232;src:url('chunks/assets/font_f82c49622877fdd9709ad95b.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:0.708000;font-style: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;}
.lsf_c00232{letter-spacing:-6.782400px;}
.ls12_c00232{letter-spacing:-5.108400px;}
.ls9_c00232{letter-spacing:-2.224800px;}
.ls10_c00232{letter-spacing:-2.030400px;}
.lsb_c00232{letter-spacing:-1.652400px;}
.lsa_c00232{letter-spacing:-0.831600px;}
.ls5_c00232{letter-spacing:-0.316800px;}
.lse_c00232{letter-spacing:-0.280800px;}
.ls11_c00232{letter-spacing:-0.216000px;}
.ls7_c00232{letter-spacing:-0.097200px;}
.lsd_c00232{letter-spacing:-0.075600px;}
.ls6_c00232{letter-spacing:0.000000px;}
.ls2_c00232{letter-spacing:0.021600px;}
.ls13_c00232{letter-spacing:0.064800px;}
.lsc_c00232{letter-spacing:0.086400px;}
.ls0_c00232{letter-spacing:0.183600px;}
.ls4_c00232{letter-spacing:0.244800px;}
.ls8_c00232{letter-spacing:0.302400px;}
.ls1_c00232{letter-spacing:0.334800px;}
.ls3_c00232{letter-spacing:24.732000px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00232{word-spacing:-263.683200px;}
.ws5_c00232{word-spacing:-24.742800px;}
.ws2_c00232{word-spacing:-24.332400px;}
.ws1_c00232{word-spacing:-23.576400px;}
.ws4_c00232{word-spacing:-22.377600px;}
.ws6_c00232{word-spacing:-17.625600px;}
.ws7_c00232{word-spacing:0.000000px;}
.ws3_c00232{word-spacing:24.192000px;}
._a_c00232{margin-left:-3.888000px;}
._4_c00232{margin-left:-2.390400px;}
._1_c00232{margin-left:-1.238400px;}
._0_c00232{width:1.056000px;}
._2_c00232{width:2.268000px;}
._3_c00232{width:3.588000px;}
._9_c00232{width:4.644000px;}
._6_c00232{width:5.832000px;}
._5_c00232{width:7.128000px;}
._7_c00232{width:26.784000px;}
._8_c00232{width:28.512000px;}
.fc1_c00232{color:rgb(0,0,0);}
.fc0_c00232{color:rgb(137,137,137);}
.fs0_c00232{font-size:72.000000px;}
.fs3_c00232{font-size:108.000000px;}
.fs2_c00232{font-size:144.000000px;}
.fs1_c00232{font-size:264.000000px;}
.y0_c00232{bottom:0.000000px;}
.y1_c00232{bottom:32.040000px;}
.y19_c00232{bottom:91.800000px;}
.ye_c00232{bottom:104.040000px;}
.y11_c00232{bottom:104.400000px;}
.y18_c00232{bottom:135.720000px;}
.y16_c00232{bottom:179.280000px;}
.y15_c00232{bottom:223.200000px;}
.yc_c00232{bottom:255.618000px;}
.y14_c00232{bottom:267.120000px;}
.y17_c00232{bottom:283.680000px;}
.yb_c00232{bottom:287.289000px;}
.y13_c00232{bottom:310.680000px;}
.ya_c00232{bottom:320.040000px;}
.y9_c00232{bottom:353.169000px;}
.y10_c00232{bottom:354.600000px;}
.yf_c00232{bottom:398.520000px;}
.y8_c00232{bottom:417.618000px;}
.yd_c00232{bottom:441.720000px;}
.y7_c00232{bottom:449.289000px;}
.y12_c00232{bottom:459.000000px;}
.y6_c00232{bottom:482.040000px;}
.y5_c00232{bottom:515.169000px;}
.y4_c00232{bottom:546.840000px;}
.y3_c00232{bottom:599.040000px;}
.y2_c00232{bottom:670.320000px;}
.h1_c00232{height:51.679688px;}
.h4_c00232{height:77.519531px;}
.h3_c00232{height:103.359375px;}
.h2_c00232{height:188.332031px;}
.h5_c00232{height:227.160000px;}
.h0_c00232{height:810.000000px;}
.w2_c00232{width:480.240000px;}
.w1_c00232{width:480.600000px;}
.w0_c00232{width:1440.000000px;}
.x0_c00232{left:0.000000px;}
.x5_c00232{left:11.117550px;}
.x3_c00232{left:101.115450px;}
.x2_c00232{left:109.800000px;}
.x4_c00232{left:438.840000px;}
.x6_c00232{left:919.080000px;}
.x7_c00232{left:929.957550px;}
.x8_c00232{left:984.520050px;}
.x1_c00232{left:1311.675000px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.lsf_c00232{letter-spacing:-6.028800pt;}
.ls12_c00232{letter-spacing:-4.540800pt;}
.ls9_c00232{letter-spacing:-1.977600pt;}
.ls10_c00232{letter-spacing:-1.804800pt;}
.lsb_c00232{letter-spacing:-1.468800pt;}
.lsa_c00232{letter-spacing:-0.739200pt;}
.ls5_c00232{letter-spacing:-0.281600pt;}
.lse_c00232{letter-spacing:-0.249600pt;}
.ls11_c00232{letter-spacing:-0.192000pt;}
.ls7_c00232{letter-spacing:-0.086400pt;}
.lsd_c00232{letter-spacing:-0.067200pt;}
.ls6_c00232{letter-spacing:0.000000pt;}
.ls2_c00232{letter-spacing:0.019200pt;}
.ls13_c00232{letter-spacing:0.057600pt;}
.lsc_c00232{letter-spacing:0.076800pt;}
.ls0_c00232{letter-spacing:0.163200pt;}
.ls4_c00232{letter-spacing:0.217600pt;}
.ls8_c00232{letter-spacing:0.268800pt;}
.ls1_c00232{letter-spacing:0.297600pt;}
.ls3_c00232{letter-spacing:21.984000pt;}
.ws0_c00232{word-spacing:-234.385067pt;}
.ws5_c00232{word-spacing:-21.993600pt;}
.ws2_c00232{word-spacing:-21.628800pt;}
.ws1_c00232{word-spacing:-20.956800pt;}
.ws4_c00232{word-spacing:-19.891200pt;}
.ws6_c00232{word-spacing:-15.667200pt;}
.ws7_c00232{word-spacing:0.000000pt;}
.ws3_c00232{word-spacing:21.504000pt;}
._a_c00232{margin-left:-3.456000pt;}
._4_c00232{margin-left:-2.124800pt;}
._1_c00232{margin-left:-1.100800pt;}
._0_c00232{width:0.938667pt;}
._2_c00232{width:2.016000pt;}
._3_c00232{width:3.189333pt;}
._9_c00232{width:4.128000pt;}
._6_c00232{width:5.184000pt;}
._5_c00232{width:6.336000pt;}
._7_c00232{width:23.808000pt;}
._8_c00232{width:25.344000pt;}
.fs0_c00232{font-size:64.000000pt;}
.fs3_c00232{font-size:96.000000pt;}
.fs2_c00232{font-size:128.000000pt;}
.fs1_c00232{font-size:234.666667pt;}
.y0_c00232{bottom:0.000000pt;}
.y1_c00232{bottom:28.480000pt;}
.y19_c00232{bottom:81.600000pt;}
.ye_c00232{bottom:92.480000pt;}
.y11_c00232{bottom:92.800000pt;}
.y18_c00232{bottom:120.640000pt;}
.y16_c00232{bottom:159.360000pt;}
.y15_c00232{bottom:198.400000pt;}
.yc_c00232{bottom:227.216000pt;}
.y14_c00232{bottom:237.440000pt;}
.y17_c00232{bottom:252.160000pt;}
.yb_c00232{bottom:255.368000pt;}
.y13_c00232{bottom:276.160000pt;}
.ya_c00232{bottom:284.480000pt;}
.y9_c00232{bottom:313.928000pt;}
.y10_c00232{bottom:315.200000pt;}
.yf_c00232{bottom:354.240000pt;}
.y8_c00232{bottom:371.216000pt;}
.yd_c00232{bottom:392.640000pt;}
.y7_c00232{bottom:399.368000pt;}
.y12_c00232{bottom:408.000000pt;}
.y6_c00232{bottom:428.480000pt;}
.y5_c00232{bottom:457.928000pt;}
.y4_c00232{bottom:486.080000pt;}
.y3_c00232{bottom:532.480000pt;}
.y2_c00232{bottom:595.840000pt;}
.h1_c00232{height:45.937500pt;}
.h4_c00232{height:68.906250pt;}
.h3_c00232{height:91.875000pt;}
.h2_c00232{height:167.406250pt;}
.h5_c00232{height:201.920000pt;}
.h0_c00232{height:720.000000pt;}
.w2_c00232{width:426.880000pt;}
.w1_c00232{width:427.200000pt;}
.w0_c00232{width:1280.000000pt;}
.x0_c00232{left:0.000000pt;}
.x5_c00232{left:9.882267pt;}
.x3_c00232{left:89.880400pt;}
.x2_c00232{left:97.600000pt;}
.x4_c00232{left:390.080000pt;}
.x6_c00232{left:816.960000pt;}
.x7_c00232{left:826.628933pt;}
.x8_c00232{left:875.128933pt;}
.x1_c00232{left:1165.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_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_97b7cd0fe30b8f9a51c942d1.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:0.945312;font-style:normal;font-weight:normal;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_43a7c5334c15291a5d86ada3.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00233;src:url('chunks/assets/font_96f823db9653e6c509bb8e1f.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00233{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1_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);}
.m0_c00233{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.v1_c00233{vertical-align:27.394800px;}
.ls3_c00233{letter-spacing:-5.359200px;}
.ls1_c00233{letter-spacing:0.000000px;}
.ls2_c00233{letter-spacing:0.244800px;}
.ls0_c00233{letter-spacing:2.643348px;}
.sc__c00233{text-shadow:none;}
.sc0_c00233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00233{-webkit-text-stroke:0px transparent;}
.sc0_c00233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00233{word-spacing:-258.640800px;}
.ws1_c00233{word-spacing:0.000000px;}
._3_c00233{margin-left:-2.940000px;}
._2_c00233{margin-left:-1.572000px;}
._0_c00233{width:1.313880px;}
._1_c00233{width:5.544000px;}
.fc2_c00233{color:rgb(137,137,137);}
.fc1_c00233{color:rgb(0,0,0);}
.fc0_c00233{color:rgb(38,38,38);}
.fs1_c00233{font-size:41.092800px;}
.fs4_c00233{font-size:44.517000px;}
.fs0_c00233{font-size:54.790200px;}
.fs3_c00233{font-size:58.215000px;}
.fs2_c00233{font-size:61.639200px;}
.fs5_c00233{font-size:68.488200px;}
.fs6_c00233{font-size:72.000000px;}
.fs8_c00233{font-size:120.000000px;}
.fs7_c00233{font-size:264.000000px;}
.y0_c00233{bottom:0.000000px;}
.y15_c00233{bottom:32.040000px;}
.y4_c00233{bottom:34.501200px;}
.y2_c00233{bottom:50.510250px;}
.y3_c00233{bottom:57.359100px;}
.y5_c00233{bottom:66.348150px;}
.y6_c00233{bottom:118.316655px;}
.y7_c00233{bottom:170.285159px;}
.y1_c00233{bottom:172.204500px;}
.y8_c00233{bottom:222.253664px;}
.y10_c00233{bottom:232.859700px;}
.y9_c00233{bottom:274.222169px;}
.ya_c00233{bottom:326.190673px;}
.y1c_c00233{bottom:358.920000px;}
.yb_c00233{bottom:378.159178px;}
.y1b_c00233{bottom:394.920000px;}
.yc_c00233{bottom:430.127683px;}
.y1a_c00233{bottom:430.920000px;}
.yd_c00233{bottom:482.096188px;}
.y19_c00233{bottom:502.920000px;}
.y14_c00233{bottom:512.162700px;}
.y13_c00233{bottom:530.140800px;}
.ye_c00233{bottom:534.064692px;}
.y18_c00233{bottom:538.920000px;}
.y12_c00233{bottom:548.118900px;}
.y11_c00233{bottom:566.097150px;}
.y17_c00233{bottom:574.920000px;}
.yf_c00233{bottom:586.033197px;}
.y16_c00233{bottom:670.320000px;}
.h3_c00233{height:30.277849px;}
.h2_c00233{height:40.370318px;}
.h4_c00233{height:45.416774px;}
.h6_c00233{height:50.463229px;}
.h7_c00233{height:51.679688px;}
.h5_c00233{height:60.195656px;}
.h9_c00233{height:86.132812px;}
.h8_c00233{height:188.332031px;}
.h1_c00233{height:637.795500px;}
.h0_c00233{height:810.000000px;}
.w1_c00233{width:1108.651500px;}
.w0_c00233{width:1440.000000px;}
.x0_c00233{left:0.000000px;}
.x12_c00233{left:53.394900px;}
.xf_c00233{left:110.436900px;}
.xe_c00233{left:116.700085px;}
.xd_c00233{left:124.398193px;}
.x2_c00233{left:131.839500px;}
.x3_c00233{left:147.249300px;}
.x10_c00233{left:186.201900px;}
.x1_c00233{left:331.348500px;}
.x4_c00233{left:345.864900px;}
.x5_c00233{left:361.274700px;}
.xc_c00233{left:519.867900px;}
.x6_c00233{left:560.746350px;}
.x7_c00233{left:576.156300px;}
.x8_c00233{left:775.627950px;}
.x9_c00233{left:791.037750px;}
.xa_c00233{left:990.509400px;}
.xb_c00233{left:1005.919200px;}
.x11_c00233{left:1311.675000px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.v1_c00233{vertical-align:24.350933pt;}
.ls3_c00233{letter-spacing:-4.763733pt;}
.ls1_c00233{letter-spacing:0.000000pt;}
.ls2_c00233{letter-spacing:0.217600pt;}
.ls0_c00233{letter-spacing:2.349643pt;}
.ws0_c00233{word-spacing:-229.902933pt;}
.ws1_c00233{word-spacing:0.000000pt;}
._3_c00233{margin-left:-2.613333pt;}
._2_c00233{margin-left:-1.397333pt;}
._0_c00233{width:1.167893pt;}
._1_c00233{width:4.928000pt;}
.fs1_c00233{font-size:36.526933pt;}
.fs4_c00233{font-size:39.570667pt;}
.fs0_c00233{font-size:48.702400pt;}
.fs3_c00233{font-size:51.746667pt;}
.fs2_c00233{font-size:54.790400pt;}
.fs5_c00233{font-size:60.878400pt;}
.fs6_c00233{font-size:64.000000pt;}
.fs8_c00233{font-size:106.666667pt;}
.fs7_c00233{font-size:234.666667pt;}
.y0_c00233{bottom:0.000000pt;}
.y15_c00233{bottom:28.480000pt;}
.y4_c00233{bottom:30.667733pt;}
.y2_c00233{bottom:44.898000pt;}
.y3_c00233{bottom:50.985867pt;}
.y5_c00233{bottom:58.976133pt;}
.y6_c00233{bottom:105.170360pt;}
.y7_c00233{bottom:151.364586pt;}
.y1_c00233{bottom:153.070667pt;}
.y8_c00233{bottom:197.558813pt;}
.y10_c00233{bottom:206.986400pt;}
.y9_c00233{bottom:243.753039pt;}
.ya_c00233{bottom:289.947265pt;}
.y1c_c00233{bottom:319.040000pt;}
.yb_c00233{bottom:336.141492pt;}
.y1b_c00233{bottom:351.040000pt;}
.yc_c00233{bottom:382.335718pt;}
.y1a_c00233{bottom:383.040000pt;}
.yd_c00233{bottom:428.529945pt;}
.y19_c00233{bottom:447.040000pt;}
.y14_c00233{bottom:455.255733pt;}
.y13_c00233{bottom:471.236267pt;}
.ye_c00233{bottom:474.724171pt;}
.y18_c00233{bottom:479.040000pt;}
.y12_c00233{bottom:487.216800pt;}
.y11_c00233{bottom:503.197467pt;}
.y17_c00233{bottom:511.040000pt;}
.yf_c00233{bottom:520.918397pt;}
.y16_c00233{bottom:595.840000pt;}
.h3_c00233{height:26.913644pt;}
.h2_c00233{height:35.884727pt;}
.h4_c00233{height:40.370466pt;}
.h6_c00233{height:44.856204pt;}
.h7_c00233{height:45.937500pt;}
.h5_c00233{height:53.507250pt;}
.h9_c00233{height:76.562500pt;}
.h8_c00233{height:167.406250pt;}
.h1_c00233{height:566.929333pt;}
.h0_c00233{height:720.000000pt;}
.w1_c00233{width:985.468000pt;}
.w0_c00233{width:1280.000000pt;}
.x0_c00233{left:0.000000pt;}
.x12_c00233{left:47.462133pt;}
.xf_c00233{left:98.166133pt;}
.xe_c00233{left:103.733409pt;}
.xd_c00233{left:110.576171pt;}
.x2_c00233{left:117.190667pt;}
.x3_c00233{left:130.888267pt;}
.x10_c00233{left:165.512800pt;}
.x1_c00233{left:294.532000pt;}
.x4_c00233{left:307.435467pt;}
.x5_c00233{left:321.133067pt;}
.xc_c00233{left:462.104800pt;}
.x6_c00233{left:498.441200pt;}
.x7_c00233{left:512.138933pt;}
.x8_c00233{left:689.447067pt;}
.x9_c00233{left:703.144667pt;}
.xa_c00233{left:880.452800pt;}
.xb_c00233{left:894.150400pt;}
.x11_c00233{left:1165.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_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_99de8163012d2f256aa0d38a.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00234;src:url('chunks/assets/font_96f823db9653e6c509bb8e1f.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00234;src:url('chunks/assets/font_187d54fbd0247ea8abc76ab1.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;line-height:0.945312;font-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_c00234{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_c00234{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00234{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.v1_c00234{vertical-align:27.394800px;}
.ls2_c00234{letter-spacing:-5.359200px;}
.ls5_c00234{letter-spacing:-1.598400px;}
.ls6_c00234{letter-spacing:-1.425600px;}
.lsb_c00234{letter-spacing:-0.280800px;}
.ls4_c00234{letter-spacing:-0.205200px;}
.lsc_c00234{letter-spacing:-0.183600px;}
.ls7_c00234{letter-spacing:-0.097200px;}
.ls3_c00234{letter-spacing:0.000000px;}
.ls8_c00234{letter-spacing:0.086400px;}
.lsa_c00234{letter-spacing:0.183600px;}
.ls1_c00234{letter-spacing:0.244800px;}
.ls9_c00234{letter-spacing:0.302400px;}
.ls0_c00234{letter-spacing:2.643348px;}
.sc__c00234{text-shadow:none;}
.sc0_c00234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00234{-webkit-text-stroke:0px transparent;}
.sc0_c00234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00234{word-spacing:-258.640800px;}
.ws1_c00234{word-spacing:-24.710400px;}
.ws2_c00234{word-spacing:0.000000px;}
._4_c00234{margin-left:-3.024000px;}
._2_c00234{margin-left:-1.421880px;}
._1_c00234{width:1.313880px;}
._3_c00234{width:2.556240px;}
._0_c00234{width:5.544000px;}
.fc3_c00234{color:rgb(255,0,0);}
.fc2_c00234{color:rgb(38,38,38);}
.fc1_c00234{color:rgb(0,0,0);}
.fc0_c00234{color:rgb(137,137,137);}
.fs3_c00234{font-size:41.092800px;}
.fs6_c00234{font-size:44.517000px;}
.fs2_c00234{font-size:54.790200px;}
.fs5_c00234{font-size:58.215000px;}
.fs4_c00234{font-size:61.639200px;}
.fs7_c00234{font-size:68.488200px;}
.fs0_c00234{font-size:72.000000px;}
.fs8_c00234{font-size:108.000000px;}
.fs1_c00234{font-size:264.000000px;}
.y0_c00234{bottom:0.000000px;}
.y1_c00234{bottom:32.040000px;}
.y6_c00234{bottom:34.501500px;}
.y4_c00234{bottom:50.510550px;}
.y5_c00234{bottom:57.359400px;}
.y7_c00234{bottom:66.348450px;}
.y8_c00234{bottom:118.316955px;}
.y3_c00234{bottom:127.558500px;}
.y9_c00234{bottom:170.285459px;}
.y22_c00234{bottom:200.592000px;}
.ya_c00234{bottom:222.253964px;}
.y12_c00234{bottom:232.860000px;}
.y21_c00234{bottom:233.343000px;}
.y20_c00234{bottom:265.014000px;}
.yb_c00234{bottom:274.222469px;}
.y1f_c00234{bottom:297.765000px;}
.yc_c00234{bottom:326.190973px;}
.y1e_c00234{bottom:329.436000px;}
.y1d_c00234{bottom:362.565000px;}
.yd_c00234{bottom:378.159478px;}
.y1c_c00234{bottom:395.316000px;}
.y1b_c00234{bottom:426.987000px;}
.ye_c00234{bottom:430.127983px;}
.y1a_c00234{bottom:459.738000px;}
.yf_c00234{bottom:482.096488px;}
.y19_c00234{bottom:491.409000px;}
.y18_c00234{bottom:524.538000px;}
.y15_c00234{bottom:530.141100px;}
.y10_c00234{bottom:534.064992px;}
.y14_c00234{bottom:548.119200px;}
.y17_c00234{bottom:557.289000px;}
.y13_c00234{bottom:566.097300px;}
.y11_c00234{bottom:586.033497px;}
.y16_c00234{bottom:588.960000px;}
.y2_c00234{bottom:670.320000px;}
.h5_c00234{height:30.277849px;}
.h4_c00234{height:40.370318px;}
.h6_c00234{height:45.416774px;}
.h8_c00234{height:50.463229px;}
.h1_c00234{height:51.679688px;}
.h7_c00234{height:60.195656px;}
.h9_c00234{height:77.519531px;}
.h2_c00234{height:188.332031px;}
.h3_c00234{height:637.795500px;}
.h0_c00234{height:810.000000px;}
.w1_c00234{width:1108.651500px;}
.w0_c00234{width:1440.000000px;}
.x0_c00234{left:0.000000px;}
.x12_c00234{left:56.341200px;}
.x2_c00234{left:109.800000px;}
.x10_c00234{left:116.700085px;}
.xf_c00234{left:124.398193px;}
.x4_c00234{left:131.839500px;}
.x5_c00234{left:147.249300px;}
.x11_c00234{left:186.201900px;}
.x3_c00234{left:331.348500px;}
.x6_c00234{left:345.864900px;}
.x7_c00234{left:361.274700px;}
.xe_c00234{left:519.867900px;}
.x8_c00234{left:560.746350px;}
.x9_c00234{left:576.156300px;}
.xa_c00234{left:775.627950px;}
.xb_c00234{left:791.037750px;}
.xc_c00234{left:990.509400px;}
.xd_c00234{left:1005.919200px;}
.x1_c00234{left:1311.675000px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.v1_c00234{vertical-align:24.350933pt;}
.ls2_c00234{letter-spacing:-4.763733pt;}
.ls5_c00234{letter-spacing:-1.420800pt;}
.ls6_c00234{letter-spacing:-1.267200pt;}
.lsb_c00234{letter-spacing:-0.249600pt;}
.ls4_c00234{letter-spacing:-0.182400pt;}
.lsc_c00234{letter-spacing:-0.163200pt;}
.ls7_c00234{letter-spacing:-0.086400pt;}
.ls3_c00234{letter-spacing:0.000000pt;}
.ls8_c00234{letter-spacing:0.076800pt;}
.lsa_c00234{letter-spacing:0.163200pt;}
.ls1_c00234{letter-spacing:0.217600pt;}
.ls9_c00234{letter-spacing:0.268800pt;}
.ls0_c00234{letter-spacing:2.349643pt;}
.ws0_c00234{word-spacing:-229.902933pt;}
.ws1_c00234{word-spacing:-21.964800pt;}
.ws2_c00234{word-spacing:0.000000pt;}
._4_c00234{margin-left:-2.688000pt;}
._2_c00234{margin-left:-1.263893pt;}
._1_c00234{width:1.167893pt;}
._3_c00234{width:2.272213pt;}
._0_c00234{width:4.928000pt;}
.fs3_c00234{font-size:36.526933pt;}
.fs6_c00234{font-size:39.570667pt;}
.fs2_c00234{font-size:48.702400pt;}
.fs5_c00234{font-size:51.746667pt;}
.fs4_c00234{font-size:54.790400pt;}
.fs7_c00234{font-size:60.878400pt;}
.fs0_c00234{font-size:64.000000pt;}
.fs8_c00234{font-size:96.000000pt;}
.fs1_c00234{font-size:234.666667pt;}
.y0_c00234{bottom:0.000000pt;}
.y1_c00234{bottom:28.480000pt;}
.y6_c00234{bottom:30.668000pt;}
.y4_c00234{bottom:44.898267pt;}
.y5_c00234{bottom:50.986133pt;}
.y7_c00234{bottom:58.976400pt;}
.y8_c00234{bottom:105.170626pt;}
.y3_c00234{bottom:113.385333pt;}
.y9_c00234{bottom:151.364853pt;}
.y22_c00234{bottom:178.304000pt;}
.ya_c00234{bottom:197.559079pt;}
.y12_c00234{bottom:206.986667pt;}
.y21_c00234{bottom:207.416000pt;}
.y20_c00234{bottom:235.568000pt;}
.yb_c00234{bottom:243.753306pt;}
.y1f_c00234{bottom:264.680000pt;}
.yc_c00234{bottom:289.947532pt;}
.y1e_c00234{bottom:292.832000pt;}
.y1d_c00234{bottom:322.280000pt;}
.yd_c00234{bottom:336.141758pt;}
.y1c_c00234{bottom:351.392000pt;}
.y1b_c00234{bottom:379.544000pt;}
.ye_c00234{bottom:382.335985pt;}
.y1a_c00234{bottom:408.656000pt;}
.yf_c00234{bottom:428.530211pt;}
.y19_c00234{bottom:436.808000pt;}
.y18_c00234{bottom:466.256000pt;}
.y15_c00234{bottom:471.236533pt;}
.y10_c00234{bottom:474.724438pt;}
.y14_c00234{bottom:487.217067pt;}
.y17_c00234{bottom:495.368000pt;}
.y13_c00234{bottom:503.197600pt;}
.y11_c00234{bottom:520.918664pt;}
.y16_c00234{bottom:523.520000pt;}
.y2_c00234{bottom:595.840000pt;}
.h5_c00234{height:26.913644pt;}
.h4_c00234{height:35.884727pt;}
.h6_c00234{height:40.370466pt;}
.h8_c00234{height:44.856204pt;}
.h1_c00234{height:45.937500pt;}
.h7_c00234{height:53.507250pt;}
.h9_c00234{height:68.906250pt;}
.h2_c00234{height:167.406250pt;}
.h3_c00234{height:566.929333pt;}
.h0_c00234{height:720.000000pt;}
.w1_c00234{width:985.468000pt;}
.w0_c00234{width:1280.000000pt;}
.x0_c00234{left:0.000000pt;}
.x12_c00234{left:50.081067pt;}
.x2_c00234{left:97.600000pt;}
.x10_c00234{left:103.733409pt;}
.xf_c00234{left:110.576171pt;}
.x4_c00234{left:117.190667pt;}
.x5_c00234{left:130.888267pt;}
.x11_c00234{left:165.512800pt;}
.x3_c00234{left:294.532000pt;}
.x6_c00234{left:307.435467pt;}
.x7_c00234{left:321.133067pt;}
.xe_c00234{left:462.104800pt;}
.x8_c00234{left:498.441200pt;}
.x9_c00234{left:512.138933pt;}
.xa_c00234{left:689.447067pt;}
.xb_c00234{left:703.144667pt;}
.xc_c00234{left:880.452800pt;}
.xd_c00234{left:894.150400pt;}
.x1_c00234{left:1165.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_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_8287f68719fbc497b8526cf3.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00235;src:url('chunks/assets/font_6cf3bc3c40a62e641353c109.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00235;src:url('chunks/assets/font_75a2d22ccbb36d15d889737e.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:0.674000;font-style:normal;font-weight:normal;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_d4488076e19d1ae54537679a.woff2')format("woff");}.ff4_c00235{font-family:ff4_c00235;line-height:0.676000;font-style: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);}
.v1_c00235{vertical-align:-24.480000px;}
.v0_c00235{vertical-align:0.000000px;}
.v2_c00235{vertical-align:24.480000px;}
.ls3_c00235{letter-spacing:-0.240000px;}
.ls4_c00235{letter-spacing:0.000000px;}
.ls5_c00235{letter-spacing:0.096000px;}
.ls2_c00235{letter-spacing:0.244800px;}
.ls1_c00235{letter-spacing:2.160000px;}
.ls0_c00235{letter-spacing:25.140000px;}
.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;}
}
.ws1_c00235{word-spacing:-0.120000px;}
.ws2_c00235{word-spacing:0.000000px;}
.ws0_c00235{word-spacing:0.036000px;}
.ws3_c00235{word-spacing:0.528000px;}
.ws4_c00235{word-spacing:0.792000px;}
._3_c00235{margin-left:-2.988000px;}
._0_c00235{margin-left:-1.116000px;}
._1_c00235{width:1.116000px;}
._2_c00235{width:98.280000px;}
.fc1_c00235{color:rgb(0,0,0);}
.fc0_c00235{color:rgb(137,137,137);}
.fs0_c00235{font-size:72.000000px;}
.fs3_c00235{font-size:90.000000px;}
.fs2_c00235{font-size:120.000000px;}
.fs1_c00235{font-size:264.000000px;}
.y0_c00235{bottom:0.000000px;}
.y1_c00235{bottom:32.040000px;}
.y10_c00235{bottom:195.120000px;}
.yf_c00235{bottom:231.120000px;}
.ye_c00235{bottom:267.120000px;}
.yd_c00235{bottom:303.120000px;}
.yc_c00235{bottom:339.120000px;}
.yb_c00235{bottom:375.120000px;}
.ya_c00235{bottom:411.120000px;}
.y9_c00235{bottom:447.120000px;}
.y8_c00235{bottom:483.120000px;}
.y7_c00235{bottom:519.120000px;}
.y6_c00235{bottom:555.120000px;}
.y5_c00235{bottom:591.120000px;}
.y4_c00235{bottom:627.120000px;}
.y3_c00235{bottom:663.120000px;}
.y2_c00235{bottom:719.640000px;}
.h1_c00235{height:51.679688px;}
.h3_c00235{height:86.132812px;}
.h2_c00235{height:188.332031px;}
.h0_c00235{height:810.000000px;}
.w0_c00235{width:1440.000000px;}
.x0_c00235{left:0.000000px;}
.x3_c00235{left:66.662100px;}
.x4_c00235{left:100.412100px;}
.x2_c00235{left:273.562500px;}
.x1_c00235{left:1311.675000px;}
@media print{
.v1_c00235{vertical-align:-21.760000pt;}
.v0_c00235{vertical-align:0.000000pt;}
.v2_c00235{vertical-align:21.760000pt;}
.ls3_c00235{letter-spacing:-0.213333pt;}
.ls4_c00235{letter-spacing:0.000000pt;}
.ls5_c00235{letter-spacing:0.085333pt;}
.ls2_c00235{letter-spacing:0.217600pt;}
.ls1_c00235{letter-spacing:1.920000pt;}
.ls0_c00235{letter-spacing:22.346667pt;}
.ws1_c00235{word-spacing:-0.106667pt;}
.ws2_c00235{word-spacing:0.000000pt;}
.ws0_c00235{word-spacing:0.032000pt;}
.ws3_c00235{word-spacing:0.469333pt;}
.ws4_c00235{word-spacing:0.704000pt;}
._3_c00235{margin-left:-2.656000pt;}
._0_c00235{margin-left:-0.992000pt;}
._1_c00235{width:0.992000pt;}
._2_c00235{width:87.360000pt;}
.fs0_c00235{font-size:64.000000pt;}
.fs3_c00235{font-size:80.000000pt;}
.fs2_c00235{font-size:106.666667pt;}
.fs1_c00235{font-size:234.666667pt;}
.y0_c00235{bottom:0.000000pt;}
.y1_c00235{bottom:28.480000pt;}
.y10_c00235{bottom:173.440000pt;}
.yf_c00235{bottom:205.440000pt;}
.ye_c00235{bottom:237.440000pt;}
.yd_c00235{bottom:269.440000pt;}
.yc_c00235{bottom:301.440000pt;}
.yb_c00235{bottom:333.440000pt;}
.ya_c00235{bottom:365.440000pt;}
.y9_c00235{bottom:397.440000pt;}
.y8_c00235{bottom:429.440000pt;}
.y7_c00235{bottom:461.440000pt;}
.y6_c00235{bottom:493.440000pt;}
.y5_c00235{bottom:525.440000pt;}
.y4_c00235{bottom:557.440000pt;}
.y3_c00235{bottom:589.440000pt;}
.y2_c00235{bottom:639.680000pt;}
.h1_c00235{height:45.937500pt;}
.h3_c00235{height:76.562500pt;}
.h2_c00235{height:167.406250pt;}
.h0_c00235{height:720.000000pt;}
.w0_c00235{width:1280.000000pt;}
.x0_c00235{left:0.000000pt;}
.x3_c00235{left:59.255200pt;}
.x4_c00235{left:89.255200pt;}
.x2_c00235{left:243.166667pt;}
.x1_c00235{left:1165.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_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_b02213a2f08d470838dad0a2.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00236;src:url('chunks/assets/font_9910f2f7dcd364e72c1e8545.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00236;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00236;src:url('chunks/assets/font_a37612122407e111e78c9804.woff2')format("woff");}.ff4_c00236{font-family:ff4_c00236;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00236{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00236{vertical-align:-15.600000px;}
.v0_c00236{vertical-align:0.000000px;}
.v3_c00236{vertical-align:15.600000px;}
.v1_c00236{vertical-align:21.600000px;}
.ls21_c00236{letter-spacing:-1.080000px;}
.ls2b_c00236{letter-spacing:-0.540000px;}
.ls27_c00236{letter-spacing:-0.528000px;}
.ls17_c00236{letter-spacing:-0.480000px;}
.ls25_c00236{letter-spacing:-0.432000px;}
.ls29_c00236{letter-spacing:-0.420000px;}
.ls26_c00236{letter-spacing:-0.384000px;}
.ls16_c00236{letter-spacing:-0.336000px;}
.ls28_c00236{letter-spacing:-0.300000px;}
.ls12_c00236{letter-spacing:-0.216000px;}
.ls15_c00236{letter-spacing:-0.192000px;}
.ls2a_c00236{letter-spacing:-0.180000px;}
.ls1c_c00236{letter-spacing:-0.144000px;}
.ls1a_c00236{letter-spacing:-0.096000px;}
.ls13_c00236{letter-spacing:0.000000px;}
.ls19_c00236{letter-spacing:0.048000px;}
.lse_c00236{letter-spacing:0.060000px;}
.ls14_c00236{letter-spacing:0.096000px;}
.lsb_c00236{letter-spacing:0.120000px;}
.ls18_c00236{letter-spacing:0.144000px;}
.ls1e_c00236{letter-spacing:0.288000px;}
.ls1f_c00236{letter-spacing:0.300000px;}
.ls22_c00236{letter-spacing:0.316800px;}
.ls24_c00236{letter-spacing:0.336000px;}
.ls3_c00236{letter-spacing:0.360000px;}
.ls23_c00236{letter-spacing:0.390000px;}
.ls6_c00236{letter-spacing:0.432000px;}
.ls4_c00236{letter-spacing:0.480000px;}
.ls1b_c00236{letter-spacing:0.528000px;}
.ls2d_c00236{letter-spacing:0.540000px;}
.ls1d_c00236{letter-spacing:0.624000px;}
.ls20_c00236{letter-spacing:0.660000px;}
.ls10_c00236{letter-spacing:0.822000px;}
.ls11_c00236{letter-spacing:0.828000px;}
.ls7_c00236{letter-spacing:0.840000px;}
.ls2_c00236{letter-spacing:1.008000px;}
.ls2c_c00236{letter-spacing:1.020000px;}
.ls5_c00236{letter-spacing:1.152000px;}
.lsa_c00236{letter-spacing:1.320000px;}
.ls1_c00236{letter-spacing:2.352000px;}
.lsd_c00236{letter-spacing:3.240000px;}
.ls9_c00236{letter-spacing:4.440000px;}
.lsf_c00236{letter-spacing:6.840000px;}
.ls8_c00236{letter-spacing:9.240000px;}
.lsc_c00236{letter-spacing:10.440000px;}
.ls0_c00236{letter-spacing:91.152000px;}
.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;}
}
.ws7_c00236{word-spacing:-27.240000px;}
.ws8_c00236{word-spacing:-27.120000px;}
.ws9_c00236{word-spacing:-26.640000px;}
.ws0_c00236{word-spacing:-16.056000px;}
.ws12_c00236{word-spacing:-15.840000px;}
.ws19_c00236{word-spacing:-14.100000px;}
.wsa_c00236{word-spacing:-13.860000px;}
.ws16_c00236{word-spacing:-13.680000px;}
.ws15_c00236{word-spacing:-13.620000px;}
.ws6_c00236{word-spacing:-13.560000px;}
.ws17_c00236{word-spacing:-13.380000px;}
.ws13_c00236{word-spacing:-13.260000px;}
.ws14_c00236{word-spacing:-13.140000px;}
.ws18_c00236{word-spacing:-13.020000px;}
.wsb_c00236{word-spacing:-12.480000px;}
.wsf_c00236{word-spacing:-11.136000px;}
.ws1_c00236{word-spacing:-10.944000px;}
.ws2_c00236{word-spacing:-10.848000px;}
.wsd_c00236{word-spacing:-10.752000px;}
.ws10_c00236{word-spacing:-10.704000px;}
.ws4_c00236{word-spacing:-10.656000px;}
.ws5_c00236{word-spacing:-10.512000px;}
.wse_c00236{word-spacing:-10.464000px;}
.ws3_c00236{word-spacing:-10.368000px;}
.ws11_c00236{word-spacing:-10.320000px;}
.wsc_c00236{word-spacing:-9.266400px;}
.ws28_c00236{word-spacing:-1.104000px;}
.ws49_c00236{word-spacing:-1.020000px;}
.ws30_c00236{word-spacing:-0.660000px;}
.ws27_c00236{word-spacing:-0.576000px;}
.ws4c_c00236{word-spacing:-0.480000px;}
.ws3c_c00236{word-spacing:-0.420000px;}
.ws31_c00236{word-spacing:-0.390000px;}
.ws2f_c00236{word-spacing:-0.360000px;}
.ws33_c00236{word-spacing:-0.336000px;}
.ws2d_c00236{word-spacing:-0.288000px;}
.ws1e_c00236{word-spacing:-0.144000px;}
.ws3b_c00236{word-spacing:-0.120000px;}
.ws41_c00236{word-spacing:-0.060000px;}
.ws1f_c00236{word-spacing:-0.048000px;}
.ws1b_c00236{word-spacing:0.000000px;}
.ws4e_c00236{word-spacing:0.060000px;}
.ws25_c00236{word-spacing:0.096000px;}
.ws2e_c00236{word-spacing:0.120000px;}
.ws1c_c00236{word-spacing:0.144000px;}
.ws39_c00236{word-spacing:0.180000px;}
.ws32_c00236{word-spacing:0.192000px;}
.ws1d_c00236{word-spacing:0.288000px;}
.ws37_c00236{word-spacing:0.300000px;}
.ws22_c00236{word-spacing:0.336000px;}
.ws3d_c00236{word-spacing:0.420000px;}
.ws4d_c00236{word-spacing:0.480000px;}
.ws42_c00236{word-spacing:0.540000px;}
.ws1a_c00236{word-spacing:0.720000px;}
.ws51_c00236{word-spacing:0.780000px;}
.ws36_c00236{word-spacing:1.140000px;}
.ws35_c00236{word-spacing:1.260000px;}
.ws34_c00236{word-spacing:1.584000px;}
.ws26_c00236{word-spacing:1.824000px;}
.ws20_c00236{word-spacing:2.208000px;}
.ws23_c00236{word-spacing:2.544000px;}
.ws21_c00236{word-spacing:2.688000px;}
.ws4f_c00236{word-spacing:3.180000px;}
.ws50_c00236{word-spacing:3.540000px;}
.ws24_c00236{word-spacing:3.744000px;}
.ws54_c00236{word-spacing:4.380000px;}
.ws3f_c00236{word-spacing:4.740000px;}
.ws3e_c00236{word-spacing:4.860000px;}
.ws53_c00236{word-spacing:4.920000px;}
.ws44_c00236{word-spacing:4.980000px;}
.ws29_c00236{word-spacing:5.328000px;}
.ws2b_c00236{word-spacing:5.424000px;}
.ws43_c00236{word-spacing:5.520000px;}
.ws45_c00236{word-spacing:5.940000px;}
.ws2a_c00236{word-spacing:5.952000px;}
.ws2c_c00236{word-spacing:6.048000px;}
.ws40_c00236{word-spacing:6.060000px;}
.ws52_c00236{word-spacing:7.140000px;}
.ws47_c00236{word-spacing:7.920000px;}
.ws48_c00236{word-spacing:8.220000px;}
.ws46_c00236{word-spacing:8.340000px;}
.ws3a_c00236{word-spacing:9.540000px;}
.ws38_c00236{word-spacing:9.660000px;}
.ws4b_c00236{word-spacing:10.380000px;}
.ws4a_c00236{word-spacing:10.740000px;}
._6_c00236{margin-left:-2.256000px;}
._1_c00236{margin-left:-1.152000px;}
._0_c00236{width:1.036800px;}
._2_c00236{width:2.121600px;}
._b_c00236{width:3.804000px;}
._7_c00236{width:5.376000px;}
._9_c00236{width:7.557600px;}
._8_c00236{width:9.235200px;}
._a_c00236{width:10.740000px;}
._3_c00236{width:92.592000px;}
._5_c00236{width:135.264000px;}
._4_c00236{width:158.352000px;}
.fc2_c00236{color:transparent;}
.fc1_c00236{color:rgb(0,0,0);}
.fc0_c00236{color:rgb(0,0,255);}
.fs6_c00236{font-size:30.000000px;}
.fs5_c00236{font-size:39.600000px;}
.fs1_c00236{font-size:48.000000px;}
.fs2_c00236{font-size:54.000000px;}
.fs3_c00236{font-size:60.000000px;}
.fs0_c00236{font-size:72.000000px;}
.fs4_c00236{font-size:120.000000px;}
.y0_c00236{bottom:0.000000px;}
.y2_c00236{bottom:15.300000px;}
.y10_c00236{bottom:67.800000px;}
.yf_c00236{bottom:85.500000px;}
.ye_c00236{bottom:100.200000px;}
.yd_c00236{bottom:114.900000px;}
.yc_c00236{bottom:129.600000px;}
.yb_c00236{bottom:144.000000px;}
.ya_c00236{bottom:159.000000px;}
.y9_c00236{bottom:177.000000px;}
.y36_c00236{bottom:196.800000px;}
.y35_c00236{bottom:218.700000px;}
.y34_c00236{bottom:240.600000px;}
.y33_c00236{bottom:262.800000px;}
.y32_c00236{bottom:284.700000px;}
.y31_c00236{bottom:306.600000px;}
.y30_c00236{bottom:328.500000px;}
.y2f_c00236{bottom:350.700000px;}
.y2e_c00236{bottom:372.600000px;}
.y2d_c00236{bottom:394.500000px;}
.y2c_c00236{bottom:416.400000px;}
.y2b_c00236{bottom:438.600000px;}
.y2a_c00236{bottom:460.500000px;}
.y29_c00236{bottom:482.400000px;}
.y28_c00236{bottom:504.300000px;}
.y27_c00236{bottom:526.500000px;}
.y26_c00236{bottom:548.400000px;}
.y25_c00236{bottom:570.300000px;}
.y24_c00236{bottom:592.200000px;}
.y23_c00236{bottom:614.400000px;}
.y22_c00236{bottom:636.300000px;}
.y21_c00236{bottom:658.200000px;}
.y20_c00236{bottom:680.100000px;}
.y1f_c00236{bottom:702.300000px;}
.y1e_c00236{bottom:731.700000px;}
.y1d_c00236{bottom:752.100000px;}
.y1c_c00236{bottom:774.900000px;}
.y1b_c00236{bottom:792.600000px;}
.y1a_c00236{bottom:807.300000px;}
.y19_c00236{bottom:822.000000px;}
.y18_c00236{bottom:836.400000px;}
.y17_c00236{bottom:851.100000px;}
.y16_c00236{bottom:865.800000px;}
.y15_c00236{bottom:880.500000px;}
.y14_c00236{bottom:899.100000px;}
.y13_c00236{bottom:910.500000px;}
.y12_c00236{bottom:962.700000px;}
.y11_c00236{bottom:1006.800000px;}
.y8_c00236{bottom:1061.100000px;}
.y7_c00236{bottom:1075.500000px;}
.y6_c00236{bottom:1090.200000px;}
.y5_c00236{bottom:1104.900000px;}
.y4_c00236{bottom:1119.600000px;}
.y3_c00236{bottom:1134.300000px;}
.y1_c00236{bottom:1145.700000px;}
.h9_c00236{height:21.533203px;}
.h1_c00236{height:32.400000px;}
.h3_c00236{height:34.453125px;}
.h5_c00236{height:34.851562px;}
.h4_c00236{height:35.991211px;}
.ha_c00236{height:43.066406px;}
.h6_c00236{height:43.564453px;}
.h8_c00236{height:50.023828px;}
.h2_c00236{height:52.277344px;}
.h7_c00236{height:87.128906px;}
.h0_c00236{height:1263.000000px;}
.w2_c00236{width:738.900000px;}
.w0_c00236{width:893.100000px;}
.w1_c00236{width:893.250000px;}
.x0_c00236{left:0.000000px;}
.x2_c00236{left:7.800000px;}
.x1_c00236{left:77.100000px;}
.x3_c00236{left:84.900000px;}
.x4_c00236{left:442.500000px;}
@media print{
.v2_c00236{vertical-align:-13.866667pt;}
.v0_c00236{vertical-align:0.000000pt;}
.v3_c00236{vertical-align:13.866667pt;}
.v1_c00236{vertical-align:19.200000pt;}
.ls21_c00236{letter-spacing:-0.960000pt;}
.ls2b_c00236{letter-spacing:-0.480000pt;}
.ls27_c00236{letter-spacing:-0.469333pt;}
.ls17_c00236{letter-spacing:-0.426667pt;}
.ls25_c00236{letter-spacing:-0.384000pt;}
.ls29_c00236{letter-spacing:-0.373333pt;}
.ls26_c00236{letter-spacing:-0.341333pt;}
.ls16_c00236{letter-spacing:-0.298667pt;}
.ls28_c00236{letter-spacing:-0.266667pt;}
.ls12_c00236{letter-spacing:-0.192000pt;}
.ls15_c00236{letter-spacing:-0.170667pt;}
.ls2a_c00236{letter-spacing:-0.160000pt;}
.ls1c_c00236{letter-spacing:-0.128000pt;}
.ls1a_c00236{letter-spacing:-0.085333pt;}
.ls13_c00236{letter-spacing:0.000000pt;}
.ls19_c00236{letter-spacing:0.042667pt;}
.lse_c00236{letter-spacing:0.053333pt;}
.ls14_c00236{letter-spacing:0.085333pt;}
.lsb_c00236{letter-spacing:0.106667pt;}
.ls18_c00236{letter-spacing:0.128000pt;}
.ls1e_c00236{letter-spacing:0.256000pt;}
.ls1f_c00236{letter-spacing:0.266667pt;}
.ls22_c00236{letter-spacing:0.281600pt;}
.ls24_c00236{letter-spacing:0.298667pt;}
.ls3_c00236{letter-spacing:0.320000pt;}
.ls23_c00236{letter-spacing:0.346667pt;}
.ls6_c00236{letter-spacing:0.384000pt;}
.ls4_c00236{letter-spacing:0.426667pt;}
.ls1b_c00236{letter-spacing:0.469333pt;}
.ls2d_c00236{letter-spacing:0.480000pt;}
.ls1d_c00236{letter-spacing:0.554667pt;}
.ls20_c00236{letter-spacing:0.586667pt;}
.ls10_c00236{letter-spacing:0.730667pt;}
.ls11_c00236{letter-spacing:0.736000pt;}
.ls7_c00236{letter-spacing:0.746667pt;}
.ls2_c00236{letter-spacing:0.896000pt;}
.ls2c_c00236{letter-spacing:0.906667pt;}
.ls5_c00236{letter-spacing:1.024000pt;}
.lsa_c00236{letter-spacing:1.173333pt;}
.ls1_c00236{letter-spacing:2.090667pt;}
.lsd_c00236{letter-spacing:2.880000pt;}
.ls9_c00236{letter-spacing:3.946667pt;}
.lsf_c00236{letter-spacing:6.080000pt;}
.ls8_c00236{letter-spacing:8.213333pt;}
.lsc_c00236{letter-spacing:9.280000pt;}
.ls0_c00236{letter-spacing:81.024000pt;}
.ws7_c00236{word-spacing:-24.213333pt;}
.ws8_c00236{word-spacing:-24.106667pt;}
.ws9_c00236{word-spacing:-23.680000pt;}
.ws0_c00236{word-spacing:-14.272000pt;}
.ws12_c00236{word-spacing:-14.080000pt;}
.ws19_c00236{word-spacing:-12.533333pt;}
.wsa_c00236{word-spacing:-12.320000pt;}
.ws16_c00236{word-spacing:-12.160000pt;}
.ws15_c00236{word-spacing:-12.106667pt;}
.ws6_c00236{word-spacing:-12.053333pt;}
.ws17_c00236{word-spacing:-11.893333pt;}
.ws13_c00236{word-spacing:-11.786667pt;}
.ws14_c00236{word-spacing:-11.680000pt;}
.ws18_c00236{word-spacing:-11.573333pt;}
.wsb_c00236{word-spacing:-11.093333pt;}
.wsf_c00236{word-spacing:-9.898667pt;}
.ws1_c00236{word-spacing:-9.728000pt;}
.ws2_c00236{word-spacing:-9.642667pt;}
.wsd_c00236{word-spacing:-9.557333pt;}
.ws10_c00236{word-spacing:-9.514667pt;}
.ws4_c00236{word-spacing:-9.472000pt;}
.ws5_c00236{word-spacing:-9.344000pt;}
.wse_c00236{word-spacing:-9.301333pt;}
.ws3_c00236{word-spacing:-9.216000pt;}
.ws11_c00236{word-spacing:-9.173333pt;}
.wsc_c00236{word-spacing:-8.236800pt;}
.ws28_c00236{word-spacing:-0.981333pt;}
.ws49_c00236{word-spacing:-0.906667pt;}
.ws30_c00236{word-spacing:-0.586667pt;}
.ws27_c00236{word-spacing:-0.512000pt;}
.ws4c_c00236{word-spacing:-0.426667pt;}
.ws3c_c00236{word-spacing:-0.373333pt;}
.ws31_c00236{word-spacing:-0.346667pt;}
.ws2f_c00236{word-spacing:-0.320000pt;}
.ws33_c00236{word-spacing:-0.298667pt;}
.ws2d_c00236{word-spacing:-0.256000pt;}
.ws1e_c00236{word-spacing:-0.128000pt;}
.ws3b_c00236{word-spacing:-0.106667pt;}
.ws41_c00236{word-spacing:-0.053333pt;}
.ws1f_c00236{word-spacing:-0.042667pt;}
.ws1b_c00236{word-spacing:0.000000pt;}
.ws4e_c00236{word-spacing:0.053333pt;}
.ws25_c00236{word-spacing:0.085333pt;}
.ws2e_c00236{word-spacing:0.106667pt;}
.ws1c_c00236{word-spacing:0.128000pt;}
.ws39_c00236{word-spacing:0.160000pt;}
.ws32_c00236{word-spacing:0.170667pt;}
.ws1d_c00236{word-spacing:0.256000pt;}
.ws37_c00236{word-spacing:0.266667pt;}
.ws22_c00236{word-spacing:0.298667pt;}
.ws3d_c00236{word-spacing:0.373333pt;}
.ws4d_c00236{word-spacing:0.426667pt;}
.ws42_c00236{word-spacing:0.480000pt;}
.ws1a_c00236{word-spacing:0.640000pt;}
.ws51_c00236{word-spacing:0.693333pt;}
.ws36_c00236{word-spacing:1.013333pt;}
.ws35_c00236{word-spacing:1.120000pt;}
.ws34_c00236{word-spacing:1.408000pt;}
.ws26_c00236{word-spacing:1.621333pt;}
.ws20_c00236{word-spacing:1.962667pt;}
.ws23_c00236{word-spacing:2.261333pt;}
.ws21_c00236{word-spacing:2.389333pt;}
.ws4f_c00236{word-spacing:2.826667pt;}
.ws50_c00236{word-spacing:3.146667pt;}
.ws24_c00236{word-spacing:3.328000pt;}
.ws54_c00236{word-spacing:3.893333pt;}
.ws3f_c00236{word-spacing:4.213333pt;}
.ws3e_c00236{word-spacing:4.320000pt;}
.ws53_c00236{word-spacing:4.373333pt;}
.ws44_c00236{word-spacing:4.426667pt;}
.ws29_c00236{word-spacing:4.736000pt;}
.ws2b_c00236{word-spacing:4.821333pt;}
.ws43_c00236{word-spacing:4.906667pt;}
.ws45_c00236{word-spacing:5.280000pt;}
.ws2a_c00236{word-spacing:5.290667pt;}
.ws2c_c00236{word-spacing:5.376000pt;}
.ws40_c00236{word-spacing:5.386667pt;}
.ws52_c00236{word-spacing:6.346667pt;}
.ws47_c00236{word-spacing:7.040000pt;}
.ws48_c00236{word-spacing:7.306667pt;}
.ws46_c00236{word-spacing:7.413333pt;}
.ws3a_c00236{word-spacing:8.480000pt;}
.ws38_c00236{word-spacing:8.586667pt;}
.ws4b_c00236{word-spacing:9.226667pt;}
.ws4a_c00236{word-spacing:9.546667pt;}
._6_c00236{margin-left:-2.005333pt;}
._1_c00236{margin-left:-1.024000pt;}
._0_c00236{width:0.921600pt;}
._2_c00236{width:1.885867pt;}
._b_c00236{width:3.381333pt;}
._7_c00236{width:4.778667pt;}
._9_c00236{width:6.717867pt;}
._8_c00236{width:8.209067pt;}
._a_c00236{width:9.546667pt;}
._3_c00236{width:82.304000pt;}
._5_c00236{width:120.234667pt;}
._4_c00236{width:140.757333pt;}
.fs6_c00236{font-size:26.666667pt;}
.fs5_c00236{font-size:35.200000pt;}
.fs1_c00236{font-size:42.666667pt;}
.fs2_c00236{font-size:48.000000pt;}
.fs3_c00236{font-size:53.333333pt;}
.fs0_c00236{font-size:64.000000pt;}
.fs4_c00236{font-size:106.666667pt;}
.y0_c00236{bottom:0.000000pt;}
.y2_c00236{bottom:13.600000pt;}
.y10_c00236{bottom:60.266667pt;}
.yf_c00236{bottom:76.000000pt;}
.ye_c00236{bottom:89.066667pt;}
.yd_c00236{bottom:102.133333pt;}
.yc_c00236{bottom:115.200000pt;}
.yb_c00236{bottom:128.000000pt;}
.ya_c00236{bottom:141.333333pt;}
.y9_c00236{bottom:157.333333pt;}
.y36_c00236{bottom:174.933333pt;}
.y35_c00236{bottom:194.400000pt;}
.y34_c00236{bottom:213.866667pt;}
.y33_c00236{bottom:233.600000pt;}
.y32_c00236{bottom:253.066667pt;}
.y31_c00236{bottom:272.533333pt;}
.y30_c00236{bottom:292.000000pt;}
.y2f_c00236{bottom:311.733333pt;}
.y2e_c00236{bottom:331.200000pt;}
.y2d_c00236{bottom:350.666667pt;}
.y2c_c00236{bottom:370.133333pt;}
.y2b_c00236{bottom:389.866667pt;}
.y2a_c00236{bottom:409.333333pt;}
.y29_c00236{bottom:428.800000pt;}
.y28_c00236{bottom:448.266667pt;}
.y27_c00236{bottom:468.000000pt;}
.y26_c00236{bottom:487.466667pt;}
.y25_c00236{bottom:506.933333pt;}
.y24_c00236{bottom:526.400000pt;}
.y23_c00236{bottom:546.133333pt;}
.y22_c00236{bottom:565.600000pt;}
.y21_c00236{bottom:585.066667pt;}
.y20_c00236{bottom:604.533333pt;}
.y1f_c00236{bottom:624.266667pt;}
.y1e_c00236{bottom:650.400000pt;}
.y1d_c00236{bottom:668.533333pt;}
.y1c_c00236{bottom:688.800000pt;}
.y1b_c00236{bottom:704.533333pt;}
.y1a_c00236{bottom:717.600000pt;}
.y19_c00236{bottom:730.666667pt;}
.y18_c00236{bottom:743.466667pt;}
.y17_c00236{bottom:756.533333pt;}
.y16_c00236{bottom:769.600000pt;}
.y15_c00236{bottom:782.666667pt;}
.y14_c00236{bottom:799.200000pt;}
.y13_c00236{bottom:809.333333pt;}
.y12_c00236{bottom:855.733333pt;}
.y11_c00236{bottom:894.933333pt;}
.y8_c00236{bottom:943.200000pt;}
.y7_c00236{bottom:956.000000pt;}
.y6_c00236{bottom:969.066667pt;}
.y5_c00236{bottom:982.133333pt;}
.y4_c00236{bottom:995.200000pt;}
.y3_c00236{bottom:1008.266667pt;}
.y1_c00236{bottom:1018.400000pt;}
.h9_c00236{height:19.140625pt;}
.h1_c00236{height:28.800000pt;}
.h3_c00236{height:30.625000pt;}
.h5_c00236{height:30.979167pt;}
.h4_c00236{height:31.992188pt;}
.ha_c00236{height:38.281250pt;}
.h6_c00236{height:38.723958pt;}
.h8_c00236{height:44.465625pt;}
.h2_c00236{height:46.468750pt;}
.h7_c00236{height:77.447917pt;}
.h0_c00236{height:1122.666667pt;}
.w2_c00236{width:656.800000pt;}
.w0_c00236{width:793.866667pt;}
.w1_c00236{width:794.000000pt;}
.x0_c00236{left:0.000000pt;}
.x2_c00236{left:6.933333pt;}
.x1_c00236{left:68.533333pt;}
.x3_c00236{left:75.466667pt;}
.x4_c00236{left:393.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_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_c78ea3df210b5aa1cc98d68b.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00237;src:url('chunks/assets/font_995b71b012fc8a617290f9e5.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00237;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00237;src:url('chunks/assets/font_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff4_c00237{font-family:ff4_c00237;line-height:0.910645;font-style: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;}
.ls13_c00237{letter-spacing:-1.080000px;}
.ls16_c00237{letter-spacing:-0.720000px;}
.ls18_c00237{letter-spacing:-0.660000px;}
.ls12_c00237{letter-spacing:-0.540000px;}
.ls1a_c00237{letter-spacing:-0.480000px;}
.ls15_c00237{letter-spacing:-0.420000px;}
.lsd_c00237{letter-spacing:-0.360000px;}
.ls10_c00237{letter-spacing:-0.300000px;}
.ls1b_c00237{letter-spacing:-0.216000px;}
.ls14_c00237{letter-spacing:-0.180000px;}
.lsc_c00237{letter-spacing:0.000000px;}
.ls11_c00237{letter-spacing:0.060000px;}
.ls9_c00237{letter-spacing:0.120000px;}
.lse_c00237{letter-spacing:0.180000px;}
.lsf_c00237{letter-spacing:0.300000px;}
.ls6_c00237{letter-spacing:0.480000px;}
.ls19_c00237{letter-spacing:0.540000px;}
.lsb_c00237{letter-spacing:0.660000px;}
.ls7_c00237{letter-spacing:0.840000px;}
.ls17_c00237{letter-spacing:0.900000px;}
.lsa_c00237{letter-spacing:2.040000px;}
.ls0_c00237{letter-spacing:2.046000px;}
.ls5_c00237{letter-spacing:3.240000px;}
.ls8_c00237{letter-spacing:4.416000px;}
.ls4_c00237{letter-spacing:4.440000px;}
.ls3_c00237{letter-spacing:5.640000px;}
.ls1_c00237{letter-spacing:10.434000px;}
.ls2_c00237{letter-spacing:10.440000px;}
.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;}
}
.wsb_c00237{word-spacing:-16.056000px;}
.ws3_c00237{word-spacing:-14.220000px;}
.ws2_c00237{word-spacing:-13.860000px;}
.ws9_c00237{word-spacing:-13.680000px;}
.ws0_c00237{word-spacing:-13.560000px;}
.ws8_c00237{word-spacing:-13.380000px;}
.ws5_c00237{word-spacing:-13.260000px;}
.ws6_c00237{word-spacing:-13.140000px;}
.wsa_c00237{word-spacing:-13.080000px;}
.ws4_c00237{word-spacing:-13.020000px;}
.ws7_c00237{word-spacing:-12.900000px;}
.ws1_c00237{word-spacing:-12.480000px;}
.ws36_c00237{word-spacing:-1.020000px;}
.ws28_c00237{word-spacing:-0.900000px;}
.ws3a_c00237{word-spacing:-0.660000px;}
.wsd_c00237{word-spacing:-0.540000px;}
.ws1b_c00237{word-spacing:-0.480000px;}
.ws2c_c00237{word-spacing:-0.300000px;}
.ws16_c00237{word-spacing:-0.180000px;}
.ws32_c00237{word-spacing:-0.120000px;}
.ws13_c00237{word-spacing:-0.060000px;}
.wsc_c00237{word-spacing:0.000000px;}
.ws37_c00237{word-spacing:0.060000px;}
.ws3b_c00237{word-spacing:0.120000px;}
.ws14_c00237{word-spacing:0.180000px;}
.ws15_c00237{word-spacing:0.300000px;}
.ws3c_c00237{word-spacing:0.540000px;}
.ws1f_c00237{word-spacing:0.720000px;}
.ws35_c00237{word-spacing:0.780000px;}
.ws26_c00237{word-spacing:1.140000px;}
.ws11_c00237{word-spacing:1.380000px;}
.ws39_c00237{word-spacing:1.500000px;}
.ws34_c00237{word-spacing:1.740000px;}
.ws2e_c00237{word-spacing:1.920000px;}
.ws12_c00237{word-spacing:1.980000px;}
.ws10_c00237{word-spacing:2.340000px;}
.ws1c_c00237{word-spacing:2.580000px;}
.ws24_c00237{word-spacing:2.760000px;}
.wse_c00237{word-spacing:2.940000px;}
.ws29_c00237{word-spacing:3.120000px;}
.ws2b_c00237{word-spacing:3.180000px;}
.wsf_c00237{word-spacing:3.540000px;}
.ws2a_c00237{word-spacing:3.660000px;}
.ws33_c00237{word-spacing:3.720000px;}
.ws23_c00237{word-spacing:3.780000px;}
.ws25_c00237{word-spacing:4.320000px;}
.ws38_c00237{word-spacing:4.380000px;}
.ws22_c00237{word-spacing:4.740000px;}
.ws27_c00237{word-spacing:4.860000px;}
.ws20_c00237{word-spacing:4.980000px;}
.ws30_c00237{word-spacing:5.580000px;}
.ws21_c00237{word-spacing:5.940000px;}
.ws31_c00237{word-spacing:6.060000px;}
.ws18_c00237{word-spacing:6.180000px;}
.ws2f_c00237{word-spacing:6.720000px;}
.ws19_c00237{word-spacing:6.780000px;}
.ws17_c00237{word-spacing:7.140000px;}
.ws2d_c00237{word-spacing:8.340000px;}
.ws1a_c00237{word-spacing:10.740000px;}
.ws1d_c00237{word-spacing:13.380000px;}
.ws1e_c00237{word-spacing:14.340000px;}
._2_c00237{margin-left:-2.388000px;}
._1_c00237{margin-left:-1.026000px;}
._0_c00237{width:1.440000px;}
._3_c00237{width:2.466000px;}
._6_c00237{width:3.540000px;}
._7_c00237{width:5.220000px;}
._4_c00237{width:7.080000px;}
._5_c00237{width:11.826000px;}
.fc1_c00237{color:rgb(0,0,255);}
.fc0_c00237{color:rgb(0,0,0);}
.fs1_c00237{font-size:54.000000px;}
.fs0_c00237{font-size:60.000000px;}
.fs2_c00237{font-size:72.000000px;}
.y0_c00237{bottom:0.000000px;}
.y3_c00237{bottom:71.400000px;}
.y2_c00237{bottom:88.800000px;}
.y30_c00237{bottom:142.200000px;}
.y2f_c00237{bottom:170.400000px;}
.y2e_c00237{bottom:200.100000px;}
.y2d_c00237{bottom:220.800000px;}
.y2c_c00237{bottom:242.100000px;}
.y2b_c00237{bottom:264.000000px;}
.y2a_c00237{bottom:286.200000px;}
.y29_c00237{bottom:308.100000px;}
.y28_c00237{bottom:330.000000px;}
.y27_c00237{bottom:351.900000px;}
.y26_c00237{bottom:374.100000px;}
.y25_c00237{bottom:396.000000px;}
.y24_c00237{bottom:417.900000px;}
.y23_c00237{bottom:439.800000px;}
.y22_c00237{bottom:461.700000px;}
.y21_c00237{bottom:483.900000px;}
.y20_c00237{bottom:505.800000px;}
.y1f_c00237{bottom:527.700000px;}
.y1e_c00237{bottom:549.600000px;}
.y1d_c00237{bottom:571.800000px;}
.y1c_c00237{bottom:593.700000px;}
.y1b_c00237{bottom:615.600000px;}
.y1a_c00237{bottom:637.500000px;}
.y19_c00237{bottom:659.700000px;}
.y18_c00237{bottom:681.600000px;}
.y17_c00237{bottom:703.500000px;}
.y16_c00237{bottom:725.400000px;}
.y15_c00237{bottom:747.600000px;}
.y14_c00237{bottom:769.500000px;}
.y13_c00237{bottom:791.400000px;}
.y12_c00237{bottom:813.300000px;}
.y11_c00237{bottom:835.500000px;}
.y10_c00237{bottom:857.400000px;}
.yf_c00237{bottom:879.300000px;}
.ye_c00237{bottom:901.200000px;}
.yd_c00237{bottom:923.400000px;}
.yc_c00237{bottom:945.300000px;}
.yb_c00237{bottom:967.200000px;}
.ya_c00237{bottom:989.100000px;}
.y9_c00237{bottom:1011.300000px;}
.y8_c00237{bottom:1033.200000px;}
.y7_c00237{bottom:1055.100000px;}
.y6_c00237{bottom:1077.000000px;}
.y5_c00237{bottom:1099.200000px;}
.y4_c00237{bottom:1121.100000px;}
.y1_c00237{bottom:1163.700000px;}
.h2_c00237{height:35.991211px;}
.h4_c00237{height:41.689453px;}
.h3_c00237{height:43.066406px;}
.h1_c00237{height:43.564453px;}
.h5_c00237{height:52.277344px;}
.h0_c00237{height:1263.000000px;}
.w0_c00237{width:893.100000px;}
.w1_c00237{width:893.250000px;}
.x0_c00237{left:0.000000px;}
.x1_c00237{left:84.900000px;}
.x3_c00237{left:442.500000px;}
.x2_c00237{left:446.400000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls13_c00237{letter-spacing:-0.960000pt;}
.ls16_c00237{letter-spacing:-0.640000pt;}
.ls18_c00237{letter-spacing:-0.586667pt;}
.ls12_c00237{letter-spacing:-0.480000pt;}
.ls1a_c00237{letter-spacing:-0.426667pt;}
.ls15_c00237{letter-spacing:-0.373333pt;}
.lsd_c00237{letter-spacing:-0.320000pt;}
.ls10_c00237{letter-spacing:-0.266667pt;}
.ls1b_c00237{letter-spacing:-0.192000pt;}
.ls14_c00237{letter-spacing:-0.160000pt;}
.lsc_c00237{letter-spacing:0.000000pt;}
.ls11_c00237{letter-spacing:0.053333pt;}
.ls9_c00237{letter-spacing:0.106667pt;}
.lse_c00237{letter-spacing:0.160000pt;}
.lsf_c00237{letter-spacing:0.266667pt;}
.ls6_c00237{letter-spacing:0.426667pt;}
.ls19_c00237{letter-spacing:0.480000pt;}
.lsb_c00237{letter-spacing:0.586667pt;}
.ls7_c00237{letter-spacing:0.746667pt;}
.ls17_c00237{letter-spacing:0.800000pt;}
.lsa_c00237{letter-spacing:1.813333pt;}
.ls0_c00237{letter-spacing:1.818667pt;}
.ls5_c00237{letter-spacing:2.880000pt;}
.ls8_c00237{letter-spacing:3.925333pt;}
.ls4_c00237{letter-spacing:3.946667pt;}
.ls3_c00237{letter-spacing:5.013333pt;}
.ls1_c00237{letter-spacing:9.274667pt;}
.ls2_c00237{letter-spacing:9.280000pt;}
.wsb_c00237{word-spacing:-14.272000pt;}
.ws3_c00237{word-spacing:-12.640000pt;}
.ws2_c00237{word-spacing:-12.320000pt;}
.ws9_c00237{word-spacing:-12.160000pt;}
.ws0_c00237{word-spacing:-12.053333pt;}
.ws8_c00237{word-spacing:-11.893333pt;}
.ws5_c00237{word-spacing:-11.786667pt;}
.ws6_c00237{word-spacing:-11.680000pt;}
.wsa_c00237{word-spacing:-11.626667pt;}
.ws4_c00237{word-spacing:-11.573333pt;}
.ws7_c00237{word-spacing:-11.466667pt;}
.ws1_c00237{word-spacing:-11.093333pt;}
.ws36_c00237{word-spacing:-0.906667pt;}
.ws28_c00237{word-spacing:-0.800000pt;}
.ws3a_c00237{word-spacing:-0.586667pt;}
.wsd_c00237{word-spacing:-0.480000pt;}
.ws1b_c00237{word-spacing:-0.426667pt;}
.ws2c_c00237{word-spacing:-0.266667pt;}
.ws16_c00237{word-spacing:-0.160000pt;}
.ws32_c00237{word-spacing:-0.106667pt;}
.ws13_c00237{word-spacing:-0.053333pt;}
.wsc_c00237{word-spacing:0.000000pt;}
.ws37_c00237{word-spacing:0.053333pt;}
.ws3b_c00237{word-spacing:0.106667pt;}
.ws14_c00237{word-spacing:0.160000pt;}
.ws15_c00237{word-spacing:0.266667pt;}
.ws3c_c00237{word-spacing:0.480000pt;}
.ws1f_c00237{word-spacing:0.640000pt;}
.ws35_c00237{word-spacing:0.693333pt;}
.ws26_c00237{word-spacing:1.013333pt;}
.ws11_c00237{word-spacing:1.226667pt;}
.ws39_c00237{word-spacing:1.333333pt;}
.ws34_c00237{word-spacing:1.546667pt;}
.ws2e_c00237{word-spacing:1.706667pt;}
.ws12_c00237{word-spacing:1.760000pt;}
.ws10_c00237{word-spacing:2.080000pt;}
.ws1c_c00237{word-spacing:2.293333pt;}
.ws24_c00237{word-spacing:2.453333pt;}
.wse_c00237{word-spacing:2.613333pt;}
.ws29_c00237{word-spacing:2.773333pt;}
.ws2b_c00237{word-spacing:2.826667pt;}
.wsf_c00237{word-spacing:3.146667pt;}
.ws2a_c00237{word-spacing:3.253333pt;}
.ws33_c00237{word-spacing:3.306667pt;}
.ws23_c00237{word-spacing:3.360000pt;}
.ws25_c00237{word-spacing:3.840000pt;}
.ws38_c00237{word-spacing:3.893333pt;}
.ws22_c00237{word-spacing:4.213333pt;}
.ws27_c00237{word-spacing:4.320000pt;}
.ws20_c00237{word-spacing:4.426667pt;}
.ws30_c00237{word-spacing:4.960000pt;}
.ws21_c00237{word-spacing:5.280000pt;}
.ws31_c00237{word-spacing:5.386667pt;}
.ws18_c00237{word-spacing:5.493333pt;}
.ws2f_c00237{word-spacing:5.973333pt;}
.ws19_c00237{word-spacing:6.026667pt;}
.ws17_c00237{word-spacing:6.346667pt;}
.ws2d_c00237{word-spacing:7.413333pt;}
.ws1a_c00237{word-spacing:9.546667pt;}
.ws1d_c00237{word-spacing:11.893333pt;}
.ws1e_c00237{word-spacing:12.746667pt;}
._2_c00237{margin-left:-2.122667pt;}
._1_c00237{margin-left:-0.912000pt;}
._0_c00237{width:1.280000pt;}
._3_c00237{width:2.192000pt;}
._6_c00237{width:3.146667pt;}
._7_c00237{width:4.640000pt;}
._4_c00237{width:6.293333pt;}
._5_c00237{width:10.512000pt;}
.fs1_c00237{font-size:48.000000pt;}
.fs0_c00237{font-size:53.333333pt;}
.fs2_c00237{font-size:64.000000pt;}
.y0_c00237{bottom:0.000000pt;}
.y3_c00237{bottom:63.466667pt;}
.y2_c00237{bottom:78.933333pt;}
.y30_c00237{bottom:126.400000pt;}
.y2f_c00237{bottom:151.466667pt;}
.y2e_c00237{bottom:177.866667pt;}
.y2d_c00237{bottom:196.266667pt;}
.y2c_c00237{bottom:215.200000pt;}
.y2b_c00237{bottom:234.666667pt;}
.y2a_c00237{bottom:254.400000pt;}
.y29_c00237{bottom:273.866667pt;}
.y28_c00237{bottom:293.333333pt;}
.y27_c00237{bottom:312.800000pt;}
.y26_c00237{bottom:332.533333pt;}
.y25_c00237{bottom:352.000000pt;}
.y24_c00237{bottom:371.466667pt;}
.y23_c00237{bottom:390.933333pt;}
.y22_c00237{bottom:410.400000pt;}
.y21_c00237{bottom:430.133333pt;}
.y20_c00237{bottom:449.600000pt;}
.y1f_c00237{bottom:469.066667pt;}
.y1e_c00237{bottom:488.533333pt;}
.y1d_c00237{bottom:508.266667pt;}
.y1c_c00237{bottom:527.733333pt;}
.y1b_c00237{bottom:547.200000pt;}
.y1a_c00237{bottom:566.666667pt;}
.y19_c00237{bottom:586.400000pt;}
.y18_c00237{bottom:605.866667pt;}
.y17_c00237{bottom:625.333333pt;}
.y16_c00237{bottom:644.800000pt;}
.y15_c00237{bottom:664.533333pt;}
.y14_c00237{bottom:684.000000pt;}
.y13_c00237{bottom:703.466667pt;}
.y12_c00237{bottom:722.933333pt;}
.y11_c00237{bottom:742.666667pt;}
.y10_c00237{bottom:762.133333pt;}
.yf_c00237{bottom:781.600000pt;}
.ye_c00237{bottom:801.066667pt;}
.yd_c00237{bottom:820.800000pt;}
.yc_c00237{bottom:840.266667pt;}
.yb_c00237{bottom:859.733333pt;}
.ya_c00237{bottom:879.200000pt;}
.y9_c00237{bottom:898.933333pt;}
.y8_c00237{bottom:918.400000pt;}
.y7_c00237{bottom:937.866667pt;}
.y6_c00237{bottom:957.333333pt;}
.y5_c00237{bottom:977.066667pt;}
.y4_c00237{bottom:996.533333pt;}
.y1_c00237{bottom:1034.400000pt;}
.h2_c00237{height:31.992188pt;}
.h4_c00237{height:37.057292pt;}
.h3_c00237{height:38.281250pt;}
.h1_c00237{height:38.723958pt;}
.h5_c00237{height:46.468750pt;}
.h0_c00237{height:1122.666667pt;}
.w0_c00237{width:793.866667pt;}
.w1_c00237{width:794.000000pt;}
.x0_c00237{left:0.000000pt;}
.x1_c00237{left:75.466667pt;}
.x3_c00237{left:393.333333pt;}
.x2_c00237{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_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_75d46a71c8f9e43632456cad.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00238;src:url('chunks/assets/font_7a31d7c4477eb7d7d9d0daa9.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00238;src:url('chunks/assets/font_ed3eda9ac95acb1d54fdaf71.woff2')format("woff");}.ff3_c00238{font-family:ff3_c00238;line-height:0.861328;font-style: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;}
.ls11_c00238{letter-spacing:-0.480000px;}
.lsd_c00238{letter-spacing:-0.432000px;}
.lsb_c00238{letter-spacing:-0.420000px;}
.ls10_c00238{letter-spacing:-0.300000px;}
.lse_c00238{letter-spacing:-0.180000px;}
.lsc_c00238{letter-spacing:0.000000px;}
.lsf_c00238{letter-spacing:0.660000px;}
.lsa_c00238{letter-spacing:81.240000px;}
.ls7_c00238{letter-spacing:178.440000px;}
.ls9_c00238{letter-spacing:207.240000px;}
.ls8_c00238{letter-spacing:232.440000px;}
.ls1_c00238{letter-spacing:248.040000px;}
.ls5_c00238{letter-spacing:267.240000px;}
.ls6_c00238{letter-spacing:270.840000px;}
.ls4_c00238{letter-spacing:273.240000px;}
.ls3_c00238{letter-spacing:275.640000px;}
.ls0_c00238{letter-spacing:278.040000px;}
.ls2_c00238{letter-spacing:287.640000px;}
.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;}
}
.ws6_c00238{word-spacing:-59.580000px;}
.ws2_c00238{word-spacing:-14.220000px;}
.ws0_c00238{word-spacing:-13.560000px;}
.ws1_c00238{word-spacing:-13.380000px;}
.ws3_c00238{word-spacing:-13.260000px;}
.ws4_c00238{word-spacing:-13.140000px;}
.ws5_c00238{word-spacing:-13.080000px;}
.wsa_c00238{word-spacing:-0.060000px;}
.ws8_c00238{word-spacing:0.000000px;}
.ws7_c00238{word-spacing:0.060000px;}
.wsb_c00238{word-spacing:0.420000px;}
.ws9_c00238{word-spacing:0.936000px;}
._1_c00238{margin-left:-1.320000px;}
._0_c00238{width:1.380000px;}
._2_c00238{width:2.880000px;}
.fc1_c00238{color:rgb(0,0,0);}
.fc0_c00238{color:rgb(0,0,255);}
.fs1_c00238{font-size:54.000000px;}
.fs0_c00238{font-size:60.000000px;}
.fs2_c00238{font-size:72.000000px;}
.y0_c00238{bottom:0.000000px;}
.y3_c00238{bottom:67.800000px;}
.y2_c00238{bottom:85.800000px;}
.y10_c00238{bottom:846.900000px;}
.yf_c00238{bottom:868.800000px;}
.ye_c00238{bottom:891.000000px;}
.yd_c00238{bottom:912.900000px;}
.yc_c00238{bottom:934.800000px;}
.yb_c00238{bottom:956.700000px;}
.ya_c00238{bottom:978.900000px;}
.y9_c00238{bottom:1000.800000px;}
.y8_c00238{bottom:1022.700000px;}
.y7_c00238{bottom:1044.600000px;}
.y6_c00238{bottom:1066.800000px;}
.y5_c00238{bottom:1088.700000px;}
.y4_c00238{bottom:1118.400000px;}
.y1_c00238{bottom:1163.700000px;}
.h2_c00238{height:38.759766px;}
.h4_c00238{height:43.066406px;}
.h1_c00238{height:43.564453px;}
.h3_c00238{height:52.277344px;}
.h0_c00238{height:1263.000000px;}
.w0_c00238{width:893.100000px;}
.w1_c00238{width:893.250000px;}
.x0_c00238{left:0.000000px;}
.x1_c00238{left:84.900000px;}
.x3_c00238{left:442.500000px;}
.x2_c00238{left:446.400000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls11_c00238{letter-spacing:-0.426667pt;}
.lsd_c00238{letter-spacing:-0.384000pt;}
.lsb_c00238{letter-spacing:-0.373333pt;}
.ls10_c00238{letter-spacing:-0.266667pt;}
.lse_c00238{letter-spacing:-0.160000pt;}
.lsc_c00238{letter-spacing:0.000000pt;}
.lsf_c00238{letter-spacing:0.586667pt;}
.lsa_c00238{letter-spacing:72.213333pt;}
.ls7_c00238{letter-spacing:158.613333pt;}
.ls9_c00238{letter-spacing:184.213333pt;}
.ls8_c00238{letter-spacing:206.613333pt;}
.ls1_c00238{letter-spacing:220.480000pt;}
.ls5_c00238{letter-spacing:237.546667pt;}
.ls6_c00238{letter-spacing:240.746667pt;}
.ls4_c00238{letter-spacing:242.880000pt;}
.ls3_c00238{letter-spacing:245.013333pt;}
.ls0_c00238{letter-spacing:247.146667pt;}
.ls2_c00238{letter-spacing:255.680000pt;}
.ws6_c00238{word-spacing:-52.960000pt;}
.ws2_c00238{word-spacing:-12.640000pt;}
.ws0_c00238{word-spacing:-12.053333pt;}
.ws1_c00238{word-spacing:-11.893333pt;}
.ws3_c00238{word-spacing:-11.786667pt;}
.ws4_c00238{word-spacing:-11.680000pt;}
.ws5_c00238{word-spacing:-11.626667pt;}
.wsa_c00238{word-spacing:-0.053333pt;}
.ws8_c00238{word-spacing:0.000000pt;}
.ws7_c00238{word-spacing:0.053333pt;}
.wsb_c00238{word-spacing:0.373333pt;}
.ws9_c00238{word-spacing:0.832000pt;}
._1_c00238{margin-left:-1.173333pt;}
._0_c00238{width:1.226667pt;}
._2_c00238{width:2.560000pt;}
.fs1_c00238{font-size:48.000000pt;}
.fs0_c00238{font-size:53.333333pt;}
.fs2_c00238{font-size:64.000000pt;}
.y0_c00238{bottom:0.000000pt;}
.y3_c00238{bottom:60.266667pt;}
.y2_c00238{bottom:76.266667pt;}
.y10_c00238{bottom:752.800000pt;}
.yf_c00238{bottom:772.266667pt;}
.ye_c00238{bottom:792.000000pt;}
.yd_c00238{bottom:811.466667pt;}
.yc_c00238{bottom:830.933333pt;}
.yb_c00238{bottom:850.400000pt;}
.ya_c00238{bottom:870.133333pt;}
.y9_c00238{bottom:889.600000pt;}
.y8_c00238{bottom:909.066667pt;}
.y7_c00238{bottom:928.533333pt;}
.y6_c00238{bottom:948.266667pt;}
.y5_c00238{bottom:967.733333pt;}
.y4_c00238{bottom:994.133333pt;}
.y1_c00238{bottom:1034.400000pt;}
.h2_c00238{height:34.453125pt;}
.h4_c00238{height:38.281250pt;}
.h1_c00238{height:38.723958pt;}
.h3_c00238{height:46.468750pt;}
.h0_c00238{height:1122.666667pt;}
.w0_c00238{width:793.866667pt;}
.w1_c00238{width:794.000000pt;}
.x0_c00238{left:0.000000pt;}
.x1_c00238{left:75.466667pt;}
.x3_c00238{left:393.333333pt;}
.x2_c00238{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_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_6a3b762329b8bb6378d314c1.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.ls4_c00239{letter-spacing:-1.350000px;}
.ls2_c00239{letter-spacing:0.000000px;}
.ls0_c00239{letter-spacing:0.006000px;}
.ls3_c00239{letter-spacing:0.090000px;}
.ls1_c00239{letter-spacing:0.216000px;}
.sc__c00239{text-shadow:none;}
.sc0_c00239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00239{-webkit-text-stroke:0px transparent;}
.sc0_c00239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00239{word-spacing:-20.340000px;}
.ws0_c00239{word-spacing:-16.272000px;}
.ws8_c00239{word-spacing:-1.980000px;}
.ws3_c00239{word-spacing:-0.768000px;}
.wsa_c00239{word-spacing:-0.360000px;}
.ws4_c00239{word-spacing:-0.276000px;}
.ws2_c00239{word-spacing:0.000000px;}
.ws5_c00239{word-spacing:0.204000px;}
.ws6_c00239{word-spacing:0.270000px;}
.ws7_c00239{word-spacing:0.360000px;}
.ws9_c00239{word-spacing:0.810000px;}
._2_c00239{margin-left:-3.492000px;}
._1_c00239{margin-left:-1.836000px;}
._0_c00239{width:1.224000px;}
.fc4_c00239{color:rgb(112,48,160);}
.fc3_c00239{color:rgb(119,11,11);}
.fc5_c00239{color:rgb(38,38,38);}
.fc2_c00239{color:rgb(255,255,255);}
.fc1_c00239{color:rgb(127,127,127);}
.fc0_c00239{color:rgb(137,137,137);}
.fs0_c00239{font-size:72.000000px;}
.fs6_c00239{font-size:90.000000px;}
.fs5_c00239{font-size:102.384000px;}
.fs2_c00239{font-size:108.000000px;}
.fs1_c00239{font-size:120.240000px;}
.fs4_c00239{font-size:144.000000px;}
.fs3_c00239{font-size:192.384000px;}
.y0_c00239{bottom:0.000000px;}
.y2_c00239{bottom:25.596000px;}
.y3_c00239{bottom:28.332000px;}
.y1_c00239{bottom:31.392000px;}
.y8_c00239{bottom:91.812000px;}
.y7_c00239{bottom:116.112000px;}
.y6_c00239{bottom:146.532000px;}
.y5_c00239{bottom:194.478000px;}
.y4_c00239{bottom:240.738000px;}
.h1_c00239{height:51.679688px;}
.h7_c00239{height:64.599609px;}
.h8_c00239{height:64.602009px;}
.h6_c00239{height:73.488516px;}
.h3_c00239{height:77.519531px;}
.h2_c00239{height:86.305078px;}
.h5_c00239{height:103.359375px;}
.h4_c00239{height:138.088125px;}
.h0_c00239{height:810.000000px;}
.w0_c00239{width:1080.000000px;}
.x0_c00239{left:0.000000px;}
.x3_c00239{left:64.800000px;}
.x4_c00239{left:213.375000px;}
.x8_c00239{left:263.317500px;}
.x6_c00239{left:319.981500px;}
.x5_c00239{left:338.710500px;}
.x7_c00239{left:385.822500px;}
.x2_c00239{left:749.340000px;}
.x1_c00239{left:831.600000px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls4_c00239{letter-spacing:-1.200000pt;}
.ls2_c00239{letter-spacing:0.000000pt;}
.ls0_c00239{letter-spacing:0.005333pt;}
.ls3_c00239{letter-spacing:0.080000pt;}
.ls1_c00239{letter-spacing:0.192000pt;}
.ws1_c00239{word-spacing:-18.080000pt;}
.ws0_c00239{word-spacing:-14.464000pt;}
.ws8_c00239{word-spacing:-1.760000pt;}
.ws3_c00239{word-spacing:-0.682667pt;}
.wsa_c00239{word-spacing:-0.320000pt;}
.ws4_c00239{word-spacing:-0.245333pt;}
.ws2_c00239{word-spacing:0.000000pt;}
.ws5_c00239{word-spacing:0.181333pt;}
.ws6_c00239{word-spacing:0.240000pt;}
.ws7_c00239{word-spacing:0.320000pt;}
.ws9_c00239{word-spacing:0.720000pt;}
._2_c00239{margin-left:-3.104000pt;}
._1_c00239{margin-left:-1.632000pt;}
._0_c00239{width:1.088000pt;}
.fs0_c00239{font-size:64.000000pt;}
.fs6_c00239{font-size:80.000000pt;}
.fs5_c00239{font-size:91.008000pt;}
.fs2_c00239{font-size:96.000000pt;}
.fs1_c00239{font-size:106.880000pt;}
.fs4_c00239{font-size:128.000000pt;}
.fs3_c00239{font-size:171.008000pt;}
.y0_c00239{bottom:0.000000pt;}
.y2_c00239{bottom:22.752000pt;}
.y3_c00239{bottom:25.184000pt;}
.y1_c00239{bottom:27.904000pt;}
.y8_c00239{bottom:81.610667pt;}
.y7_c00239{bottom:103.210667pt;}
.y6_c00239{bottom:130.250667pt;}
.y5_c00239{bottom:172.869333pt;}
.y4_c00239{bottom:213.989333pt;}
.h1_c00239{height:45.937500pt;}
.h7_c00239{height:57.421875pt;}
.h8_c00239{height:57.424008pt;}
.h6_c00239{height:65.323125pt;}
.h3_c00239{height:68.906250pt;}
.h2_c00239{height:76.715625pt;}
.h5_c00239{height:91.875000pt;}
.h4_c00239{height:122.745000pt;}
.h0_c00239{height:720.000000pt;}
.w0_c00239{width:960.000000pt;}
.x0_c00239{left:0.000000pt;}
.x3_c00239{left:57.600000pt;}
.x4_c00239{left:189.666667pt;}
.x8_c00239{left:234.060000pt;}
.x6_c00239{left:284.428000pt;}
.x5_c00239{left:301.076000pt;}
.x7_c00239{left:342.953333pt;}
.x2_c00239{left:666.080000pt;}
.x1_c00239{left:739.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_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_4de2579d5929644aae039b0c.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-0.144000px;}
.ls1_c00240{letter-spacing:0.000000px;}
.ls0_c00240{letter-spacing:0.216000px;}
.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.264000px;}
.ws1_c00240{word-spacing:0.000000px;}
._2_c00240{margin-left:-3.492000px;}
._1_c00240{margin-left:-1.836000px;}
._0_c00240{width:1.224000px;}
.fc4_c00240{color:rgb(78,0,192);}
.fc3_c00240{color:rgb(119,11,11);}
.fc2_c00240{color:rgb(255,255,255);}
.fc1_c00240{color:rgb(127,127,127);}
.fc0_c00240{color:rgb(137,137,137);}
.fs0_c00240{font-size:72.000000px;}
.fs2_c00240{font-size:108.000000px;}
.fs3_c00240{font-size:108.144000px;}
.fs1_c00240{font-size:120.240000px;}
.fs4_c00240{font-size:192.240000px;}
.y4_c00240{bottom:-4.104000px;}
.y0_c00240{bottom:0.000000px;}
.y2_c00240{bottom:25.596000px;}
.y3_c00240{bottom:28.332000px;}
.y1_c00240{bottom:31.392000px;}
.y6_c00240{bottom:153.105000px;}
.y5_c00240{bottom:201.570000px;}
.h1_c00240{height:51.679688px;}
.h3_c00240{height:77.519531px;}
.h4_c00240{height:77.622891px;}
.h2_c00240{height:86.305078px;}
.h5_c00240{height:137.984766px;}
.h0_c00240{height:810.000000px;}
.w0_c00240{width:1080.000000px;}
.x0_c00240{left:0.000000px;}
.x3_c00240{left:64.800000px;}
.x4_c00240{left:375.810000px;}
.x5_c00240{left:453.855000px;}
.x2_c00240{left:749.340000px;}
.x1_c00240{left:831.600000px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls2_c00240{letter-spacing:-0.128000pt;}
.ls1_c00240{letter-spacing:0.000000pt;}
.ls0_c00240{letter-spacing:0.192000pt;}
.ws0_c00240{word-spacing:-21.568000pt;}
.ws1_c00240{word-spacing:0.000000pt;}
._2_c00240{margin-left:-3.104000pt;}
._1_c00240{margin-left:-1.632000pt;}
._0_c00240{width:1.088000pt;}
.fs0_c00240{font-size:64.000000pt;}
.fs2_c00240{font-size:96.000000pt;}
.fs3_c00240{font-size:96.128000pt;}
.fs1_c00240{font-size:106.880000pt;}
.fs4_c00240{font-size:170.880000pt;}
.y4_c00240{bottom:-3.648000pt;}
.y0_c00240{bottom:0.000000pt;}
.y2_c00240{bottom:22.752000pt;}
.y3_c00240{bottom:25.184000pt;}
.y1_c00240{bottom:27.904000pt;}
.y6_c00240{bottom:136.093333pt;}
.y5_c00240{bottom:179.173333pt;}
.h1_c00240{height:45.937500pt;}
.h3_c00240{height:68.906250pt;}
.h4_c00240{height:68.998125pt;}
.h2_c00240{height:76.715625pt;}
.h5_c00240{height:122.653125pt;}
.h0_c00240{height:720.000000pt;}
.w0_c00240{width:960.000000pt;}
.x0_c00240{left:0.000000pt;}
.x3_c00240{left:57.600000pt;}
.x4_c00240{left:334.053333pt;}
.x5_c00240{left:403.426667pt;}
.x2_c00240{left:666.080000pt;}
.x1_c00240{left:739.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_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_1b7eaa251dbfea49c411760b.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:0.727539;font-style:normal;font-weight:normal;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_b5c1d8addf86330629755996.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00241{letter-spacing:0.216000px;}
.ls0_c00241{letter-spacing:98.949600px;}
.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:0.000000px;}
._6_c00241{margin-left:-549.751680px;}
._7_c00241{margin-left:-548.328000px;}
._3_c00241{margin-left:-9.250200px;}
._4_c00241{margin-left:-7.738164px;}
._5_c00241{margin-left:-4.229880px;}
._0_c00241{margin-left:-2.521836px;}
._2_c00241{margin-left:-1.512000px;}
._1_c00241{width:1.224000px;}
._8_c00241{width:1031.196480px;}
.fc6_c00241{color:rgb(0,0,255);}
.fc5_c00241{color:rgb(0,32,96);}
.fc4_c00241{color:rgb(127,127,127);}
.fc3_c00241{color:rgb(255,255,255);}
.fc2_c00241{color:rgb(137,137,137);}
.fc1_c00241{color:rgb(0,0,0);}
.fc0_c00241{color:rgb(119,11,11);}
.fs6_c00241{font-size:63.360000px;}
.fs7_c00241{font-size:66.240000px;}
.fs1_c00241{font-size:72.000000px;}
.fs2_c00241{font-size:108.000000px;}
.fs3_c00241{font-size:108.144000px;}
.fs4_c00241{font-size:120.240000px;}
.fs0_c00241{font-size:180.144000px;}
.fs5_c00241{font-size:264.384000px;}
.y4_c00241{bottom:-4.104000px;}
.y0_c00241{bottom:0.000000px;}
.y5_c00241{bottom:25.596000px;}
.y3_c00241{bottom:28.332000px;}
.y2_c00241{bottom:31.392000px;}
.y8_c00241{bottom:208.875000px;}
.y7_c00241{bottom:227.775000px;}
.ya_c00241{bottom:443.670000px;}
.y9_c00241{bottom:462.570000px;}
.yd_c00241{bottom:466.305000px;}
.yc_c00241{bottom:486.105000px;}
.yb_c00241{bottom:571.890000px;}
.y1_c00241{bottom:573.405000px;}
.y6_c00241{bottom:687.885000px;}
.h7_c00241{height:45.478125px;}
.h8_c00241{height:47.545312px;}
.h2_c00241{height:51.679688px;}
.h3_c00241{height:77.519531px;}
.h4_c00241{height:77.622891px;}
.h5_c00241{height:86.305078px;}
.h1_c00241{height:129.302578px;}
.h6_c00241{height:189.767813px;}
.h0_c00241{height:810.000000px;}
.w0_c00241{width:1080.000000px;}
.x0_c00241{left:0.000000px;}
.x1_c00241{left:64.800000px;}
.xa_c00241{left:174.060000px;}
.xb_c00241{left:216.210000px;}
.x4_c00241{left:365.685000px;}
.x6_c00241{left:550.080000px;}
.x5_c00241{left:553.500000px;}
.x7_c00241{left:558.690000px;}
.x8_c00241{left:566.430000px;}
.x3_c00241{left:749.340000px;}
.x2_c00241{left:831.600000px;}
.x9_c00241{left:862.590000px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls1_c00241{letter-spacing:0.000000pt;}
.ls2_c00241{letter-spacing:0.192000pt;}
.ls0_c00241{letter-spacing:87.955200pt;}
.ws0_c00241{word-spacing:0.000000pt;}
._6_c00241{margin-left:-488.668160pt;}
._7_c00241{margin-left:-487.402667pt;}
._3_c00241{margin-left:-8.222400pt;}
._4_c00241{margin-left:-6.878368pt;}
._5_c00241{margin-left:-3.759893pt;}
._0_c00241{margin-left:-2.241632pt;}
._2_c00241{margin-left:-1.344000pt;}
._1_c00241{width:1.088000pt;}
._8_c00241{width:916.619093pt;}
.fs6_c00241{font-size:56.320000pt;}
.fs7_c00241{font-size:58.880000pt;}
.fs1_c00241{font-size:64.000000pt;}
.fs2_c00241{font-size:96.000000pt;}
.fs3_c00241{font-size:96.128000pt;}
.fs4_c00241{font-size:106.880000pt;}
.fs0_c00241{font-size:160.128000pt;}
.fs5_c00241{font-size:235.008000pt;}
.y4_c00241{bottom:-3.648000pt;}
.y0_c00241{bottom:0.000000pt;}
.y5_c00241{bottom:22.752000pt;}
.y3_c00241{bottom:25.184000pt;}
.y2_c00241{bottom:27.904000pt;}
.y8_c00241{bottom:185.666667pt;}
.y7_c00241{bottom:202.466667pt;}
.ya_c00241{bottom:394.373333pt;}
.y9_c00241{bottom:411.173333pt;}
.yd_c00241{bottom:414.493333pt;}
.yc_c00241{bottom:432.093333pt;}
.yb_c00241{bottom:508.346667pt;}
.y1_c00241{bottom:509.693333pt;}
.y6_c00241{bottom:611.453333pt;}
.h7_c00241{height:40.425000pt;}
.h8_c00241{height:42.262500pt;}
.h2_c00241{height:45.937500pt;}
.h3_c00241{height:68.906250pt;}
.h4_c00241{height:68.998125pt;}
.h5_c00241{height:76.715625pt;}
.h1_c00241{height:114.935625pt;}
.h6_c00241{height:168.682500pt;}
.h0_c00241{height:720.000000pt;}
.w0_c00241{width:960.000000pt;}
.x0_c00241{left:0.000000pt;}
.x1_c00241{left:57.600000pt;}
.xa_c00241{left:154.720000pt;}
.xb_c00241{left:192.186667pt;}
.x4_c00241{left:325.053333pt;}
.x6_c00241{left:488.960000pt;}
.x5_c00241{left:492.000000pt;}
.x7_c00241{left:496.613333pt;}
.x8_c00241{left:503.493333pt;}
.x3_c00241{left:666.080000pt;}
.x2_c00241{left:739.200000pt;}
.x9_c00241{left:766.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a17f4b6c6b1367608e2577fd.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.ls1_c00242{letter-spacing:0.000000px;}
.ls0_c00242{letter-spacing:0.216000px;}
.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;}
._3_c00242{margin-left:-9.396000px;}
._2_c00242{margin-left:-3.492000px;}
._1_c00242{margin-left:-1.836000px;}
._0_c00242{width:1.224000px;}
.fc4_c00242{color:rgb(78,0,192);}
.fc3_c00242{color:rgb(119,11,11);}
.fc2_c00242{color:rgb(255,255,255);}
.fc1_c00242{color:rgb(127,127,127);}
.fc0_c00242{color:rgb(137,137,137);}
.fs0_c00242{font-size:72.000000px;}
.fs2_c00242{font-size:108.000000px;}
.fs3_c00242{font-size:108.144000px;}
.fs1_c00242{font-size:120.240000px;}
.fs4_c00242{font-size:192.240000px;}
.y4_c00242{bottom:-4.104000px;}
.y0_c00242{bottom:0.000000px;}
.y2_c00242{bottom:25.596000px;}
.y3_c00242{bottom:28.332000px;}
.y1_c00242{bottom:31.392000px;}
.y6_c00242{bottom:153.105000px;}
.y5_c00242{bottom:201.570000px;}
.h1_c00242{height:51.679688px;}
.h3_c00242{height:77.519531px;}
.h4_c00242{height:77.622891px;}
.h2_c00242{height:86.305078px;}
.h5_c00242{height:137.984766px;}
.h0_c00242{height:810.000000px;}
.w0_c00242{width:1080.000000px;}
.x0_c00242{left:0.000000px;}
.x3_c00242{left:64.800000px;}
.x4_c00242{left:353.670000px;}
.x5_c00242{left:445.395000px;}
.x2_c00242{left:749.340000px;}
.x1_c00242{left:831.600000px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls1_c00242{letter-spacing:0.000000pt;}
.ls0_c00242{letter-spacing:0.192000pt;}
.ws0_c00242{word-spacing:0.000000pt;}
._3_c00242{margin-left:-8.352000pt;}
._2_c00242{margin-left:-3.104000pt;}
._1_c00242{margin-left:-1.632000pt;}
._0_c00242{width:1.088000pt;}
.fs0_c00242{font-size:64.000000pt;}
.fs2_c00242{font-size:96.000000pt;}
.fs3_c00242{font-size:96.128000pt;}
.fs1_c00242{font-size:106.880000pt;}
.fs4_c00242{font-size:170.880000pt;}
.y4_c00242{bottom:-3.648000pt;}
.y0_c00242{bottom:0.000000pt;}
.y2_c00242{bottom:22.752000pt;}
.y3_c00242{bottom:25.184000pt;}
.y1_c00242{bottom:27.904000pt;}
.y6_c00242{bottom:136.093333pt;}
.y5_c00242{bottom:179.173333pt;}
.h1_c00242{height:45.937500pt;}
.h3_c00242{height:68.906250pt;}
.h4_c00242{height:68.998125pt;}
.h2_c00242{height:76.715625pt;}
.h5_c00242{height:122.653125pt;}
.h0_c00242{height:720.000000pt;}
.w0_c00242{width:960.000000pt;}
.x0_c00242{left:0.000000pt;}
.x3_c00242{left:57.600000pt;}
.x4_c00242{left:314.373333pt;}
.x5_c00242{left:395.906667pt;}
.x2_c00242{left:666.080000pt;}
.x1_c00242{left:739.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_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_fe43214cc86c3e91d173e1fa.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00243;src:url('chunks/assets/font_1b7eaa251dbfea49c411760b.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:0.727539;font-style:normal;font-weight:normal;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_98611758cd31aacff688e72a.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:0.758789;font-style: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);}
.v1_c00243{vertical-align:-10.944000px;}
.v0_c00243{vertical-align:0.000000px;}
.ls4_c00243{letter-spacing:0.000000px;}
.ls5_c00243{letter-spacing:0.180000px;}
.ls3_c00243{letter-spacing:0.216000px;}
.ls2_c00243{letter-spacing:79.470048px;}
.ls1_c00243{letter-spacing:79.536000px;}
.ls0_c00243{letter-spacing:98.949600px;}
.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:0.000000px;}
._3_c00243{margin-left:-4.572000px;}
._4_c00243{margin-left:-2.700000px;}
._1_c00243{margin-left:-1.404000px;}
._0_c00243{width:1.224000px;}
._2_c00243{width:1501.308000px;}
.fc5_c00243{color:rgb(0,32,96);}
.fc3_c00243{color:rgb(119,11,11);}
.fc4_c00243{color:rgb(0,0,0);}
.fc2_c00243{color:rgb(127,127,127);}
.fc1_c00243{color:rgb(255,255,255);}
.fc0_c00243{color:rgb(137,137,137);}
.fs0_c00243{font-size:72.000000px;}
.fs1_c00243{font-size:108.000000px;}
.fs2_c00243{font-size:120.240000px;}
.fs4_c00243{font-size:180.000000px;}
.fs3_c00243{font-size:180.144000px;}
.fs6_c00243{font-size:192.384000px;}
.fs5_c00243{font-size:264.384000px;}
.y0_c00243{bottom:0.000000px;}
.y2_c00243{bottom:28.332000px;}
.y1_c00243{bottom:31.392000px;}
.ya_c00243{bottom:141.336000px;}
.y9_c00243{bottom:195.330000px;}
.y8_c00243{bottom:260.130000px;}
.y7_c00243{bottom:324.975000px;}
.y6_c00243{bottom:389.775000px;}
.y5_c00243{bottom:443.805000px;}
.y4_c00243{bottom:508.605000px;}
.y3_c00243{bottom:573.405000px;}
.yc_c00243{bottom:592.710000px;}
.yb_c00243{bottom:687.885000px;}
.h1_c00243{height:51.679688px;}
.h2_c00243{height:77.519531px;}
.h5_c00243{height:129.199219px;}
.h3_c00243{height:129.302578px;}
.h4_c00243{height:133.330078px;}
.h6_c00243{height:133.436742px;}
.h8_c00243{height:138.088125px;}
.h7_c00243{height:189.767813px;}
.h0_c00243{height:810.000000px;}
.w0_c00243{width:1080.000000px;}
.x0_c00243{left:0.000000px;}
.x2_c00243{left:64.800000px;}
.x3_c00243{left:118.836000px;}
.x4_c00243{left:159.330000px;}
.x5_c00243{left:365.685000px;}
.x6_c00243{left:574.380000px;}
.x1_c00243{left:831.600000px;}
@media print{
.v1_c00243{vertical-align:-9.728000pt;}
.v0_c00243{vertical-align:0.000000pt;}
.ls4_c00243{letter-spacing:0.000000pt;}
.ls5_c00243{letter-spacing:0.160000pt;}
.ls3_c00243{letter-spacing:0.192000pt;}
.ls2_c00243{letter-spacing:70.640043pt;}
.ls1_c00243{letter-spacing:70.698667pt;}
.ls0_c00243{letter-spacing:87.955200pt;}
.ws0_c00243{word-spacing:0.000000pt;}
._3_c00243{margin-left:-4.064000pt;}
._4_c00243{margin-left:-2.400000pt;}
._1_c00243{margin-left:-1.248000pt;}
._0_c00243{width:1.088000pt;}
._2_c00243{width:1334.496000pt;}
.fs0_c00243{font-size:64.000000pt;}
.fs1_c00243{font-size:96.000000pt;}
.fs2_c00243{font-size:106.880000pt;}
.fs4_c00243{font-size:160.000000pt;}
.fs3_c00243{font-size:160.128000pt;}
.fs6_c00243{font-size:171.008000pt;}
.fs5_c00243{font-size:235.008000pt;}
.y0_c00243{bottom:0.000000pt;}
.y2_c00243{bottom:25.184000pt;}
.y1_c00243{bottom:27.904000pt;}
.ya_c00243{bottom:125.632000pt;}
.y9_c00243{bottom:173.626667pt;}
.y8_c00243{bottom:231.226667pt;}
.y7_c00243{bottom:288.866667pt;}
.y6_c00243{bottom:346.466667pt;}
.y5_c00243{bottom:394.493333pt;}
.y4_c00243{bottom:452.093333pt;}
.y3_c00243{bottom:509.693333pt;}
.yc_c00243{bottom:526.853333pt;}
.yb_c00243{bottom:611.453333pt;}
.h1_c00243{height:45.937500pt;}
.h2_c00243{height:68.906250pt;}
.h5_c00243{height:114.843750pt;}
.h3_c00243{height:114.935625pt;}
.h4_c00243{height:118.515625pt;}
.h6_c00243{height:118.610438pt;}
.h8_c00243{height:122.745000pt;}
.h7_c00243{height:168.682500pt;}
.h0_c00243{height:720.000000pt;}
.w0_c00243{width:960.000000pt;}
.x0_c00243{left:0.000000pt;}
.x2_c00243{left:57.600000pt;}
.x3_c00243{left:105.632000pt;}
.x4_c00243{left:141.626667pt;}
.x5_c00243{left:325.053333pt;}
.x6_c00243{left:510.560000pt;}
.x1_c00243{left:739.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_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_b3bc4fddeab369388feb4817.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00244{vertical-align:1.020000px;}
.ls1_c00244{letter-spacing:0.000000px;}
.ls0_c00244{letter-spacing:0.216000px;}
.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:0.000000px;}
._3_c00244{margin-left:-9.396000px;}
._2_c00244{margin-left:-4.229880px;}
._1_c00244{margin-left:-1.404000px;}
._0_c00244{width:1.224000px;}
._4_c00244{width:399.072000px;}
._5_c00244{width:1418.012880px;}
.fc7_c00244{color:rgb(119,11,11);}
.fc6_c00244{color:rgb(0,0,255);}
.fc4_c00244{color:rgb(112,48,160);}
.fc3_c00244{color:rgb(0,32,96);}
.fc5_c00244{color:rgb(0,0,0);}
.fc2_c00244{color:rgb(127,127,127);}
.fc1_c00244{color:rgb(255,255,255);}
.fc0_c00244{color:rgb(137,137,137);}
.fs6_c00244{font-size:66.240000px;}
.fs7_c00244{font-size:66.384000px;}
.fs0_c00244{font-size:72.000000px;}
.fs5_c00244{font-size:84.240000px;}
.fs1_c00244{font-size:108.000000px;}
.fs2_c00244{font-size:108.144000px;}
.fs3_c00244{font-size:120.240000px;}
.fs4_c00244{font-size:264.384000px;}
.y3_c00244{bottom:-4.104000px;}
.y0_c00244{bottom:0.000000px;}
.y4_c00244{bottom:25.596000px;}
.y2_c00244{bottom:28.332000px;}
.y1_c00244{bottom:31.392000px;}
.ye_c00244{bottom:321.690000px;}
.yd_c00244{bottom:341.490000px;}
.y8_c00244{bottom:363.750000px;}
.y9_c00244{bottom:363.990000px;}
.yc_c00244{bottom:542.850000px;}
.yb_c00244{bottom:562.680000px;}
.y7_c00244{bottom:575.280000px;}
.ya_c00244{bottom:575.535000px;}
.y6_c00244{bottom:638.025000px;}
.y5_c00244{bottom:687.885000px;}
.h8_c00244{height:47.545312px;}
.h9_c00244{height:47.648672px;}
.h1_c00244{height:51.679688px;}
.h7_c00244{height:60.465234px;}
.h6_c00244{height:61.485234px;}
.h2_c00244{height:77.519531px;}
.h3_c00244{height:77.622891px;}
.h4_c00244{height:86.305078px;}
.h5_c00244{height:189.767813px;}
.h0_c00244{height:810.000000px;}
.w0_c00244{width:1080.000000px;}
.x0_c00244{left:0.000000px;}
.x2_c00244{left:64.800000px;}
.x9_c00244{left:150.045000px;}
.xa_c00244{left:192.165000px;}
.x6_c00244{left:364.170000px;}
.x5_c00244{left:465.810000px;}
.x4_c00244{left:483.585000px;}
.x8_c00244{left:704.955000px;}
.x3_c00244{left:749.340000px;}
.x1_c00244{left:831.600000px;}
.x7_c00244{left:944.670000px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.v1_c00244{vertical-align:0.906667pt;}
.ls1_c00244{letter-spacing:0.000000pt;}
.ls0_c00244{letter-spacing:0.192000pt;}
.ws0_c00244{word-spacing:0.000000pt;}
._3_c00244{margin-left:-8.352000pt;}
._2_c00244{margin-left:-3.759893pt;}
._1_c00244{margin-left:-1.248000pt;}
._0_c00244{width:1.088000pt;}
._4_c00244{width:354.730667pt;}
._5_c00244{width:1260.455893pt;}
.fs6_c00244{font-size:58.880000pt;}
.fs7_c00244{font-size:59.008000pt;}
.fs0_c00244{font-size:64.000000pt;}
.fs5_c00244{font-size:74.880000pt;}
.fs1_c00244{font-size:96.000000pt;}
.fs2_c00244{font-size:96.128000pt;}
.fs3_c00244{font-size:106.880000pt;}
.fs4_c00244{font-size:235.008000pt;}
.y3_c00244{bottom:-3.648000pt;}
.y0_c00244{bottom:0.000000pt;}
.y4_c00244{bottom:22.752000pt;}
.y2_c00244{bottom:25.184000pt;}
.y1_c00244{bottom:27.904000pt;}
.ye_c00244{bottom:285.946667pt;}
.yd_c00244{bottom:303.546667pt;}
.y8_c00244{bottom:323.333333pt;}
.y9_c00244{bottom:323.546667pt;}
.yc_c00244{bottom:482.533333pt;}
.yb_c00244{bottom:500.160000pt;}
.y7_c00244{bottom:511.360000pt;}
.ya_c00244{bottom:511.586667pt;}
.y6_c00244{bottom:567.133333pt;}
.y5_c00244{bottom:611.453333pt;}
.h8_c00244{height:42.262500pt;}
.h9_c00244{height:42.354375pt;}
.h1_c00244{height:45.937500pt;}
.h7_c00244{height:53.746875pt;}
.h6_c00244{height:54.653542pt;}
.h2_c00244{height:68.906250pt;}
.h3_c00244{height:68.998125pt;}
.h4_c00244{height:76.715625pt;}
.h5_c00244{height:168.682500pt;}
.h0_c00244{height:720.000000pt;}
.w0_c00244{width:960.000000pt;}
.x0_c00244{left:0.000000pt;}
.x2_c00244{left:57.600000pt;}
.x9_c00244{left:133.373333pt;}
.xa_c00244{left:170.813333pt;}
.x6_c00244{left:323.706667pt;}
.x5_c00244{left:414.053333pt;}
.x4_c00244{left:429.853333pt;}
.x8_c00244{left:626.626667pt;}
.x3_c00244{left:666.080000pt;}
.x1_c00244{left:739.200000pt;}
.x7_c00244{left:839.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_395df955f8efc9bd91bb634a.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00245{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00245{vertical-align:0.000000px;}
.ls1_c00245{letter-spacing:0.000000px;}
.ls0_c00245{letter-spacing:0.216000px;}
.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:0.000000px;}
._4_c00245{margin-left:-1272.403200px;}
._3_c00245{margin-left:-9.396000px;}
._2_c00245{margin-left:-4.229880px;}
._1_c00245{margin-left:-1.404000px;}
._0_c00245{width:1.224000px;}
._5_c00245{width:400.587840px;}
.fc7_c00245{color:rgb(119,11,11);}
.fc6_c00245{color:rgb(0,0,255);}
.fc4_c00245{color:rgb(112,48,160);}
.fc3_c00245{color:rgb(0,32,96);}
.fc5_c00245{color:rgb(0,0,0);}
.fc2_c00245{color:rgb(127,127,127);}
.fc1_c00245{color:rgb(255,255,255);}
.fc0_c00245{color:rgb(137,137,137);}
.fs6_c00245{font-size:66.240000px;}
.fs7_c00245{font-size:66.384000px;}
.fs0_c00245{font-size:72.000000px;}
.fs5_c00245{font-size:84.240000px;}
.fs1_c00245{font-size:108.000000px;}
.fs2_c00245{font-size:108.144000px;}
.fs3_c00245{font-size:120.240000px;}
.fs4_c00245{font-size:264.384000px;}
.y3_c00245{bottom:-4.104000px;}
.y0_c00245{bottom:0.000000px;}
.y4_c00245{bottom:25.596000px;}
.y2_c00245{bottom:28.332000px;}
.y1_c00245{bottom:31.392000px;}
.ye_c00245{bottom:321.690000px;}
.yd_c00245{bottom:341.490000px;}
.y7_c00245{bottom:363.750000px;}
.y8_c00245{bottom:363.990000px;}
.yc_c00245{bottom:542.850000px;}
.yb_c00245{bottom:562.680000px;}
.ya_c00245{bottom:575.280000px;}
.y9_c00245{bottom:575.535000px;}
.y6_c00245{bottom:638.025000px;}
.y5_c00245{bottom:687.885000px;}
.h7_c00245{height:47.545312px;}
.h8_c00245{height:47.648672px;}
.h1_c00245{height:51.679688px;}
.h6_c00245{height:60.465234px;}
.h2_c00245{height:77.519531px;}
.h3_c00245{height:77.622891px;}
.h4_c00245{height:86.305078px;}
.h5_c00245{height:189.767813px;}
.h0_c00245{height:810.000000px;}
.w0_c00245{width:1080.000000px;}
.x0_c00245{left:0.000000px;}
.x2_c00245{left:64.800000px;}
.xa_c00245{left:172.410000px;}
.x9_c00245{left:174.930000px;}
.x8_c00245{left:364.830000px;}
.x5_c00245{left:462.750000px;}
.x4_c00245{left:483.585000px;}
.x7_c00245{left:704.775000px;}
.x3_c00245{left:749.340000px;}
.x1_c00245{left:831.600000px;}
.x6_c00245{left:925.770000px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls1_c00245{letter-spacing:0.000000pt;}
.ls0_c00245{letter-spacing:0.192000pt;}
.ws0_c00245{word-spacing:0.000000pt;}
._4_c00245{margin-left:-1131.025067pt;}
._3_c00245{margin-left:-8.352000pt;}
._2_c00245{margin-left:-3.759893pt;}
._1_c00245{margin-left:-1.248000pt;}
._0_c00245{width:1.088000pt;}
._5_c00245{width:356.078080pt;}
.fs6_c00245{font-size:58.880000pt;}
.fs7_c00245{font-size:59.008000pt;}
.fs0_c00245{font-size:64.000000pt;}
.fs5_c00245{font-size:74.880000pt;}
.fs1_c00245{font-size:96.000000pt;}
.fs2_c00245{font-size:96.128000pt;}
.fs3_c00245{font-size:106.880000pt;}
.fs4_c00245{font-size:235.008000pt;}
.y3_c00245{bottom:-3.648000pt;}
.y0_c00245{bottom:0.000000pt;}
.y4_c00245{bottom:22.752000pt;}
.y2_c00245{bottom:25.184000pt;}
.y1_c00245{bottom:27.904000pt;}
.ye_c00245{bottom:285.946667pt;}
.yd_c00245{bottom:303.546667pt;}
.y7_c00245{bottom:323.333333pt;}
.y8_c00245{bottom:323.546667pt;}
.yc_c00245{bottom:482.533333pt;}
.yb_c00245{bottom:500.160000pt;}
.ya_c00245{bottom:511.360000pt;}
.y9_c00245{bottom:511.586667pt;}
.y6_c00245{bottom:567.133333pt;}
.y5_c00245{bottom:611.453333pt;}
.h7_c00245{height:42.262500pt;}
.h8_c00245{height:42.354375pt;}
.h1_c00245{height:45.937500pt;}
.h6_c00245{height:53.746875pt;}
.h2_c00245{height:68.906250pt;}
.h3_c00245{height:68.998125pt;}
.h4_c00245{height:76.715625pt;}
.h5_c00245{height:168.682500pt;}
.h0_c00245{height:720.000000pt;}
.w0_c00245{width:960.000000pt;}
.x0_c00245{left:0.000000pt;}
.x2_c00245{left:57.600000pt;}
.xa_c00245{left:153.253333pt;}
.x9_c00245{left:155.493333pt;}
.x8_c00245{left:324.293333pt;}
.x5_c00245{left:411.333333pt;}
.x4_c00245{left:429.853333pt;}
.x7_c00245{left:626.466667pt;}
.x3_c00245{left:666.080000pt;}
.x1_c00245{left:739.200000pt;}
.x6_c00245{left:822.906667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d473ca62e731ff41aacd123b.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00246{vertical-align:-10.944000px;}
.v2_c00246{vertical-align:-6.600000px;}
.v0_c00246{vertical-align:0.000000px;}
.ls1_c00246{letter-spacing:0.000000px;}
.ls0_c00246{letter-spacing:0.216000px;}
.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:0.000000px;}
._4_c00246{margin-left:-9.396000px;}
._3_c00246{margin-left:-4.229880px;}
._1_c00246{margin-left:-1.404000px;}
._0_c00246{width:1.224000px;}
._6_c00246{width:433.152000px;}
._5_c00246{width:437.440320px;}
._7_c00246{width:455.852880px;}
._2_c00246{width:1778.760000px;}
.fc8_c00246{color:rgb(119,11,11);}
.fc6_c00246{color:rgb(0,0,255);}
.fc4_c00246{color:rgb(112,48,160);}
.fc3_c00246{color:rgb(0,32,96);}
.fc7_c00246{color:rgb(0,176,80);}
.fc5_c00246{color:rgb(0,0,0);}
.fc2_c00246{color:rgb(127,127,127);}
.fc1_c00246{color:rgb(255,255,255);}
.fc0_c00246{color:rgb(137,137,137);}
.fs5_c00246{font-size:66.240000px;}
.fs6_c00246{font-size:66.384000px;}
.fs0_c00246{font-size:72.000000px;}
.fs4_c00246{font-size:84.240000px;}
.fs1_c00246{font-size:108.000000px;}
.fs2_c00246{font-size:120.240000px;}
.fs3_c00246{font-size:264.384000px;}
.y0_c00246{bottom:0.000000px;}
.y2_c00246{bottom:28.332000px;}
.y1_c00246{bottom:31.392000px;}
.yb_c00246{bottom:301.860000px;}
.ya_c00246{bottom:321.690000px;}
.y9_c00246{bottom:341.490000px;}
.yc_c00246{bottom:363.750000px;}
.y8_c00246{bottom:523.050000px;}
.y7_c00246{bottom:542.850000px;}
.y6_c00246{bottom:562.680000px;}
.y5_c00246{bottom:575.280000px;}
.y4_c00246{bottom:638.025000px;}
.y3_c00246{bottom:687.885000px;}
.h5_c00246{height:47.545312px;}
.h6_c00246{height:47.648672px;}
.h1_c00246{height:51.679688px;}
.h4_c00246{height:60.465234px;}
.h2_c00246{height:77.519531px;}
.h3_c00246{height:189.767813px;}
.h0_c00246{height:810.000000px;}
.w0_c00246{width:1080.000000px;}
.x0_c00246{left:0.000000px;}
.x2_c00246{left:64.800000px;}
.x6_c00246{left:183.930000px;}
.x7_c00246{left:229.650000px;}
.x5_c00246{left:440.670000px;}
.x4_c00246{left:472.650000px;}
.x3_c00246{left:483.585000px;}
.x1_c00246{left:831.600000px;}
.x8_c00246{left:925.770000px;}
@media print{
.v1_c00246{vertical-align:-9.728000pt;}
.v2_c00246{vertical-align:-5.866667pt;}
.v0_c00246{vertical-align:0.000000pt;}
.ls1_c00246{letter-spacing:0.000000pt;}
.ls0_c00246{letter-spacing:0.192000pt;}
.ws0_c00246{word-spacing:0.000000pt;}
._4_c00246{margin-left:-8.352000pt;}
._3_c00246{margin-left:-3.759893pt;}
._1_c00246{margin-left:-1.248000pt;}
._0_c00246{width:1.088000pt;}
._6_c00246{width:385.024000pt;}
._5_c00246{width:388.835840pt;}
._7_c00246{width:405.202560pt;}
._2_c00246{width:1581.120000pt;}
.fs5_c00246{font-size:58.880000pt;}
.fs6_c00246{font-size:59.008000pt;}
.fs0_c00246{font-size:64.000000pt;}
.fs4_c00246{font-size:74.880000pt;}
.fs1_c00246{font-size:96.000000pt;}
.fs2_c00246{font-size:106.880000pt;}
.fs3_c00246{font-size:235.008000pt;}
.y0_c00246{bottom:0.000000pt;}
.y2_c00246{bottom:25.184000pt;}
.y1_c00246{bottom:27.904000pt;}
.yb_c00246{bottom:268.320000pt;}
.ya_c00246{bottom:285.946667pt;}
.y9_c00246{bottom:303.546667pt;}
.yc_c00246{bottom:323.333333pt;}
.y8_c00246{bottom:464.933333pt;}
.y7_c00246{bottom:482.533333pt;}
.y6_c00246{bottom:500.160000pt;}
.y5_c00246{bottom:511.360000pt;}
.y4_c00246{bottom:567.133333pt;}
.y3_c00246{bottom:611.453333pt;}
.h5_c00246{height:42.262500pt;}
.h6_c00246{height:42.354375pt;}
.h1_c00246{height:45.937500pt;}
.h4_c00246{height:53.746875pt;}
.h2_c00246{height:68.906250pt;}
.h3_c00246{height:168.682500pt;}
.h0_c00246{height:720.000000pt;}
.w0_c00246{width:960.000000pt;}
.x0_c00246{left:0.000000pt;}
.x2_c00246{left:57.600000pt;}
.x6_c00246{left:163.493333pt;}
.x7_c00246{left:204.133333pt;}
.x5_c00246{left:391.706667pt;}
.x4_c00246{left:420.133333pt;}
.x3_c00246{left:429.853333pt;}
.x1_c00246{left:739.200000pt;}
.x8_c00246{left:822.906667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fa95f6b9fe94f77037fcb5a9.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00247{letter-spacing:-0.230400px;}
.ls4_c00247{letter-spacing:-0.164400px;}
.ls0_c00247{letter-spacing:0.000000px;}
.ls2_c00247{letter-spacing:0.141000px;}
.ls1_c00247{letter-spacing:0.216000px;}
.sc__c00247{text-shadow:none;}
.sc0_c00247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00247{-webkit-text-stroke:0px transparent;}
.sc0_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00247{word-spacing:-15.111240px;}
.ws2_c00247{word-spacing:-14.805840px;}
.ws1_c00247{word-spacing:-14.772384px;}
.ws3_c00247{word-spacing:0.000000px;}
._1_c00247{margin-left:-1272.543600px;}
._6_c00247{margin-left:-821.972160px;}
._4_c00247{margin-left:-9.396000px;}
._3_c00247{margin-left:-4.229880px;}
._0_c00247{margin-left:-1.263600px;}
._2_c00247{width:1.224000px;}
._5_c00247{width:391.128000px;}
.fc7_c00247{color:rgb(119,11,11);}
.fc6_c00247{color:rgb(0,0,255);}
.fc5_c00247{color:rgb(112,48,160);}
.fc4_c00247{color:rgb(0,32,96);}
.fc3_c00247{color:rgb(127,127,127);}
.fc2_c00247{color:rgb(255,255,255);}
.fc1_c00247{color:rgb(137,137,137);}
.fc0_c00247{color:rgb(0,0,0);}
.fs6_c00247{font-size:66.240000px;}
.fs7_c00247{font-size:66.384000px;}
.fs1_c00247{font-size:72.000000px;}
.fs0_c00247{font-size:84.240000px;}
.fs2_c00247{font-size:108.000000px;}
.fs3_c00247{font-size:108.144000px;}
.fs4_c00247{font-size:120.240000px;}
.fs5_c00247{font-size:264.384000px;}
.y4_c00247{bottom:-4.104000px;}
.y0_c00247{bottom:0.000000px;}
.y5_c00247{bottom:25.596000px;}
.y3_c00247{bottom:28.332000px;}
.y2_c00247{bottom:31.392000px;}
.yd_c00247{bottom:321.690000px;}
.yc_c00247{bottom:341.490000px;}
.y1_c00247{bottom:362.880000px;}
.ye_c00247{bottom:379.875000px;}
.yb_c00247{bottom:542.850000px;}
.ya_c00247{bottom:562.680000px;}
.y9_c00247{bottom:575.310000px;}
.y8_c00247{bottom:575.535000px;}
.y7_c00247{bottom:638.025000px;}
.y6_c00247{bottom:687.885000px;}
.h7_c00247{height:47.545312px;}
.h8_c00247{height:47.648672px;}
.h2_c00247{height:51.679688px;}
.h1_c00247{height:60.465234px;}
.h3_c00247{height:77.519531px;}
.h4_c00247{height:77.622891px;}
.h5_c00247{height:86.305078px;}
.h6_c00247{height:189.767813px;}
.h0_c00247{height:810.000000px;}
.w0_c00247{width:1080.000000px;}
.x0_c00247{left:0.000000px;}
.x3_c00247{left:64.800000px;}
.x8_c00247{left:212.010000px;}
.x9_c00247{left:214.530000px;}
.x7_c00247{left:361.470000px;}
.x6_c00247{left:472.650000px;}
.x5_c00247{left:483.585000px;}
.xa_c00247{left:517.290000px;}
.x4_c00247{left:749.340000px;}
.x2_c00247{left:831.600000px;}
.x1_c00247{left:925.770000px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls3_c00247{letter-spacing:-0.204800pt;}
.ls4_c00247{letter-spacing:-0.146133pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ls2_c00247{letter-spacing:0.125333pt;}
.ls1_c00247{letter-spacing:0.192000pt;}
.ws0_c00247{word-spacing:-13.432213pt;}
.ws2_c00247{word-spacing:-13.160747pt;}
.ws1_c00247{word-spacing:-13.131008pt;}
.ws3_c00247{word-spacing:0.000000pt;}
._1_c00247{margin-left:-1131.149867pt;}
._6_c00247{margin-left:-730.641920pt;}
._4_c00247{margin-left:-8.352000pt;}
._3_c00247{margin-left:-3.759893pt;}
._0_c00247{margin-left:-1.123200pt;}
._2_c00247{width:1.088000pt;}
._5_c00247{width:347.669333pt;}
.fs6_c00247{font-size:58.880000pt;}
.fs7_c00247{font-size:59.008000pt;}
.fs1_c00247{font-size:64.000000pt;}
.fs0_c00247{font-size:74.880000pt;}
.fs2_c00247{font-size:96.000000pt;}
.fs3_c00247{font-size:96.128000pt;}
.fs4_c00247{font-size:106.880000pt;}
.fs5_c00247{font-size:235.008000pt;}
.y4_c00247{bottom:-3.648000pt;}
.y0_c00247{bottom:0.000000pt;}
.y5_c00247{bottom:22.752000pt;}
.y3_c00247{bottom:25.184000pt;}
.y2_c00247{bottom:27.904000pt;}
.yd_c00247{bottom:285.946667pt;}
.yc_c00247{bottom:303.546667pt;}
.y1_c00247{bottom:322.560000pt;}
.ye_c00247{bottom:337.666667pt;}
.yb_c00247{bottom:482.533333pt;}
.ya_c00247{bottom:500.160000pt;}
.y9_c00247{bottom:511.386667pt;}
.y8_c00247{bottom:511.586667pt;}
.y7_c00247{bottom:567.133333pt;}
.y6_c00247{bottom:611.453333pt;}
.h7_c00247{height:42.262500pt;}
.h8_c00247{height:42.354375pt;}
.h2_c00247{height:45.937500pt;}
.h1_c00247{height:53.746875pt;}
.h3_c00247{height:68.906250pt;}
.h4_c00247{height:68.998125pt;}
.h5_c00247{height:76.715625pt;}
.h6_c00247{height:168.682500pt;}
.h0_c00247{height:720.000000pt;}
.w0_c00247{width:960.000000pt;}
.x0_c00247{left:0.000000pt;}
.x3_c00247{left:57.600000pt;}
.x8_c00247{left:188.453333pt;}
.x9_c00247{left:190.693333pt;}
.x7_c00247{left:321.306667pt;}
.x6_c00247{left:420.133333pt;}
.x5_c00247{left:429.853333pt;}
.xa_c00247{left:459.813333pt;}
.x4_c00247{left:666.080000pt;}
.x2_c00247{left:739.200000pt;}
.x1_c00247{left:822.906667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44cd4dd9f78801c88d0f424c.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00248;src:url('chunks/assets/font_1b7eaa251dbfea49c411760b.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:0.727539;font-style:normal;font-weight:normal;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_98611758cd31aacff688e72a.woff2')format("woff");}.ff3_c00248{font-family:ff3_c00248;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00248;src:url('chunks/assets/font_c96b3dff79c4035fbe9369a2.woff2')format("woff");}.ff4_c00248{font-family:ff4_c00248;line-height:0.861816;font-style: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);}
.v1_c00248{vertical-align:-10.944000px;}
.v2_c00248{vertical-align:-6.900000px;}
.v0_c00248{vertical-align:0.000000px;}
.ls7_c00248{letter-spacing:0.000000px;}
.ls6_c00248{letter-spacing:0.216000px;}
.ls3_c00248{letter-spacing:0.238200px;}
.ls2_c00248{letter-spacing:96.754080px;}
.ls5_c00248{letter-spacing:96.778080px;}
.ls1_c00248{letter-spacing:96.958080px;}
.ls4_c00248{letter-spacing:124.149600px;}
.ls0_c00248{letter-spacing:124.200000px;}
.sc__c00248{text-shadow:none;}
.sc0_c00248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00248{-webkit-text-stroke:0px transparent;}
.sc0_c00248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00248{word-spacing:-27.412440px;}
.ws0_c00248{word-spacing:-19.038240px;}
.ws2_c00248{word-spacing:0.000000px;}
._4_c00248{margin-left:-9.396000px;}
._6_c00248{margin-left:-7.991448px;}
._3_c00248{margin-left:-4.229880px;}
._5_c00248{margin-left:-2.527200px;}
._1_c00248{margin-left:-1.404000px;}
._0_c00248{width:1.224000px;}
._7_c00248{width:406.168320px;}
._2_c00248{width:1866.528000px;}
.fc8_c00248{color:transparent;}
.fc7_c00248{color:rgb(108,84,138);}
.fc5_c00248{color:rgb(119,11,11);}
.fc4_c00248{color:rgb(112,48,160);}
.fc3_c00248{color:rgb(0,32,96);}
.fc6_c00248{color:rgb(0,0,0);}
.fc2_c00248{color:rgb(127,127,127);}
.fc1_c00248{color:rgb(255,255,255);}
.fc0_c00248{color:rgb(137,137,137);}
.fs8_c00248{font-size:66.240000px;}
.fs0_c00248{font-size:72.000000px;}
.fs4_c00248{font-size:84.240000px;}
.fs7_c00248{font-size:84.384000px;}
.fs5_c00248{font-size:95.760000px;}
.fs6_c00248{font-size:95.904000px;}
.fs1_c00248{font-size:108.000000px;}
.fs9_c00248{font-size:108.144000px;}
.fs2_c00248{font-size:120.240000px;}
.fs3_c00248{font-size:264.384000px;}
.y0_c00248{bottom:0.000000px;}
.y2_c00248{bottom:28.332000px;}
.y1_c00248{bottom:31.392000px;}
.y25_c00248{bottom:75.672000px;}
.y24_c00248{bottom:103.392000px;}
.y23_c00248{bottom:131.112000px;}
.y1c_c00248{bottom:153.285000px;}
.y22_c00248{bottom:158.835000px;}
.y21_c00248{bottom:186.555000px;}
.y1a_c00248{bottom:195.810000px;}
.y20_c00248{bottom:217.620000px;}
.y18_c00248{bottom:238.350000px;}
.y1d_c00248{bottom:252.330000px;}
.y1f_c00248{bottom:254.595000px;}
.y8_c00248{bottom:261.465000px;}
.y1b_c00248{bottom:281.055000px;}
.y7_c00248{bottom:286.665000px;}
.y1e_c00248{bottom:311.865000px;}
.y6_c00248{bottom:316.905000px;}
.y19_c00248{bottom:323.610000px;}
.y5_c00248{bottom:348.765000px;}
.y10_c00248{bottom:369.870000px;}
.y17_c00248{bottom:395.280000px;}
.yf_c00248{bottom:400.110000px;}
.ye_c00248{bottom:425.310000px;}
.y16_c00248{bottom:425.520000px;}
.yd_c00248{bottom:450.510000px;}
.y15_c00248{bottom:450.720000px;}
.yc_c00248{bottom:480.780000px;}
.y14_c00248{bottom:480.960000px;}
.yb_c00248{bottom:511.020000px;}
.y13_c00248{bottom:511.230000px;}
.ya_c00248{bottom:541.260000px;}
.y12_c00248{bottom:541.470000px;}
.y9_c00248{bottom:573.120000px;}
.y11_c00248{bottom:573.330000px;}
.y4_c00248{bottom:638.025000px;}
.y3_c00248{bottom:687.885000px;}
.h1_c00248{height:51.679688px;}
.h5_c00248{height:60.465234px;}
.ha_c00248{height:60.568594px;}
.h4_c00248{height:62.398477px;}
.h6_c00248{height:65.460938px;}
.h7_c00248{height:68.733984px;}
.h8_c00248{height:68.837344px;}
.hb_c00248{height:70.722891px;}
.h2_c00248{height:77.519531px;}
.h9_c00248{height:82.195312px;}
.h3_c00248{height:189.767813px;}
.h0_c00248{height:810.000000px;}
.w0_c00248{width:1080.000000px;}
.x0_c00248{left:0.000000px;}
.x2_c00248{left:64.800000px;}
.xd_c00248{left:100.044000px;}
.xe_c00248{left:112.860000px;}
.xb_c00248{left:118.836000px;}
.xc_c00248{left:152.670000px;}
.xf_c00248{left:308.340000px;}
.x3_c00248{left:341.355000px;}
.x10_c00248{left:466.020000px;}
.x4_c00248{left:496.950000px;}
.x8_c00248{left:542.370000px;}
.x11_c00248{left:587.085000px;}
.x9_c00248{left:596.370000px;}
.x12_c00248{left:604.260000px;}
.xa_c00248{left:630.255000px;}
.x5_c00248{left:681.045000px;}
.x6_c00248{left:735.045000px;}
.x7_c00248{left:768.930000px;}
.x13_c00248{left:796.350000px;}
.x14_c00248{left:830.190000px;}
.x1_c00248{left:831.600000px;}
@media print{
.v1_c00248{vertical-align:-9.728000pt;}
.v2_c00248{vertical-align:-6.133333pt;}
.v0_c00248{vertical-align:0.000000pt;}
.ls7_c00248{letter-spacing:0.000000pt;}
.ls6_c00248{letter-spacing:0.192000pt;}
.ls3_c00248{letter-spacing:0.211733pt;}
.ls2_c00248{letter-spacing:86.003627pt;}
.ls5_c00248{letter-spacing:86.024960pt;}
.ls1_c00248{letter-spacing:86.184960pt;}
.ls4_c00248{letter-spacing:110.355200pt;}
.ls0_c00248{letter-spacing:110.400000pt;}
.ws1_c00248{word-spacing:-24.366613pt;}
.ws0_c00248{word-spacing:-16.922880pt;}
.ws2_c00248{word-spacing:0.000000pt;}
._4_c00248{margin-left:-8.352000pt;}
._6_c00248{margin-left:-7.103510pt;}
._3_c00248{margin-left:-3.759893pt;}
._5_c00248{margin-left:-2.246400pt;}
._1_c00248{margin-left:-1.248000pt;}
._0_c00248{width:1.088000pt;}
._7_c00248{width:361.038507pt;}
._2_c00248{width:1659.136000pt;}
.fs8_c00248{font-size:58.880000pt;}
.fs0_c00248{font-size:64.000000pt;}
.fs4_c00248{font-size:74.880000pt;}
.fs7_c00248{font-size:75.008000pt;}
.fs5_c00248{font-size:85.120000pt;}
.fs6_c00248{font-size:85.248000pt;}
.fs1_c00248{font-size:96.000000pt;}
.fs9_c00248{font-size:96.128000pt;}
.fs2_c00248{font-size:106.880000pt;}
.fs3_c00248{font-size:235.008000pt;}
.y0_c00248{bottom:0.000000pt;}
.y2_c00248{bottom:25.184000pt;}
.y1_c00248{bottom:27.904000pt;}
.y25_c00248{bottom:67.264000pt;}
.y24_c00248{bottom:91.904000pt;}
.y23_c00248{bottom:116.544000pt;}
.y1c_c00248{bottom:136.253333pt;}
.y22_c00248{bottom:141.186667pt;}
.y21_c00248{bottom:165.826667pt;}
.y1a_c00248{bottom:174.053333pt;}
.y20_c00248{bottom:193.440000pt;}
.y18_c00248{bottom:211.866667pt;}
.y1d_c00248{bottom:224.293333pt;}
.y1f_c00248{bottom:226.306667pt;}
.y8_c00248{bottom:232.413333pt;}
.y1b_c00248{bottom:249.826667pt;}
.y7_c00248{bottom:254.813333pt;}
.y1e_c00248{bottom:277.213333pt;}
.y6_c00248{bottom:281.693333pt;}
.y19_c00248{bottom:287.653333pt;}
.y5_c00248{bottom:310.013333pt;}
.y10_c00248{bottom:328.773333pt;}
.y17_c00248{bottom:351.360000pt;}
.yf_c00248{bottom:355.653333pt;}
.ye_c00248{bottom:378.053333pt;}
.y16_c00248{bottom:378.240000pt;}
.yd_c00248{bottom:400.453333pt;}
.y15_c00248{bottom:400.640000pt;}
.yc_c00248{bottom:427.360000pt;}
.y14_c00248{bottom:427.520000pt;}
.yb_c00248{bottom:454.240000pt;}
.y13_c00248{bottom:454.426667pt;}
.ya_c00248{bottom:481.120000pt;}
.y12_c00248{bottom:481.306667pt;}
.y9_c00248{bottom:509.440000pt;}
.y11_c00248{bottom:509.626667pt;}
.y4_c00248{bottom:567.133333pt;}
.y3_c00248{bottom:611.453333pt;}
.h1_c00248{height:45.937500pt;}
.h5_c00248{height:53.746875pt;}
.ha_c00248{height:53.838750pt;}
.h4_c00248{height:55.465312pt;}
.h6_c00248{height:58.187500pt;}
.h7_c00248{height:61.096875pt;}
.h8_c00248{height:61.188750pt;}
.hb_c00248{height:62.864792pt;}
.h2_c00248{height:68.906250pt;}
.h9_c00248{height:73.062500pt;}
.h3_c00248{height:168.682500pt;}
.h0_c00248{height:720.000000pt;}
.w0_c00248{width:960.000000pt;}
.x0_c00248{left:0.000000pt;}
.x2_c00248{left:57.600000pt;}
.xd_c00248{left:88.928000pt;}
.xe_c00248{left:100.320000pt;}
.xb_c00248{left:105.632000pt;}
.xc_c00248{left:135.706667pt;}
.xf_c00248{left:274.080000pt;}
.x3_c00248{left:303.426667pt;}
.x10_c00248{left:414.240000pt;}
.x4_c00248{left:441.733333pt;}
.x8_c00248{left:482.106667pt;}
.x11_c00248{left:521.853333pt;}
.x9_c00248{left:530.106667pt;}
.x12_c00248{left:537.120000pt;}
.xa_c00248{left:560.226667pt;}
.x5_c00248{left:605.373333pt;}
.x6_c00248{left:653.373333pt;}
.x7_c00248{left:683.493333pt;}
.x13_c00248{left:707.866667pt;}
.x14_c00248{left:737.946667pt;}
.x1_c00248{left:739.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_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_784d2492742ec58b023c5022.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00249{letter-spacing:0.000000px;}
.ls0_c00249{letter-spacing:0.216000px;}
.ls2_c00249{letter-spacing:0.238200px;}
.sc__c00249{text-shadow:none;}
.sc0_c00249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00249{-webkit-text-stroke:0px transparent;}
.sc0_c00249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00249{word-spacing:0.000000px;}
._2_c00249{margin-left:-3.492000px;}
._1_c00249{margin-left:-1.836000px;}
._0_c00249{width:1.224000px;}
.fc3_c00249{color:rgb(119,11,11);}
.fc2_c00249{color:rgb(255,255,255);}
.fc1_c00249{color:rgb(127,127,127);}
.fc0_c00249{color:rgb(137,137,137);}
.fs0_c00249{font-size:72.000000px;}
.fs2_c00249{font-size:108.000000px;}
.fs3_c00249{font-size:108.144000px;}
.fs1_c00249{font-size:120.240000px;}
.fs4_c00249{font-size:192.240000px;}
.y4_c00249{bottom:-4.104000px;}
.y0_c00249{bottom:0.000000px;}
.y2_c00249{bottom:25.596000px;}
.y3_c00249{bottom:28.332000px;}
.y1_c00249{bottom:31.392000px;}
.y5_c00249{bottom:201.570000px;}
.h1_c00249{height:51.679688px;}
.h3_c00249{height:77.519531px;}
.h4_c00249{height:77.622891px;}
.h2_c00249{height:86.305078px;}
.h5_c00249{height:137.984766px;}
.h0_c00249{height:810.000000px;}
.w0_c00249{width:1080.000000px;}
.x0_c00249{left:0.000000px;}
.x3_c00249{left:64.800000px;}
.x4_c00249{left:343.590000px;}
.x2_c00249{left:741.600000px;}
.x1_c00249{left:831.600000px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls1_c00249{letter-spacing:0.000000pt;}
.ls0_c00249{letter-spacing:0.192000pt;}
.ls2_c00249{letter-spacing:0.211733pt;}
.ws0_c00249{word-spacing:0.000000pt;}
._2_c00249{margin-left:-3.104000pt;}
._1_c00249{margin-left:-1.632000pt;}
._0_c00249{width:1.088000pt;}
.fs0_c00249{font-size:64.000000pt;}
.fs2_c00249{font-size:96.000000pt;}
.fs3_c00249{font-size:96.128000pt;}
.fs1_c00249{font-size:106.880000pt;}
.fs4_c00249{font-size:170.880000pt;}
.y4_c00249{bottom:-3.648000pt;}
.y0_c00249{bottom:0.000000pt;}
.y2_c00249{bottom:22.752000pt;}
.y3_c00249{bottom:25.184000pt;}
.y1_c00249{bottom:27.904000pt;}
.y5_c00249{bottom:179.173333pt;}
.h1_c00249{height:45.937500pt;}
.h3_c00249{height:68.906250pt;}
.h4_c00249{height:68.998125pt;}
.h2_c00249{height:76.715625pt;}
.h5_c00249{height:122.653125pt;}
.h0_c00249{height:720.000000pt;}
.w0_c00249{width:960.000000pt;}
.x0_c00249{left:0.000000pt;}
.x3_c00249{left:57.600000pt;}
.x4_c00249{left:305.413333pt;}
.x2_c00249{left:659.200000pt;}
.x1_c00249{left:739.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_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_1b7eaa251dbfea49c411760b.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:0.727539;font-style:normal;font-weight:normal;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_1098fc932f51038a4c5ef95f.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00250;src:url('chunks/assets/font_98611758cd31aacff688e72a.woff2')format("woff");}.ff3_c00250{font-family:ff3_c00250;line-height:0.758789;font-style: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;}
.ls7_c00250{letter-spacing:0.000000px;}
.ls9_c00250{letter-spacing:0.216000px;}
.ls8_c00250{letter-spacing:0.238200px;}
.ls1_c00250{letter-spacing:1.800000px;}
.ls2_c00250{letter-spacing:85.075968px;}
.ls3_c00250{letter-spacing:85.141920px;}
.ls6_c00250{letter-spacing:95.982048px;}
.ls5_c00250{letter-spacing:96.048000px;}
.ls0_c00250{letter-spacing:103.284000px;}
.ls4_c00250{letter-spacing:107.316000px;}
.sc__c00250{text-shadow:none;}
.sc0_c00250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00250{-webkit-text-stroke:0px transparent;}
.sc0_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00250{word-spacing:-37.913760px;}
.ws1_c00250{word-spacing:-35.310240px;}
.ws2_c00250{word-spacing:0.000000px;}
._4_c00250{margin-left:-8.936928px;}
._1_c00250{margin-left:-3.694392px;}
._2_c00250{margin-left:-2.680656px;}
._0_c00250{margin-left:-1.678704px;}
._3_c00250{width:1.065324px;}
.fc5_c00250{color:rgb(0,32,96);}
.fc4_c00250{color:rgb(112,48,160);}
.fc6_c00250{color:rgb(137,137,137);}
.fc3_c00250{color:rgb(127,127,127);}
.fc2_c00250{color:rgb(255,255,255);}
.fc1_c00250{color:rgb(0,0,0);}
.fc0_c00250{color:rgb(119,11,11);}
.fsa_c00250{font-size:72.000000px;}
.fs3_c00250{font-size:108.000000px;}
.fs4_c00250{font-size:108.144000px;}
.fs5_c00250{font-size:120.240000px;}
.fs7_c00250{font-size:144.000000px;}
.fs8_c00250{font-size:144.144000px;}
.fs6_c00250{font-size:156.240000px;}
.fs0_c00250{font-size:167.760000px;}
.fs2_c00250{font-size:167.904000px;}
.fs1_c00250{font-size:180.000000px;}
.fs9_c00250{font-size:264.384000px;}
.y6_c00250{bottom:-4.104000px;}
.y0_c00250{bottom:0.000000px;}
.y7_c00250{bottom:25.596000px;}
.y5_c00250{bottom:28.332000px;}
.y17_c00250{bottom:31.392000px;}
.y12_c00250{bottom:104.292000px;}
.y13_c00250{bottom:136.116000px;}
.y11_c00250{bottom:151.815000px;}
.y10_c00250{bottom:190.725000px;}
.yf_c00250{bottom:229.605000px;}
.ye_c00250{bottom:277.125000px;}
.y14_c00250{bottom:281.805000px;}
.yd_c00250{bottom:316.005000px;}
.yc_c00250{bottom:363.570000px;}
.y4_c00250{bottom:372.165000px;}
.yb_c00250{bottom:411.090000px;}
.y3_c00250{bottom:432.645000px;}
.ya_c00250{bottom:458.610000px;}
.y2_c00250{bottom:493.125000px;}
.y9_c00250{bottom:506.160000px;}
.y1_c00250{bottom:554.370000px;}
.y8_c00250{bottom:554.400000px;}
.y15_c00250{bottom:638.025000px;}
.y16_c00250{bottom:687.885000px;}
.hd_c00250{height:51.679688px;}
.h4_c00250{height:77.519531px;}
.h5_c00250{height:77.622891px;}
.h6_c00250{height:86.305078px;}
.ha_c00250{height:103.359375px;}
.hb_c00250{height:103.462734px;}
.h8_c00250{height:106.664062px;}
.h9_c00250{height:106.770727px;}
.h7_c00250{height:112.144922px;}
.h3_c00250{height:124.263633px;}
.h2_c00250{height:124.370297px;}
.h1_c00250{height:129.199219px;}
.hc_c00250{height:189.767813px;}
.h0_c00250{height:810.000000px;}
.w0_c00250{width:1080.000000px;}
.x0_c00250{left:0.000000px;}
.x1_c00250{left:64.800000px;}
.x2_c00250{left:118.836000px;}
.x7_c00250{left:120.528000px;}
.xa_c00250{left:271.335000px;}
.x8_c00250{left:410.835000px;}
.x9_c00250{left:459.690000px;}
.x4_c00250{left:559.410000px;}
.x5_c00250{left:613.410000px;}
.x6_c00250{left:653.910000px;}
.x3_c00250{left:741.600000px;}
.xb_c00250{left:831.600000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls7_c00250{letter-spacing:0.000000pt;}
.ls9_c00250{letter-spacing:0.192000pt;}
.ls8_c00250{letter-spacing:0.211733pt;}
.ls1_c00250{letter-spacing:1.600000pt;}
.ls2_c00250{letter-spacing:75.623083pt;}
.ls3_c00250{letter-spacing:75.681707pt;}
.ls6_c00250{letter-spacing:85.317376pt;}
.ls5_c00250{letter-spacing:85.376000pt;}
.ls0_c00250{letter-spacing:91.808000pt;}
.ls4_c00250{letter-spacing:95.392000pt;}
.ws0_c00250{word-spacing:-33.701120pt;}
.ws1_c00250{word-spacing:-31.386880pt;}
.ws2_c00250{word-spacing:0.000000pt;}
._4_c00250{margin-left:-7.943936pt;}
._1_c00250{margin-left:-3.283904pt;}
._2_c00250{margin-left:-2.382805pt;}
._0_c00250{margin-left:-1.492182pt;}
._3_c00250{width:0.946955pt;}
.fsa_c00250{font-size:64.000000pt;}
.fs3_c00250{font-size:96.000000pt;}
.fs4_c00250{font-size:96.128000pt;}
.fs5_c00250{font-size:106.880000pt;}
.fs7_c00250{font-size:128.000000pt;}
.fs8_c00250{font-size:128.128000pt;}
.fs6_c00250{font-size:138.880000pt;}
.fs0_c00250{font-size:149.120000pt;}
.fs2_c00250{font-size:149.248000pt;}
.fs1_c00250{font-size:160.000000pt;}
.fs9_c00250{font-size:235.008000pt;}
.y6_c00250{bottom:-3.648000pt;}
.y0_c00250{bottom:0.000000pt;}
.y7_c00250{bottom:22.752000pt;}
.y5_c00250{bottom:25.184000pt;}
.y17_c00250{bottom:27.904000pt;}
.y12_c00250{bottom:92.704000pt;}
.y13_c00250{bottom:120.992000pt;}
.y11_c00250{bottom:134.946667pt;}
.y10_c00250{bottom:169.533333pt;}
.yf_c00250{bottom:204.093333pt;}
.ye_c00250{bottom:246.333333pt;}
.y14_c00250{bottom:250.493333pt;}
.yd_c00250{bottom:280.893333pt;}
.yc_c00250{bottom:323.173333pt;}
.y4_c00250{bottom:330.813333pt;}
.yb_c00250{bottom:365.413333pt;}
.y3_c00250{bottom:384.573333pt;}
.ya_c00250{bottom:407.653333pt;}
.y2_c00250{bottom:438.333333pt;}
.y9_c00250{bottom:449.920000pt;}
.y1_c00250{bottom:492.773333pt;}
.y8_c00250{bottom:492.800000pt;}
.y15_c00250{bottom:567.133333pt;}
.y16_c00250{bottom:611.453333pt;}
.hd_c00250{height:45.937500pt;}
.h4_c00250{height:68.906250pt;}
.h5_c00250{height:68.998125pt;}
.h6_c00250{height:76.715625pt;}
.ha_c00250{height:91.875000pt;}
.hb_c00250{height:91.966875pt;}
.h8_c00250{height:94.812500pt;}
.h9_c00250{height:94.907313pt;}
.h7_c00250{height:99.684375pt;}
.h3_c00250{height:110.456562pt;}
.h2_c00250{height:110.551375pt;}
.h1_c00250{height:114.843750pt;}
.hc_c00250{height:168.682500pt;}
.h0_c00250{height:720.000000pt;}
.w0_c00250{width:960.000000pt;}
.x0_c00250{left:0.000000pt;}
.x1_c00250{left:57.600000pt;}
.x2_c00250{left:105.632000pt;}
.x7_c00250{left:107.136000pt;}
.xa_c00250{left:241.186667pt;}
.x8_c00250{left:365.186667pt;}
.x9_c00250{left:408.613333pt;}
.x4_c00250{left:497.253333pt;}
.x5_c00250{left:545.253333pt;}
.x6_c00250{left:581.253333pt;}
.x3_c00250{left:659.200000pt;}
.xb_c00250{left:739.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_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_1974b1fa844e4249338af69c.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00251{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00251{vertical-align:0.000000px;}
.ls1_c00251{letter-spacing:0.000000px;}
.ls0_c00251{letter-spacing:0.216000px;}
.ls2_c00251{letter-spacing:0.238200px;}
.sc__c00251{text-shadow:none;}
.sc0_c00251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00251{-webkit-text-stroke:0px transparent;}
.sc0_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00251{word-spacing:0.000000px;}
._2_c00251{margin-left:-6.108084px;}
._3_c00251{margin-left:-2.115072px;}
._1_c00251{margin-left:-1.080000px;}
._0_c00251{width:1.224000px;}
.fc7_c00251{color:transparent;}
.fc6_c00251{color:rgb(238,0,0);}
.fc4_c00251{color:rgb(112,48,160);}
.fc3_c00251{color:rgb(0,32,96);}
.fc5_c00251{color:rgb(0,0,0);}
.fc2_c00251{color:rgb(127,127,127);}
.fc1_c00251{color:rgb(255,255,255);}
.fc0_c00251{color:rgb(137,137,137);}
.fs0_c00251{font-size:72.000000px;}
.fs5_c00251{font-size:84.240000px;}
.fs6_c00251{font-size:84.384000px;}
.fs1_c00251{font-size:108.000000px;}
.fs2_c00251{font-size:108.144000px;}
.fs3_c00251{font-size:120.240000px;}
.fs4_c00251{font-size:264.384000px;}
.y3_c00251{bottom:-4.104000px;}
.y0_c00251{bottom:0.000000px;}
.y4_c00251{bottom:25.596000px;}
.y2_c00251{bottom:28.332000px;}
.y1_c00251{bottom:31.392000px;}
.y18_c00251{bottom:161.640000px;}
.y13_c00251{bottom:167.220000px;}
.y15_c00251{bottom:184.530000px;}
.y17_c00251{bottom:193.035000px;}
.y14_c00251{bottom:209.730000px;}
.y16_c00251{bottom:218.235000px;}
.y12_c00251{bottom:381.135000px;}
.y11_c00251{bottom:406.335000px;}
.y10_c00251{bottom:431.535000px;}
.yf_c00251{bottom:456.765000px;}
.ye_c00251{bottom:481.965000px;}
.y8_c00251{bottom:507.780000px;}
.yd_c00251{bottom:508.110000px;}
.y7_c00251{bottom:533.010000px;}
.yc_c00251{bottom:533.310000px;}
.ya_c00251{bottom:541.830000px;}
.yb_c00251{bottom:558.540000px;}
.y9_c00251{bottom:567.030000px;}
.y6_c00251{bottom:638.025000px;}
.y5_c00251{bottom:687.885000px;}
.h1_c00251{height:51.679688px;}
.h6_c00251{height:60.465234px;}
.h7_c00251{height:60.568594px;}
.h2_c00251{height:77.519531px;}
.h3_c00251{height:77.622891px;}
.h4_c00251{height:86.305078px;}
.h5_c00251{height:189.767813px;}
.h0_c00251{height:810.000000px;}
.w0_c00251{width:1080.000000px;}
.x0_c00251{left:0.000000px;}
.x9_c00251{left:49.032000px;}
.x2_c00251{left:64.800000px;}
.x8_c00251{left:159.585000px;}
.xa_c00251{left:176.610000px;}
.x4_c00251{left:271.335000px;}
.x7_c00251{left:321.225000px;}
.x5_c00251{left:452.130000px;}
.x6_c00251{left:491.370000px;}
.xc_c00251{left:499.860000px;}
.x3_c00251{left:741.600000px;}
.xd_c00251{left:763.560000px;}
.x1_c00251{left:831.600000px;}
.xb_c00251{left:967.710000px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls1_c00251{letter-spacing:0.000000pt;}
.ls0_c00251{letter-spacing:0.192000pt;}
.ls2_c00251{letter-spacing:0.211733pt;}
.ws0_c00251{word-spacing:0.000000pt;}
._2_c00251{margin-left:-5.429408pt;}
._3_c00251{margin-left:-1.880064pt;}
._1_c00251{margin-left:-0.960000pt;}
._0_c00251{width:1.088000pt;}
.fs0_c00251{font-size:64.000000pt;}
.fs5_c00251{font-size:74.880000pt;}
.fs6_c00251{font-size:75.008000pt;}
.fs1_c00251{font-size:96.000000pt;}
.fs2_c00251{font-size:96.128000pt;}
.fs3_c00251{font-size:106.880000pt;}
.fs4_c00251{font-size:235.008000pt;}
.y3_c00251{bottom:-3.648000pt;}
.y0_c00251{bottom:0.000000pt;}
.y4_c00251{bottom:22.752000pt;}
.y2_c00251{bottom:25.184000pt;}
.y1_c00251{bottom:27.904000pt;}
.y18_c00251{bottom:143.680000pt;}
.y13_c00251{bottom:148.640000pt;}
.y15_c00251{bottom:164.026667pt;}
.y17_c00251{bottom:171.586667pt;}
.y14_c00251{bottom:186.426667pt;}
.y16_c00251{bottom:193.986667pt;}
.y12_c00251{bottom:338.786667pt;}
.y11_c00251{bottom:361.186667pt;}
.y10_c00251{bottom:383.586667pt;}
.yf_c00251{bottom:406.013333pt;}
.ye_c00251{bottom:428.413333pt;}
.y8_c00251{bottom:451.360000pt;}
.yd_c00251{bottom:451.653333pt;}
.y7_c00251{bottom:473.786667pt;}
.yc_c00251{bottom:474.053333pt;}
.ya_c00251{bottom:481.626667pt;}
.yb_c00251{bottom:496.480000pt;}
.y9_c00251{bottom:504.026667pt;}
.y6_c00251{bottom:567.133333pt;}
.y5_c00251{bottom:611.453333pt;}
.h1_c00251{height:45.937500pt;}
.h6_c00251{height:53.746875pt;}
.h7_c00251{height:53.838750pt;}
.h2_c00251{height:68.906250pt;}
.h3_c00251{height:68.998125pt;}
.h4_c00251{height:76.715625pt;}
.h5_c00251{height:168.682500pt;}
.h0_c00251{height:720.000000pt;}
.w0_c00251{width:960.000000pt;}
.x0_c00251{left:0.000000pt;}
.x9_c00251{left:43.584000pt;}
.x2_c00251{left:57.600000pt;}
.x8_c00251{left:141.853333pt;}
.xa_c00251{left:156.986667pt;}
.x4_c00251{left:241.186667pt;}
.x7_c00251{left:285.533333pt;}
.x5_c00251{left:401.893333pt;}
.x6_c00251{left:436.773333pt;}
.xc_c00251{left:444.320000pt;}
.x3_c00251{left:659.200000pt;}
.xd_c00251{left:678.720000pt;}
.x1_c00251{left:739.200000pt;}
.xb_c00251{left:860.186667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_11052747dc7fe8816c2ecaab.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00252;src:url('chunks/assets/font_f5f828551bede7002658b8eb.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:0.861816;font-style: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;}
.v1_c00252{vertical-align:68.124000px;}
.ls3_c00252{letter-spacing:-0.322800px;}
.ls1_c00252{letter-spacing:0.000000px;}
.ls0_c00252{letter-spacing:0.216000px;}
.ls2_c00252{letter-spacing:0.238200px;}
.sc__c00252{text-shadow:none;}
.sc0_c00252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00252{-webkit-text-stroke:0px transparent;}
.sc0_c00252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00252{word-spacing:-17.573760px;}
.ws1_c00252{word-spacing:-17.250960px;}
.ws2_c00252{word-spacing:0.000000px;}
._3_c00252{margin-left:-5.265623px;}
._4_c00252{margin-left:-3.905360px;}
._2_c00252{margin-left:-2.472084px;}
._1_c00252{margin-left:-1.080000px;}
._0_c00252{width:1.224000px;}
._6_c00252{width:2.468043px;}
._5_c00252{width:398.400475px;}
.fc6_c00252{color:rgb(192,0,0);}
.fc4_c00252{color:rgb(112,48,160);}
.fc3_c00252{color:rgb(0,32,96);}
.fc5_c00252{color:rgb(0,0,0);}
.fc2_c00252{color:rgb(127,127,127);}
.fc1_c00252{color:rgb(255,255,255);}
.fc0_c00252{color:rgb(137,137,137);}
.fs0_c00252{font-size:72.000000px;}
.fs7_c00252{font-size:77.760000px;}
.fs6_c00252{font-size:84.240000px;}
.fs5_c00252{font-size:84.384000px;}
.fs1_c00252{font-size:108.000000px;}
.fs2_c00252{font-size:108.144000px;}
.fs3_c00252{font-size:120.240000px;}
.fs4_c00252{font-size:264.384000px;}
.y3_c00252{bottom:-4.104000px;}
.y0_c00252{bottom:0.000000px;}
.y12_c00252{bottom:11.550000px;}
.y1e_c00252{bottom:11.595000px;}
.y18_c00252{bottom:11.670000px;}
.yc_c00252{bottom:21.885000px;}
.y4_c00252{bottom:25.596000px;}
.y16_c00252{bottom:28.110000px;}
.y2_c00252{bottom:28.332000px;}
.y1_c00252{bottom:31.392000px;}
.y22_c00252{bottom:38.415000px;}
.y1c_c00252{bottom:38.490000px;}
.y14_c00252{bottom:47.370000px;}
.y10_c00252{bottom:54.645000px;}
.y1a_c00252{bottom:54.690000px;}
.ye_c00252{bottom:73.905000px;}
.y20_c00252{bottom:89.715000px;}
.y9_c00252{bottom:99.144000px;}
.y24_c00252{bottom:103.176000px;}
.y8_c00252{bottom:133.164000px;}
.y1f_c00252{bottom:375.840000px;}
.y21_c00252{bottom:427.140000px;}
.y19_c00252{bottom:440.640000px;}
.y1d_c00252{bottom:453.960000px;}
.y1b_c00252{bottom:456.840000px;}
.y13_c00252{bottom:477.720000px;}
.yd_c00252{bottom:480.960000px;}
.y17_c00252{bottom:483.660000px;}
.y15_c00252{bottom:496.980000px;}
.y7_c00252{bottom:498.960000px;}
.yf_c00252{bottom:500.220000px;}
.y11_c00252{bottom:513.540000px;}
.yb_c00252{bottom:532.980000px;}
.ya_c00252{bottom:541.515000px;}
.y23_c00252{bottom:594.000000px;}
.y6_c00252{bottom:638.025000px;}
.y5_c00252{bottom:687.885000px;}
.hd_c00252{height:36.720000px;}
.h10_c00252{height:36.900000px;}
.h1_c00252{height:51.679688px;}
.ha_c00252{height:55.814063px;}
.h9_c00252{height:57.240000px;}
.h8_c00252{height:60.465234px;}
.h6_c00252{height:60.568594px;}
.hf_c00252{height:69.840000px;}
.h2_c00252{height:77.519531px;}
.h3_c00252{height:77.622891px;}
.h4_c00252{height:86.305078px;}
.h14_c00252{height:90.360000px;}
.h12_c00252{height:90.540000px;}
.he_c00252{height:108.360000px;}
.hc_c00252{height:122.760000px;}
.h11_c00252{height:122.940000px;}
.h7_c00252{height:128.589234px;}
.hb_c00252{height:161.460000px;}
.h5_c00252{height:189.767813px;}
.h13_c00252{height:192.960000px;}
.h0_c00252{height:810.000000px;}
.w1_c00252{width:68.040000px;}
.w3_c00252{width:138.780000px;}
.w2_c00252{width:209.700000px;}
.w0_c00252{width:1080.000000px;}
.x0_c00252{left:0.000000px;}
.xb_c00252{left:8.250000px;}
.x6_c00252{left:57.528000px;}
.x2_c00252{left:64.800000px;}
.x7_c00252{left:100.044000px;}
.x9_c00252{left:102.852000px;}
.x8_c00252{left:185.115000px;}
.x4_c00252{left:271.335000px;}
.x5_c00252{left:497.310000px;}
.xa_c00252{left:582.480000px;}
.xe_c00252{left:644.400000px;}
.xc_c00252{left:650.520000px;}
.x3_c00252{left:741.600000px;}
.xf_c00252{left:763.560000px;}
.x1_c00252{left:831.600000px;}
.xd_c00252{left:860.400000px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.v1_c00252{vertical-align:60.554667pt;}
.ls3_c00252{letter-spacing:-0.286933pt;}
.ls1_c00252{letter-spacing:0.000000pt;}
.ls0_c00252{letter-spacing:0.192000pt;}
.ls2_c00252{letter-spacing:0.211733pt;}
.ws0_c00252{word-spacing:-15.621120pt;}
.ws1_c00252{word-spacing:-15.334187pt;}
.ws2_c00252{word-spacing:0.000000pt;}
._3_c00252{margin-left:-4.680554pt;}
._4_c00252{margin-left:-3.471431pt;}
._2_c00252{margin-left:-2.197408pt;}
._1_c00252{margin-left:-0.960000pt;}
._0_c00252{width:1.088000pt;}
._6_c00252{width:2.193816pt;}
._5_c00252{width:354.133756pt;}
.fs0_c00252{font-size:64.000000pt;}
.fs7_c00252{font-size:69.120000pt;}
.fs6_c00252{font-size:74.880000pt;}
.fs5_c00252{font-size:75.008000pt;}
.fs1_c00252{font-size:96.000000pt;}
.fs2_c00252{font-size:96.128000pt;}
.fs3_c00252{font-size:106.880000pt;}
.fs4_c00252{font-size:235.008000pt;}
.y3_c00252{bottom:-3.648000pt;}
.y0_c00252{bottom:0.000000pt;}
.y12_c00252{bottom:10.266667pt;}
.y1e_c00252{bottom:10.306667pt;}
.y18_c00252{bottom:10.373333pt;}
.yc_c00252{bottom:19.453333pt;}
.y4_c00252{bottom:22.752000pt;}
.y16_c00252{bottom:24.986667pt;}
.y2_c00252{bottom:25.184000pt;}
.y1_c00252{bottom:27.904000pt;}
.y22_c00252{bottom:34.146667pt;}
.y1c_c00252{bottom:34.213333pt;}
.y14_c00252{bottom:42.106667pt;}
.y10_c00252{bottom:48.573333pt;}
.y1a_c00252{bottom:48.613333pt;}
.ye_c00252{bottom:65.693333pt;}
.y20_c00252{bottom:79.746667pt;}
.y9_c00252{bottom:88.128000pt;}
.y24_c00252{bottom:91.712000pt;}
.y8_c00252{bottom:118.368000pt;}
.y1f_c00252{bottom:334.080000pt;}
.y21_c00252{bottom:379.680000pt;}
.y19_c00252{bottom:391.680000pt;}
.y1d_c00252{bottom:403.520000pt;}
.y1b_c00252{bottom:406.080000pt;}
.y13_c00252{bottom:424.640000pt;}
.yd_c00252{bottom:427.520000pt;}
.y17_c00252{bottom:429.920000pt;}
.y15_c00252{bottom:441.760000pt;}
.y7_c00252{bottom:443.520000pt;}
.yf_c00252{bottom:444.640000pt;}
.y11_c00252{bottom:456.480000pt;}
.yb_c00252{bottom:473.760000pt;}
.ya_c00252{bottom:481.346667pt;}
.y23_c00252{bottom:528.000000pt;}
.y6_c00252{bottom:567.133333pt;}
.y5_c00252{bottom:611.453333pt;}
.hd_c00252{height:32.640000pt;}
.h10_c00252{height:32.800000pt;}
.h1_c00252{height:45.937500pt;}
.ha_c00252{height:49.612500pt;}
.h9_c00252{height:50.880000pt;}
.h8_c00252{height:53.746875pt;}
.h6_c00252{height:53.838750pt;}
.hf_c00252{height:62.080000pt;}
.h2_c00252{height:68.906250pt;}
.h3_c00252{height:68.998125pt;}
.h4_c00252{height:76.715625pt;}
.h14_c00252{height:80.320000pt;}
.h12_c00252{height:80.480000pt;}
.he_c00252{height:96.320000pt;}
.hc_c00252{height:109.120000pt;}
.h11_c00252{height:109.280000pt;}
.h7_c00252{height:114.301542pt;}
.hb_c00252{height:143.520000pt;}
.h5_c00252{height:168.682500pt;}
.h13_c00252{height:171.520000pt;}
.h0_c00252{height:720.000000pt;}
.w1_c00252{width:60.480000pt;}
.w3_c00252{width:123.360000pt;}
.w2_c00252{width:186.400000pt;}
.w0_c00252{width:960.000000pt;}
.x0_c00252{left:0.000000pt;}
.xb_c00252{left:7.333333pt;}
.x6_c00252{left:51.136000pt;}
.x2_c00252{left:57.600000pt;}
.x7_c00252{left:88.928000pt;}
.x9_c00252{left:91.424000pt;}
.x8_c00252{left:164.546667pt;}
.x4_c00252{left:241.186667pt;}
.x5_c00252{left:442.053333pt;}
.xa_c00252{left:517.760000pt;}
.xe_c00252{left:572.800000pt;}
.xc_c00252{left:578.240000pt;}
.x3_c00252{left:659.200000pt;}
.xf_c00252{left:678.720000pt;}
.x1_c00252{left:739.200000pt;}
.xd_c00252{left:764.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_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_8f777987f308953625a1ddd1.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00253;src:url('chunks/assets/font_1b7eaa251dbfea49c411760b.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:0.727539;font-style:normal;font-weight:normal;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_98611758cd31aacff688e72a.woff2')format("woff");}.ff3_c00253{font-family:ff3_c00253;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00253;src:url('chunks/assets/font_7042c14ce4d34e6456459576.woff2')format("woff");}.ff4_c00253{font-family:ff4_c00253;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00253;src:url('chunks/assets/font_c3665be8a6dbc6b618c0395a.woff2')format("woff");}.ff5_c00253{font-family:ff5_c00253;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls5_c00253{letter-spacing:0.000000px;}
.ls4_c00253{letter-spacing:0.216000px;}
.ls6_c00253{letter-spacing:0.238200px;}
.ls3_c00253{letter-spacing:79.470048px;}
.ls1_c00253{letter-spacing:79.536000px;}
.ls0_c00253{letter-spacing:98.949600px;}
.ls2_c00253{letter-spacing:99.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:-120.240000px;}
.ws0_c00253{word-spacing:-27.174240px;}
.ws2_c00253{word-spacing:0.000000px;}
._2_c00253{margin-left:-9.023976px;}
._3_c00253{margin-left:-2.908224px;}
._1_c00253{margin-left:-1.728000px;}
._0_c00253{width:1.224000px;}
.fc4_c00253{color:rgb(119,11,11);}
.fc3_c00253{color:rgb(0,32,96);}
.fc6_c00253{color:rgb(89,89,89);}
.fc5_c00253{color:rgb(0,0,0);}
.fc2_c00253{color:rgb(127,127,127);}
.fc1_c00253{color:rgb(255,255,255);}
.fc0_c00253{color:rgb(137,137,137);}
.fs0_c00253{font-size:72.000000px;}
.fs1_c00253{font-size:108.000000px;}
.fs2_c00253{font-size:108.144000px;}
.fs3_c00253{font-size:120.240000px;}
.fs6_c00253{font-size:180.000000px;}
.fs5_c00253{font-size:180.144000px;}
.fs7_c00253{font-size:203.760000px;}
.fs4_c00253{font-size:264.384000px;}
.y3_c00253{bottom:-4.104000px;}
.y0_c00253{bottom:0.000000px;}
.y4_c00253{bottom:25.596000px;}
.y2_c00253{bottom:28.332000px;}
.y1_c00253{bottom:31.392000px;}
.ye_c00253{bottom:47.880000px;}
.y11_c00253{bottom:84.852000px;}
.yd_c00253{bottom:119.700000px;}
.yf_c00253{bottom:163.260000px;}
.yc_c00253{bottom:184.530000px;}
.yb_c00253{bottom:249.330000px;}
.y10_c00253{bottom:282.345000px;}
.ya_c00253{bottom:314.175000px;}
.y9_c00253{bottom:378.975000px;}
.y8_c00253{bottom:443.805000px;}
.y7_c00253{bottom:508.605000px;}
.y6_c00253{bottom:573.405000px;}
.y5_c00253{bottom:687.885000px;}
.h1_c00253{height:51.679688px;}
.h2_c00253{height:77.519531px;}
.h3_c00253{height:77.622891px;}
.hb_c00253{height:85.717969px;}
.h4_c00253{height:86.305078px;}
.h8_c00253{height:129.199219px;}
.h6_c00253{height:129.302578px;}
.h7_c00253{height:133.330078px;}
.h9_c00253{height:133.436742px;}
.ha_c00253{height:146.253516px;}
.h5_c00253{height:189.767813px;}
.h0_c00253{height:810.000000px;}
.w0_c00253{width:1080.000000px;}
.x0_c00253{left:0.000000px;}
.x2_c00253{left:64.800000px;}
.x6_c00253{left:71.640000px;}
.x5_c00253{left:118.836000px;}
.x4_c00253{left:339.015000px;}
.x9_c00253{left:712.800000px;}
.x3_c00253{left:741.600000px;}
.x1_c00253{left:831.600000px;}
.x8_c00253{left:891.870000px;}
.x7_c00253{left:901.590000px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls5_c00253{letter-spacing:0.000000pt;}
.ls4_c00253{letter-spacing:0.192000pt;}
.ls6_c00253{letter-spacing:0.211733pt;}
.ls3_c00253{letter-spacing:70.640043pt;}
.ls1_c00253{letter-spacing:70.698667pt;}
.ls0_c00253{letter-spacing:87.955200pt;}
.ls2_c00253{letter-spacing:88.000000pt;}
.ws1_c00253{word-spacing:-106.880000pt;}
.ws0_c00253{word-spacing:-24.154880pt;}
.ws2_c00253{word-spacing:0.000000pt;}
._2_c00253{margin-left:-8.021312pt;}
._3_c00253{margin-left:-2.585088pt;}
._1_c00253{margin-left:-1.536000pt;}
._0_c00253{width:1.088000pt;}
.fs0_c00253{font-size:64.000000pt;}
.fs1_c00253{font-size:96.000000pt;}
.fs2_c00253{font-size:96.128000pt;}
.fs3_c00253{font-size:106.880000pt;}
.fs6_c00253{font-size:160.000000pt;}
.fs5_c00253{font-size:160.128000pt;}
.fs7_c00253{font-size:181.120000pt;}
.fs4_c00253{font-size:235.008000pt;}
.y3_c00253{bottom:-3.648000pt;}
.y0_c00253{bottom:0.000000pt;}
.y4_c00253{bottom:22.752000pt;}
.y2_c00253{bottom:25.184000pt;}
.y1_c00253{bottom:27.904000pt;}
.ye_c00253{bottom:42.560000pt;}
.y11_c00253{bottom:75.424000pt;}
.yd_c00253{bottom:106.400000pt;}
.yf_c00253{bottom:145.120000pt;}
.yc_c00253{bottom:164.026667pt;}
.yb_c00253{bottom:221.626667pt;}
.y10_c00253{bottom:250.973333pt;}
.ya_c00253{bottom:279.266667pt;}
.y9_c00253{bottom:336.866667pt;}
.y8_c00253{bottom:394.493333pt;}
.y7_c00253{bottom:452.093333pt;}
.y6_c00253{bottom:509.693333pt;}
.y5_c00253{bottom:611.453333pt;}
.h1_c00253{height:45.937500pt;}
.h2_c00253{height:68.906250pt;}
.h3_c00253{height:68.998125pt;}
.hb_c00253{height:76.193750pt;}
.h4_c00253{height:76.715625pt;}
.h8_c00253{height:114.843750pt;}
.h6_c00253{height:114.935625pt;}
.h7_c00253{height:118.515625pt;}
.h9_c00253{height:118.610438pt;}
.ha_c00253{height:130.003125pt;}
.h5_c00253{height:168.682500pt;}
.h0_c00253{height:720.000000pt;}
.w0_c00253{width:960.000000pt;}
.x0_c00253{left:0.000000pt;}
.x2_c00253{left:57.600000pt;}
.x6_c00253{left:63.680000pt;}
.x5_c00253{left:105.632000pt;}
.x4_c00253{left:301.346667pt;}
.x9_c00253{left:633.600000pt;}
.x3_c00253{left:659.200000pt;}
.x1_c00253{left:739.200000pt;}
.x8_c00253{left:792.773333pt;}
.x7_c00253{left:801.413333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cdc34669c7cd805429630586.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00254;src:url('chunks/assets/font_1042a6c24470af3b214a5f0b.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:0.861816;font-style:normal;font-weight:normal;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_504c942054073388fc302556.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.v1_c00254{vertical-align:88.860000px;}
.ls2_c00254{letter-spacing:0.000000px;}
.ls1_c00254{letter-spacing:0.216000px;}
.ls3_c00254{letter-spacing:0.238200px;}
.ls0_c00254{letter-spacing:285.393216px;}
.sc__c00254{text-shadow:none;}
.sc0_c00254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00254{-webkit-text-stroke:0px transparent;}
.sc0_c00254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00254{word-spacing:-27.206784px;}
.ws0_c00254{word-spacing:-27.174240px;}
.ws2_c00254{word-spacing:0.000000px;}
._3_c00254{margin-left:-3.060000px;}
._1_c00254{margin-left:-1.728000px;}
._0_c00254{width:1.224000px;}
._2_c00254{width:2.748024px;}
.fc5_c00254{color:rgb(112,48,160);}
.fc4_c00254{color:rgb(119,11,11);}
.fc3_c00254{color:rgb(0,32,96);}
.fc8_c00254{color:rgb(217,217,217);}
.fc7_c00254{color:rgb(89,89,89);}
.fc6_c00254{color:rgb(0,0,0);}
.fc2_c00254{color:rgb(127,127,127);}
.fc1_c00254{color:rgb(255,255,255);}
.fc0_c00254{color:rgb(137,137,137);}
.fs0_c00254{font-size:72.000000px;}
.fs7_c00254{font-size:84.240000px;}
.fs9_c00254{font-size:84.384000px;}
.fs1_c00254{font-size:108.000000px;}
.fs2_c00254{font-size:108.144000px;}
.fs3_c00254{font-size:120.240000px;}
.fs8_c00254{font-size:120.384000px;}
.fs5_c00254{font-size:144.000000px;}
.fs4_c00254{font-size:264.384000px;}
.fs6_c00254{font-size:324.144000px;}
.y3_c00254{bottom:-4.104000px;}
.y0_c00254{bottom:0.000000px;}
.y4_c00254{bottom:25.596000px;}
.y2_c00254{bottom:28.332000px;}
.y1_c00254{bottom:31.392000px;}
.yd_c00254{bottom:84.852000px;}
.yf_c00254{bottom:159.270000px;}
.yc_c00254{bottom:178.050000px;}
.y11_c00254{bottom:183.060000px;}
.yb_c00254{bottom:193.860000px;}
.y13_c00254{bottom:195.270000px;}
.y10_c00254{bottom:219.060000px;}
.y6_c00254{bottom:259.125000px;}
.y12_c00254{bottom:280.080000px;}
.y7_c00254{bottom:360.900000px;}
.y18_c00254{bottom:362.805000px;}
.y14_c00254{bottom:452.085000px;}
.y17_c00254{bottom:458.715000px;}
.ye_c00254{bottom:493.665000px;}
.y16_c00254{bottom:505.080000px;}
.ya_c00254{bottom:513.435000px;}
.y9_c00254{bottom:513.720000px;}
.y15_c00254{bottom:541.110000px;}
.y8_c00254{bottom:546.120000px;}
.y5_c00254{bottom:687.885000px;}
.h1_c00254{height:51.679688px;}
.hb_c00254{height:57.585938px;}
.hd_c00254{height:60.465234px;}
.he_c00254{height:60.568594px;}
.h8_c00254{height:76.992188px;}
.h2_c00254{height:77.519531px;}
.h3_c00254{height:77.622891px;}
.ha_c00254{height:82.195312px;}
.hc_c00254{height:82.293750px;}
.h6_c00254{height:85.717969px;}
.h4_c00254{height:86.305078px;}
.h7_c00254{height:103.359375px;}
.hf_c00254{height:174.680625px;}
.h5_c00254{height:189.767813px;}
.h9_c00254{height:221.582813px;}
.h0_c00254{height:810.000000px;}
.w0_c00254{width:1080.000000px;}
.x0_c00254{left:0.000000px;}
.x2_c00254{left:64.800000px;}
.x12_c00254{left:70.200000px;}
.x5_c00254{left:83.052000px;}
.xc_c00254{left:254.910000px;}
.x8_c00254{left:258.150000px;}
.xa_c00254{left:260.640000px;}
.x6_c00254{left:266.430000px;}
.x4_c00254{left:268.275000px;}
.x7_c00254{left:315.510000px;}
.x9_c00254{left:333.030000px;}
.xb_c00254{left:712.800000px;}
.x13_c00254{left:721.590000px;}
.xe_c00254{left:728.565000px;}
.xd_c00254{left:730.725000px;}
.x11_c00254{left:734.190000px;}
.x3_c00254{left:741.600000px;}
.x1_c00254{left:831.600000px;}
.xf_c00254{left:890.745000px;}
.x10_c00254{left:904.065000px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.v1_c00254{vertical-align:78.986667pt;}
.ls2_c00254{letter-spacing:0.000000pt;}
.ls1_c00254{letter-spacing:0.192000pt;}
.ls3_c00254{letter-spacing:0.211733pt;}
.ls0_c00254{letter-spacing:253.682859pt;}
.ws1_c00254{word-spacing:-24.183808pt;}
.ws0_c00254{word-spacing:-24.154880pt;}
.ws2_c00254{word-spacing:0.000000pt;}
._3_c00254{margin-left:-2.720000pt;}
._1_c00254{margin-left:-1.536000pt;}
._0_c00254{width:1.088000pt;}
._2_c00254{width:2.442688pt;}
.fs0_c00254{font-size:64.000000pt;}
.fs7_c00254{font-size:74.880000pt;}
.fs9_c00254{font-size:75.008000pt;}
.fs1_c00254{font-size:96.000000pt;}
.fs2_c00254{font-size:96.128000pt;}
.fs3_c00254{font-size:106.880000pt;}
.fs8_c00254{font-size:107.008000pt;}
.fs5_c00254{font-size:128.000000pt;}
.fs4_c00254{font-size:235.008000pt;}
.fs6_c00254{font-size:288.128000pt;}
.y3_c00254{bottom:-3.648000pt;}
.y0_c00254{bottom:0.000000pt;}
.y4_c00254{bottom:22.752000pt;}
.y2_c00254{bottom:25.184000pt;}
.y1_c00254{bottom:27.904000pt;}
.yd_c00254{bottom:75.424000pt;}
.yf_c00254{bottom:141.573333pt;}
.yc_c00254{bottom:158.266667pt;}
.y11_c00254{bottom:162.720000pt;}
.yb_c00254{bottom:172.320000pt;}
.y13_c00254{bottom:173.573333pt;}
.y10_c00254{bottom:194.720000pt;}
.y6_c00254{bottom:230.333333pt;}
.y12_c00254{bottom:248.960000pt;}
.y7_c00254{bottom:320.800000pt;}
.y18_c00254{bottom:322.493333pt;}
.y14_c00254{bottom:401.853333pt;}
.y17_c00254{bottom:407.746667pt;}
.ye_c00254{bottom:438.813333pt;}
.y16_c00254{bottom:448.960000pt;}
.ya_c00254{bottom:456.386667pt;}
.y9_c00254{bottom:456.640000pt;}
.y15_c00254{bottom:480.986667pt;}
.y8_c00254{bottom:485.440000pt;}
.y5_c00254{bottom:611.453333pt;}
.h1_c00254{height:45.937500pt;}
.hb_c00254{height:51.187500pt;}
.hd_c00254{height:53.746875pt;}
.he_c00254{height:53.838750pt;}
.h8_c00254{height:68.437500pt;}
.h2_c00254{height:68.906250pt;}
.h3_c00254{height:68.998125pt;}
.ha_c00254{height:73.062500pt;}
.hc_c00254{height:73.150000pt;}
.h6_c00254{height:76.193750pt;}
.h4_c00254{height:76.715625pt;}
.h7_c00254{height:91.875000pt;}
.hf_c00254{height:155.271667pt;}
.h5_c00254{height:168.682500pt;}
.h9_c00254{height:196.962500pt;}
.h0_c00254{height:720.000000pt;}
.w0_c00254{width:960.000000pt;}
.x0_c00254{left:0.000000pt;}
.x2_c00254{left:57.600000pt;}
.x12_c00254{left:62.400000pt;}
.x5_c00254{left:73.824000pt;}
.xc_c00254{left:226.586667pt;}
.x8_c00254{left:229.466667pt;}
.xa_c00254{left:231.680000pt;}
.x6_c00254{left:236.826667pt;}
.x4_c00254{left:238.466667pt;}
.x7_c00254{left:280.453333pt;}
.x9_c00254{left:296.026667pt;}
.xb_c00254{left:633.600000pt;}
.x13_c00254{left:641.413333pt;}
.xe_c00254{left:647.613333pt;}
.xd_c00254{left:649.533333pt;}
.x11_c00254{left:652.613333pt;}
.x3_c00254{left:659.200000pt;}
.x1_c00254{left:739.200000pt;}
.xf_c00254{left:791.773333pt;}
.x10_c00254{left:803.613333pt;}
}





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

.ir_c00255:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00255{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00255;src:url('chunks/assets/font_f28f3349076b361a49df9d3b.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00255;src:url('chunks/assets/font_77a1c7947e55290ae97616ae.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:0.861816;font-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_c00255{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_c00255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.ls1_c00255{letter-spacing:0.000000px;}
.ls0_c00255{letter-spacing:0.216000px;}
.ls2_c00255{letter-spacing:0.238200px;}
.sc__c00255{text-shadow:none;}
.sc0_c00255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00255{-webkit-text-stroke:0px transparent;}
.sc0_c00255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00255{word-spacing:0.000000px;}
._3_c00255{margin-left:-1057.920000px;}
._4_c00255{margin-left:-990.600000px;}
._1_c00255{margin-left:-1.728000px;}
._0_c00255{width:1.224000px;}
._2_c00255{width:2.748024px;}
._5_c00255{width:804.756000px;}
._6_c00255{width:990.852000px;}
.fc8_c00255{color:rgb(0,153,0);}
.fc7_c00255{color:rgb(119,11,11);}
.fc5_c00255{color:rgb(0,0,255);}
.fc4_c00255{color:rgb(112,48,160);}
.fc3_c00255{color:rgb(0,32,96);}
.fc6_c00255{color:rgb(0,176,80);}
.fc2_c00255{color:rgb(127,127,127);}
.fc1_c00255{color:rgb(255,255,255);}
.fc0_c00255{color:rgb(137,137,137);}
.fs5_c00255{font-size:66.240000px;}
.fs0_c00255{font-size:72.000000px;}
.fs1_c00255{font-size:108.000000px;}
.fs2_c00255{font-size:108.144000px;}
.fs3_c00255{font-size:120.240000px;}
.fs4_c00255{font-size:264.384000px;}
.y3_c00255{bottom:-4.104000px;}
.y0_c00255{bottom:0.000000px;}
.y4_c00255{bottom:25.596000px;}
.y2_c00255{bottom:28.332000px;}
.y1_c00255{bottom:31.392000px;}
.yc_c00255{bottom:221.040000px;}
.yb_c00255{bottom:240.840000px;}
.ya_c00255{bottom:260.640000px;}
.y6_c00255{bottom:430.635000px;}
.y9_c00255{bottom:488.310000px;}
.y8_c00255{bottom:508.110000px;}
.y7_c00255{bottom:527.910000px;}
.yd_c00255{bottom:587.850000px;}
.y5_c00255{bottom:687.885000px;}
.h6_c00255{height:47.545312px;}
.h1_c00255{height:51.679688px;}
.h7_c00255{height:73.828125px;}
.h2_c00255{height:77.519531px;}
.h3_c00255{height:77.622891px;}
.h4_c00255{height:86.305078px;}
.h5_c00255{height:189.767813px;}
.h0_c00255{height:810.000000px;}
.w0_c00255{width:1080.000000px;}
.x0_c00255{left:0.000000px;}
.x2_c00255{left:64.800000px;}
.x8_c00255{left:172.410000px;}
.x6_c00255{left:236.370000px;}
.x4_c00255{left:268.275000px;}
.x7_c00255{left:282.090000px;}
.x3_c00255{left:741.600000px;}
.x5_c00255{left:746.460000px;}
.x1_c00255{left:831.600000px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls1_c00255{letter-spacing:0.000000pt;}
.ls0_c00255{letter-spacing:0.192000pt;}
.ls2_c00255{letter-spacing:0.211733pt;}
.ws0_c00255{word-spacing:0.000000pt;}
._3_c00255{margin-left:-940.373333pt;}
._4_c00255{margin-left:-880.533333pt;}
._1_c00255{margin-left:-1.536000pt;}
._0_c00255{width:1.088000pt;}
._2_c00255{width:2.442688pt;}
._5_c00255{width:715.338667pt;}
._6_c00255{width:880.757333pt;}
.fs5_c00255{font-size:58.880000pt;}
.fs0_c00255{font-size:64.000000pt;}
.fs1_c00255{font-size:96.000000pt;}
.fs2_c00255{font-size:96.128000pt;}
.fs3_c00255{font-size:106.880000pt;}
.fs4_c00255{font-size:235.008000pt;}
.y3_c00255{bottom:-3.648000pt;}
.y0_c00255{bottom:0.000000pt;}
.y4_c00255{bottom:22.752000pt;}
.y2_c00255{bottom:25.184000pt;}
.y1_c00255{bottom:27.904000pt;}
.yc_c00255{bottom:196.480000pt;}
.yb_c00255{bottom:214.080000pt;}
.ya_c00255{bottom:231.680000pt;}
.y6_c00255{bottom:382.786667pt;}
.y9_c00255{bottom:434.053333pt;}
.y8_c00255{bottom:451.653333pt;}
.y7_c00255{bottom:469.253333pt;}
.yd_c00255{bottom:522.533333pt;}
.y5_c00255{bottom:611.453333pt;}
.h6_c00255{height:42.262500pt;}
.h1_c00255{height:45.937500pt;}
.h7_c00255{height:65.625000pt;}
.h2_c00255{height:68.906250pt;}
.h3_c00255{height:68.998125pt;}
.h4_c00255{height:76.715625pt;}
.h5_c00255{height:168.682500pt;}
.h0_c00255{height:720.000000pt;}
.w0_c00255{width:960.000000pt;}
.x0_c00255{left:0.000000pt;}
.x2_c00255{left:57.600000pt;}
.x8_c00255{left:153.253333pt;}
.x6_c00255{left:210.106667pt;}
.x4_c00255{left:238.466667pt;}
.x7_c00255{left:250.746667pt;}
.x3_c00255{left:659.200000pt;}
.x5_c00255{left:663.520000pt;}
.x1_c00255{left:739.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_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_1b7eaa251dbfea49c411760b.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:0.727539;font-style:normal;font-weight:normal;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_a641ddfec20307fd56f43be3.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.ls1_c00256{letter-spacing:0.000000px;}
.ls2_c00256{letter-spacing:0.216000px;}
.ls3_c00256{letter-spacing:0.238200px;}
.ls0_c00256{letter-spacing:99.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:0.000000px;}
._1_c00256{margin-left:-4.860000px;}
._3_c00256{margin-left:-2.908224px;}
._0_c00256{margin-left:-1.620000px;}
._2_c00256{width:1.224000px;}
.fc6_c00256{color:rgb(112,48,160);}
.fc5_c00256{color:rgb(0,32,96);}
.fc4_c00256{color:rgb(127,127,127);}
.fc3_c00256{color:rgb(255,255,255);}
.fc2_c00256{color:rgb(137,137,137);}
.fc1_c00256{color:rgb(0,0,0);}
.fc0_c00256{color:rgb(119,11,11);}
.fs1_c00256{font-size:72.000000px;}
.fs6_c00256{font-size:84.384000px;}
.fs2_c00256{font-size:108.000000px;}
.fs3_c00256{font-size:108.144000px;}
.fs4_c00256{font-size:120.240000px;}
.fs0_c00256{font-size:180.000000px;}
.fs5_c00256{font-size:264.384000px;}
.y4_c00256{bottom:-4.104000px;}
.y0_c00256{bottom:0.000000px;}
.y5_c00256{bottom:25.596000px;}
.y3_c00256{bottom:28.332000px;}
.y2_c00256{bottom:31.392000px;}
.y8_c00256{bottom:107.640000px;}
.y1_c00256{bottom:570.060000px;}
.y7_c00256{bottom:638.025000px;}
.y6_c00256{bottom:687.885000px;}
.h2_c00256{height:51.679688px;}
.h7_c00256{height:60.568594px;}
.h3_c00256{height:77.519531px;}
.h4_c00256{height:77.622891px;}
.h5_c00256{height:86.305078px;}
.h1_c00256{height:129.199219px;}
.h6_c00256{height:189.767813px;}
.h0_c00256{height:810.000000px;}
.w0_c00256{width:1080.000000px;}
.x0_c00256{left:0.000000px;}
.x7_c00256{left:57.528000px;}
.x3_c00256{left:64.800000px;}
.x1_c00256{left:66.024000px;}
.x5_c00256{left:339.015000px;}
.x6_c00256{left:513.690000px;}
.x4_c00256{left:741.600000px;}
.x2_c00256{left:831.600000px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls1_c00256{letter-spacing:0.000000pt;}
.ls2_c00256{letter-spacing:0.192000pt;}
.ls3_c00256{letter-spacing:0.211733pt;}
.ls0_c00256{letter-spacing:88.000000pt;}
.ws0_c00256{word-spacing:0.000000pt;}
._1_c00256{margin-left:-4.320000pt;}
._3_c00256{margin-left:-2.585088pt;}
._0_c00256{margin-left:-1.440000pt;}
._2_c00256{width:1.088000pt;}
.fs1_c00256{font-size:64.000000pt;}
.fs6_c00256{font-size:75.008000pt;}
.fs2_c00256{font-size:96.000000pt;}
.fs3_c00256{font-size:96.128000pt;}
.fs4_c00256{font-size:106.880000pt;}
.fs0_c00256{font-size:160.000000pt;}
.fs5_c00256{font-size:235.008000pt;}
.y4_c00256{bottom:-3.648000pt;}
.y0_c00256{bottom:0.000000pt;}
.y5_c00256{bottom:22.752000pt;}
.y3_c00256{bottom:25.184000pt;}
.y2_c00256{bottom:27.904000pt;}
.y8_c00256{bottom:95.680000pt;}
.y1_c00256{bottom:506.720000pt;}
.y7_c00256{bottom:567.133333pt;}
.y6_c00256{bottom:611.453333pt;}
.h2_c00256{height:45.937500pt;}
.h7_c00256{height:53.838750pt;}
.h3_c00256{height:68.906250pt;}
.h4_c00256{height:68.998125pt;}
.h5_c00256{height:76.715625pt;}
.h1_c00256{height:114.843750pt;}
.h6_c00256{height:168.682500pt;}
.h0_c00256{height:720.000000pt;}
.w0_c00256{width:960.000000pt;}
.x0_c00256{left:0.000000pt;}
.x7_c00256{left:51.136000pt;}
.x3_c00256{left:57.600000pt;}
.x1_c00256{left:58.688000pt;}
.x5_c00256{left:301.346667pt;}
.x6_c00256{left:456.613333pt;}
.x4_c00256{left:659.200000pt;}
.x2_c00256{left:739.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_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_1b7eaa251dbfea49c411760b.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:0.727539;font-style:normal;font-weight:normal;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_f1c3dc937b001e2a6a18d4d6.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00257{vertical-align:0.000000px;}
.ls1_c00257{letter-spacing:0.000000px;}
.ls2_c00257{letter-spacing:0.216000px;}
.ls3_c00257{letter-spacing:0.238200px;}
.ls0_c00257{letter-spacing:98.949600px;}
.sc__c00257{text-shadow:none;}
.sc0_c00257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00257{-webkit-text-stroke:0px transparent;}
.sc0_c00257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00257{word-spacing:0.000000px;}
._0_c00257{margin-left:-8.466588px;}
._2_c00257{margin-left:-4.141871px;}
._3_c00257{margin-left:-2.341872px;}
._1_c00257{margin-left:-1.081224px;}
._4_c00257{width:1.224000px;}
.fc6_c00257{color:rgb(112,48,160);}
.fc5_c00257{color:rgb(0,32,96);}
.fc4_c00257{color:rgb(127,127,127);}
.fc3_c00257{color:rgb(255,255,255);}
.fc2_c00257{color:rgb(137,137,137);}
.fc1_c00257{color:rgb(0,0,0);}
.fc0_c00257{color:rgb(119,11,11);}
.fs1_c00257{font-size:72.000000px;}
.fs6_c00257{font-size:84.384000px;}
.fs2_c00257{font-size:108.000000px;}
.fs3_c00257{font-size:108.144000px;}
.fs4_c00257{font-size:120.240000px;}
.fs0_c00257{font-size:180.144000px;}
.fs5_c00257{font-size:264.384000px;}
.y4_c00257{bottom:-4.104000px;}
.y0_c00257{bottom:0.000000px;}
.y5_c00257{bottom:25.596000px;}
.y3_c00257{bottom:28.332000px;}
.y2_c00257{bottom:31.392000px;}
.y8_c00257{bottom:107.640000px;}
.y1_c00257{bottom:573.405000px;}
.y7_c00257{bottom:638.025000px;}
.y6_c00257{bottom:687.885000px;}
.h2_c00257{height:51.679688px;}
.h7_c00257{height:60.568594px;}
.h3_c00257{height:77.519531px;}
.h4_c00257{height:77.622891px;}
.h5_c00257{height:86.305078px;}
.h1_c00257{height:129.302578px;}
.h6_c00257{height:189.767813px;}
.h0_c00257{height:810.000000px;}
.w0_c00257{width:1080.000000px;}
.x0_c00257{left:0.000000px;}
.x6_c00257{left:57.528000px;}
.x1_c00257{left:64.800000px;}
.x4_c00257{left:339.015000px;}
.x5_c00257{left:547.530000px;}
.x3_c00257{left:741.600000px;}
.x2_c00257{left:831.600000px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls1_c00257{letter-spacing:0.000000pt;}
.ls2_c00257{letter-spacing:0.192000pt;}
.ls3_c00257{letter-spacing:0.211733pt;}
.ls0_c00257{letter-spacing:87.955200pt;}
.ws0_c00257{word-spacing:0.000000pt;}
._0_c00257{margin-left:-7.525856pt;}
._2_c00257{margin-left:-3.681663pt;}
._3_c00257{margin-left:-2.081664pt;}
._1_c00257{margin-left:-0.961088pt;}
._4_c00257{width:1.088000pt;}
.fs1_c00257{font-size:64.000000pt;}
.fs6_c00257{font-size:75.008000pt;}
.fs2_c00257{font-size:96.000000pt;}
.fs3_c00257{font-size:96.128000pt;}
.fs4_c00257{font-size:106.880000pt;}
.fs0_c00257{font-size:160.128000pt;}
.fs5_c00257{font-size:235.008000pt;}
.y4_c00257{bottom:-3.648000pt;}
.y0_c00257{bottom:0.000000pt;}
.y5_c00257{bottom:22.752000pt;}
.y3_c00257{bottom:25.184000pt;}
.y2_c00257{bottom:27.904000pt;}
.y8_c00257{bottom:95.680000pt;}
.y1_c00257{bottom:509.693333pt;}
.y7_c00257{bottom:567.133333pt;}
.y6_c00257{bottom:611.453333pt;}
.h2_c00257{height:45.937500pt;}
.h7_c00257{height:53.838750pt;}
.h3_c00257{height:68.906250pt;}
.h4_c00257{height:68.998125pt;}
.h5_c00257{height:76.715625pt;}
.h1_c00257{height:114.935625pt;}
.h6_c00257{height:168.682500pt;}
.h0_c00257{height:720.000000pt;}
.w0_c00257{width:960.000000pt;}
.x0_c00257{left:0.000000pt;}
.x6_c00257{left:51.136000pt;}
.x1_c00257{left:57.600000pt;}
.x4_c00257{left:301.346667pt;}
.x5_c00257{left:486.693333pt;}
.x3_c00257{left:659.200000pt;}
.x2_c00257{left:739.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_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_f3c6061e478588d8b176434c.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00258;src:url('chunks/assets/font_29439890e17c3070387194d0.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:0.861816;font-style: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);}
.v1_c00258{vertical-align:-10.944000px;}
.v2_c00258{vertical-align:-6.600000px;}
.v0_c00258{vertical-align:0.000000px;}
.ls4_c00258{letter-spacing:-0.302400px;}
.ls3_c00258{letter-spacing:-0.229800px;}
.ls1_c00258{letter-spacing:0.000000px;}
.ls6_c00258{letter-spacing:0.183600px;}
.ls0_c00258{letter-spacing:0.216000px;}
.ls2_c00258{letter-spacing:0.238200px;}
.ls5_c00258{letter-spacing:0.256200px;}
.sc__c00258{text-shadow:none;}
.sc0_c00258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00258{-webkit-text-stroke:0px transparent;}
.sc0_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00258{word-spacing:-18.808440px;}
.ws1_c00258{word-spacing:0.000000px;}
._3_c00258{margin-left:-3.172872px;}
._1_c00258{margin-left:-1.404000px;}
._0_c00258{width:1.224000px;}
._7_c00258{width:413.552880px;}
._8_c00258{width:420.923808px;}
._5_c00258{width:433.152000px;}
._4_c00258{width:437.440320px;}
._6_c00258{width:455.852880px;}
._9_c00258{width:626.112000px;}
._a_c00258{width:740.232000px;}
._2_c00258{width:953.352000px;}
.fc7_c00258{color:rgb(0,0,255);}
.fc6_c00258{color:rgb(119,11,11);}
.fc4_c00258{color:rgb(112,48,160);}
.fc3_c00258{color:rgb(0,32,96);}
.fc8_c00258{color:rgb(38,38,38);}
.fc5_c00258{color:rgb(0,0,0);}
.fc2_c00258{color:rgb(127,127,127);}
.fc1_c00258{color:rgb(255,255,255);}
.fc0_c00258{color:rgb(137,137,137);}
.fs8_c00258{font-size:36.000000px;}
.fs6_c00258{font-size:66.240000px;}
.fs7_c00258{font-size:66.384000px;}
.fs0_c00258{font-size:72.000000px;}
.fs4_c00258{font-size:84.240000px;}
.fs5_c00258{font-size:84.384000px;}
.fs1_c00258{font-size:108.000000px;}
.fs2_c00258{font-size:120.240000px;}
.fs3_c00258{font-size:264.384000px;}
.y0_c00258{bottom:0.000000px;}
.y2_c00258{bottom:28.332000px;}
.y1_c00258{bottom:31.392000px;}
.yb_c00258{bottom:104.076000px;}
.yc_c00258{bottom:104.220000px;}
.y11_c00258{bottom:176.760000px;}
.y8_c00258{bottom:253.365000px;}
.ya_c00258{bottom:254.595000px;}
.y10_c00258{bottom:321.690000px;}
.yf_c00258{bottom:341.490000px;}
.y7_c00258{bottom:354.135000px;}
.y6_c00258{bottom:354.345000px;}
.y9_c00258{bottom:473.430000px;}
.ye_c00258{bottom:542.850000px;}
.yd_c00258{bottom:562.680000px;}
.y5_c00258{bottom:575.280000px;}
.y4_c00258{bottom:638.025000px;}
.y3_c00258{bottom:687.885000px;}
.h8_c00258{height:25.209375px;}
.h6_c00258{height:47.545312px;}
.h7_c00258{height:47.648672px;}
.h1_c00258{height:51.679688px;}
.h4_c00258{height:60.465234px;}
.h5_c00258{height:60.568594px;}
.h2_c00258{height:77.519531px;}
.h3_c00258{height:189.767813px;}
.h0_c00258{height:810.000000px;}
.w0_c00258{width:1080.000000px;}
.x0_c00258{left:0.000000px;}
.x2_c00258{left:64.800000px;}
.xd_c00258{left:193.890000px;}
.xc_c00258{left:265.470000px;}
.xa_c00258{left:282.135000px;}
.x9_c00258{left:341.670000px;}
.x7_c00258{left:379.290000px;}
.xe_c00258{left:387.570000px;}
.x4_c00258{left:419.190000px;}
.x5_c00258{left:440.670000px;}
.x3_c00258{left:468.465000px;}
.x8_c00258{left:664.920000px;}
.x6_c00258{left:763.950000px;}
.xb_c00258{left:807.300000px;}
.x1_c00258{left:831.600000px;}
@media print{
.v1_c00258{vertical-align:-9.728000pt;}
.v2_c00258{vertical-align:-5.866667pt;}
.v0_c00258{vertical-align:0.000000pt;}
.ls4_c00258{letter-spacing:-0.268800pt;}
.ls3_c00258{letter-spacing:-0.204267pt;}
.ls1_c00258{letter-spacing:0.000000pt;}
.ls6_c00258{letter-spacing:0.163200pt;}
.ls0_c00258{letter-spacing:0.192000pt;}
.ls2_c00258{letter-spacing:0.211733pt;}
.ls5_c00258{letter-spacing:0.227733pt;}
.ws0_c00258{word-spacing:-16.718613pt;}
.ws1_c00258{word-spacing:0.000000pt;}
._3_c00258{margin-left:-2.820331pt;}
._1_c00258{margin-left:-1.248000pt;}
._0_c00258{width:1.088000pt;}
._7_c00258{width:367.602560pt;}
._8_c00258{width:374.154496pt;}
._5_c00258{width:385.024000pt;}
._4_c00258{width:388.835840pt;}
._6_c00258{width:405.202560pt;}
._9_c00258{width:556.544000pt;}
._a_c00258{width:657.984000pt;}
._2_c00258{width:847.424000pt;}
.fs8_c00258{font-size:32.000000pt;}
.fs6_c00258{font-size:58.880000pt;}
.fs7_c00258{font-size:59.008000pt;}
.fs0_c00258{font-size:64.000000pt;}
.fs4_c00258{font-size:74.880000pt;}
.fs5_c00258{font-size:75.008000pt;}
.fs1_c00258{font-size:96.000000pt;}
.fs2_c00258{font-size:106.880000pt;}
.fs3_c00258{font-size:235.008000pt;}
.y0_c00258{bottom:0.000000pt;}
.y2_c00258{bottom:25.184000pt;}
.y1_c00258{bottom:27.904000pt;}
.yb_c00258{bottom:92.512000pt;}
.yc_c00258{bottom:92.640000pt;}
.y11_c00258{bottom:157.120000pt;}
.y8_c00258{bottom:225.213333pt;}
.ya_c00258{bottom:226.306667pt;}
.y10_c00258{bottom:285.946667pt;}
.yf_c00258{bottom:303.546667pt;}
.y7_c00258{bottom:314.786667pt;}
.y6_c00258{bottom:314.973333pt;}
.y9_c00258{bottom:420.826667pt;}
.ye_c00258{bottom:482.533333pt;}
.yd_c00258{bottom:500.160000pt;}
.y5_c00258{bottom:511.360000pt;}
.y4_c00258{bottom:567.133333pt;}
.y3_c00258{bottom:611.453333pt;}
.h8_c00258{height:22.408333pt;}
.h6_c00258{height:42.262500pt;}
.h7_c00258{height:42.354375pt;}
.h1_c00258{height:45.937500pt;}
.h4_c00258{height:53.746875pt;}
.h5_c00258{height:53.838750pt;}
.h2_c00258{height:68.906250pt;}
.h3_c00258{height:168.682500pt;}
.h0_c00258{height:720.000000pt;}
.w0_c00258{width:960.000000pt;}
.x0_c00258{left:0.000000pt;}
.x2_c00258{left:57.600000pt;}
.xd_c00258{left:172.346667pt;}
.xc_c00258{left:235.973333pt;}
.xa_c00258{left:250.786667pt;}
.x9_c00258{left:303.706667pt;}
.x7_c00258{left:337.146667pt;}
.xe_c00258{left:344.506667pt;}
.x4_c00258{left:372.613333pt;}
.x5_c00258{left:391.706667pt;}
.x3_c00258{left:416.413333pt;}
.x8_c00258{left:591.040000pt;}
.x6_c00258{left:679.066667pt;}
.xb_c00258{left:717.600000pt;}
.x1_c00258{left:739.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_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_e1b86b042fc25cc1525fdb87.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00259;src:url('chunks/assets/font_d06f10a40eebd3c9b94678fa.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:0.861816;font-style:normal;font-weight:normal;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_98611758cd31aacff688e72a.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:0.758789;font-style: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:-10.944000px;}
.v0_c00259{vertical-align:0.000000px;}
.ls5_c00259{letter-spacing:-0.396000px;}
.ls3_c00259{letter-spacing:0.000000px;}
.ls2_c00259{letter-spacing:0.216000px;}
.ls4_c00259{letter-spacing:0.238200px;}
.ls0_c00259{letter-spacing:118.075968px;}
.ls1_c00259{letter-spacing:118.141920px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00259{word-spacing:-24.440544px;}
.ws0_c00259{word-spacing:-24.408000px;}
.ws2_c00259{word-spacing:0.000000px;}
._6_c00259{margin-left:-8.712000px;}
._5_c00259{margin-left:-6.480000px;}
._4_c00259{margin-left:-4.758648px;}
._2_c00259{margin-left:-3.132000px;}
._1_c00259{margin-left:-1.404000px;}
._0_c00259{width:1.224000px;}
._3_c00259{width:1776.564000px;}
.fc8_c00259{color:rgb(0,0,255);}
.fc7_c00259{color:rgb(192,0,0);}
.fc4_c00259{color:rgb(119,11,11);}
.fc3_c00259{color:rgb(0,32,96);}
.fc6_c00259{color:rgb(0,0,0);}
.fc5_c00259{color:rgb(89,89,89);}
.fc2_c00259{color:rgb(127,127,127);}
.fc1_c00259{color:rgb(255,255,255);}
.fc0_c00259{color:rgb(137,137,137);}
.fs0_c00259{font-size:72.000000px;}
.fs7_c00259{font-size:95.760000px;}
.fs6_c00259{font-size:95.904000px;}
.fs1_c00259{font-size:108.000000px;}
.fs5_c00259{font-size:108.144000px;}
.fs2_c00259{font-size:120.240000px;}
.fs4_c00259{font-size:192.384000px;}
.fs3_c00259{font-size:264.384000px;}
.y0_c00259{bottom:0.000000px;}
.y2_c00259{bottom:28.332000px;}
.y1_c00259{bottom:31.392000px;}
.y5_c00259{bottom:84.852000px;}
.y17_c00259{bottom:110.376000px;}
.yb_c00259{bottom:194.790000px;}
.ya_c00259{bottom:227.235000px;}
.y9_c00259{bottom:259.635000px;}
.y16_c00259{bottom:290.340000px;}
.y15_c00259{bottom:311.325000px;}
.yf_c00259{bottom:330.090000px;}
.y8_c00259{bottom:335.010000px;}
.y7_c00259{bottom:367.410000px;}
.ye_c00259{bottom:377.535000px;}
.y6_c00259{bottom:399.810000px;}
.yd_c00259{bottom:409.935000px;}
.yc_c00259{bottom:442.365000px;}
.y14_c00259{bottom:512.025000px;}
.y10_c00259{bottom:522.105000px;}
.y13_c00259{bottom:546.585000px;}
.y12_c00259{bottom:581.145000px;}
.y4_c00259{bottom:592.710000px;}
.y11_c00259{bottom:603.975000px;}
.y3_c00259{bottom:687.885000px;}
.h1_c00259{height:51.679688px;}
.h8_c00259{height:70.931602px;}
.h7_c00259{height:71.038266px;}
.h6_c00259{height:73.828125px;}
.h2_c00259{height:77.519531px;}
.h5_c00259{height:77.622891px;}
.h4_c00259{height:138.088125px;}
.h3_c00259{height:189.767813px;}
.h0_c00259{height:810.000000px;}
.w0_c00259{width:1080.000000px;}
.x0_c00259{left:0.000000px;}
.x2_c00259{left:64.800000px;}
.x3_c00259{left:314.355000px;}
.x7_c00259{left:316.905000px;}
.x6_c00259{left:333.825000px;}
.xe_c00259{left:421.170000px;}
.x11_c00259{left:440.310000px;}
.x8_c00259{left:485.280000px;}
.x9_c00259{left:493.560000px;}
.xd_c00259{left:499.110000px;}
.xa_c00259{left:502.380000px;}
.xc_c00259{left:512.535000px;}
.x5_c00259{left:529.665000px;}
.x10_c00259{left:568.050000px;}
.x4_c00259{left:574.380000px;}
.xb_c00259{left:576.390000px;}
.xf_c00259{left:763.560000px;}
.x1_c00259{left:831.600000px;}
.x12_c00259{left:923.010000px;}
@media print{
.v1_c00259{vertical-align:-9.728000pt;}
.v0_c00259{vertical-align:0.000000pt;}
.ls5_c00259{letter-spacing:-0.352000pt;}
.ls3_c00259{letter-spacing:0.000000pt;}
.ls2_c00259{letter-spacing:0.192000pt;}
.ls4_c00259{letter-spacing:0.211733pt;}
.ls0_c00259{letter-spacing:104.956416pt;}
.ls1_c00259{letter-spacing:105.015040pt;}
.ws1_c00259{word-spacing:-21.724928pt;}
.ws0_c00259{word-spacing:-21.696000pt;}
.ws2_c00259{word-spacing:0.000000pt;}
._6_c00259{margin-left:-7.744000pt;}
._5_c00259{margin-left:-5.760000pt;}
._4_c00259{margin-left:-4.229909pt;}
._2_c00259{margin-left:-2.784000pt;}
._1_c00259{margin-left:-1.248000pt;}
._0_c00259{width:1.088000pt;}
._3_c00259{width:1579.168000pt;}
.fs0_c00259{font-size:64.000000pt;}
.fs7_c00259{font-size:85.120000pt;}
.fs6_c00259{font-size:85.248000pt;}
.fs1_c00259{font-size:96.000000pt;}
.fs5_c00259{font-size:96.128000pt;}
.fs2_c00259{font-size:106.880000pt;}
.fs4_c00259{font-size:171.008000pt;}
.fs3_c00259{font-size:235.008000pt;}
.y0_c00259{bottom:0.000000pt;}
.y2_c00259{bottom:25.184000pt;}
.y1_c00259{bottom:27.904000pt;}
.y5_c00259{bottom:75.424000pt;}
.y17_c00259{bottom:98.112000pt;}
.yb_c00259{bottom:173.146667pt;}
.ya_c00259{bottom:201.986667pt;}
.y9_c00259{bottom:230.786667pt;}
.y16_c00259{bottom:258.080000pt;}
.y15_c00259{bottom:276.733333pt;}
.yf_c00259{bottom:293.413333pt;}
.y8_c00259{bottom:297.786667pt;}
.y7_c00259{bottom:326.586667pt;}
.ye_c00259{bottom:335.586667pt;}
.y6_c00259{bottom:355.386667pt;}
.yd_c00259{bottom:364.386667pt;}
.yc_c00259{bottom:393.213333pt;}
.y14_c00259{bottom:455.133333pt;}
.y10_c00259{bottom:464.093333pt;}
.y13_c00259{bottom:485.853333pt;}
.y12_c00259{bottom:516.573333pt;}
.y4_c00259{bottom:526.853333pt;}
.y11_c00259{bottom:536.866667pt;}
.y3_c00259{bottom:611.453333pt;}
.h1_c00259{height:45.937500pt;}
.h8_c00259{height:63.050313pt;}
.h7_c00259{height:63.145125pt;}
.h6_c00259{height:65.625000pt;}
.h2_c00259{height:68.906250pt;}
.h5_c00259{height:68.998125pt;}
.h4_c00259{height:122.745000pt;}
.h3_c00259{height:168.682500pt;}
.h0_c00259{height:720.000000pt;}
.w0_c00259{width:960.000000pt;}
.x0_c00259{left:0.000000pt;}
.x2_c00259{left:57.600000pt;}
.x3_c00259{left:279.426667pt;}
.x7_c00259{left:281.693333pt;}
.x6_c00259{left:296.733333pt;}
.xe_c00259{left:374.373333pt;}
.x11_c00259{left:391.386667pt;}
.x8_c00259{left:431.360000pt;}
.x9_c00259{left:438.720000pt;}
.xd_c00259{left:443.653333pt;}
.xa_c00259{left:446.560000pt;}
.xc_c00259{left:455.586667pt;}
.x5_c00259{left:470.813333pt;}
.x10_c00259{left:504.933333pt;}
.x4_c00259{left:510.560000pt;}
.xb_c00259{left:512.346667pt;}
.xf_c00259{left:678.720000pt;}
.x1_c00259{left:739.200000pt;}
.x12_c00259{left:820.453333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bab22dd4ff51e8c4f09184a8.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.ls4_c00260{letter-spacing:-1.350000px;}
.ls2_c00260{letter-spacing:0.000000px;}
.ls0_c00260{letter-spacing:0.090000px;}
.ls1_c00260{letter-spacing:0.216000px;}
.ls3_c00260{letter-spacing:0.238200px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00260{word-spacing:-20.430000px;}
.ws1_c00260{word-spacing:-18.990000px;}
.ws2_c00260{word-spacing:0.000000px;}
._3_c00260{margin-left:-5.084448px;}
._2_c00260{margin-left:-3.492000px;}
._1_c00260{margin-left:-1.836000px;}
._0_c00260{width:1.224000px;}
.fc6_c00260{color:rgb(78,0,192);}
.fc4_c00260{color:rgb(112,48,160);}
.fc3_c00260{color:rgb(119,11,11);}
.fc5_c00260{color:rgb(38,38,38);}
.fc2_c00260{color:rgb(255,255,255);}
.fc1_c00260{color:rgb(127,127,127);}
.fc0_c00260{color:rgb(137,137,137);}
.fs0_c00260{font-size:72.000000px;}
.fs6_c00260{font-size:90.000000px;}
.fs7_c00260{font-size:102.240000px;}
.fs5_c00260{font-size:102.384000px;}
.fs2_c00260{font-size:108.000000px;}
.fs3_c00260{font-size:108.144000px;}
.fs1_c00260{font-size:120.240000px;}
.fs4_c00260{font-size:192.240000px;}
.y4_c00260{bottom:-4.104000px;}
.y0_c00260{bottom:0.000000px;}
.y2_c00260{bottom:25.596000px;}
.y3_c00260{bottom:28.332000px;}
.y1_c00260{bottom:31.392000px;}
.y9_c00260{bottom:58.284000px;}
.y8_c00260{bottom:91.224000px;}
.y7_c00260{bottom:115.524000px;}
.y6_c00260{bottom:145.944000px;}
.y5_c00260{bottom:235.590000px;}
.h1_c00260{height:51.679688px;}
.h7_c00260{height:64.599609px;}
.h8_c00260{height:73.385156px;}
.h6_c00260{height:73.488516px;}
.h3_c00260{height:77.519531px;}
.h4_c00260{height:77.622891px;}
.h2_c00260{height:86.305078px;}
.h5_c00260{height:137.984766px;}
.h0_c00260{height:810.000000px;}
.w0_c00260{width:1080.000000px;}
.x0_c00260{left:0.000000px;}
.x3_c00260{left:64.800000px;}
.x7_c00260{left:247.785000px;}
.x4_c00260{left:252.180000px;}
.x5_c00260{left:305.925000px;}
.x6_c00260{left:370.545000px;}
.x8_c00260{left:539.970000px;}
.x2_c00260{left:741.600000px;}
.x1_c00260{left:831.600000px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls4_c00260{letter-spacing:-1.200000pt;}
.ls2_c00260{letter-spacing:0.000000pt;}
.ls0_c00260{letter-spacing:0.080000pt;}
.ls1_c00260{letter-spacing:0.192000pt;}
.ls3_c00260{letter-spacing:0.211733pt;}
.ws0_c00260{word-spacing:-18.160000pt;}
.ws1_c00260{word-spacing:-16.880000pt;}
.ws2_c00260{word-spacing:0.000000pt;}
._3_c00260{margin-left:-4.519509pt;}
._2_c00260{margin-left:-3.104000pt;}
._1_c00260{margin-left:-1.632000pt;}
._0_c00260{width:1.088000pt;}
.fs0_c00260{font-size:64.000000pt;}
.fs6_c00260{font-size:80.000000pt;}
.fs7_c00260{font-size:90.880000pt;}
.fs5_c00260{font-size:91.008000pt;}
.fs2_c00260{font-size:96.000000pt;}
.fs3_c00260{font-size:96.128000pt;}
.fs1_c00260{font-size:106.880000pt;}
.fs4_c00260{font-size:170.880000pt;}
.y4_c00260{bottom:-3.648000pt;}
.y0_c00260{bottom:0.000000pt;}
.y2_c00260{bottom:22.752000pt;}
.y3_c00260{bottom:25.184000pt;}
.y1_c00260{bottom:27.904000pt;}
.y9_c00260{bottom:51.808000pt;}
.y8_c00260{bottom:81.088000pt;}
.y7_c00260{bottom:102.688000pt;}
.y6_c00260{bottom:129.728000pt;}
.y5_c00260{bottom:209.413333pt;}
.h1_c00260{height:45.937500pt;}
.h7_c00260{height:57.421875pt;}
.h8_c00260{height:65.231250pt;}
.h6_c00260{height:65.323125pt;}
.h3_c00260{height:68.906250pt;}
.h4_c00260{height:68.998125pt;}
.h2_c00260{height:76.715625pt;}
.h5_c00260{height:122.653125pt;}
.h0_c00260{height:720.000000pt;}
.w0_c00260{width:960.000000pt;}
.x0_c00260{left:0.000000pt;}
.x3_c00260{left:57.600000pt;}
.x7_c00260{left:220.253333pt;}
.x4_c00260{left:224.160000pt;}
.x5_c00260{left:271.933333pt;}
.x6_c00260{left:329.373333pt;}
.x8_c00260{left:479.973333pt;}
.x2_c00260{left:659.200000pt;}
.x1_c00260{left:739.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_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_c9ec23b5bcc2e8e286aec64d.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00261;src:url('chunks/assets/font_f720f4203017d41aa23c460f.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00261{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls1_c00261{letter-spacing:-0.036000px;}
.ls0_c00261{letter-spacing:0.000000px;}
.sc__c00261{text-shadow:none;}
.sc1_c00261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00261{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
.sc1_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00261{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00261{word-spacing:-24.408000px;}
.ws2_c00261{word-spacing:-1.080000px;}
.ws1_c00261{word-spacing:0.000000px;}
.ws4_c00261{word-spacing:0.108000px;}
.ws3_c00261{word-spacing:0.240000px;}
.ws5_c00261{word-spacing:0.858000px;}
._6_c00261{margin-left:-11.009952px;}
._5_c00261{margin-left:-7.283952px;}
._4_c00261{margin-left:-4.209382px;}
._0_c00261{margin-left:-2.661031px;}
._1_c00261{margin-left:-1.206746px;}
._2_c00261{width:1.080000px;}
._3_c00261{width:22.826160px;}
.fc1_c00261{color:rgb(5,99,193);}
.fc0_c00261{color:rgb(0,0,0);}
.fs4_c00261{font-size:72.000000px;}
.fs2_c00261{font-size:95.760000px;}
.fs3_c00261{font-size:95.904000px;}
.fs5_c00261{font-size:108.000000px;}
.fs1_c00261{font-size:120.240000px;}
.fs0_c00261{font-size:144.000000px;}
.y0_c00261{bottom:0.000000px;}
.y8_c00261{bottom:28.632000px;}
.y7_c00261{bottom:52.932000px;}
.y6_c00261{bottom:88.968000px;}
.y5_c00261{bottom:114.888000px;}
.yb_c00261{bottom:238.399500px;}
.ya_c00261{bottom:270.799500px;}
.y9_c00261{bottom:303.199500px;}
.y4_c00261{bottom:584.695500px;}
.y3_c00261{bottom:626.779500px;}
.y2_c00261{bottom:692.536500px;}
.y1_c00261{bottom:742.936500px;}
.h5_c00261{height:51.679688px;}
.h3_c00261{height:68.733984px;}
.h4_c00261{height:68.837344px;}
.h6_c00261{height:77.519531px;}
.h2_c00261{height:85.776680px;}
.h1_c00261{height:102.726562px;}
.h0_c00261{height:810.000000px;}
.w0_c00261{width:1440.000000px;}
.x0_c00261{left:0.000000px;}
.x9_c00261{left:26.454000px;}
.x1_c00261{left:335.356500px;}
.x2_c00261{left:383.326500px;}
.x3_c00261{left:473.469000px;}
.x4_c00261{left:522.175500px;}
.x8_c00261{left:971.445000px;}
.x7_c00261{left:1064.325000px;}
.x6_c00261{left:1066.125000px;}
.x5_c00261{left:1107.525000px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls1_c00261{letter-spacing:-0.032000pt;}
.ls0_c00261{letter-spacing:0.000000pt;}
.ws0_c00261{word-spacing:-21.696000pt;}
.ws2_c00261{word-spacing:-0.960000pt;}
.ws1_c00261{word-spacing:0.000000pt;}
.ws4_c00261{word-spacing:0.096000pt;}
.ws3_c00261{word-spacing:0.213333pt;}
.ws5_c00261{word-spacing:0.762667pt;}
._6_c00261{margin-left:-9.786624pt;}
._5_c00261{margin-left:-6.474624pt;}
._4_c00261{margin-left:-3.741673pt;}
._0_c00261{margin-left:-2.365361pt;}
._1_c00261{margin-left:-1.072663pt;}
._2_c00261{width:0.960000pt;}
._3_c00261{width:20.289920pt;}
.fs4_c00261{font-size:64.000000pt;}
.fs2_c00261{font-size:85.120000pt;}
.fs3_c00261{font-size:85.248000pt;}
.fs5_c00261{font-size:96.000000pt;}
.fs1_c00261{font-size:106.880000pt;}
.fs0_c00261{font-size:128.000000pt;}
.y0_c00261{bottom:0.000000pt;}
.y8_c00261{bottom:25.450667pt;}
.y7_c00261{bottom:47.050667pt;}
.y6_c00261{bottom:79.082667pt;}
.y5_c00261{bottom:102.122667pt;}
.yb_c00261{bottom:211.910667pt;}
.ya_c00261{bottom:240.710667pt;}
.y9_c00261{bottom:269.510667pt;}
.y4_c00261{bottom:519.729333pt;}
.y3_c00261{bottom:557.137333pt;}
.y2_c00261{bottom:615.588000pt;}
.y1_c00261{bottom:660.388000pt;}
.h5_c00261{height:45.937500pt;}
.h3_c00261{height:61.096875pt;}
.h4_c00261{height:61.188750pt;}
.h6_c00261{height:68.906250pt;}
.h2_c00261{height:76.245937pt;}
.h1_c00261{height:91.312500pt;}
.h0_c00261{height:720.000000pt;}
.w0_c00261{width:1280.000000pt;}
.x0_c00261{left:0.000000pt;}
.x9_c00261{left:23.514667pt;}
.x1_c00261{left:298.094667pt;}
.x2_c00261{left:340.734667pt;}
.x3_c00261{left:420.861333pt;}
.x4_c00261{left:464.156000pt;}
.x8_c00261{left:863.506667pt;}
.x7_c00261{left:946.066667pt;}
.x6_c00261{left:947.666667pt;}
.x5_c00261{left:984.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_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_5e105a04140065785c71291a.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00262;src:url('chunks/assets/font_4a22962d6684792fa77da4e6.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:0.938965;font-style:normal;font-weight:normal;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_6e204750081a96a979205172.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00262;src:url('chunks/assets/font_69aea5bdec3265e03715469f.woff2')format("woff");}.ff4_c00262{font-family:ff4_c00262;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00262{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00262{vertical-align:0.000000px;}
.ls3_c00262{letter-spacing:-0.338400px;}
.ls4_c00262{letter-spacing:-0.288000px;}
.ls2_c00262{letter-spacing:0.000000px;}
.ls1_c00262{letter-spacing:57.720000px;}
.ls0_c00262{letter-spacing:90.069600px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00262{word-spacing:-43.140384px;}
.ws1_c00262{word-spacing:-32.544000px;}
.ws2_c00262{word-spacing:0.000000px;}
._4_c00262{margin-left:-9.483552px;}
._1_c00262{margin-left:-6.874248px;}
._2_c00262{margin-left:-5.287680px;}
._0_c00262{margin-left:-2.908224px;}
._3_c00262{margin-left:-1.154160px;}
._5_c00262{width:2.081088px;}
.fc1_c00262{color:rgb(5,99,193);}
.fc0_c00262{color:rgb(0,0,0);}
.fs3_c00262{font-size:144.000000px;}
.fs1_c00262{font-size:144.144000px;}
.fs2_c00262{font-size:192.384000px;}
.fs0_c00262{font-size:264.384000px;}
.y0_c00262{bottom:0.000000px;}
.ye_c00262{bottom:144.216000px;}
.yd_c00262{bottom:174.450000px;}
.yc_c00262{bottom:204.690000px;}
.yb_c00262{bottom:250.095000px;}
.ya_c00262{bottom:280.335000px;}
.y9_c00262{bottom:310.575000px;}
.y8_c00262{bottom:340.815000px;}
.y7_c00262{bottom:371.085000px;}
.y6_c00262{bottom:401.325000px;}
.y5_c00262{bottom:431.565000px;}
.y4_c00262{bottom:461.805000px;}
.y3_c00262{bottom:492.045000px;}
.y2_c00262{bottom:524.850000px;}
.y1_c00262{bottom:686.520000px;}
.h3_c00262{height:103.359375px;}
.h4_c00262{height:103.462734px;}
.h5_c00262{height:104.906250px;}
.h1_c00262{height:188.605969px;}
.h2_c00262{height:196.986938px;}
.h0_c00262{height:810.000000px;}
.w0_c00262{width:1440.000000px;}
.x0_c00262{left:0.000000px;}
.x1_c00262{left:109.800000px;}
.x2_c00262{left:785.700000px;}
.x3_c00262{left:812.730000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls3_c00262{letter-spacing:-0.300800pt;}
.ls4_c00262{letter-spacing:-0.256000pt;}
.ls2_c00262{letter-spacing:0.000000pt;}
.ls1_c00262{letter-spacing:51.306667pt;}
.ls0_c00262{letter-spacing:80.061867pt;}
.ws0_c00262{word-spacing:-38.347008pt;}
.ws1_c00262{word-spacing:-28.928000pt;}
.ws2_c00262{word-spacing:0.000000pt;}
._4_c00262{margin-left:-8.429824pt;}
._1_c00262{margin-left:-6.110443pt;}
._2_c00262{margin-left:-4.700160pt;}
._0_c00262{margin-left:-2.585088pt;}
._3_c00262{margin-left:-1.025920pt;}
._5_c00262{width:1.849856pt;}
.fs3_c00262{font-size:128.000000pt;}
.fs1_c00262{font-size:128.128000pt;}
.fs2_c00262{font-size:171.008000pt;}
.fs0_c00262{font-size:235.008000pt;}
.y0_c00262{bottom:0.000000pt;}
.ye_c00262{bottom:128.192000pt;}
.yd_c00262{bottom:155.066667pt;}
.yc_c00262{bottom:181.946667pt;}
.yb_c00262{bottom:222.306667pt;}
.ya_c00262{bottom:249.186667pt;}
.y9_c00262{bottom:276.066667pt;}
.y8_c00262{bottom:302.946667pt;}
.y7_c00262{bottom:329.853333pt;}
.y6_c00262{bottom:356.733333pt;}
.y5_c00262{bottom:383.613333pt;}
.y4_c00262{bottom:410.493333pt;}
.y3_c00262{bottom:437.373333pt;}
.y2_c00262{bottom:466.533333pt;}
.y1_c00262{bottom:610.240000pt;}
.h3_c00262{height:91.875000pt;}
.h4_c00262{height:91.966875pt;}
.h5_c00262{height:93.250000pt;}
.h1_c00262{height:167.649750pt;}
.h2_c00262{height:175.099500pt;}
.h0_c00262{height:720.000000pt;}
.w0_c00262{width:1280.000000pt;}
.x0_c00262{left:0.000000pt;}
.x1_c00262{left:97.600000pt;}
.x2_c00262{left:698.400000pt;}
.x3_c00262{left:722.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44f8a3a853757a1ef68d8413.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00263;src:url('chunks/assets/font_3de7d372fe48e227fe2b13ad.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00263{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00263{vertical-align:0.000000px;}
.ls3_c00263{letter-spacing:-0.298800px;}
.ls2_c00263{letter-spacing:0.000000px;}
.ls0_c00263{letter-spacing:0.319200px;}
.ls1_c00263{letter-spacing:0.417000px;}
.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;}
}
.ws3_c00263{word-spacing:-16.272000px;}
.ws0_c00263{word-spacing:-14.970240px;}
.ws1_c00263{word-spacing:-0.857904px;}
.ws4_c00263{word-spacing:0.000000px;}
.ws2_c00263{word-spacing:1.106640px;}
._3_c00263{margin-left:-5.993708px;}
._1_c00263{margin-left:-3.269090px;}
._0_c00263{margin-left:-1.721975px;}
._4_c00263{width:1.224000px;}
._2_c00263{width:43.641095px;}
.fc1_c00263{color:rgb(0,0,0);}
.fc0_c00263{color:rgb(5,99,193);}
.fs0_c00263{font-size:66.240000px;}
.fs3_c00263{font-size:72.000000px;}
.fs2_c00263{font-size:108.000000px;}
.fs1_c00263{font-size:192.240000px;}
.y0_c00263{bottom:0.000000px;}
.y2_c00263{bottom:25.740000px;}
.y7_c00263{bottom:43.272000px;}
.y1_c00263{bottom:45.540000px;}
.y6_c00263{bottom:64.872000px;}
.y5_c00263{bottom:363.390000px;}
.y4_c00263{bottom:684.390000px;}
.y3_c00263{bottom:736.230000px;}
.h1_c00263{height:47.545312px;}
.h4_c00263{height:51.679688px;}
.h3_c00263{height:77.519531px;}
.h2_c00263{height:137.139961px;}
.h0_c00263{height:810.000000px;}
.w0_c00263{width:1440.000000px;}
.x0_c00263{left:0.000000px;}
.x4_c00263{left:15.408000px;}
.x3_c00263{left:73.872000px;}
.x2_c00263{left:140.832000px;}
.x1_c00263{left:856.905000px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls3_c00263{letter-spacing:-0.265600pt;}
.ls2_c00263{letter-spacing:0.000000pt;}
.ls0_c00263{letter-spacing:0.283733pt;}
.ls1_c00263{letter-spacing:0.370667pt;}
.ws3_c00263{word-spacing:-14.464000pt;}
.ws0_c00263{word-spacing:-13.306880pt;}
.ws1_c00263{word-spacing:-0.762582pt;}
.ws4_c00263{word-spacing:0.000000pt;}
.ws2_c00263{word-spacing:0.983680pt;}
._3_c00263{margin-left:-5.327740pt;}
._1_c00263{margin-left:-2.905858pt;}
._0_c00263{margin-left:-1.530644pt;}
._4_c00263{width:1.088000pt;}
._2_c00263{width:38.792084pt;}
.fs0_c00263{font-size:58.880000pt;}
.fs3_c00263{font-size:64.000000pt;}
.fs2_c00263{font-size:96.000000pt;}
.fs1_c00263{font-size:170.880000pt;}
.y0_c00263{bottom:0.000000pt;}
.y2_c00263{bottom:22.880000pt;}
.y7_c00263{bottom:38.464000pt;}
.y1_c00263{bottom:40.480000pt;}
.y6_c00263{bottom:57.664000pt;}
.y5_c00263{bottom:323.013333pt;}
.y4_c00263{bottom:608.346667pt;}
.y3_c00263{bottom:654.426667pt;}
.h1_c00263{height:42.262500pt;}
.h4_c00263{height:45.937500pt;}
.h3_c00263{height:68.906250pt;}
.h2_c00263{height:121.902187pt;}
.h0_c00263{height:720.000000pt;}
.w0_c00263{width:1280.000000pt;}
.x0_c00263{left:0.000000pt;}
.x4_c00263{left:13.696000pt;}
.x3_c00263{left:65.664000pt;}
.x2_c00263{left:125.184000pt;}
.x1_c00263{left:761.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d6ea6a51dd2fa81d4a5cec06.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00264{letter-spacing:0.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:0.000000px;}
._2_c00264{margin-left:-4.617024px;}
._0_c00264{margin-left:-2.114448px;}
._3_c00264{margin-left:-1.074385px;}
._1_c00264{width:1.537296px;}
.fc0_c00264{color:rgb(0,0,0);}
.fs0_c00264{font-size:192.240000px;}
.fs1_c00264{font-size:192.384000px;}
.y0_c00264{bottom:0.000000px;}
.y3_c00264{bottom:572.325000px;}
.y2_c00264{bottom:629.970000px;}
.y1_c00264{bottom:687.570000px;}
.h1_c00264{height:137.984766px;}
.h2_c00264{height:138.088125px;}
.h0_c00264{height:810.000000px;}
.w0_c00264{width:1440.000000px;}
.x0_c00264{left:0.000000px;}
.x3_c00264{left:280.725000px;}
.x2_c00264{left:306.465000px;}
.x1_c00264{left:410.010000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls0_c00264{letter-spacing:0.000000pt;}
.ws0_c00264{word-spacing:0.000000pt;}
._2_c00264{margin-left:-4.104021pt;}
._0_c00264{margin-left:-1.879509pt;}
._3_c00264{margin-left:-0.955009pt;}
._1_c00264{width:1.366485pt;}
.fs0_c00264{font-size:170.880000pt;}
.fs1_c00264{font-size:171.008000pt;}
.y0_c00264{bottom:0.000000pt;}
.y3_c00264{bottom:508.733333pt;}
.y2_c00264{bottom:559.973333pt;}
.y1_c00264{bottom:611.173333pt;}
.h1_c00264{height:122.653125pt;}
.h2_c00264{height:122.745000pt;}
.h0_c00264{height:720.000000pt;}
.w0_c00264{width:1280.000000pt;}
.x0_c00264{left:0.000000pt;}
.x3_c00264{left:249.533333pt;}
.x2_c00264{left:272.413333pt;}
.x1_c00264{left:364.453333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8f6fc90c1bad5e247207316d.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00265{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls0_c00265{letter-spacing:0.000000px;}
.sc__c00265{text-shadow:none;}
.sc0_c00265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00265{-webkit-text-stroke:0px transparent;}
.sc0_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00265{word-spacing:0.000000px;}
._3_c00265{margin-left:-3.618000px;}
._0_c00265{margin-left:-2.164200px;}
._2_c00265{margin-left:-1.082400px;}
._4_c00265{width:1.024488px;}
._1_c00265{width:29.143200px;}
.fc0_c00265{color:rgb(0,0,0);}
.fs0_c00265{font-size:120.240000px;}
.fs1_c00265{font-size:120.384000px;}
.y0_c00265{bottom:0.000000px;}
.y5_c00265{bottom:629.310000px;}
.y4_c00265{bottom:665.310000px;}
.y3_c00265{bottom:701.355000px;}
.y2_c00265{bottom:737.355000px;}
.y1_c00265{bottom:773.355000px;}
.h1_c00265{height:86.305078px;}
.h2_c00265{height:86.408438px;}
.h0_c00265{height:810.000000px;}
.w0_c00265{width:1440.000000px;}
.x0_c00265{left:0.000000px;}
.x2_c00265{left:42.300000px;}
.x1_c00265{left:366.330000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls0_c00265{letter-spacing:0.000000pt;}
.ws0_c00265{word-spacing:0.000000pt;}
._3_c00265{margin-left:-3.216000pt;}
._0_c00265{margin-left:-1.923733pt;}
._2_c00265{margin-left:-0.962134pt;}
._4_c00265{width:0.910656pt;}
._1_c00265{width:25.905066pt;}
.fs0_c00265{font-size:106.880000pt;}
.fs1_c00265{font-size:107.008000pt;}
.y0_c00265{bottom:0.000000pt;}
.y5_c00265{bottom:559.386667pt;}
.y4_c00265{bottom:591.386667pt;}
.y3_c00265{bottom:623.426667pt;}
.y2_c00265{bottom:655.426667pt;}
.y1_c00265{bottom:687.426667pt;}
.h1_c00265{height:76.715625pt;}
.h2_c00265{height:76.807500pt;}
.h0_c00265{height:720.000000pt;}
.w0_c00265{width:1280.000000pt;}
.x0_c00265{left:0.000000pt;}
.x2_c00265{left:37.600000pt;}
.x1_c00265{left:325.626667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_492f274c7aa69e8a8e22ff8b.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00266;src:url('chunks/assets/font_4a22962d6684792fa77da4e6.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:0.938965;font-style:normal;font-weight:normal;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_6672ae7564efe139eb2c01dc.woff2')format("woff");}.ff3_c00266{font-family:ff3_c00266;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00266{letter-spacing:-0.036000px;}
.ls2_c00266{letter-spacing:0.000000px;}
.ls0_c00266{letter-spacing:70.149600px;}
.ls1_c00266{letter-spacing:70.200000px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00266{word-spacing:-24.440544px;}
.ws0_c00266{word-spacing:-24.408000px;}
.ws4_c00266{word-spacing:0.000000px;}
.ws1_c00266{word-spacing:0.324000px;}
.ws3_c00266{word-spacing:0.864000px;}
._3_c00266{margin-left:-3.893400px;}
._0_c00266{margin-left:-2.448000px;}
._1_c00266{margin-left:-1.160352px;}
._4_c00266{width:1.368000px;}
._5_c00266{width:26.389536px;}
._2_c00266{width:29.364000px;}
.fc0_c00266{color:rgb(255,255,255);}
.fs3_c00266{font-size:108.000000px;}
.fs2_c00266{font-size:108.144000px;}
.fs0_c00266{font-size:144.000000px;}
.fs1_c00266{font-size:144.144000px;}
.y0_c00266{bottom:0.000000px;}
.y11_c00266{bottom:93.348000px;}
.y10_c00266{bottom:119.268000px;}
.yf_c00266{bottom:152.790000px;}
.ye_c00266{bottom:178.710000px;}
.yd_c00266{bottom:204.630000px;}
.yc_c00266{bottom:237.930000px;}
.yb_c00266{bottom:263.850000px;}
.ya_c00266{bottom:297.330000px;}
.y9_c00266{bottom:338.220000px;}
.y8_c00266{bottom:364.140000px;}
.y7_c00266{bottom:390.060000px;}
.y6_c00266{bottom:431.100000px;}
.y5_c00266{bottom:457.050000px;}
.y4_c00266{bottom:482.970000px;}
.y3_c00266{bottom:554.865000px;}
.y2_c00266{bottom:593.790000px;}
.y1_c00266{bottom:632.670000px;}
.h5_c00266{height:77.519531px;}
.h4_c00266{height:77.622891px;}
.h6_c00266{height:78.679688px;}
.h3_c00266{height:78.784594px;}
.h1_c00266{height:102.726562px;}
.h2_c00266{height:102.829289px;}
.h0_c00266{height:810.000000px;}
.w0_c00266{width:1440.000000px;}
.x0_c00266{left:0.000000px;}
.x1_c00266{left:54.648000px;}
.x2_c00266{left:81.648000px;}
.x3_c00266{left:108.648000px;}
.x4_c00266{left:135.648000px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls3_c00266{letter-spacing:-0.032000pt;}
.ls2_c00266{letter-spacing:0.000000pt;}
.ls0_c00266{letter-spacing:62.355200pt;}
.ls1_c00266{letter-spacing:62.400000pt;}
.ws2_c00266{word-spacing:-21.724928pt;}
.ws0_c00266{word-spacing:-21.696000pt;}
.ws4_c00266{word-spacing:0.000000pt;}
.ws1_c00266{word-spacing:0.288000pt;}
.ws3_c00266{word-spacing:0.768000pt;}
._3_c00266{margin-left:-3.460800pt;}
._0_c00266{margin-left:-2.176000pt;}
._1_c00266{margin-left:-1.031424pt;}
._4_c00266{width:1.216000pt;}
._5_c00266{width:23.457365pt;}
._2_c00266{width:26.101333pt;}
.fs3_c00266{font-size:96.000000pt;}
.fs2_c00266{font-size:96.128000pt;}
.fs0_c00266{font-size:128.000000pt;}
.fs1_c00266{font-size:128.128000pt;}
.y0_c00266{bottom:0.000000pt;}
.y11_c00266{bottom:82.976000pt;}
.y10_c00266{bottom:106.016000pt;}
.yf_c00266{bottom:135.813333pt;}
.ye_c00266{bottom:158.853333pt;}
.yd_c00266{bottom:181.893333pt;}
.yc_c00266{bottom:211.493333pt;}
.yb_c00266{bottom:234.533333pt;}
.ya_c00266{bottom:264.293333pt;}
.y9_c00266{bottom:300.640000pt;}
.y8_c00266{bottom:323.680000pt;}
.y7_c00266{bottom:346.720000pt;}
.y6_c00266{bottom:383.200000pt;}
.y5_c00266{bottom:406.266667pt;}
.y4_c00266{bottom:429.306667pt;}
.y3_c00266{bottom:493.213333pt;}
.y2_c00266{bottom:527.813333pt;}
.y1_c00266{bottom:562.373333pt;}
.h5_c00266{height:68.906250pt;}
.h4_c00266{height:68.998125pt;}
.h6_c00266{height:69.937500pt;}
.h3_c00266{height:70.030750pt;}
.h1_c00266{height:91.312500pt;}
.h2_c00266{height:91.403813pt;}
.h0_c00266{height:720.000000pt;}
.w0_c00266{width:1280.000000pt;}
.x0_c00266{left:0.000000pt;}
.x1_c00266{left:48.576000pt;}
.x2_c00266{left:72.576000pt;}
.x3_c00266{left:96.576000pt;}
.x4_c00266{left:120.576000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ef8708a4f1dd1ebe0956062.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00267;src:url('chunks/assets/font_e470b97c41976ba65756b050.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00267;src:url('chunks/assets/font_09f50709804d069cf8d6b9ba.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00267{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00267{vertical-align:-1.440000px;}
.v0_c00267{vertical-align:0.000000px;}
.ls1_c00267{letter-spacing:-0.792000px;}
.ls2_c00267{letter-spacing:-0.109200px;}
.ls0_c00267{letter-spacing:0.000000px;}
.sc__c00267{text-shadow:none;}
.sc1_c00267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00267{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00267{-webkit-text-stroke:0px transparent;}
.sc1_c00267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00267{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00267{word-spacing:-37.913760px;}
.ws5_c00267{word-spacing:-18.414720px;}
.ws1_c00267{word-spacing:-16.304544px;}
.ws2_c00267{word-spacing:-16.272000px;}
.ws3_c00267{word-spacing:-15.480000px;}
.ws6_c00267{word-spacing:-12.204000px;}
.ws7_c00267{word-spacing:0.000000px;}
.ws4_c00267{word-spacing:118.104000px;}
._2_c00267{margin-left:-4.695938px;}
._1_c00267{margin-left:-2.684328px;}
._0_c00267{margin-left:-1.509672px;}
._4_c00267{width:1.211258px;}
._6_c00267{width:2.503272px;}
._5_c00267{width:17.170080px;}
._3_c00267{width:33.843773px;}
.fc1_c00267{color:rgb(5,99,193);}
.fc0_c00267{color:rgb(0,0,0);}
.fs4_c00267{font-size:54.000000px;}
.fs3_c00267{font-size:66.240000px;}
.fs2_c00267{font-size:72.000000px;}
.fs1_c00267{font-size:72.144000px;}
.fs5_c00267{font-size:108.144000px;}
.fs0_c00267{font-size:167.760000px;}
.y0_c00267{bottom:0.000000px;}
.yb_c00267{bottom:39.924000px;}
.y4_c00267{bottom:49.788000px;}
.ya_c00267{bottom:56.124000px;}
.y3_c00267{bottom:71.424000px;}
.y9_c00267{bottom:109.872000px;}
.y8_c00267{bottom:129.312000px;}
.y7_c00267{bottom:149.472000px;}
.y6_c00267{bottom:168.915000px;}
.y5_c00267{bottom:188.715000px;}
.yc_c00267{bottom:228.030000px;}
.y2_c00267{bottom:687.810000px;}
.y1_c00267{bottom:733.215000px;}
.h5_c00267{height:38.759766px;}
.h4_c00267{height:48.256875px;}
.h3_c00267{height:51.679688px;}
.h2_c00267{height:51.783047px;}
.h6_c00267{height:77.622891px;}
.h1_c00267{height:119.676445px;}
.h0_c00267{height:810.000000px;}
.w0_c00267{width:1440.000000px;}
.x0_c00267{left:0.000000px;}
.x2_c00267{left:22.068000px;}
.x1_c00267{left:76.068000px;}
.x4_c00267{left:1178.670000px;}
.x3_c00267{left:1196.670000px;}
.x5_c00267{left:1212.450000px;}
@media print{
.v1_c00267{vertical-align:-1.280000pt;}
.v0_c00267{vertical-align:0.000000pt;}
.ls1_c00267{letter-spacing:-0.704000pt;}
.ls2_c00267{letter-spacing:-0.097067pt;}
.ls0_c00267{letter-spacing:0.000000pt;}
.ws0_c00267{word-spacing:-33.701120pt;}
.ws5_c00267{word-spacing:-16.368640pt;}
.ws1_c00267{word-spacing:-14.492928pt;}
.ws2_c00267{word-spacing:-14.464000pt;}
.ws3_c00267{word-spacing:-13.760000pt;}
.ws6_c00267{word-spacing:-10.848000pt;}
.ws7_c00267{word-spacing:0.000000pt;}
.ws4_c00267{word-spacing:104.981333pt;}
._2_c00267{margin-left:-4.174167pt;}
._1_c00267{margin-left:-2.386069pt;}
._0_c00267{margin-left:-1.341931pt;}
._4_c00267{width:1.076674pt;}
._6_c00267{width:2.225131pt;}
._5_c00267{width:15.262293pt;}
._3_c00267{width:30.083353pt;}
.fs4_c00267{font-size:48.000000pt;}
.fs3_c00267{font-size:58.880000pt;}
.fs2_c00267{font-size:64.000000pt;}
.fs1_c00267{font-size:64.128000pt;}
.fs5_c00267{font-size:96.128000pt;}
.fs0_c00267{font-size:149.120000pt;}
.y0_c00267{bottom:0.000000pt;}
.yb_c00267{bottom:35.488000pt;}
.y4_c00267{bottom:44.256000pt;}
.ya_c00267{bottom:49.888000pt;}
.y3_c00267{bottom:63.488000pt;}
.y9_c00267{bottom:97.664000pt;}
.y8_c00267{bottom:114.944000pt;}
.y7_c00267{bottom:132.864000pt;}
.y6_c00267{bottom:150.146667pt;}
.y5_c00267{bottom:167.746667pt;}
.yc_c00267{bottom:202.693333pt;}
.y2_c00267{bottom:611.386667pt;}
.y1_c00267{bottom:651.746667pt;}
.h5_c00267{height:34.453125pt;}
.h4_c00267{height:42.895000pt;}
.h3_c00267{height:45.937500pt;}
.h2_c00267{height:46.029375pt;}
.h6_c00267{height:68.998125pt;}
.h1_c00267{height:106.379062pt;}
.h0_c00267{height:720.000000pt;}
.w0_c00267{width:1280.000000pt;}
.x0_c00267{left:0.000000pt;}
.x2_c00267{left:19.616000pt;}
.x1_c00267{left:67.616000pt;}
.x4_c00267{left:1047.706667pt;}
.x3_c00267{left:1063.706667pt;}
.x5_c00267{left:1077.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_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_ad8275ce0b4c0b6faad69676.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00268;src:url('chunks/assets/font_67ab5b115c267f15e3922dd5.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00268{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00268{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00268{vertical-align:0.000000px;}
.ls1_c00268{letter-spacing:-0.144000px;}
.ls0_c00268{letter-spacing:0.000000px;}
.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:-0.720000px;}
.ws2_c00268{word-spacing:0.000000px;}
.ws1_c00268{word-spacing:0.480000px;}
._4_c00268{margin-left:-6.480000px;}
._2_c00268{margin-left:-3.456000px;}
._1_c00268{margin-left:-2.160000px;}
._0_c00268{margin-left:-1.152000px;}
._5_c00268{width:1.512000px;}
._3_c00268{width:31.468272px;}
.fc1_c00268{color:rgb(5,99,193);}
.fc0_c00268{color:rgb(0,0,0);}
.fs2_c00268{font-size:108.000000px;}
.fs0_c00268{font-size:144.000000px;}
.fs1_c00268{font-size:144.144000px;}
.y0_c00268{bottom:0.000000px;}
.y5_c00268{bottom:400.785000px;}
.y4_c00268{bottom:650.775000px;}
.y3_c00268{bottom:689.685000px;}
.y2_c00268{bottom:728.565000px;}
.y1_c00268{bottom:767.445000px;}
.h3_c00268{height:77.519531px;}
.h1_c00268{height:102.726562px;}
.h2_c00268{height:102.829289px;}
.h0_c00268{height:810.000000px;}
.w0_c00268{width:1440.000000px;}
.x0_c00268{left:0.000000px;}
.x1_c00268{left:265.065000px;}
.x2_c00268{left:483.990000px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls1_c00268{letter-spacing:-0.128000pt;}
.ls0_c00268{letter-spacing:0.000000pt;}
.ws0_c00268{word-spacing:-0.640000pt;}
.ws2_c00268{word-spacing:0.000000pt;}
.ws1_c00268{word-spacing:0.426667pt;}
._4_c00268{margin-left:-5.760000pt;}
._2_c00268{margin-left:-3.072000pt;}
._1_c00268{margin-left:-1.920000pt;}
._0_c00268{margin-left:-1.024000pt;}
._5_c00268{width:1.344000pt;}
._3_c00268{width:27.971797pt;}
.fs2_c00268{font-size:96.000000pt;}
.fs0_c00268{font-size:128.000000pt;}
.fs1_c00268{font-size:128.128000pt;}
.y0_c00268{bottom:0.000000pt;}
.y5_c00268{bottom:356.253333pt;}
.y4_c00268{bottom:578.466667pt;}
.y3_c00268{bottom:613.053333pt;}
.y2_c00268{bottom:647.613333pt;}
.y1_c00268{bottom:682.173333pt;}
.h3_c00268{height:68.906250pt;}
.h1_c00268{height:91.312500pt;}
.h2_c00268{height:91.403813pt;}
.h0_c00268{height:720.000000pt;}
.w0_c00268{width:1280.000000pt;}
.x0_c00268{left:0.000000pt;}
.x1_c00268{left:235.613333pt;}
.x2_c00268{left:430.213333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_804fa31d816e867548c65921.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00269{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00269{vertical-align:0.000000px;}
.ls0_c00269{letter-spacing:0.000000px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00269{word-spacing:0.000000px;}
._3_c00269{margin-left:-5.023296px;}
._0_c00269{margin-left:-3.701376px;}
._2_c00269{margin-left:-2.643576px;}
._1_c00269{margin-left:-1.586304px;}
.fc0_c00269{color:rgb(255,255,255);}
.fs0_c00269{font-size:264.384000px;}
.y0_c00269{bottom:0.000000px;}
.y1_c00269{bottom:670.395000px;}
.h1_c00269{height:188.605969px;}
.h0_c00269{height:810.000000px;}
.w0_c00269{width:1440.000000px;}
.x0_c00269{left:0.000000px;}
.x1_c00269{left:64.188000px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls0_c00269{letter-spacing:0.000000pt;}
.ws0_c00269{word-spacing:0.000000pt;}
._3_c00269{margin-left:-4.465152pt;}
._0_c00269{margin-left:-3.290112pt;}
._2_c00269{margin-left:-2.349845pt;}
._1_c00269{margin-left:-1.410048pt;}
.fs0_c00269{font-size:235.008000pt;}
.y0_c00269{bottom:0.000000pt;}
.y1_c00269{bottom:595.906667pt;}
.h1_c00269{height:167.649750pt;}
.h0_c00269{height:720.000000pt;}
.w0_c00269{width:1280.000000pt;}
.x0_c00269{left:0.000000pt;}
.x1_c00269{left:57.056000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c7dbc8ec8b1b1ee3033fed01.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00270;src:url('chunks/assets/font_52731866f5752c17ca4cda7c.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00270{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00270{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00270{vertical-align:0.000000px;}
.ls0_c00270{letter-spacing:0.000000px;}
.sc__c00270{text-shadow:none;}
.sc0_c00270{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00270{-webkit-text-stroke:0px transparent;}
.sc0_c00270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00270{word-spacing:-24.408000px;}
.ws1_c00270{word-spacing:0.000000px;}
._5_c00270{margin-left:-6.870743px;}
._2_c00270{margin-left:-4.328472px;}
._4_c00270{margin-left:-3.187272px;}
._0_c00270{margin-left:-2.181048px;}
._1_c00270{margin-left:-1.174152px;}
._3_c00270{width:1.007063px;}
.fc2_c00270{color:rgb(5,99,193);}
.fc1_c00270{color:rgb(255,255,255);}
.fc0_c00270{color:rgb(0,0,0);}
.fs2_c00270{font-size:108.000000px;}
.fs0_c00270{font-size:167.760000px;}
.fs1_c00270{font-size:167.904000px;}
.y0_c00270{bottom:0.000000px;}
.y7_c00270{bottom:29.844000px;}
.y6_c00270{bottom:306.360000px;}
.y5_c00270{bottom:338.760000px;}
.y4_c00270{bottom:371.160000px;}
.y3_c00270{bottom:632.775000px;}
.y2_c00270{bottom:678.135000px;}
.y1_c00270{bottom:723.495000px;}
.h3_c00270{height:77.519531px;}
.h1_c00270{height:119.676445px;}
.h2_c00270{height:119.779172px;}
.h0_c00270{height:810.000000px;}
.w0_c00270{width:1440.000000px;}
.x0_c00270{left:0.000000px;}
.x1_c00270{left:148.284000px;}
.x4_c00270{left:671.835000px;}
.x3_c00270{left:950.295000px;}
.x2_c00270{left:1093.575000px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls0_c00270{letter-spacing:0.000000pt;}
.ws0_c00270{word-spacing:-21.696000pt;}
.ws1_c00270{word-spacing:0.000000pt;}
._5_c00270{margin-left:-6.107327pt;}
._2_c00270{margin-left:-3.847531pt;}
._4_c00270{margin-left:-2.833131pt;}
._0_c00270{margin-left:-1.938709pt;}
._1_c00270{margin-left:-1.043691pt;}
._3_c00270{width:0.895167pt;}
.fs2_c00270{font-size:96.000000pt;}
.fs0_c00270{font-size:149.120000pt;}
.fs1_c00270{font-size:149.248000pt;}
.y0_c00270{bottom:0.000000pt;}
.y7_c00270{bottom:26.528000pt;}
.y6_c00270{bottom:272.320000pt;}
.y5_c00270{bottom:301.120000pt;}
.y4_c00270{bottom:329.920000pt;}
.y3_c00270{bottom:562.466667pt;}
.y2_c00270{bottom:602.786667pt;}
.y1_c00270{bottom:643.106667pt;}
.h3_c00270{height:68.906250pt;}
.h1_c00270{height:106.379062pt;}
.h2_c00270{height:106.470375pt;}
.h0_c00270{height:720.000000pt;}
.w0_c00270{width:1280.000000pt;}
.x0_c00270{left:0.000000pt;}
.x1_c00270{left:131.808000pt;}
.x4_c00270{left:597.186667pt;}
.x3_c00270{left:844.706667pt;}
.x2_c00270{left:972.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_15becda98a60ec9f2698fb28.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.202148;font-style: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;}
.ls0_c00271{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00271{word-spacing:-37.946304px;}
.ws0_c00271{word-spacing:-24.408000px;}
.ws2_c00271{word-spacing:0.000000px;}
._0_c00271{margin-left:-1.405764px;}
._1_c00271{width:2.516400px;}
.fc1_c00271{color:rgb(255,0,0);}
.fc0_c00271{color:rgb(255,51,0);}
.fs1_c00271{font-size:108.000000px;}
.fs0_c00271{font-size:108.144000px;}
.fs2_c00271{font-size:167.760000px;}
.fs3_c00271{font-size:167.904000px;}
.y0_c00271{bottom:0.000000px;}
.y8_c00271{bottom:108.360000px;}
.y3_c00271{bottom:113.220000px;}
.y6_c00271{bottom:207.390000px;}
.y7_c00271{bottom:394.560000px;}
.y9_c00271{bottom:430.590000px;}
.y5_c00271{bottom:625.065000px;}
.y4_c00271{bottom:657.510000px;}
.y2_c00271{bottom:702.510000px;}
.y1_c00271{bottom:761.400000px;}
.h2_c00271{height:110.583984px;}
.h1_c00271{height:110.731430px;}
.h3_c00271{height:171.773789px;}
.h4_c00271{height:171.921234px;}
.h0_c00271{height:810.000000px;}
.w0_c00271{width:1440.000000px;}
.x0_c00271{left:0.000000px;}
.x9_c00271{left:206.970000px;}
.x3_c00271{left:235.830000px;}
.x2_c00271{left:287.970000px;}
.x8_c00271{left:444.930000px;}
.x7_c00271{left:585.000000px;}
.x1_c00271{left:766.875000px;}
.x5_c00271{left:847.905000px;}
.x4_c00271{left:1018.905000px;}
.x6_c00271{left:1063.905000px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls0_c00271{letter-spacing:0.000000pt;}
.ws1_c00271{word-spacing:-33.730048pt;}
.ws0_c00271{word-spacing:-21.696000pt;}
.ws2_c00271{word-spacing:0.000000pt;}
._0_c00271{margin-left:-1.249568pt;}
._1_c00271{width:2.236800pt;}
.fs1_c00271{font-size:96.000000pt;}
.fs0_c00271{font-size:96.128000pt;}
.fs2_c00271{font-size:149.120000pt;}
.fs3_c00271{font-size:149.248000pt;}
.y0_c00271{bottom:0.000000pt;}
.y8_c00271{bottom:96.320000pt;}
.y3_c00271{bottom:100.640000pt;}
.y6_c00271{bottom:184.346667pt;}
.y7_c00271{bottom:350.720000pt;}
.y9_c00271{bottom:382.746667pt;}
.y5_c00271{bottom:555.613333pt;}
.y4_c00271{bottom:584.453333pt;}
.y2_c00271{bottom:624.453333pt;}
.y1_c00271{bottom:676.800000pt;}
.h2_c00271{height:98.296875pt;}
.h1_c00271{height:98.427937pt;}
.h3_c00271{height:152.687812pt;}
.h4_c00271{height:152.818875pt;}
.h0_c00271{height:720.000000pt;}
.w0_c00271{width:1280.000000pt;}
.x0_c00271{left:0.000000pt;}
.x9_c00271{left:183.973333pt;}
.x3_c00271{left:209.626667pt;}
.x2_c00271{left:255.973333pt;}
.x8_c00271{left:395.493333pt;}
.x7_c00271{left:520.000000pt;}
.x1_c00271{left:681.666667pt;}
.x5_c00271{left:753.693333pt;}
.x4_c00271{left:905.693333pt;}
.x6_c00271{left:945.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_59ea2ff24baa41e28a5819c5.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00272;src:url('chunks/assets/font_4a22962d6684792fa77da4e6.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:0.938965;font-style:normal;font-weight:normal;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_62a6c896f38e82443eb97862.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00272{vertical-align:-46.800000px;}
.v0_c00272{vertical-align:0.000000px;}
.v1_c00272{vertical-align:46.800000px;}
.ls4_c00272{letter-spacing:0.000000px;}
.ls3_c00272{letter-spacing:0.032400px;}
.ls2_c00272{letter-spacing:0.080640px;}
.ls1_c00272{letter-spacing:0.130200px;}
.ls0_c00272{letter-spacing:53.316000px;}
.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;}
}
.ws3_c00272{word-spacing:-35.342784px;}
.ws0_c00272{word-spacing:-3.844452px;}
.ws4_c00272{word-spacing:0.000000px;}
.ws2_c00272{word-spacing:0.479280px;}
.ws1_c00272{word-spacing:0.993360px;}
._1_c00272{margin-left:-5.287680px;}
._3_c00272{margin-left:-3.666133px;}
._2_c00272{margin-left:-2.643576px;}
._4_c00272{margin-left:-1.562400px;}
._8_c00272{width:1.191948px;}
._5_c00272{width:32.712431px;}
._7_c00272{width:34.335576px;}
._6_c00272{width:36.731520px;}
._0_c00272{width:58.483200px;}
.fc0_c00272{color:rgb(0,0,0);}
.fs3_c00272{font-size:103.680000px;}
.fs1_c00272{font-size:156.240000px;}
.fs2_c00272{font-size:156.384000px;}
.fs0_c00272{font-size:264.384000px;}
.y0_c00272{bottom:0.000000px;}
.ye_c00272{bottom:111.096000px;}
.yd_c00272{bottom:143.856000px;}
.yc_c00272{bottom:176.610000px;}
.yb_c00272{bottom:224.355000px;}
.ya_c00272{bottom:257.115000px;}
.y9_c00272{bottom:289.875000px;}
.y8_c00272{bottom:322.635000px;}
.y7_c00272{bottom:370.515000px;}
.y6_c00272{bottom:403.305000px;}
.y5_c00272{bottom:436.065000px;}
.y4_c00272{bottom:483.765000px;}
.y3_c00272{bottom:531.510000px;}
.y2_c00272{bottom:564.270000px;}
.y1_c00272{bottom:679.395000px;}
.h5_c00272{height:112.144922px;}
.h3_c00272{height:112.248281px;}
.h2_c00272{height:113.823281px;}
.h4_c00272{height:121.218750px;}
.h1_c00272{height:188.605969px;}
.h0_c00272{height:810.000000px;}
.w0_c00272{width:1440.000000px;}
.x0_c00272{left:0.000000px;}
.x1_c00272{left:109.800000px;}
.x2_c00272{left:136.800000px;}
@media print{
.v2_c00272{vertical-align:-41.600000pt;}
.v0_c00272{vertical-align:0.000000pt;}
.v1_c00272{vertical-align:41.600000pt;}
.ls4_c00272{letter-spacing:0.000000pt;}
.ls3_c00272{letter-spacing:0.028800pt;}
.ls2_c00272{letter-spacing:0.071680pt;}
.ls1_c00272{letter-spacing:0.115733pt;}
.ls0_c00272{letter-spacing:47.392000pt;}
.ws3_c00272{word-spacing:-31.415808pt;}
.ws0_c00272{word-spacing:-3.417290pt;}
.ws4_c00272{word-spacing:0.000000pt;}
.ws2_c00272{word-spacing:0.426027pt;}
.ws1_c00272{word-spacing:0.882987pt;}
._1_c00272{margin-left:-4.700160pt;}
._3_c00272{margin-left:-3.258784pt;}
._2_c00272{margin-left:-2.349845pt;}
._4_c00272{margin-left:-1.388800pt;}
._8_c00272{width:1.059509pt;}
._5_c00272{width:29.077717pt;}
._7_c00272{width:30.520512pt;}
._6_c00272{width:32.650240pt;}
._0_c00272{width:51.985067pt;}
.fs3_c00272{font-size:92.160000pt;}
.fs1_c00272{font-size:138.880000pt;}
.fs2_c00272{font-size:139.008000pt;}
.fs0_c00272{font-size:235.008000pt;}
.y0_c00272{bottom:0.000000pt;}
.ye_c00272{bottom:98.752000pt;}
.yd_c00272{bottom:127.872000pt;}
.yc_c00272{bottom:156.986667pt;}
.yb_c00272{bottom:199.426667pt;}
.ya_c00272{bottom:228.546667pt;}
.y9_c00272{bottom:257.666667pt;}
.y8_c00272{bottom:286.786667pt;}
.y7_c00272{bottom:329.346667pt;}
.y6_c00272{bottom:358.493333pt;}
.y5_c00272{bottom:387.613333pt;}
.y4_c00272{bottom:430.013333pt;}
.y3_c00272{bottom:472.453333pt;}
.y2_c00272{bottom:501.573333pt;}
.y1_c00272{bottom:603.906667pt;}
.h5_c00272{height:99.684375pt;}
.h3_c00272{height:99.776250pt;}
.h2_c00272{height:101.176250pt;}
.h4_c00272{height:107.750000pt;}
.h1_c00272{height:167.649750pt;}
.h0_c00272{height:720.000000pt;}
.w0_c00272{width:1280.000000pt;}
.x0_c00272{left:0.000000pt;}
.x1_c00272{left:97.600000pt;}
.x2_c00272{left:121.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_bcbe21f2c36eb415c7fccb3b.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00273{letter-spacing:0.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;}
}
.ws0_c00273{word-spacing:0.000000px;}
._1_c00273{margin-left:-3.487200px;}
._0_c00273{margin-left:-1.563000px;}
.fc0_c00273{color:rgb(0,0,0);}
.fs0_c00273{font-size:120.240000px;}
.y0_c00273{bottom:0.000000px;}
.y2_c00273{bottom:715.320000px;}
.y1_c00273{bottom:747.720000px;}
.h1_c00273{height:85.776680px;}
.h0_c00273{height:810.000000px;}
.w0_c00273{width:1440.000000px;}
.x0_c00273{left:0.000000px;}
.x1_c00273{left:223.560000px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls0_c00273{letter-spacing:0.000000pt;}
.ws0_c00273{word-spacing:0.000000pt;}
._1_c00273{margin-left:-3.099734pt;}
._0_c00273{margin-left:-1.389333pt;}
.fs0_c00273{font-size:106.880000pt;}
.y0_c00273{bottom:0.000000pt;}
.y2_c00273{bottom:635.840000pt;}
.y1_c00273{bottom:664.640000pt;}
.h1_c00273{height:76.245937pt;}
.h0_c00273{height:720.000000pt;}
.w0_c00273{width:1280.000000pt;}
.x0_c00273{left:0.000000pt;}
.x1_c00273{left:198.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a7b30202820804083e20f0e9.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00274{letter-spacing:0.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;}
}
.ws1_c00274{word-spacing:-24.440544px;}
.ws0_c00274{word-spacing:-24.408000px;}
.ws2_c00274{word-spacing:0.000000px;}
._1_c00274{margin-left:-8.532000px;}
._5_c00274{margin-left:-6.804000px;}
._3_c00274{margin-left:-4.320000px;}
._0_c00274{margin-left:-1.728000px;}
._4_c00274{width:1.080000px;}
._2_c00274{width:25.488000px;}
.fc0_c00274{color:rgb(0,0,0);}
.fs0_c00274{font-size:108.000000px;}
.fs1_c00274{font-size:108.144000px;}
.y0_c00274{bottom:0.000000px;}
.yc_c00274{bottom:394.845000px;}
.yd_c00274{bottom:396.105000px;}
.yb_c00274{bottom:427.245000px;}
.ya_c00274{bottom:459.645000px;}
.y9_c00274{bottom:492.090000px;}
.y8_c00274{bottom:524.490000px;}
.y7_c00274{bottom:556.890000px;}
.y6_c00274{bottom:589.290000px;}
.y5_c00274{bottom:621.690000px;}
.y4_c00274{bottom:654.120000px;}
.y3_c00274{bottom:686.520000px;}
.y2_c00274{bottom:718.920000px;}
.y1_c00274{bottom:751.320000px;}
.h1_c00274{height:77.519531px;}
.h2_c00274{height:77.622891px;}
.h0_c00274{height:810.000000px;}
.w0_c00274{width:1440.000000px;}
.x0_c00274{left:0.000000px;}
.x1_c00274{left:403.770000px;}
.x2_c00274{left:550.440000px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls0_c00274{letter-spacing:0.000000pt;}
.ws1_c00274{word-spacing:-21.724928pt;}
.ws0_c00274{word-spacing:-21.696000pt;}
.ws2_c00274{word-spacing:0.000000pt;}
._1_c00274{margin-left:-7.584000pt;}
._5_c00274{margin-left:-6.048000pt;}
._3_c00274{margin-left:-3.840000pt;}
._0_c00274{margin-left:-1.536000pt;}
._4_c00274{width:0.960000pt;}
._2_c00274{width:22.656000pt;}
.fs0_c00274{font-size:96.000000pt;}
.fs1_c00274{font-size:96.128000pt;}
.y0_c00274{bottom:0.000000pt;}
.yc_c00274{bottom:350.973333pt;}
.yd_c00274{bottom:352.093333pt;}
.yb_c00274{bottom:379.773333pt;}
.ya_c00274{bottom:408.573333pt;}
.y9_c00274{bottom:437.413333pt;}
.y8_c00274{bottom:466.213333pt;}
.y7_c00274{bottom:495.013333pt;}
.y6_c00274{bottom:523.813333pt;}
.y5_c00274{bottom:552.613333pt;}
.y4_c00274{bottom:581.440000pt;}
.y3_c00274{bottom:610.240000pt;}
.y2_c00274{bottom:639.040000pt;}
.y1_c00274{bottom:667.840000pt;}
.h1_c00274{height:68.906250pt;}
.h2_c00274{height:68.998125pt;}
.h0_c00274{height:720.000000pt;}
.w0_c00274{width:1280.000000pt;}
.x0_c00274{left:0.000000pt;}
.x1_c00274{left:358.906667pt;}
.x2_c00274{left:489.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7c060297485a1eb5c7eca593.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00275{word-spacing:0.000000px;}
._0_c00275{margin-left:-15.344400px;}
._3_c00275{margin-left:-4.795200px;}
._4_c00275{margin-left:-2.745120px;}
._2_c00275{margin-left:-1.624800px;}
._1_c00275{width:1.511280px;}
.fc0_c00275{color:rgb(0,0,0);}
.fs0_c00275{font-size:239.760000px;}
.y0_c00275{bottom:0.000000px;}
.y1_c00275{bottom:735.045000px;}
.h1_c00275{height:172.093359px;}
.h0_c00275{height:810.000000px;}
.w0_c00275{width:1440.000000px;}
.x0_c00275{left:0.000000px;}
.x1_c00275{left:63.540000px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls0_c00275{letter-spacing:0.000000pt;}
.ws0_c00275{word-spacing:0.000000pt;}
._0_c00275{margin-left:-13.639467pt;}
._3_c00275{margin-left:-4.262400pt;}
._4_c00275{margin-left:-2.440106pt;}
._2_c00275{margin-left:-1.444266pt;}
._1_c00275{width:1.343360pt;}
.fs0_c00275{font-size:213.120000pt;}
.y0_c00275{bottom:0.000000pt;}
.y1_c00275{bottom:653.373333pt;}
.h1_c00275{height:152.971875pt;}
.h0_c00275{height:720.000000pt;}
.w0_c00275{width:1280.000000pt;}
.x0_c00275{left:0.000000pt;}
.x1_c00275{left:56.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_658cb652171b3df8e80e01bd.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00276;src:url('chunks/assets/font_4a22962d6684792fa77da4e6.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:0.938965;font-style: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;}
.ls2_c00276{letter-spacing:0.000000px;}
.ls0_c00276{letter-spacing:57.549600px;}
.ls1_c00276{letter-spacing:57.600000px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00276{word-spacing:0.000000px;}
._0_c00276{margin-left:-14.763048px;}
._5_c00276{margin-left:-5.910048px;}
._6_c00276{margin-left:-4.612176px;}
._1_c00276{margin-left:-3.522624px;}
._4_c00276{margin-left:-2.519112px;}
._7_c00276{margin-left:-1.265928px;}
._3_c00276{width:2.149680px;}
._2_c00276{width:39.552312px;}
.fc0_c00276{color:rgb(0,0,0);}
.fs2_c00276{font-size:144.000000px;}
.fs1_c00276{font-size:144.144000px;}
.fs0_c00276{font-size:167.760000px;}
.y0_c00276{bottom:0.000000px;}
.yf_c00276{bottom:207.870000px;}
.ye_c00276{bottom:238.110000px;}
.yd_c00276{bottom:268.350000px;}
.yc_c00276{bottom:313.560000px;}
.yb_c00276{bottom:343.800000px;}
.ya_c00276{bottom:374.040000px;}
.y9_c00276{bottom:404.280000px;}
.y8_c00276{bottom:449.640000px;}
.y7_c00276{bottom:479.910000px;}
.y6_c00276{bottom:510.150000px;}
.y5_c00276{bottom:540.390000px;}
.y4_c00276{bottom:570.630000px;}
.y3_c00276{bottom:615.855000px;}
.y2_c00276{bottom:646.095000px;}
.y1_c00276{bottom:734.550000px;}
.h5_c00276{height:103.359375px;}
.h3_c00276{height:103.462734px;}
.h4_c00276{height:104.906250px;}
.h2_c00276{height:105.011156px;}
.h1_c00276{height:120.413672px;}
.h0_c00276{height:810.000000px;}
.w0_c00276{width:1440.000000px;}
.x0_c00276{left:0.000000px;}
.x1_c00276{left:271.590000px;}
.x2_c00276{left:835.380000px;}
.x3_c00276{left:862.380000px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls2_c00276{letter-spacing:0.000000pt;}
.ls0_c00276{letter-spacing:51.155200pt;}
.ls1_c00276{letter-spacing:51.200000pt;}
.ws0_c00276{word-spacing:0.000000pt;}
._0_c00276{margin-left:-13.122709pt;}
._5_c00276{margin-left:-5.253376pt;}
._6_c00276{margin-left:-4.099712pt;}
._1_c00276{margin-left:-3.131222pt;}
._4_c00276{margin-left:-2.239211pt;}
._7_c00276{margin-left:-1.125269pt;}
._3_c00276{width:1.910827pt;}
._2_c00276{width:35.157611pt;}
.fs2_c00276{font-size:128.000000pt;}
.fs1_c00276{font-size:128.128000pt;}
.fs0_c00276{font-size:149.120000pt;}
.y0_c00276{bottom:0.000000pt;}
.yf_c00276{bottom:184.773333pt;}
.ye_c00276{bottom:211.653333pt;}
.yd_c00276{bottom:238.533333pt;}
.yc_c00276{bottom:278.720000pt;}
.yb_c00276{bottom:305.600000pt;}
.ya_c00276{bottom:332.480000pt;}
.y9_c00276{bottom:359.360000pt;}
.y8_c00276{bottom:399.680000pt;}
.y7_c00276{bottom:426.586667pt;}
.y6_c00276{bottom:453.466667pt;}
.y5_c00276{bottom:480.346667pt;}
.y4_c00276{bottom:507.226667pt;}
.y3_c00276{bottom:547.426667pt;}
.y2_c00276{bottom:574.306667pt;}
.y1_c00276{bottom:652.933333pt;}
.h5_c00276{height:91.875000pt;}
.h3_c00276{height:91.966875pt;}
.h4_c00276{height:93.250000pt;}
.h2_c00276{height:93.343250pt;}
.h1_c00276{height:107.034375pt;}
.h0_c00276{height:720.000000pt;}
.w0_c00276{width:1280.000000pt;}
.x0_c00276{left:0.000000pt;}
.x1_c00276{left:241.413333pt;}
.x2_c00276{left:742.560000pt;}
.x3_c00276{left:766.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7302648894949182bbe5f054.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.ls0_c00277{letter-spacing:0.000000px;}
.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:-54.218304px;}
.ws1_c00277{word-spacing:0.000000px;}
._2_c00277{margin-left:-15.825119px;}
._1_c00277{margin-left:-4.075920px;}
._0_c00277{margin-left:-1.198800px;}
.fc0_c00277{color:rgb(0,0,0);}
.fs0_c00277{font-size:239.760000px;}
.fs1_c00277{font-size:239.904000px;}
.y0_c00277{bottom:0.000000px;}
.y2_c00277{bottom:609.810000px;}
.y1_c00277{bottom:681.810000px;}
.h1_c00277{height:171.039727px;}
.h2_c00277{height:171.142453px;}
.h0_c00277{height:810.000000px;}
.w0_c00277{width:1440.000000px;}
.x0_c00277{left:0.000000px;}
.x1_c00277{left:283.605000px;}
.x2_c00277{left:620.790000px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls0_c00277{letter-spacing:0.000000pt;}
.ws0_c00277{word-spacing:-48.194048pt;}
.ws1_c00277{word-spacing:0.000000pt;}
._2_c00277{margin-left:-14.066772pt;}
._1_c00277{margin-left:-3.623040pt;}
._0_c00277{margin-left:-1.065600pt;}
.fs0_c00277{font-size:213.120000pt;}
.fs1_c00277{font-size:213.248000pt;}
.y0_c00277{bottom:0.000000pt;}
.y2_c00277{bottom:542.053333pt;}
.y1_c00277{bottom:606.053333pt;}
.h1_c00277{height:152.035312pt;}
.h2_c00277{height:152.126625pt;}
.h0_c00277{height:720.000000pt;}
.w0_c00277{width:1280.000000pt;}
.x0_c00277{left:0.000000pt;}
.x1_c00277{left:252.093333pt;}
.x2_c00277{left:551.813333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f1446ac17b9f8967d71bf219.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:0.876953;font-style:normal;font-weight:normal;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_eecea1d4e72be3cbe8b72abd.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.202148;font-style:normal;font-weight:normal;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_9bab8d13a66ed4a9cb5b9a73.woff2')format("woff");}.ff3_c00278{font-family:ff3_c00278;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00278{letter-spacing:0.000000px;}
.ls0_c00278{letter-spacing:0.033840px;}
.ls1_c00278{letter-spacing:0.485760px;}
.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;}
}
.ws2_c00278{word-spacing:-43.446240px;}
.ws1_c00278{word-spacing:-0.294480px;}
.ws0_c00278{word-spacing:-0.095760px;}
.ws4_c00278{word-spacing:0.000000px;}
.ws3_c00278{word-spacing:1.510368px;}
._0_c00278{margin-left:-3.460128px;}
._1_c00278{margin-left:-1.372512px;}
._3_c00278{width:1.093537px;}
._2_c00278{width:2.093952px;}
.fc0_c00278{color:rgb(0,0,0);}
.fs0_c00278{font-size:95.760000px;}
.fs2_c00278{font-size:108.000000px;}
.fs1_c00278{font-size:192.240000px;}
.y0_c00278{bottom:0.000000px;}
.y1_c00278{bottom:565.275000px;}
.y2_c00278{bottom:667.050000px;}
.y3_c00278{bottom:727.950000px;}
.h1_c00278{height:70.791328px;}
.h3_c00278{height:77.519531px;}
.h2_c00278{height:196.839492px;}
.h0_c00278{height:810.000000px;}
.w0_c00278{width:1440.000000px;}
.x0_c00278{left:0.000000px;}
.x2_c00278{left:302.580000px;}
.x3_c00278{left:319.110000px;}
.x1_c00278{left:334.260000px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls2_c00278{letter-spacing:0.000000pt;}
.ls0_c00278{letter-spacing:0.030080pt;}
.ls1_c00278{letter-spacing:0.431787pt;}
.ws2_c00278{word-spacing:-38.618880pt;}
.ws1_c00278{word-spacing:-0.261760pt;}
.ws0_c00278{word-spacing:-0.085120pt;}
.ws4_c00278{word-spacing:0.000000pt;}
.ws3_c00278{word-spacing:1.342549pt;}
._0_c00278{margin-left:-3.075669pt;}
._1_c00278{margin-left:-1.220011pt;}
._3_c00278{width:0.972033pt;}
._2_c00278{width:1.861291pt;}
.fs0_c00278{font-size:85.120000pt;}
.fs2_c00278{font-size:96.000000pt;}
.fs1_c00278{font-size:170.880000pt;}
.y0_c00278{bottom:0.000000pt;}
.y1_c00278{bottom:502.466667pt;}
.y2_c00278{bottom:592.933333pt;}
.y3_c00278{bottom:647.066667pt;}
.h1_c00278{height:62.925625pt;}
.h3_c00278{height:68.906250pt;}
.h2_c00278{height:174.968437pt;}
.h0_c00278{height:720.000000pt;}
.w0_c00278{width:1280.000000pt;}
.x0_c00278{left:0.000000pt;}
.x2_c00278{left:268.960000pt;}
.x3_c00278{left:283.653333pt;}
.x1_c00278{left:297.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_677d276ec00f8d5bb7595675.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.202148;font-style:normal;font-weight:normal;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_10d5aba4f8264ce2c4d7ba2e.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:0.910645;font-style:normal;font-weight:normal;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_26ee07bece91741b89cd33d9.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00279{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00279{vertical-align:0.000000px;}
.ls0_c00279{letter-spacing:0.000000px;}
.ls1_c00279{letter-spacing:0.238200px;}
.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;}
}
.ws2_c00279{word-spacing:-226.104000px;}
.ws0_c00279{word-spacing:-27.412440px;}
.ws1_c00279{word-spacing:-27.174240px;}
.ws3_c00279{word-spacing:0.000000px;}
._3_c00279{margin-left:-15.847920px;}
._4_c00279{margin-left:-5.004000px;}
._0_c00279{margin-left:-2.016000px;}
._1_c00279{margin-left:-1.008000px;}
._2_c00279{width:1.174200px;}
.fc1_c00279{color:rgb(255,0,0);}
.fc0_c00279{color:rgb(255,255,255);}
.fs2_c00279{font-size:120.240000px;}
.fs3_c00279{font-size:120.384000px;}
.fs0_c00279{font-size:144.000000px;}
.fs1_c00279{font-size:144.144000px;}
.fs5_c00279{font-size:288.000000px;}
.fs4_c00279{font-size:288.144000px;}
.y0_c00279{bottom:0.000000px;}
.y9_c00279{bottom:210.750000px;}
.y8_c00279{bottom:243.150000px;}
.y7_c00279{bottom:275.580000px;}
.y6_c00279{bottom:309.600000px;}
.y5_c00279{bottom:348.480000px;}
.y4_c00279{bottom:387.360000px;}
.y3_c00279{bottom:426.270000px;}
.y2_c00279{bottom:465.150000px;}
.y1_c00279{bottom:504.030000px;}
.yb_c00279{bottom:601.410000px;}
.ya_c00279{bottom:687.855000px;}
.h3_c00279{height:123.116836px;}
.h4_c00279{height:123.264281px;}
.h1_c00279{height:147.445312px;}
.h2_c00279{height:147.592758px;}
.h6_c00279{height:200.109375px;}
.h5_c00279{height:200.209430px;}
.h0_c00279{height:810.000000px;}
.w0_c00279{width:1440.000000px;}
.x0_c00279{left:0.000000px;}
.x2_c00279{left:237.525000px;}
.x1_c00279{left:307.410000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls0_c00279{letter-spacing:0.000000pt;}
.ls1_c00279{letter-spacing:0.211733pt;}
.ws2_c00279{word-spacing:-200.981333pt;}
.ws0_c00279{word-spacing:-24.366613pt;}
.ws1_c00279{word-spacing:-24.154880pt;}
.ws3_c00279{word-spacing:0.000000pt;}
._3_c00279{margin-left:-14.087040pt;}
._4_c00279{margin-left:-4.448000pt;}
._0_c00279{margin-left:-1.792000pt;}
._1_c00279{margin-left:-0.896000pt;}
._2_c00279{width:1.043733pt;}
.fs2_c00279{font-size:106.880000pt;}
.fs3_c00279{font-size:107.008000pt;}
.fs0_c00279{font-size:128.000000pt;}
.fs1_c00279{font-size:128.128000pt;}
.fs5_c00279{font-size:256.000000pt;}
.fs4_c00279{font-size:256.128000pt;}
.y0_c00279{bottom:0.000000pt;}
.y9_c00279{bottom:187.333333pt;}
.y8_c00279{bottom:216.133333pt;}
.y7_c00279{bottom:244.960000pt;}
.y6_c00279{bottom:275.200000pt;}
.y5_c00279{bottom:309.760000pt;}
.y4_c00279{bottom:344.320000pt;}
.y3_c00279{bottom:378.906667pt;}
.y2_c00279{bottom:413.466667pt;}
.y1_c00279{bottom:448.026667pt;}
.yb_c00279{bottom:534.586667pt;}
.ya_c00279{bottom:611.426667pt;}
.h3_c00279{height:109.437187pt;}
.h4_c00279{height:109.568250pt;}
.h1_c00279{height:131.062500pt;}
.h2_c00279{height:131.193562pt;}
.h6_c00279{height:177.875000pt;}
.h5_c00279{height:177.963937pt;}
.h0_c00279{height:720.000000pt;}
.w0_c00279{width:1280.000000pt;}
.x0_c00279{left:0.000000pt;}
.x2_c00279{left:211.133333pt;}
.x1_c00279{left:273.253333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_03f10d932ad6ca7b52a1319f.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00280;src:url('chunks/assets/font_e375d6e03f579c3ccba78b5d.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-2.088000px;}
.ls1_c00280{letter-spacing:0.000000px;}
.sc__c00280{text-shadow:none;}
.sc1_c00280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00280{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00280{-webkit-text-stroke:0px transparent;}
.sc1_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00280{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00280{word-spacing:0.000000px;}
._0_c00280{margin-left:-6.048000px;}
._2_c00280{margin-left:-2.592000px;}
._1_c00280{margin-left:-1.440000px;}
._3_c00280{width:1.296000px;}
.fc0_c00280{color:rgb(0,0,0);}
.fs1_c00280{font-size:144.000000px;}
.fs2_c00280{font-size:144.144000px;}
.fs0_c00280{font-size:288.144000px;}
.y0_c00280{bottom:0.000000px;}
.ya_c00280{bottom:220.350000px;}
.y9_c00280{bottom:263.550000px;}
.y8_c00280{bottom:306.750000px;}
.y7_c00280{bottom:349.995000px;}
.y6_c00280{bottom:393.195000px;}
.y5_c00280{bottom:436.395000px;}
.y4_c00280{bottom:479.625000px;}
.y3_c00280{bottom:522.825000px;}
.y2_c00280{bottom:566.025000px;}
.y1_c00280{bottom:668.775000px;}
.h2_c00280{height:103.359375px;}
.h3_c00280{height:103.462734px;}
.h1_c00280{height:205.555852px;}
.h0_c00280{height:810.000000px;}
.w0_c00280{width:1440.000000px;}
.x0_c00280{left:0.000000px;}
.x1_c00280{left:626.295000px;}
.x3_c00280{left:936.255000px;}
.x2_c00280{left:944.355000px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls0_c00280{letter-spacing:-1.856000pt;}
.ls1_c00280{letter-spacing:0.000000pt;}
.ws0_c00280{word-spacing:0.000000pt;}
._0_c00280{margin-left:-5.376000pt;}
._2_c00280{margin-left:-2.304000pt;}
._1_c00280{margin-left:-1.280000pt;}
._3_c00280{width:1.152000pt;}
.fs1_c00280{font-size:128.000000pt;}
.fs2_c00280{font-size:128.128000pt;}
.fs0_c00280{font-size:256.128000pt;}
.y0_c00280{bottom:0.000000pt;}
.ya_c00280{bottom:195.866667pt;}
.y9_c00280{bottom:234.266667pt;}
.y8_c00280{bottom:272.666667pt;}
.y7_c00280{bottom:311.106667pt;}
.y6_c00280{bottom:349.506667pt;}
.y5_c00280{bottom:387.906667pt;}
.y4_c00280{bottom:426.333333pt;}
.y3_c00280{bottom:464.733333pt;}
.y2_c00280{bottom:503.133333pt;}
.y1_c00280{bottom:594.466667pt;}
.h2_c00280{height:91.875000pt;}
.h3_c00280{height:91.966875pt;}
.h1_c00280{height:182.716312pt;}
.h0_c00280{height:720.000000pt;}
.w0_c00280{width:1280.000000pt;}
.x0_c00280{left:0.000000pt;}
.x1_c00280{left:556.706667pt;}
.x3_c00280{left:832.226667pt;}
.x2_c00280{left:839.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_055f1c60960b38f4caac3a5f.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00281;src:url('chunks/assets/font_aa1742f89f0ee35c90f7275d.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00281;src:url('chunks/assets/font_ce0ab23d5bcd880313f03064.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00281{vertical-align:0.000000px;}
.ls0_c00281{letter-spacing:0.000000px;}
.sc__c00281{text-shadow:none;}
.sc1_c00281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00281{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00281{-webkit-text-stroke:0px transparent;}
.sc1_c00281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00281{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3_c00281{word-spacing:-32.544000px;}
.ws2_c00281{word-spacing:-0.888000px;}
.ws1_c00281{word-spacing:-0.828000px;}
.ws0_c00281{word-spacing:-0.420048px;}
.ws4_c00281{word-spacing:0.000000px;}
._0_c00281{margin-left:-16.655928px;}
._4_c00281{margin-left:-14.217169px;}
._2_c00281{margin-left:-3.964967px;}
._3_c00281{margin-left:-2.907960px;}
._1_c00281{margin-left:-1.850952px;}
._5_c00281{width:1.376857px;}
.fc0_c00281{color:rgb(0,0,0);}
.fs2_c00281{font-size:144.000000px;}
.fs1_c00281{font-size:144.144000px;}
.fs0_c00281{font-size:264.384000px;}
.y0_c00281{bottom:0.000000px;}
.y13_c00281{bottom:228.270000px;}
.ya_c00281{bottom:248.475000px;}
.y12_c00281{bottom:271.515000px;}
.y9_c00281{bottom:287.355000px;}
.y11_c00281{bottom:314.715000px;}
.y8_c00281{bottom:326.235000px;}
.y10_c00281{bottom:357.915000px;}
.y7_c00281{bottom:365.115000px;}
.yf_c00281{bottom:401.115000px;}
.y6_c00281{bottom:404.025000px;}
.y5_c00281{bottom:442.905000px;}
.ye_c00281{bottom:444.345000px;}
.y4_c00281{bottom:481.785000px;}
.yd_c00281{bottom:487.545000px;}
.y3_c00281{bottom:520.665000px;}
.yc_c00281{bottom:530.745000px;}
.y2_c00281{bottom:559.590000px;}
.yb_c00281{bottom:573.990000px;}
.y1_c00281{bottom:670.395000px;}
.h4_c00281{height:103.359375px;}
.h5_c00281{height:103.462734px;}
.h3_c00281{height:147.445312px;}
.h2_c00281{height:147.592758px;}
.h1_c00281{height:188.605969px;}
.h0_c00281{height:810.000000px;}
.w0_c00281{width:1440.000000px;}
.x0_c00281{left:0.000000px;}
.x1_c00281{left:109.800000px;}
.x2_c00281{left:136.800000px;}
.x3_c00281{left:769.110000px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls0_c00281{letter-spacing:0.000000pt;}
.ws3_c00281{word-spacing:-28.928000pt;}
.ws2_c00281{word-spacing:-0.789333pt;}
.ws1_c00281{word-spacing:-0.736000pt;}
.ws0_c00281{word-spacing:-0.373376pt;}
.ws4_c00281{word-spacing:0.000000pt;}
._0_c00281{margin-left:-14.805269pt;}
._4_c00281{margin-left:-12.637483pt;}
._2_c00281{margin-left:-3.524415pt;}
._3_c00281{margin-left:-2.584853pt;}
._1_c00281{margin-left:-1.645291pt;}
._5_c00281{width:1.223873pt;}
.fs2_c00281{font-size:128.000000pt;}
.fs1_c00281{font-size:128.128000pt;}
.fs0_c00281{font-size:235.008000pt;}
.y0_c00281{bottom:0.000000pt;}
.y13_c00281{bottom:202.906667pt;}
.ya_c00281{bottom:220.866667pt;}
.y12_c00281{bottom:241.346667pt;}
.y9_c00281{bottom:255.426667pt;}
.y11_c00281{bottom:279.746667pt;}
.y8_c00281{bottom:289.986667pt;}
.y10_c00281{bottom:318.146667pt;}
.y7_c00281{bottom:324.546667pt;}
.yf_c00281{bottom:356.546667pt;}
.y6_c00281{bottom:359.133333pt;}
.y5_c00281{bottom:393.693333pt;}
.ye_c00281{bottom:394.973333pt;}
.y4_c00281{bottom:428.253333pt;}
.yd_c00281{bottom:433.373333pt;}
.y3_c00281{bottom:462.813333pt;}
.yc_c00281{bottom:471.773333pt;}
.y2_c00281{bottom:497.413333pt;}
.yb_c00281{bottom:510.213333pt;}
.y1_c00281{bottom:595.906667pt;}
.h4_c00281{height:91.875000pt;}
.h5_c00281{height:91.966875pt;}
.h3_c00281{height:131.062500pt;}
.h2_c00281{height:131.193562pt;}
.h1_c00281{height:167.649750pt;}
.h0_c00281{height:720.000000pt;}
.w0_c00281{width:1280.000000pt;}
.x0_c00281{left:0.000000pt;}
.x1_c00281{left:97.600000pt;}
.x2_c00281{left:121.600000pt;}
.x3_c00281{left:683.653333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4fe94faced42a4ab4700ee74.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00282;src:url('chunks/assets/font_ab49f61b8c102696911cecfe.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00282;src:url('chunks/assets/font_626afd0850b0dcc1415b1270.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:0.910645;font-style: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;}
.ls2_c00282{letter-spacing:0.000000px;}
.ls1_c00282{letter-spacing:0.288000px;}
.ls0_c00282{letter-spacing:0.360000px;}
.ls4_c00282{letter-spacing:0.432000px;}
.ls3_c00282{letter-spacing:0.504000px;}
.sc__c00282{text-shadow:none;}
.sc1_c00282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00282{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00282{-webkit-text-stroke:0px transparent;}
.sc1_c00282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00282{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00282{word-spacing:-30.060000px;}
.ws1_c00282{word-spacing:-18.036000px;}
.ws2_c00282{word-spacing:-0.753120px;}
.ws3_c00282{word-spacing:0.000000px;}
._6_c00282{margin-left:-9.510577px;}
._2_c00282{margin-left:-3.211129px;}
._0_c00282{margin-left:-2.108424px;}
._1_c00282{margin-left:-1.053553px;}
._5_c00282{width:1.166929px;}
._3_c00282{width:456.866640px;}
._4_c00282{width:556.173120px;}
.fc1_c00282{color:rgb(255,0,0);}
.fc0_c00282{color:rgb(0,0,0);}
.fs2_c00282{font-size:72.144000px;}
.fs1_c00282{font-size:120.240000px;}
.fs3_c00282{font-size:120.384000px;}
.fs0_c00282{font-size:131.760000px;}
.y0_c00282{bottom:0.000000px;}
.y13_c00282{bottom:102.672000px;}
.y12_c00282{bottom:138.672000px;}
.y11_c00282{bottom:174.675000px;}
.yf_c00282{bottom:203.505000px;}
.y10_c00282{bottom:210.705000px;}
.ye_c00282{bottom:246.705000px;}
.yd_c00282{bottom:293.505000px;}
.yc_c00282{bottom:336.750000px;}
.yb_c00282{bottom:379.950000px;}
.ya_c00282{bottom:423.150000px;}
.y9_c00282{bottom:466.350000px;}
.y8_c00282{bottom:513.180000px;}
.y7_c00282{bottom:556.380000px;}
.y6_c00282{bottom:599.580000px;}
.y4_c00282{bottom:643.530000px;}
.y3_c00282{bottom:672.330000px;}
.y5_c00282{bottom:679.530000px;}
.y2_c00282{bottom:715.530000px;}
.y1_c00282{bottom:769.320000px;}
.h3_c00282{height:48.894469px;}
.h2_c00282{height:81.490781px;}
.h6_c00282{height:81.588375px;}
.h4_c00282{height:83.545664px;}
.h5_c00282{height:83.645719px;}
.h1_c00282{height:93.994805px;}
.h0_c00282{height:810.000000px;}
.w0_c00282{width:1440.000000px;}
.x0_c00282{left:0.000000px;}
.x1_c00282{left:271.830000px;}
.x2_c00282{left:586.875000px;}
.x5_c00282{left:594.435000px;}
.x4_c00282{left:757.875000px;}
.x3_c00282{left:960.405000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls2_c00282{letter-spacing:0.000000pt;}
.ls1_c00282{letter-spacing:0.256000pt;}
.ls0_c00282{letter-spacing:0.320000pt;}
.ls4_c00282{letter-spacing:0.384000pt;}
.ls3_c00282{letter-spacing:0.448000pt;}
.ws0_c00282{word-spacing:-26.720000pt;}
.ws1_c00282{word-spacing:-16.032000pt;}
.ws2_c00282{word-spacing:-0.669440pt;}
.ws3_c00282{word-spacing:0.000000pt;}
._6_c00282{margin-left:-8.453846pt;}
._2_c00282{margin-left:-2.854337pt;}
._0_c00282{margin-left:-1.874154pt;}
._1_c00282{margin-left:-0.936492pt;}
._5_c00282{width:1.037270pt;}
._3_c00282{width:406.103680pt;}
._4_c00282{width:494.376107pt;}
.fs2_c00282{font-size:64.128000pt;}
.fs1_c00282{font-size:106.880000pt;}
.fs3_c00282{font-size:107.008000pt;}
.fs0_c00282{font-size:117.120000pt;}
.y0_c00282{bottom:0.000000pt;}
.y13_c00282{bottom:91.264000pt;}
.y12_c00282{bottom:123.264000pt;}
.y11_c00282{bottom:155.266667pt;}
.yf_c00282{bottom:180.893333pt;}
.y10_c00282{bottom:187.293333pt;}
.ye_c00282{bottom:219.293333pt;}
.yd_c00282{bottom:260.893333pt;}
.yc_c00282{bottom:299.333333pt;}
.yb_c00282{bottom:337.733333pt;}
.ya_c00282{bottom:376.133333pt;}
.y9_c00282{bottom:414.533333pt;}
.y8_c00282{bottom:456.160000pt;}
.y7_c00282{bottom:494.560000pt;}
.y6_c00282{bottom:532.960000pt;}
.y4_c00282{bottom:572.026667pt;}
.y3_c00282{bottom:597.626667pt;}
.y5_c00282{bottom:604.026667pt;}
.y2_c00282{bottom:636.026667pt;}
.y1_c00282{bottom:683.840000pt;}
.h3_c00282{height:43.461750pt;}
.h2_c00282{height:72.436250pt;}
.h6_c00282{height:72.523000pt;}
.h4_c00282{height:74.262812pt;}
.h5_c00282{height:74.351750pt;}
.h1_c00282{height:83.550937pt;}
.h0_c00282{height:720.000000pt;}
.w0_c00282{width:1280.000000pt;}
.x0_c00282{left:0.000000pt;}
.x1_c00282{left:241.626667pt;}
.x2_c00282{left:521.666667pt;}
.x5_c00282{left:528.386667pt;}
.x4_c00282{left:673.666667pt;}
.x3_c00282{left:853.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_59fa8053e3779cf051f32a65.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00283;src:url('chunks/assets/font_4a22962d6684792fa77da4e6.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:0.938965;font-style:normal;font-weight:normal;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_ea6435fda2350441b3141e18.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00283;src:url('chunks/assets/font_3f5bcea1818996ac5c778544.woff2')format("woff");}.ff4_c00283{font-family:ff4_c00283;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00283{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.ls2_c00283{letter-spacing:-0.058200px;}
.ls1_c00283{letter-spacing:0.000000px;}
.ls3_c00283{letter-spacing:0.660000px;}
.ls0_c00283{letter-spacing:49.284000px;}
.sc__c00283{text-shadow:none;}
.sc0_c00283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00283{-webkit-text-stroke:0px transparent;}
.sc0_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00283{word-spacing:-128.990400px;}
.ws4_c00283{word-spacing:-24.408000px;}
.ws3_c00283{word-spacing:-14.165760px;}
.ws2_c00283{word-spacing:-13.505760px;}
.ws1_c00283{word-spacing:-13.447560px;}
.ws5_c00283{word-spacing:0.000000px;}
._4_c00283{margin-left:-10.233528px;}
._6_c00283{margin-left:-4.529688px;}
._0_c00283{margin-left:-3.355200px;}
._5_c00283{margin-left:-2.348976px;}
._1_c00283{margin-left:-1.174152px;}
._7_c00283{width:1.006728px;}
._2_c00283{width:2.013120px;}
._8_c00283{width:4.137623px;}
._3_c00283{width:5.871432px;}
.fc1_c00283{color:rgb(5,99,193);}
.fc0_c00283{color:rgb(0,0,0);}
.fs1_c00283{font-size:59.760000px;}
.fs2_c00283{font-size:108.000000px;}
.fs0_c00283{font-size:167.760000px;}
.y0_c00283{bottom:0.000000px;}
.y9_c00283{bottom:73.008000px;}
.y8_c00283{bottom:137.088000px;}
.y7_c00283{bottom:155.085000px;}
.y6_c00283{bottom:173.085000px;}
.y5_c00283{bottom:452.850000px;}
.y4_c00283{bottom:498.210000px;}
.y3_c00283{bottom:543.600000px;}
.y2_c00283{bottom:588.960000px;}
.y1_c00283{bottom:715.350000px;}
.h4_c00283{height:61.189805px;}
.h5_c00283{height:77.519531px;}
.h1_c00283{height:119.676445px;}
.h3_c00283{height:120.413672px;}
.h2_c00283{height:122.215781px;}
.h0_c00283{height:810.000000px;}
.w0_c00283{width:1440.000000px;}
.x0_c00283{left:0.000000px;}
.x5_c00283{left:37.404000px;}
.x1_c00283{left:109.800000px;}
.x2_c00283{left:796.425000px;}
.x3_c00283{left:823.425000px;}
.x4_c00283{left:893.730000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls2_c00283{letter-spacing:-0.051733pt;}
.ls1_c00283{letter-spacing:0.000000pt;}
.ls3_c00283{letter-spacing:0.586667pt;}
.ls0_c00283{letter-spacing:43.808000pt;}
.ws0_c00283{word-spacing:-114.658133pt;}
.ws4_c00283{word-spacing:-21.696000pt;}
.ws3_c00283{word-spacing:-12.591787pt;}
.ws2_c00283{word-spacing:-12.005120pt;}
.ws1_c00283{word-spacing:-11.953387pt;}
.ws5_c00283{word-spacing:0.000000pt;}
._4_c00283{margin-left:-9.096469pt;}
._6_c00283{margin-left:-4.026389pt;}
._0_c00283{margin-left:-2.982400pt;}
._5_c00283{margin-left:-2.087978pt;}
._1_c00283{margin-left:-1.043691pt;}
._7_c00283{width:0.894869pt;}
._2_c00283{width:1.789440pt;}
._8_c00283{width:3.677887pt;}
._3_c00283{width:5.219051pt;}
.fs1_c00283{font-size:53.120000pt;}
.fs2_c00283{font-size:96.000000pt;}
.fs0_c00283{font-size:149.120000pt;}
.y0_c00283{bottom:0.000000pt;}
.y9_c00283{bottom:64.896000pt;}
.y8_c00283{bottom:121.856000pt;}
.y7_c00283{bottom:137.853333pt;}
.y6_c00283{bottom:153.853333pt;}
.y5_c00283{bottom:402.533333pt;}
.y4_c00283{bottom:442.853333pt;}
.y3_c00283{bottom:483.200000pt;}
.y2_c00283{bottom:523.520000pt;}
.y1_c00283{bottom:635.866667pt;}
.h4_c00283{height:54.390938pt;}
.h5_c00283{height:68.906250pt;}
.h1_c00283{height:106.379062pt;}
.h3_c00283{height:107.034375pt;}
.h2_c00283{height:108.636250pt;}
.h0_c00283{height:720.000000pt;}
.w0_c00283{width:1280.000000pt;}
.x0_c00283{left:0.000000pt;}
.x5_c00283{left:33.248000pt;}
.x1_c00283{left:97.600000pt;}
.x2_c00283{left:707.933333pt;}
.x3_c00283{left:731.933333pt;}
.x4_c00283{left:794.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b9833333e60f9ce275e8b56a.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00284;src:url('chunks/assets/font_5d0fc4150752eb6b9673ac75.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00284{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00284{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00284{vertical-align:0.000000px;}
.ls0_c00284{letter-spacing:0.000000px;}
.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:-108.000000px;}
.ws1_c00284{word-spacing:0.000000px;}
._4_c00284{margin-left:-7.344000px;}
._0_c00284{margin-left:-4.539024px;}
._2_c00284{margin-left:-3.026664px;}
._1_c00284{margin-left:-1.080504px;}
._3_c00284{width:1.190664px;}
.fc1_c00284{color:rgb(5,99,193);}
.fc0_c00284{color:rgb(0,0,0);}
.fs1_c00284{font-size:108.000000px;}
.fs0_c00284{font-size:216.144000px;}
.y0_c00284{bottom:0.000000px;}
.y2_c00284{bottom:27.072000px;}
.y1_c00284{bottom:747.690000px;}
.h2_c00284{height:77.519531px;}
.h1_c00284{height:154.192570px;}
.h0_c00284{height:810.000000px;}
.w0_c00284{width:1440.000000px;}
.x0_c00284{left:0.000000px;}
.x1_c00284{left:109.800000px;}
.x2_c00284{left:192.780000px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls0_c00284{letter-spacing:0.000000pt;}
.ws0_c00284{word-spacing:-96.000000pt;}
.ws1_c00284{word-spacing:0.000000pt;}
._4_c00284{margin-left:-6.528000pt;}
._0_c00284{margin-left:-4.034688pt;}
._2_c00284{margin-left:-2.690368pt;}
._1_c00284{margin-left:-0.960448pt;}
._3_c00284{width:1.058368pt;}
.fs1_c00284{font-size:96.000000pt;}
.fs0_c00284{font-size:192.128000pt;}
.y0_c00284{bottom:0.000000pt;}
.y2_c00284{bottom:24.064000pt;}
.y1_c00284{bottom:664.613333pt;}
.h2_c00284{height:68.906250pt;}
.h1_c00284{height:137.060063pt;}
.h0_c00284{height:720.000000pt;}
.w0_c00284{width:1280.000000pt;}
.x0_c00284{left:0.000000pt;}
.x1_c00284{left:97.600000pt;}
.x2_c00284{left:171.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cb312f2ee26e5c5fe1fa8f1d.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00285;src:url('chunks/assets/font_70e66ea6cecf428d0f15b1ba.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00285{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00285{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00285{vertical-align:0.000000px;}
.ls0_c00285{letter-spacing:0.000000px;}
.sc__c00285{text-shadow:none;}
.sc0_c00285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00285{-webkit-text-stroke:0px transparent;}
.sc0_c00285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00285{word-spacing:-108.000000px;}
.ws1_c00285{word-spacing:0.000000px;}
._0_c00285{margin-left:-2.308800px;}
._2_c00285{margin-left:-1.147200px;}
._3_c00285{width:1.262401px;}
._1_c00285{width:44.921665px;}
.fc1_c00285{color:rgb(5,99,193);}
.fc0_c00285{color:rgb(0,0,0);}
.fs1_c00285{font-size:108.000000px;}
.fs0_c00285{font-size:192.384000px;}
.y0_c00285{bottom:0.000000px;}
.y3_c00285{bottom:25.812000px;}
.y2_c00285{bottom:58.212000px;}
.y1_c00285{bottom:725.115000px;}
.h2_c00285{height:77.519531px;}
.h1_c00285{height:137.242688px;}
.h0_c00285{height:810.000000px;}
.w0_c00285{width:1440.000000px;}
.x0_c00285{left:0.000000px;}
.x2_c00285{left:102.672000px;}
.x1_c00285{left:327.570000px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls0_c00285{letter-spacing:0.000000pt;}
.ws0_c00285{word-spacing:-96.000000pt;}
.ws1_c00285{word-spacing:0.000000pt;}
._0_c00285{margin-left:-2.052267pt;}
._2_c00285{margin-left:-1.019733pt;}
._3_c00285{width:1.122134pt;}
._1_c00285{width:39.930369pt;}
.fs1_c00285{font-size:96.000000pt;}
.fs0_c00285{font-size:171.008000pt;}
.y0_c00285{bottom:0.000000pt;}
.y3_c00285{bottom:22.944000pt;}
.y2_c00285{bottom:51.744000pt;}
.y1_c00285{bottom:644.546667pt;}
.h2_c00285{height:68.906250pt;}
.h1_c00285{height:121.993500pt;}
.h0_c00285{height:720.000000pt;}
.w0_c00285{width:1280.000000pt;}
.x0_c00285{left:0.000000pt;}
.x2_c00285{left:91.264000pt;}
.x1_c00285{left:291.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5c8548ae787be4f0156c7c7b.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00286;src:url('chunks/assets/font_98ba587fecc60921cb56f922.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:0.942383;font-style:normal;font-weight:normal;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_b5c09b74b36e9c0db54c4770.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00286;src:url('chunks/assets/font_42f43d966989bb4e57445907.woff2')format("woff");}.ff4_c00286{font-family:ff4_c00286;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00286{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.ls0_c00286{letter-spacing:0.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:-66.240000px;}
.ws1_c00286{word-spacing:0.000000px;}
._2_c00286{margin-left:-5.387329px;}
._0_c00286{margin-left:-4.039872px;}
._3_c00286{margin-left:-2.693376px;}
._1_c00286{margin-left:-1.154304px;}
._4_c00286{width:1.008000px;}
.fc1_c00286{color:rgb(5,99,193);}
.fc0_c00286{color:rgb(0,0,0);}
.fs1_c00286{font-size:36.000000px;}
.fs2_c00286{font-size:66.240000px;}
.fs0_c00286{font-size:192.384000px;}
.y0_c00286{bottom:0.000000px;}
.y4_c00286{bottom:28.224000px;}
.y3_c00286{bottom:48.024000px;}
.y2_c00286{bottom:65.844000px;}
.y6_c00286{bottom:224.640000px;}
.y5_c00286{bottom:244.440000px;}
.y1_c00286{bottom:711.150000px;}
.h2_c00286{height:27.492188px;}
.h4_c00286{height:47.545312px;}
.h3_c00286{height:67.824844px;}
.h1_c00286{height:137.242688px;}
.h0_c00286{height:810.000000px;}
.w0_c00286{width:1440.000000px;}
.x0_c00286{left:0.000000px;}
.x2_c00286{left:70.200000px;}
.x3_c00286{left:73.980000px;}
.x1_c00286{left:109.800000px;}
.x4_c00286{left:887.400000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls0_c00286{letter-spacing:0.000000pt;}
.ws0_c00286{word-spacing:-58.880000pt;}
.ws1_c00286{word-spacing:0.000000pt;}
._2_c00286{margin-left:-4.788737pt;}
._0_c00286{margin-left:-3.590997pt;}
._3_c00286{margin-left:-2.394112pt;}
._1_c00286{margin-left:-1.026048pt;}
._4_c00286{width:0.896000pt;}
.fs1_c00286{font-size:32.000000pt;}
.fs2_c00286{font-size:58.880000pt;}
.fs0_c00286{font-size:171.008000pt;}
.y0_c00286{bottom:0.000000pt;}
.y4_c00286{bottom:25.088000pt;}
.y3_c00286{bottom:42.688000pt;}
.y2_c00286{bottom:58.528000pt;}
.y6_c00286{bottom:199.680000pt;}
.y5_c00286{bottom:217.280000pt;}
.y1_c00286{bottom:632.133333pt;}
.h2_c00286{height:24.437500pt;}
.h4_c00286{height:42.262500pt;}
.h3_c00286{height:60.288750pt;}
.h1_c00286{height:121.993500pt;}
.h0_c00286{height:720.000000pt;}
.w0_c00286{width:1280.000000pt;}
.x0_c00286{left:0.000000pt;}
.x2_c00286{left:62.400000pt;}
.x3_c00286{left:65.760000pt;}
.x1_c00286{left:97.600000pt;}
.x4_c00286{left:788.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_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_0b40ffa134e793b72a08b688.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00287;src:url('chunks/assets/font_eba1a4da4f44b52011f1f655.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00287{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00287{vertical-align:0.000000px;}
.ls1_c00287{letter-spacing:-1.080000px;}
.ls0_c00287{letter-spacing:0.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:-16.272000px;}
.ws1_c00287{word-spacing:-15.192000px;}
.ws2_c00287{word-spacing:0.000000px;}
._4_c00287{margin-left:-11.303424px;}
._1_c00287{margin-left:-3.817824px;}
._0_c00287{margin-left:-2.594448px;}
._2_c00287{margin-left:-1.008576px;}
._3_c00287{width:1.084848px;}
.fc1_c00287{color:rgb(5,99,193);}
.fc0_c00287{color:rgb(0,0,0);}
.fs1_c00287{font-size:72.000000px;}
.fs2_c00287{font-size:108.000000px;}
.fs3_c00287{font-size:108.144000px;}
.fs0_c00287{font-size:144.144000px;}
.y0_c00287{bottom:0.000000px;}
.y3_c00287{bottom:33.768000px;}
.y2_c00287{bottom:55.368000px;}
.yb_c00287{bottom:307.005000px;}
.ya_c00287{bottom:339.405000px;}
.y9_c00287{bottom:371.805000px;}
.y8_c00287{bottom:404.205000px;}
.y7_c00287{bottom:436.650000px;}
.y6_c00287{bottom:469.050000px;}
.y5_c00287{bottom:501.450000px;}
.y4_c00287{bottom:533.850000px;}
.y1_c00287{bottom:722.850000px;}
.h2_c00287{height:51.679688px;}
.h3_c00287{height:77.519531px;}
.h4_c00287{height:77.622891px;}
.h1_c00287{height:102.829289px;}
.h0_c00287{height:810.000000px;}
.w0_c00287{width:1440.000000px;}
.x0_c00287{left:0.000000px;}
.x2_c00287{left:41.436000px;}
.x1_c00287{left:109.800000px;}
.x4_c00287{left:1074.090000px;}
.x3_c00287{left:1080.210000px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls1_c00287{letter-spacing:-0.960000pt;}
.ls0_c00287{letter-spacing:0.000000pt;}
.ws0_c00287{word-spacing:-14.464000pt;}
.ws1_c00287{word-spacing:-13.504000pt;}
.ws2_c00287{word-spacing:0.000000pt;}
._4_c00287{margin-left:-10.047488pt;}
._1_c00287{margin-left:-3.393622pt;}
._0_c00287{margin-left:-2.306176pt;}
._2_c00287{margin-left:-0.896512pt;}
._3_c00287{width:0.964309pt;}
.fs1_c00287{font-size:64.000000pt;}
.fs2_c00287{font-size:96.000000pt;}
.fs3_c00287{font-size:96.128000pt;}
.fs0_c00287{font-size:128.128000pt;}
.y0_c00287{bottom:0.000000pt;}
.y3_c00287{bottom:30.016000pt;}
.y2_c00287{bottom:49.216000pt;}
.yb_c00287{bottom:272.893333pt;}
.ya_c00287{bottom:301.693333pt;}
.y9_c00287{bottom:330.493333pt;}
.y8_c00287{bottom:359.293333pt;}
.y7_c00287{bottom:388.133333pt;}
.y6_c00287{bottom:416.933333pt;}
.y5_c00287{bottom:445.733333pt;}
.y4_c00287{bottom:474.533333pt;}
.y1_c00287{bottom:642.533333pt;}
.h2_c00287{height:45.937500pt;}
.h3_c00287{height:68.906250pt;}
.h4_c00287{height:68.998125pt;}
.h1_c00287{height:91.403813pt;}
.h0_c00287{height:720.000000pt;}
.w0_c00287{width:1280.000000pt;}
.x0_c00287{left:0.000000pt;}
.x2_c00287{left:36.832000pt;}
.x1_c00287{left:97.600000pt;}
.x4_c00287{left:954.746667pt;}
.x3_c00287{left:960.186667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ed5560588ca946a3940ac376.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00288;src:url('chunks/assets/font_a83a8fdce24389de0dbcafc2.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.ls1_c00288{letter-spacing:-1.944000px;}
.ls0_c00288{letter-spacing:0.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;}
}
.ws1_c00288{word-spacing:0.000000px;}
.ws0_c00288{word-spacing:3.168000px;}
._4_c00288{margin-left:-21.600000px;}
._3_c00288{margin-left:-5.004000px;}
._2_c00288{margin-left:-3.888000px;}
._0_c00288{margin-left:-2.808000px;}
._6_c00288{margin-left:-1.148928px;}
._1_c00288{width:1.332000px;}
._5_c00288{width:23.046960px;}
.fc0_c00288{color:rgb(0,0,0);}
.fs1_c00288{font-size:95.760000px;}
.fs0_c00288{font-size:216.000000px;}
.y0_c00288{bottom:0.000000px;}
.y2_c00288{bottom:27.612000px;}
.y1_c00288{bottom:723.030000px;}
.h2_c00288{height:68.733984px;}
.h1_c00288{height:154.089844px;}
.h0_c00288{height:810.000000px;}
.w0_c00288{width:1440.000000px;}
.x0_c00288{left:0.000000px;}
.x2_c00288{left:241.635000px;}
.x1_c00288{left:271.830000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls1_c00288{letter-spacing:-1.728000pt;}
.ls0_c00288{letter-spacing:0.000000pt;}
.ws1_c00288{word-spacing:0.000000pt;}
.ws0_c00288{word-spacing:2.816000pt;}
._4_c00288{margin-left:-19.200000pt;}
._3_c00288{margin-left:-4.448000pt;}
._2_c00288{margin-left:-3.456000pt;}
._0_c00288{margin-left:-2.496000pt;}
._6_c00288{margin-left:-1.021270pt;}
._1_c00288{width:1.184000pt;}
._5_c00288{width:20.486187pt;}
.fs1_c00288{font-size:85.120000pt;}
.fs0_c00288{font-size:192.000000pt;}
.y0_c00288{bottom:0.000000pt;}
.y2_c00288{bottom:24.544000pt;}
.y1_c00288{bottom:642.693333pt;}
.h2_c00288{height:61.096875pt;}
.h1_c00288{height:136.968750pt;}
.h0_c00288{height:720.000000pt;}
.w0_c00288{width:1280.000000pt;}
.x0_c00288{left:0.000000pt;}
.x2_c00288{left:214.786667pt;}
.x1_c00288{left:241.626667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b13f42f4595c15e388e587f0.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00289{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.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:-14.319360px;}
.ws0_c00289{word-spacing:-13.505760px;}
.ws3_c00289{word-spacing:0.000000px;}
.ws2_c00289{word-spacing:1.271280px;}
._1_c00289{margin-left:-2.516400px;}
._0_c00289{width:1.374600px;}
.fc1_c00289{color:rgb(5,99,193);}
.fc0_c00289{color:rgb(0,0,0);}
.fs1_c00289{font-size:59.760000px;}
.fs2_c00289{font-size:63.360000px;}
.fs0_c00289{font-size:72.000000px;}
.fs3_c00289{font-size:167.760000px;}
.y0_c00289{bottom:0.000000px;}
.y4_c00289{bottom:82.044000px;}
.y3_c00289{bottom:104.724000px;}
.y2_c00289{bottom:127.224000px;}
.y1_c00289{bottom:149.544000px;}
.y5_c00289{bottom:444.990000px;}
.h2_c00289{height:42.894141px;}
.h3_c00289{height:45.478125px;}
.h1_c00289{height:51.679688px;}
.h4_c00289{height:120.413672px;}
.h0_c00289{height:810.000000px;}
.w0_c00289{width:1440.000000px;}
.x0_c00289{left:0.000000px;}
.x5_c00289{left:526.650000px;}
.x1_c00289{left:1265.430000px;}
.x2_c00289{left:1274.970000px;}
.x3_c00289{left:1277.310000px;}
.x4_c00289{left:1280.550000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls0_c00289{letter-spacing:0.000000pt;}
.ws1_c00289{word-spacing:-12.728320pt;}
.ws0_c00289{word-spacing:-12.005120pt;}
.ws3_c00289{word-spacing:0.000000pt;}
.ws2_c00289{word-spacing:1.130027pt;}
._1_c00289{margin-left:-2.236800pt;}
._0_c00289{width:1.221866pt;}
.fs1_c00289{font-size:53.120000pt;}
.fs2_c00289{font-size:56.320000pt;}
.fs0_c00289{font-size:64.000000pt;}
.fs3_c00289{font-size:149.120000pt;}
.y0_c00289{bottom:0.000000pt;}
.y4_c00289{bottom:72.928000pt;}
.y3_c00289{bottom:93.088000pt;}
.y2_c00289{bottom:113.088000pt;}
.y1_c00289{bottom:132.928000pt;}
.y5_c00289{bottom:395.546667pt;}
.h2_c00289{height:38.128125pt;}
.h3_c00289{height:40.425000pt;}
.h1_c00289{height:45.937500pt;}
.h4_c00289{height:107.034375pt;}
.h0_c00289{height:720.000000pt;}
.w0_c00289{width:1280.000000pt;}
.x0_c00289{left:0.000000pt;}
.x5_c00289{left:468.133333pt;}
.x1_c00289{left:1124.826667pt;}
.x2_c00289{left:1133.306667pt;}
.x3_c00289{left:1135.386667pt;}
.x4_c00289{left:1138.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_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_b8dbf5c61034f0648c50a101.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00290;src:url('chunks/assets/font_91ea0e8785dd130ad957c0ec.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00290;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00290;src:url('chunks/assets/font_82023f10d488b7220100b47c.woff2')format("woff");}.ff4_c00290{font-family:ff4_c00290;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00290{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00290{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00290{vertical-align:-15.600000px;}
.v0_c00290{vertical-align:0.000000px;}
.v1_c00290{vertical-align:21.600000px;}
.ls26_c00290{letter-spacing:-0.660000px;}
.ls1f_c00290{letter-spacing:-0.540000px;}
.ls22_c00290{letter-spacing:-0.528000px;}
.ls12_c00290{letter-spacing:-0.504000px;}
.ls16_c00290{letter-spacing:-0.480000px;}
.ls19_c00290{letter-spacing:-0.432000px;}
.ls24_c00290{letter-spacing:-0.420000px;}
.ls21_c00290{letter-spacing:-0.384000px;}
.ls15_c00290{letter-spacing:-0.336000px;}
.ls23_c00290{letter-spacing:-0.300000px;}
.ls10_c00290{letter-spacing:-0.216000px;}
.ls14_c00290{letter-spacing:-0.192000px;}
.ls1d_c00290{letter-spacing:-0.144000px;}
.ls1b_c00290{letter-spacing:-0.096000px;}
.ls11_c00290{letter-spacing:0.000000px;}
.ls1a_c00290{letter-spacing:0.048000px;}
.ls6_c00290{letter-spacing:0.060000px;}
.ls13_c00290{letter-spacing:0.096000px;}
.lsa_c00290{letter-spacing:0.108000px;}
.ls25_c00290{letter-spacing:0.120000px;}
.ls5_c00290{letter-spacing:0.144000px;}
.ls0_c00290{letter-spacing:0.288000px;}
.lsd_c00290{letter-spacing:0.300000px;}
.ls18_c00290{letter-spacing:0.336000px;}
.ls1e_c00290{letter-spacing:0.360000px;}
.ls20_c00290{letter-spacing:0.390000px;}
.ls2_c00290{letter-spacing:0.432000px;}
.ls1c_c00290{letter-spacing:0.528000px;}
.lse_c00290{letter-spacing:0.540000px;}
.ls17_c00290{letter-spacing:0.624000px;}
.lsc_c00290{letter-spacing:0.660000px;}
.ls4_c00290{letter-spacing:0.859200px;}
.ls3_c00290{letter-spacing:0.864000px;}
.ls9_c00290{letter-spacing:0.900000px;}
.ls7_c00290{letter-spacing:1.152000px;}
.ls8_c00290{letter-spacing:2.040000px;}
.lsf_c00290{letter-spacing:3.240000px;}
.lsb_c00290{letter-spacing:4.440000px;}
.ls1_c00290{letter-spacing:91.152000px;}
.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;}
}
.wsc_c00290{word-spacing:-27.120000px;}
.ws0_c00290{word-spacing:-16.056000px;}
.ws12_c00290{word-spacing:-15.840000px;}
.ws1_c00290{word-spacing:-15.768000px;}
.ws15_c00290{word-spacing:-13.680000px;}
.wsd_c00290{word-spacing:-13.620000px;}
.wsb_c00290{word-spacing:-13.560000px;}
.ws13_c00290{word-spacing:-13.260000px;}
.ws14_c00290{word-spacing:-13.140000px;}
.wse_c00290{word-spacing:-13.020000px;}
.ws16_c00290{word-spacing:-12.900000px;}
.wsa_c00290{word-spacing:-11.472000px;}
.ws10_c00290{word-spacing:-11.136000px;}
.ws2_c00290{word-spacing:-10.944000px;}
.ws3_c00290{word-spacing:-10.848000px;}
.ws7_c00290{word-spacing:-10.752000px;}
.ws9_c00290{word-spacing:-10.704000px;}
.ws6_c00290{word-spacing:-10.656000px;}
.ws8_c00290{word-spacing:-10.512000px;}
.wsf_c00290{word-spacing:-10.464000px;}
.ws5_c00290{word-spacing:-10.416000px;}
.ws4_c00290{word-spacing:-10.368000px;}
.ws11_c00290{word-spacing:-10.320000px;}
.ws26_c00290{word-spacing:-1.080000px;}
.ws2f_c00290{word-spacing:-1.020000px;}
.ws38_c00290{word-spacing:-0.900000px;}
.ws27_c00290{word-spacing:-0.660000px;}
.ws24_c00290{word-spacing:-0.576000px;}
.ws36_c00290{word-spacing:-0.540000px;}
.ws28_c00290{word-spacing:-0.390000px;}
.ws1e_c00290{word-spacing:-0.336000px;}
.ws1b_c00290{word-spacing:-0.144000px;}
.ws2e_c00290{word-spacing:-0.060000px;}
.ws1c_c00290{word-spacing:-0.048000px;}
.ws18_c00290{word-spacing:0.000000px;}
.ws23_c00290{word-spacing:0.096000px;}
.ws25_c00290{word-spacing:0.120000px;}
.ws19_c00290{word-spacing:0.144000px;}
.ws29_c00290{word-spacing:0.192000px;}
.ws1a_c00290{word-spacing:0.288000px;}
.ws2d_c00290{word-spacing:0.300000px;}
.ws20_c00290{word-spacing:0.336000px;}
.ws2a_c00290{word-spacing:0.432000px;}
.ws17_c00290{word-spacing:0.720000px;}
.ws30_c00290{word-spacing:1.140000px;}
.ws1d_c00290{word-spacing:1.728000px;}
.ws2c_c00290{word-spacing:2.340000px;}
.ws22_c00290{word-spacing:2.352000px;}
.ws21_c00290{word-spacing:2.544000px;}
.ws2b_c00290{word-spacing:2.580000px;}
.ws1f_c00290{word-spacing:2.688000px;}
.ws37_c00290{word-spacing:3.540000px;}
.ws31_c00290{word-spacing:4.380000px;}
.ws32_c00290{word-spacing:4.740000px;}
.ws33_c00290{word-spacing:5.940000px;}
.ws35_c00290{word-spacing:7.740000px;}
.ws34_c00290{word-spacing:8.340000px;}
._6_c00290{margin-left:-2.400000px;}
._1_c00290{margin-left:-1.152000px;}
._0_c00290{width:1.036800px;}
._2_c00290{width:2.625600px;}
._3_c00290{width:92.592000px;}
._5_c00290{width:135.264000px;}
._4_c00290{width:158.352000px;}
.fc2_c00290{color:transparent;}
.fc1_c00290{color:rgb(0,0,0);}
.fc0_c00290{color:rgb(0,0,255);}
.fs6_c00290{font-size:30.000000px;}
.fs5_c00290{font-size:39.600000px;}
.fs1_c00290{font-size:48.000000px;}
.fs2_c00290{font-size:54.000000px;}
.fs3_c00290{font-size:60.000000px;}
.fs0_c00290{font-size:72.000000px;}
.fs4_c00290{font-size:120.000000px;}
.y0_c00290{bottom:0.000000px;}
.y2_c00290{bottom:15.300000px;}
.ye_c00290{bottom:67.800000px;}
.yd_c00290{bottom:85.500000px;}
.yc_c00290{bottom:100.200000px;}
.yb_c00290{bottom:114.900000px;}
.ya_c00290{bottom:129.600000px;}
.y9_c00290{bottom:147.600000px;}
.y33_c00290{bottom:218.700000px;}
.y32_c00290{bottom:240.600000px;}
.y31_c00290{bottom:262.800000px;}
.y30_c00290{bottom:284.700000px;}
.y2f_c00290{bottom:306.600000px;}
.y2e_c00290{bottom:328.500000px;}
.y2d_c00290{bottom:350.700000px;}
.y2c_c00290{bottom:372.600000px;}
.y2b_c00290{bottom:394.500000px;}
.y2a_c00290{bottom:416.400000px;}
.y29_c00290{bottom:438.600000px;}
.y28_c00290{bottom:460.500000px;}
.y27_c00290{bottom:482.400000px;}
.y26_c00290{bottom:504.300000px;}
.y25_c00290{bottom:526.500000px;}
.y24_c00290{bottom:548.400000px;}
.y23_c00290{bottom:570.300000px;}
.y22_c00290{bottom:592.200000px;}
.y21_c00290{bottom:614.400000px;}
.y20_c00290{bottom:636.300000px;}
.y1f_c00290{bottom:658.200000px;}
.y1e_c00290{bottom:680.100000px;}
.y1d_c00290{bottom:702.300000px;}
.y1c_c00290{bottom:731.700000px;}
.y1b_c00290{bottom:752.100000px;}
.y1a_c00290{bottom:774.900000px;}
.y19_c00290{bottom:792.600000px;}
.y18_c00290{bottom:807.300000px;}
.y17_c00290{bottom:822.000000px;}
.y16_c00290{bottom:836.400000px;}
.y15_c00290{bottom:851.100000px;}
.y14_c00290{bottom:865.800000px;}
.y13_c00290{bottom:880.500000px;}
.y12_c00290{bottom:899.100000px;}
.y11_c00290{bottom:910.500000px;}
.y10_c00290{bottom:962.700000px;}
.yf_c00290{bottom:1006.800000px;}
.y8_c00290{bottom:1061.100000px;}
.y7_c00290{bottom:1075.500000px;}
.y6_c00290{bottom:1090.200000px;}
.y5_c00290{bottom:1104.900000px;}
.y4_c00290{bottom:1119.600000px;}
.y3_c00290{bottom:1134.300000px;}
.y1_c00290{bottom:1145.700000px;}
.h9_c00290{height:21.533203px;}
.h1_c00290{height:32.400000px;}
.h3_c00290{height:34.453125px;}
.h5_c00290{height:34.851562px;}
.h4_c00290{height:35.991211px;}
.ha_c00290{height:43.066406px;}
.h6_c00290{height:43.564453px;}
.h8_c00290{height:50.023828px;}
.h2_c00290{height:52.277344px;}
.h7_c00290{height:87.128906px;}
.h0_c00290{height:1263.000000px;}
.w2_c00290{width:738.900000px;}
.w0_c00290{width:893.100000px;}
.w1_c00290{width:893.250000px;}
.x0_c00290{left:0.000000px;}
.x2_c00290{left:7.800000px;}
.x1_c00290{left:77.100000px;}
.x3_c00290{left:84.900000px;}
.x4_c00290{left:442.500000px;}
@media print{
.v2_c00290{vertical-align:-13.866667pt;}
.v0_c00290{vertical-align:0.000000pt;}
.v1_c00290{vertical-align:19.200000pt;}
.ls26_c00290{letter-spacing:-0.586667pt;}
.ls1f_c00290{letter-spacing:-0.480000pt;}
.ls22_c00290{letter-spacing:-0.469333pt;}
.ls12_c00290{letter-spacing:-0.448000pt;}
.ls16_c00290{letter-spacing:-0.426667pt;}
.ls19_c00290{letter-spacing:-0.384000pt;}
.ls24_c00290{letter-spacing:-0.373333pt;}
.ls21_c00290{letter-spacing:-0.341333pt;}
.ls15_c00290{letter-spacing:-0.298667pt;}
.ls23_c00290{letter-spacing:-0.266667pt;}
.ls10_c00290{letter-spacing:-0.192000pt;}
.ls14_c00290{letter-spacing:-0.170667pt;}
.ls1d_c00290{letter-spacing:-0.128000pt;}
.ls1b_c00290{letter-spacing:-0.085333pt;}
.ls11_c00290{letter-spacing:0.000000pt;}
.ls1a_c00290{letter-spacing:0.042667pt;}
.ls6_c00290{letter-spacing:0.053333pt;}
.ls13_c00290{letter-spacing:0.085333pt;}
.lsa_c00290{letter-spacing:0.096000pt;}
.ls25_c00290{letter-spacing:0.106667pt;}
.ls5_c00290{letter-spacing:0.128000pt;}
.ls0_c00290{letter-spacing:0.256000pt;}
.lsd_c00290{letter-spacing:0.266667pt;}
.ls18_c00290{letter-spacing:0.298667pt;}
.ls1e_c00290{letter-spacing:0.320000pt;}
.ls20_c00290{letter-spacing:0.346667pt;}
.ls2_c00290{letter-spacing:0.384000pt;}
.ls1c_c00290{letter-spacing:0.469333pt;}
.lse_c00290{letter-spacing:0.480000pt;}
.ls17_c00290{letter-spacing:0.554667pt;}
.lsc_c00290{letter-spacing:0.586667pt;}
.ls4_c00290{letter-spacing:0.763733pt;}
.ls3_c00290{letter-spacing:0.768000pt;}
.ls9_c00290{letter-spacing:0.800000pt;}
.ls7_c00290{letter-spacing:1.024000pt;}
.ls8_c00290{letter-spacing:1.813333pt;}
.lsf_c00290{letter-spacing:2.880000pt;}
.lsb_c00290{letter-spacing:3.946667pt;}
.ls1_c00290{letter-spacing:81.024000pt;}
.wsc_c00290{word-spacing:-24.106667pt;}
.ws0_c00290{word-spacing:-14.272000pt;}
.ws12_c00290{word-spacing:-14.080000pt;}
.ws1_c00290{word-spacing:-14.016000pt;}
.ws15_c00290{word-spacing:-12.160000pt;}
.wsd_c00290{word-spacing:-12.106667pt;}
.wsb_c00290{word-spacing:-12.053333pt;}
.ws13_c00290{word-spacing:-11.786667pt;}
.ws14_c00290{word-spacing:-11.680000pt;}
.wse_c00290{word-spacing:-11.573333pt;}
.ws16_c00290{word-spacing:-11.466667pt;}
.wsa_c00290{word-spacing:-10.197333pt;}
.ws10_c00290{word-spacing:-9.898667pt;}
.ws2_c00290{word-spacing:-9.728000pt;}
.ws3_c00290{word-spacing:-9.642667pt;}
.ws7_c00290{word-spacing:-9.557333pt;}
.ws9_c00290{word-spacing:-9.514667pt;}
.ws6_c00290{word-spacing:-9.472000pt;}
.ws8_c00290{word-spacing:-9.344000pt;}
.wsf_c00290{word-spacing:-9.301333pt;}
.ws5_c00290{word-spacing:-9.258667pt;}
.ws4_c00290{word-spacing:-9.216000pt;}
.ws11_c00290{word-spacing:-9.173333pt;}
.ws26_c00290{word-spacing:-0.960000pt;}
.ws2f_c00290{word-spacing:-0.906667pt;}
.ws38_c00290{word-spacing:-0.800000pt;}
.ws27_c00290{word-spacing:-0.586667pt;}
.ws24_c00290{word-spacing:-0.512000pt;}
.ws36_c00290{word-spacing:-0.480000pt;}
.ws28_c00290{word-spacing:-0.346667pt;}
.ws1e_c00290{word-spacing:-0.298667pt;}
.ws1b_c00290{word-spacing:-0.128000pt;}
.ws2e_c00290{word-spacing:-0.053333pt;}
.ws1c_c00290{word-spacing:-0.042667pt;}
.ws18_c00290{word-spacing:0.000000pt;}
.ws23_c00290{word-spacing:0.085333pt;}
.ws25_c00290{word-spacing:0.106667pt;}
.ws19_c00290{word-spacing:0.128000pt;}
.ws29_c00290{word-spacing:0.170667pt;}
.ws1a_c00290{word-spacing:0.256000pt;}
.ws2d_c00290{word-spacing:0.266667pt;}
.ws20_c00290{word-spacing:0.298667pt;}
.ws2a_c00290{word-spacing:0.384000pt;}
.ws17_c00290{word-spacing:0.640000pt;}
.ws30_c00290{word-spacing:1.013333pt;}
.ws1d_c00290{word-spacing:1.536000pt;}
.ws2c_c00290{word-spacing:2.080000pt;}
.ws22_c00290{word-spacing:2.090667pt;}
.ws21_c00290{word-spacing:2.261333pt;}
.ws2b_c00290{word-spacing:2.293333pt;}
.ws1f_c00290{word-spacing:2.389333pt;}
.ws37_c00290{word-spacing:3.146667pt;}
.ws31_c00290{word-spacing:3.893333pt;}
.ws32_c00290{word-spacing:4.213333pt;}
.ws33_c00290{word-spacing:5.280000pt;}
.ws35_c00290{word-spacing:6.880000pt;}
.ws34_c00290{word-spacing:7.413333pt;}
._6_c00290{margin-left:-2.133333pt;}
._1_c00290{margin-left:-1.024000pt;}
._0_c00290{width:0.921600pt;}
._2_c00290{width:2.333867pt;}
._3_c00290{width:82.304000pt;}
._5_c00290{width:120.234667pt;}
._4_c00290{width:140.757333pt;}
.fs6_c00290{font-size:26.666667pt;}
.fs5_c00290{font-size:35.200000pt;}
.fs1_c00290{font-size:42.666667pt;}
.fs2_c00290{font-size:48.000000pt;}
.fs3_c00290{font-size:53.333333pt;}
.fs0_c00290{font-size:64.000000pt;}
.fs4_c00290{font-size:106.666667pt;}
.y0_c00290{bottom:0.000000pt;}
.y2_c00290{bottom:13.600000pt;}
.ye_c00290{bottom:60.266667pt;}
.yd_c00290{bottom:76.000000pt;}
.yc_c00290{bottom:89.066667pt;}
.yb_c00290{bottom:102.133333pt;}
.ya_c00290{bottom:115.200000pt;}
.y9_c00290{bottom:131.200000pt;}
.y33_c00290{bottom:194.400000pt;}
.y32_c00290{bottom:213.866667pt;}
.y31_c00290{bottom:233.600000pt;}
.y30_c00290{bottom:253.066667pt;}
.y2f_c00290{bottom:272.533333pt;}
.y2e_c00290{bottom:292.000000pt;}
.y2d_c00290{bottom:311.733333pt;}
.y2c_c00290{bottom:331.200000pt;}
.y2b_c00290{bottom:350.666667pt;}
.y2a_c00290{bottom:370.133333pt;}
.y29_c00290{bottom:389.866667pt;}
.y28_c00290{bottom:409.333333pt;}
.y27_c00290{bottom:428.800000pt;}
.y26_c00290{bottom:448.266667pt;}
.y25_c00290{bottom:468.000000pt;}
.y24_c00290{bottom:487.466667pt;}
.y23_c00290{bottom:506.933333pt;}
.y22_c00290{bottom:526.400000pt;}
.y21_c00290{bottom:546.133333pt;}
.y20_c00290{bottom:565.600000pt;}
.y1f_c00290{bottom:585.066667pt;}
.y1e_c00290{bottom:604.533333pt;}
.y1d_c00290{bottom:624.266667pt;}
.y1c_c00290{bottom:650.400000pt;}
.y1b_c00290{bottom:668.533333pt;}
.y1a_c00290{bottom:688.800000pt;}
.y19_c00290{bottom:704.533333pt;}
.y18_c00290{bottom:717.600000pt;}
.y17_c00290{bottom:730.666667pt;}
.y16_c00290{bottom:743.466667pt;}
.y15_c00290{bottom:756.533333pt;}
.y14_c00290{bottom:769.600000pt;}
.y13_c00290{bottom:782.666667pt;}
.y12_c00290{bottom:799.200000pt;}
.y11_c00290{bottom:809.333333pt;}
.y10_c00290{bottom:855.733333pt;}
.yf_c00290{bottom:894.933333pt;}
.y8_c00290{bottom:943.200000pt;}
.y7_c00290{bottom:956.000000pt;}
.y6_c00290{bottom:969.066667pt;}
.y5_c00290{bottom:982.133333pt;}
.y4_c00290{bottom:995.200000pt;}
.y3_c00290{bottom:1008.266667pt;}
.y1_c00290{bottom:1018.400000pt;}
.h9_c00290{height:19.140625pt;}
.h1_c00290{height:28.800000pt;}
.h3_c00290{height:30.625000pt;}
.h5_c00290{height:30.979167pt;}
.h4_c00290{height:31.992188pt;}
.ha_c00290{height:38.281250pt;}
.h6_c00290{height:38.723958pt;}
.h8_c00290{height:44.465625pt;}
.h2_c00290{height:46.468750pt;}
.h7_c00290{height:77.447917pt;}
.h0_c00290{height:1122.666667pt;}
.w2_c00290{width:656.800000pt;}
.w0_c00290{width:793.866667pt;}
.w1_c00290{width:794.000000pt;}
.x0_c00290{left:0.000000pt;}
.x2_c00290{left:6.933333pt;}
.x1_c00290{left:68.533333pt;}
.x3_c00290{left:75.466667pt;}
.x4_c00290{left:393.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_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_675e9895ac079d4d1012dbda.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00291;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00291;src:url('chunks/assets/font_4bfa07b120dfd4dc53bb528d.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00291;src:url('chunks/assets/font_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff4_c00291{font-family:ff4_c00291;line-height:0.910645;font-style: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;}
.lsd_c00291{letter-spacing:-1.080000px;}
.lsb_c00291{letter-spacing:-0.660000px;}
.lsa_c00291{letter-spacing:-0.540000px;}
.ls8_c00291{letter-spacing:-0.300000px;}
.lsc_c00291{letter-spacing:-0.216000px;}
.ls6_c00291{letter-spacing:0.000000px;}
.ls3_c00291{letter-spacing:0.060000px;}
.ls9_c00291{letter-spacing:0.120000px;}
.ls5_c00291{letter-spacing:0.180000px;}
.ls4_c00291{letter-spacing:0.300000px;}
.ls2_c00291{letter-spacing:0.540000px;}
.ls7_c00291{letter-spacing:0.660000px;}
.ls0_c00291{letter-spacing:2.040000px;}
.ls1_c00291{letter-spacing:3.240000px;}
.sc__c00291{text-shadow:none;}
.sc0_c00291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00291{-webkit-text-stroke:0px transparent;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00291{word-spacing:-16.056000px;}
.ws3_c00291{word-spacing:-13.680000px;}
.ws0_c00291{word-spacing:-13.560000px;}
.ws2_c00291{word-spacing:-13.020000px;}
.ws6_c00291{word-spacing:-1.020000px;}
.wsf_c00291{word-spacing:-0.660000px;}
.ws4_c00291{word-spacing:-0.540000px;}
.ws9_c00291{word-spacing:-0.480000px;}
.ws10_c00291{word-spacing:-0.120000px;}
.ws7_c00291{word-spacing:-0.060000px;}
.ws5_c00291{word-spacing:0.000000px;}
.ws11_c00291{word-spacing:0.300000px;}
.wsc_c00291{word-spacing:0.540000px;}
.wse_c00291{word-spacing:0.660000px;}
.ws12_c00291{word-spacing:1.080000px;}
.ws8_c00291{word-spacing:1.140000px;}
.wsa_c00291{word-spacing:1.380000px;}
.wsb_c00291{word-spacing:2.340000px;}
.wsd_c00291{word-spacing:3.540000px;}
._0_c00291{margin-left:-1.446000px;}
._1_c00291{width:1.728000px;}
._2_c00291{width:4.032000px;}
.fc1_c00291{color:rgb(0,0,0);}
.fc0_c00291{color:rgb(0,0,255);}
.fs1_c00291{font-size:54.000000px;}
.fs0_c00291{font-size:60.000000px;}
.fs2_c00291{font-size:72.000000px;}
.y0_c00291{bottom:0.000000px;}
.y3_c00291{bottom:71.400000px;}
.y2_c00291{bottom:88.800000px;}
.yd_c00291{bottom:914.400000px;}
.yc_c00291{bottom:939.600000px;}
.yb_c00291{bottom:969.300000px;}
.ya_c00291{bottom:989.700000px;}
.y9_c00291{bottom:1011.300000px;}
.y8_c00291{bottom:1033.200000px;}
.y7_c00291{bottom:1055.100000px;}
.y6_c00291{bottom:1077.000000px;}
.y5_c00291{bottom:1099.200000px;}
.y4_c00291{bottom:1121.100000px;}
.y1_c00291{bottom:1163.700000px;}
.h2_c00291{height:35.991211px;}
.h4_c00291{height:41.689453px;}
.h3_c00291{height:43.066406px;}
.h1_c00291{height:43.564453px;}
.h5_c00291{height:52.277344px;}
.h0_c00291{height:1263.000000px;}
.w0_c00291{width:893.100000px;}
.w1_c00291{width:893.250000px;}
.x0_c00291{left:0.000000px;}
.x1_c00291{left:84.900000px;}
.x3_c00291{left:442.500000px;}
.x2_c00291{left:446.400000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.lsd_c00291{letter-spacing:-0.960000pt;}
.lsb_c00291{letter-spacing:-0.586667pt;}
.lsa_c00291{letter-spacing:-0.480000pt;}
.ls8_c00291{letter-spacing:-0.266667pt;}
.lsc_c00291{letter-spacing:-0.192000pt;}
.ls6_c00291{letter-spacing:0.000000pt;}
.ls3_c00291{letter-spacing:0.053333pt;}
.ls9_c00291{letter-spacing:0.106667pt;}
.ls5_c00291{letter-spacing:0.160000pt;}
.ls4_c00291{letter-spacing:0.266667pt;}
.ls2_c00291{letter-spacing:0.480000pt;}
.ls7_c00291{letter-spacing:0.586667pt;}
.ls0_c00291{letter-spacing:1.813333pt;}
.ls1_c00291{letter-spacing:2.880000pt;}
.ws1_c00291{word-spacing:-14.272000pt;}
.ws3_c00291{word-spacing:-12.160000pt;}
.ws0_c00291{word-spacing:-12.053333pt;}
.ws2_c00291{word-spacing:-11.573333pt;}
.ws6_c00291{word-spacing:-0.906667pt;}
.wsf_c00291{word-spacing:-0.586667pt;}
.ws4_c00291{word-spacing:-0.480000pt;}
.ws9_c00291{word-spacing:-0.426667pt;}
.ws10_c00291{word-spacing:-0.106667pt;}
.ws7_c00291{word-spacing:-0.053333pt;}
.ws5_c00291{word-spacing:0.000000pt;}
.ws11_c00291{word-spacing:0.266667pt;}
.wsc_c00291{word-spacing:0.480000pt;}
.wse_c00291{word-spacing:0.586667pt;}
.ws12_c00291{word-spacing:0.960000pt;}
.ws8_c00291{word-spacing:1.013333pt;}
.wsa_c00291{word-spacing:1.226667pt;}
.wsb_c00291{word-spacing:2.080000pt;}
.wsd_c00291{word-spacing:3.146667pt;}
._0_c00291{margin-left:-1.285333pt;}
._1_c00291{width:1.536000pt;}
._2_c00291{width:3.584000pt;}
.fs1_c00291{font-size:48.000000pt;}
.fs0_c00291{font-size:53.333333pt;}
.fs2_c00291{font-size:64.000000pt;}
.y0_c00291{bottom:0.000000pt;}
.y3_c00291{bottom:63.466667pt;}
.y2_c00291{bottom:78.933333pt;}
.yd_c00291{bottom:812.800000pt;}
.yc_c00291{bottom:835.200000pt;}
.yb_c00291{bottom:861.600000pt;}
.ya_c00291{bottom:879.733333pt;}
.y9_c00291{bottom:898.933333pt;}
.y8_c00291{bottom:918.400000pt;}
.y7_c00291{bottom:937.866667pt;}
.y6_c00291{bottom:957.333333pt;}
.y5_c00291{bottom:977.066667pt;}
.y4_c00291{bottom:996.533333pt;}
.y1_c00291{bottom:1034.400000pt;}
.h2_c00291{height:31.992188pt;}
.h4_c00291{height:37.057292pt;}
.h3_c00291{height:38.281250pt;}
.h1_c00291{height:38.723958pt;}
.h5_c00291{height:46.468750pt;}
.h0_c00291{height:1122.666667pt;}
.w0_c00291{width:793.866667pt;}
.w1_c00291{width:794.000000pt;}
.x0_c00291{left:0.000000pt;}
.x1_c00291{left:75.466667pt;}
.x3_c00291{left:393.333333pt;}
.x2_c00291{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_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_f429d457050dc6248d12ef6a.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:0.861816;font-style:normal;font-weight:normal;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_0edcf772ed401fb223505fab.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00292;src:url('chunks/assets/font_cf9a27516e5199333476f829.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00292{letter-spacing:-0.288000px;}
.ls6_c00292{letter-spacing:0.000000px;}
.ls1_c00292{letter-spacing:0.144000px;}
.ls0_c00292{letter-spacing:0.282000px;}
.ls7_c00292{letter-spacing:0.324000px;}
.ls4_c00292{letter-spacing:0.359352px;}
.ls3_c00292{letter-spacing:0.360000px;}
.ls2_c00292{letter-spacing:0.360120px;}
.ls5_c00292{letter-spacing:1655.232000px;}
.sc__c00292{text-shadow:none;}
.sc0_c00292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00292{-webkit-text-stroke:0px transparent;}
.sc0_c00292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00292{word-spacing:-32.688000px;}
.ws1_c00292{word-spacing:-16.632000px;}
.ws10_c00292{word-spacing:-2.736000px;}
.wsd_c00292{word-spacing:-2.232000px;}
.ws2_c00292{word-spacing:-1.944000px;}
.wsc_c00292{word-spacing:-1.890000px;}
.ws3_c00292{word-spacing:-1.620000px;}
.wsf_c00292{word-spacing:-1.512000px;}
.ws6_c00292{word-spacing:-1.152000px;}
.wsb_c00292{word-spacing:-1.008000px;}
.ws5_c00292{word-spacing:-0.864000px;}
.ws9_c00292{word-spacing:-0.576000px;}
.ws7_c00292{word-spacing:-0.432000px;}
.wsa_c00292{word-spacing:-0.288000px;}
.wse_c00292{word-spacing:-0.216000px;}
.ws4_c00292{word-spacing:0.000000px;}
.ws8_c00292{word-spacing:0.432000px;}
._7_c00292{margin-left:-28.285200px;}
._4_c00292{margin-left:-21.870000px;}
._8_c00292{margin-left:-14.256000px;}
._2_c00292{margin-left:-7.743600px;}
._0_c00292{margin-left:-6.609600px;}
._6_c00292{margin-left:-4.698000px;}
._1_c00292{margin-left:-2.851200px;}
._3_c00292{margin-left:-1.069200px;}
._5_c00292{width:1.749600px;}
.fc1_c00292{color:rgb(137,137,137);}
.fc0_c00292{color:rgb(0,0,0);}
.fs2_c00292{font-size:72.000000px;}
.fs1_c00292{font-size:144.000000px;}
.fs0_c00292{font-size:324.000000px;}
.y0_c00292{bottom:0.000000px;}
.y8_c00292{bottom:31.567500px;}
.y7_c00292{bottom:204.562500px;}
.y6_c00292{bottom:254.122500px;}
.y5_c00292{bottom:303.682500px;}
.y4_c00292{bottom:353.242500px;}
.y3_c00292{bottom:422.257500px;}
.y2_c00292{bottom:509.737500px;}
.y1_c00292{bottom:597.217500px;}
.h3_c00292{height:51.679688px;}
.h2_c00292{height:103.359375px;}
.h1_c00292{height:221.484375px;}
.h0_c00292{height:810.000000px;}
.w0_c00292{width:1440.000000px;}
.x0_c00292{left:0.000000px;}
.x1_c00292{left:207.798750px;}
.x2_c00292{left:271.545750px;}
.x3_c00292{left:291.957750px;}
.x5_c00292{left:467.715000px;}
.x7_c00292{left:470.079000px;}
.x8_c00292{left:536.475000px;}
.x6_c00292{left:609.727500px;}
.x4_c00292{left:611.895000px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls8_c00292{letter-spacing:-0.256000pt;}
.ls6_c00292{letter-spacing:0.000000pt;}
.ls1_c00292{letter-spacing:0.128000pt;}
.ls0_c00292{letter-spacing:0.250667pt;}
.ls7_c00292{letter-spacing:0.288000pt;}
.ls4_c00292{letter-spacing:0.319424pt;}
.ls3_c00292{letter-spacing:0.320000pt;}
.ls2_c00292{letter-spacing:0.320107pt;}
.ls5_c00292{letter-spacing:1471.317333pt;}
.ws0_c00292{word-spacing:-29.056000pt;}
.ws1_c00292{word-spacing:-14.784000pt;}
.ws10_c00292{word-spacing:-2.432000pt;}
.wsd_c00292{word-spacing:-1.984000pt;}
.ws2_c00292{word-spacing:-1.728000pt;}
.wsc_c00292{word-spacing:-1.680000pt;}
.ws3_c00292{word-spacing:-1.440000pt;}
.wsf_c00292{word-spacing:-1.344000pt;}
.ws6_c00292{word-spacing:-1.024000pt;}
.wsb_c00292{word-spacing:-0.896000pt;}
.ws5_c00292{word-spacing:-0.768000pt;}
.ws9_c00292{word-spacing:-0.512000pt;}
.ws7_c00292{word-spacing:-0.384000pt;}
.wsa_c00292{word-spacing:-0.256000pt;}
.wse_c00292{word-spacing:-0.192000pt;}
.ws4_c00292{word-spacing:0.000000pt;}
.ws8_c00292{word-spacing:0.384000pt;}
._7_c00292{margin-left:-25.142400pt;}
._4_c00292{margin-left:-19.440000pt;}
._8_c00292{margin-left:-12.672000pt;}
._2_c00292{margin-left:-6.883200pt;}
._0_c00292{margin-left:-5.875200pt;}
._6_c00292{margin-left:-4.176000pt;}
._1_c00292{margin-left:-2.534400pt;}
._3_c00292{margin-left:-0.950400pt;}
._5_c00292{width:1.555200pt;}
.fs2_c00292{font-size:64.000000pt;}
.fs1_c00292{font-size:128.000000pt;}
.fs0_c00292{font-size:288.000000pt;}
.y0_c00292{bottom:0.000000pt;}
.y8_c00292{bottom:28.060000pt;}
.y7_c00292{bottom:181.833333pt;}
.y6_c00292{bottom:225.886667pt;}
.y5_c00292{bottom:269.940000pt;}
.y4_c00292{bottom:313.993333pt;}
.y3_c00292{bottom:375.340000pt;}
.y2_c00292{bottom:453.100000pt;}
.y1_c00292{bottom:530.860000pt;}
.h3_c00292{height:45.937500pt;}
.h2_c00292{height:91.875000pt;}
.h1_c00292{height:196.875000pt;}
.h0_c00292{height:720.000000pt;}
.w0_c00292{width:1280.000000pt;}
.x0_c00292{left:0.000000pt;}
.x1_c00292{left:184.710000pt;}
.x2_c00292{left:241.374000pt;}
.x3_c00292{left:259.518000pt;}
.x5_c00292{left:415.746667pt;}
.x7_c00292{left:417.848000pt;}
.x8_c00292{left:476.866667pt;}
.x6_c00292{left:541.980000pt;}
.x4_c00292{left:543.906667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d225e2c521d67fedb18e0d38.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:0.861816;font-style:normal;font-weight:normal;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_ab25cc14bc4d46a6e09a49a5.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:0.938965;font-style:normal;font-weight:normal;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_e2dbff0a38dd76f821888f6b.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-0.324000px;}
.ls6_c00293{letter-spacing:0.000000px;}
.ls1_c00293{letter-spacing:0.108000px;}
.ls2_c00293{letter-spacing:0.216000px;}
.ls3_c00293{letter-spacing:0.264240px;}
.ls5_c00293{letter-spacing:0.360000px;}
.ls0_c00293{letter-spacing:70.200000px;}
.sc__c00293{text-shadow:none;}
.sc0_c00293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00293{-webkit-text-stroke:0px transparent;}
.sc0_c00293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00293{word-spacing:-59.982480px;}
.ws1_c00293{word-spacing:-24.624000px;}
.ws2_c00293{word-spacing:-24.516000px;}
.ws3_c00293{word-spacing:-24.084000px;}
.ws7_c00293{word-spacing:-2.232000px;}
.ws4_c00293{word-spacing:0.000000px;}
.ws6_c00293{word-spacing:0.432000px;}
.ws5_c00293{word-spacing:0.648000px;}
._2_c00293{margin-left:-9.622800px;}
._4_c00293{margin-left:-8.581320px;}
._0_c00293{margin-left:-2.510280px;}
._1_c00293{margin-left:-1.080000px;}
._3_c00293{width:1.073880px;}
._5_c00293{width:2.503080px;}
._6_c00293{width:1654.320360px;}
.fc2_c00293{color:rgb(137,137,137);}
.fc1_c00293{color:rgb(0,0,0);}
.fc0_c00293{color:rgb(47,85,151);}
.fs2_c00293{font-size:72.000000px;}
.fs1_c00293{font-size:108.000000px;}
.fs0_c00293{font-size:264.240000px;}
.y0_c00293{bottom:0.000000px;}
.yf_c00293{bottom:31.567500px;}
.ye_c00293{bottom:177.224850px;}
.yd_c00293{bottom:215.024850px;}
.yc_c00293{bottom:252.635850px;}
.yb_c00293{bottom:290.246850px;}
.ya_c00293{bottom:328.046850px;}
.y9_c00293{bottom:365.657850px;}
.y8_c00293{bottom:403.268850px;}
.y7_c00293{bottom:441.068850px;}
.y6_c00293{bottom:478.679850px;}
.y5_c00293{bottom:516.290850px;}
.y4_c00293{bottom:554.090850px;}
.y3_c00293{bottom:591.710850px;}
.y2_c00293{bottom:629.321850px;}
.y1_c00293{bottom:670.413750px;}
.h3_c00293{height:51.679688px;}
.h2_c00293{height:78.679688px;}
.h1_c00293{height:180.632812px;}
.h0_c00293{height:810.000000px;}
.w0_c00293{width:1440.000000px;}
.x0_c00293{left:0.000000px;}
.x1_c00293{left:109.800000px;}
.x2_c00293{left:536.474850px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls4_c00293{letter-spacing:-0.288000pt;}
.ls6_c00293{letter-spacing:0.000000pt;}
.ls1_c00293{letter-spacing:0.096000pt;}
.ls2_c00293{letter-spacing:0.192000pt;}
.ls3_c00293{letter-spacing:0.234880pt;}
.ls5_c00293{letter-spacing:0.320000pt;}
.ls0_c00293{letter-spacing:62.400000pt;}
.ws0_c00293{word-spacing:-53.317760pt;}
.ws1_c00293{word-spacing:-21.888000pt;}
.ws2_c00293{word-spacing:-21.792000pt;}
.ws3_c00293{word-spacing:-21.408000pt;}
.ws7_c00293{word-spacing:-1.984000pt;}
.ws4_c00293{word-spacing:0.000000pt;}
.ws6_c00293{word-spacing:0.384000pt;}
.ws5_c00293{word-spacing:0.576000pt;}
._2_c00293{margin-left:-8.553600pt;}
._4_c00293{margin-left:-7.627840pt;}
._0_c00293{margin-left:-2.231360pt;}
._1_c00293{margin-left:-0.960000pt;}
._3_c00293{width:0.954560pt;}
._5_c00293{width:2.224960pt;}
._6_c00293{width:1470.506987pt;}
.fs2_c00293{font-size:64.000000pt;}
.fs1_c00293{font-size:96.000000pt;}
.fs0_c00293{font-size:234.880000pt;}
.y0_c00293{bottom:0.000000pt;}
.yf_c00293{bottom:28.060000pt;}
.ye_c00293{bottom:157.533200pt;}
.yd_c00293{bottom:191.133200pt;}
.yc_c00293{bottom:224.565200pt;}
.yb_c00293{bottom:257.997200pt;}
.ya_c00293{bottom:291.597200pt;}
.y9_c00293{bottom:325.029200pt;}
.y8_c00293{bottom:358.461200pt;}
.y7_c00293{bottom:392.061200pt;}
.y6_c00293{bottom:425.493200pt;}
.y5_c00293{bottom:458.925200pt;}
.y4_c00293{bottom:492.525200pt;}
.y3_c00293{bottom:525.965200pt;}
.y2_c00293{bottom:559.397200pt;}
.y1_c00293{bottom:595.923333pt;}
.h3_c00293{height:45.937500pt;}
.h2_c00293{height:69.937500pt;}
.h1_c00293{height:160.562500pt;}
.h0_c00293{height:720.000000pt;}
.w0_c00293{width:1280.000000pt;}
.x0_c00293{left:0.000000pt;}
.x1_c00293{left:97.600000pt;}
.x2_c00293{left:476.866533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_502120acefd67cf247eaf10c.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:0.861816;font-style:normal;font-weight:normal;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_ab25cc14bc4d46a6e09a49a5.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:0.938965;font-style:normal;font-weight:normal;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_ad3c002ca704a1b1a80ccdb0.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls9_c00294{letter-spacing:-1.244160px;}
.lsa_c00294{letter-spacing:-0.466560px;}
.ls8_c00294{letter-spacing:-0.270000px;}
.lsb_c00294{letter-spacing:-0.155520px;}
.ls7_c00294{letter-spacing:0.000000px;}
.ls5_c00294{letter-spacing:0.090000px;}
.ls4_c00294{letter-spacing:0.155520px;}
.ls3_c00294{letter-spacing:0.194400px;}
.ls6_c00294{letter-spacing:0.264240px;}
.lsc_c00294{letter-spacing:0.270000px;}
.lsd_c00294{letter-spacing:0.360000px;}
.ls0_c00294{letter-spacing:59.454000px;}
.ls1_c00294{letter-spacing:76.500000px;}
.ls2_c00294{letter-spacing:80.792640px;}
.sc__c00294{text-shadow:none;}
.sc0_c00294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00294{-webkit-text-stroke:0px transparent;}
.sc0_c00294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00294{word-spacing:-17.768160px;}
.ws1_c00294{word-spacing:-17.729280px;}
.ws2_c00294{word-spacing:-17.573760px;}
.ws3_c00294{word-spacing:-17.107200px;}
.ws10_c00294{word-spacing:-2.232000px;}
.wse_c00294{word-spacing:-1.710000px;}
.wsf_c00294{word-spacing:-1.170000px;}
.ws9_c00294{word-spacing:-0.990000px;}
.ws6_c00294{word-spacing:-0.792720px;}
.ws7_c00294{word-spacing:-0.630000px;}
.wsc_c00294{word-spacing:-0.466560px;}
.ws4_c00294{word-spacing:-0.264240px;}
.ws5_c00294{word-spacing:0.000000px;}
.wsa_c00294{word-spacing:1.010880px;}
.wsd_c00294{word-spacing:1.710720px;}
.wsb_c00294{word-spacing:2.021760px;}
.ws8_c00294{word-spacing:2.410560px;}
._1_c00294{margin-left:-24.495048px;}
._3_c00294{margin-left:-17.360568px;}
._8_c00294{margin-left:-6.600960px;}
._4_c00294{margin-left:-4.967712px;}
._2_c00294{margin-left:-3.646512px;}
._7_c00294{margin-left:-2.144520px;}
._0_c00294{margin-left:-1.083384px;}
._5_c00294{width:1.080000px;}
._6_c00294{width:2.725056px;}
._9_c00294{width:1654.029336px;}
.fc2_c00294{color:rgb(137,137,137);}
.fc1_c00294{color:rgb(0,0,0);}
.fc0_c00294{color:rgb(47,85,151);}
.fs3_c00294{font-size:72.000000px;}
.fs2_c00294{font-size:77.760000px;}
.fs1_c00294{font-size:90.000000px;}
.fs0_c00294{font-size:264.240000px;}
.y0_c00294{bottom:0.000000px;}
.y16_c00294{bottom:31.567500px;}
.y15_c00294{bottom:123.816300px;}
.y14_c00294{bottom:157.656300px;}
.y13_c00294{bottom:191.676300px;}
.y12_c00294{bottom:224.805660px;}
.y11_c00294{bottom:248.736300px;}
.y10_c00294{bottom:273.216300px;}
.yf_c00294{bottom:306.525660px;}
.ye_c00294{bottom:330.456300px;}
.yd_c00294{bottom:354.936300px;}
.yc_c00294{bottom:388.236300px;}
.yb_c00294{bottom:412.716300px;}
.ya_c00294{bottom:446.008380px;}
.y9_c00294{bottom:462.396300px;}
.y8_c00294{bottom:486.876300px;}
.y7_c00294{bottom:520.189980px;}
.y6_c00294{bottom:543.945660px;}
.y5_c00294{bottom:567.876300px;}
.y4_c00294{bottom:592.356300px;}
.y3_c00294{bottom:625.656300px;}
.y2_c00294{bottom:650.136300px;}
.y1_c00294{bottom:691.881900px;}
.h5_c00294{height:51.679688px;}
.h4_c00294{height:55.814063px;}
.h3_c00294{height:56.649375px;}
.h2_c00294{height:65.566406px;}
.h1_c00294{height:180.632812px;}
.h0_c00294{height:810.000000px;}
.w0_c00294{width:1440.000000px;}
.x0_c00294{left:0.000000px;}
.x2_c00294{left:54.679650px;}
.x3_c00294{left:108.679650px;}
.x1_c00294{left:109.800000px;}
.x4_c00294{left:135.699090px;}
.x5_c00294{left:536.474850px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls9_c00294{letter-spacing:-1.105920pt;}
.lsa_c00294{letter-spacing:-0.414720pt;}
.ls8_c00294{letter-spacing:-0.240000pt;}
.lsb_c00294{letter-spacing:-0.138240pt;}
.ls7_c00294{letter-spacing:0.000000pt;}
.ls5_c00294{letter-spacing:0.080000pt;}
.ls4_c00294{letter-spacing:0.138240pt;}
.ls3_c00294{letter-spacing:0.172800pt;}
.ls6_c00294{letter-spacing:0.234880pt;}
.lsc_c00294{letter-spacing:0.240000pt;}
.lsd_c00294{letter-spacing:0.320000pt;}
.ls0_c00294{letter-spacing:52.848000pt;}
.ls1_c00294{letter-spacing:68.000000pt;}
.ls2_c00294{letter-spacing:71.815680pt;}
.ws0_c00294{word-spacing:-15.793920pt;}
.ws1_c00294{word-spacing:-15.759360pt;}
.ws2_c00294{word-spacing:-15.621120pt;}
.ws3_c00294{word-spacing:-15.206400pt;}
.ws10_c00294{word-spacing:-1.984000pt;}
.wse_c00294{word-spacing:-1.520000pt;}
.wsf_c00294{word-spacing:-1.040000pt;}
.ws9_c00294{word-spacing:-0.880000pt;}
.ws6_c00294{word-spacing:-0.704640pt;}
.ws7_c00294{word-spacing:-0.560000pt;}
.wsc_c00294{word-spacing:-0.414720pt;}
.ws4_c00294{word-spacing:-0.234880pt;}
.ws5_c00294{word-spacing:0.000000pt;}
.wsa_c00294{word-spacing:0.898560pt;}
.wsd_c00294{word-spacing:1.520640pt;}
.wsb_c00294{word-spacing:1.797120pt;}
.ws8_c00294{word-spacing:2.142720pt;}
._1_c00294{margin-left:-21.773376pt;}
._3_c00294{margin-left:-15.431616pt;}
._8_c00294{margin-left:-5.867520pt;}
._4_c00294{margin-left:-4.415744pt;}
._2_c00294{margin-left:-3.241344pt;}
._7_c00294{margin-left:-1.906240pt;}
._0_c00294{margin-left:-0.963008pt;}
._5_c00294{width:0.960000pt;}
._6_c00294{width:2.422272pt;}
._9_c00294{width:1470.248299pt;}
.fs3_c00294{font-size:64.000000pt;}
.fs2_c00294{font-size:69.120000pt;}
.fs1_c00294{font-size:80.000000pt;}
.fs0_c00294{font-size:234.880000pt;}
.y0_c00294{bottom:0.000000pt;}
.y16_c00294{bottom:28.060000pt;}
.y15_c00294{bottom:110.058933pt;}
.y14_c00294{bottom:140.138933pt;}
.y13_c00294{bottom:170.378933pt;}
.y12_c00294{bottom:199.827253pt;}
.y11_c00294{bottom:221.098933pt;}
.y10_c00294{bottom:242.858933pt;}
.yf_c00294{bottom:272.467253pt;}
.ye_c00294{bottom:293.738933pt;}
.yd_c00294{bottom:315.498933pt;}
.yc_c00294{bottom:345.098933pt;}
.yb_c00294{bottom:366.858933pt;}
.ya_c00294{bottom:396.451893pt;}
.y9_c00294{bottom:411.018933pt;}
.y8_c00294{bottom:432.778933pt;}
.y7_c00294{bottom:462.391093pt;}
.y6_c00294{bottom:483.507253pt;}
.y5_c00294{bottom:504.778933pt;}
.y4_c00294{bottom:526.538933pt;}
.y3_c00294{bottom:556.138933pt;}
.y2_c00294{bottom:577.898933pt;}
.y1_c00294{bottom:615.006133pt;}
.h5_c00294{height:45.937500pt;}
.h4_c00294{height:49.612500pt;}
.h3_c00294{height:50.355000pt;}
.h2_c00294{height:58.281250pt;}
.h1_c00294{height:160.562500pt;}
.h0_c00294{height:720.000000pt;}
.w0_c00294{width:1280.000000pt;}
.x0_c00294{left:0.000000pt;}
.x2_c00294{left:48.604133pt;}
.x3_c00294{left:96.604133pt;}
.x1_c00294{left:97.600000pt;}
.x4_c00294{left:120.621413pt;}
.x5_c00294{left:476.866533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5144c7e88f147ac28fa26535.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:0.861816;font-style:normal;font-weight:normal;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_ab25cc14bc4d46a6e09a49a5.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:0.938965;font-style:normal;font-weight:normal;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_4fa6868417a875ce6977de45.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsd_c00295{letter-spacing:-0.336960px;}
.lsf_c00295{letter-spacing:-0.287280px;}
.ls10_c00295{letter-spacing:-0.227520px;}
.lsb_c00295{letter-spacing:-0.095760px;}
.ls9_c00295{letter-spacing:0.000000px;}
.lsc_c00295{letter-spacing:0.095760px;}
.lsa_c00295{letter-spacing:0.113760px;}
.ls11_c00295{letter-spacing:0.131760px;}
.ls4_c00295{letter-spacing:0.191520px;}
.ls12_c00295{letter-spacing:0.227520px;}
.ls13_c00295{letter-spacing:0.360000px;}
.lse_c00295{letter-spacing:0.383040px;}
.ls6_c00295{letter-spacing:21.038472px;}
.ls2_c00295{letter-spacing:21.833280px;}
.ls8_c00295{letter-spacing:22.120560px;}
.ls0_c00295{letter-spacing:61.927200px;}
.ls1_c00295{letter-spacing:68.142240px;}
.ls3_c00295{letter-spacing:74.501280px;}
.ls5_c00295{letter-spacing:78.511680px;}
.ls7_c00295{letter-spacing:96.047280px;}
.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;}
}
.ws2_c00295{word-spacing:-22.024800px;}
.ws1_c00295{word-spacing:-21.641760px;}
.ws0_c00295{word-spacing:-21.546000px;}
.ws15_c00295{word-spacing:-2.232000px;}
.wsf_c00295{word-spacing:-1.819440px;}
.ws7_c00295{word-spacing:-1.340640px;}
.ws3_c00295{word-spacing:-0.792720px;}
.wsc_c00295{word-spacing:-0.095760px;}
.ws4_c00295{word-spacing:0.000000px;}
.wsb_c00295{word-spacing:0.095760px;}
.ws6_c00295{word-spacing:0.113760px;}
.ws10_c00295{word-spacing:0.227520px;}
.ws12_c00295{word-spacing:0.263520px;}
.wse_c00295{word-spacing:0.287280px;}
.ws5_c00295{word-spacing:0.395280px;}
.ws14_c00295{word-spacing:0.455040px;}
.ws8_c00295{word-spacing:0.574560px;}
.ws13_c00295{word-spacing:0.682560px;}
.wsd_c00295{word-spacing:1.053360px;}
.ws11_c00295{word-spacing:1.137600px;}
.wsa_c00295{word-spacing:1.532160px;}
.ws9_c00295{word-spacing:2.275200px;}
._5_c00295{margin-left:-9.272304px;}
._6_c00295{margin-left:-8.187480px;}
._7_c00295{margin-left:-5.981904px;}
._1_c00295{margin-left:-4.782744px;}
._2_c00295{margin-left:-2.774520px;}
._0_c00295{margin-left:-1.004112px;}
._3_c00295{width:1.196136px;}
._4_c00295{width:2.987136px;}
._8_c00295{width:1654.042512px;}
.fc2_c00295{color:rgb(137,137,137);}
.fc1_c00295{color:rgb(0,0,0);}
.fc0_c00295{color:rgb(47,85,151);}
.fs5_c00295{font-size:72.000000px;}
.fs4_c00295{font-size:84.240000px;}
.fs3_c00295{font-size:95.760000px;}
.fs2_c00295{font-size:113.760000px;}
.fs1_c00295{font-size:131.760000px;}
.fs0_c00295{font-size:264.240000px;}
.y0_c00295{bottom:0.000000px;}
.y13_c00295{bottom:31.567500px;}
.y12_c00295{bottom:120.614820px;}
.y11_c00295{bottom:152.126340px;}
.y10_c00295{bottom:183.438780px;}
.yf_c00295{bottom:214.950300px;}
.ye_c00295{bottom:247.350300px;}
.yd_c00295{bottom:289.106340px;}
.yc_c00295{bottom:320.617860px;}
.yb_c00295{bottom:351.930300px;}
.ya_c00295{bottom:382.539300px;}
.y9_c00295{bottom:410.070300px;}
.y8_c00295{bottom:437.070300px;}
.y7_c00295{bottom:462.990300px;}
.y6_c00295{bottom:491.610300px;}
.y5_c00295{bottom:522.027780px;}
.y4_c00295{bottom:549.750300px;}
.y3_c00295{bottom:578.370150px;}
.y2_c00295{bottom:610.590300px;}
.y1_c00295{bottom:670.413750px;}
.h7_c00295{height:51.679688px;}
.h6_c00295{height:61.370156px;}
.h4_c00295{height:68.733984px;}
.h5_c00295{height:69.762656px;}
.h3_c00295{height:82.875937px;}
.h2_c00295{height:95.989219px;}
.h1_c00295{height:180.632812px;}
.h0_c00295{height:810.000000px;}
.w0_c00295{width:1440.000000px;}
.x0_c00295{left:0.000000px;}
.x1_c00295{left:109.800000px;}
.x2_c00295{left:163.800000px;}
.x3_c00295{left:217.800000px;}
.x4_c00295{left:271.800000px;}
.x5_c00295{left:536.474850px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.lsd_c00295{letter-spacing:-0.299520pt;}
.lsf_c00295{letter-spacing:-0.255360pt;}
.ls10_c00295{letter-spacing:-0.202240pt;}
.lsb_c00295{letter-spacing:-0.085120pt;}
.ls9_c00295{letter-spacing:0.000000pt;}
.lsc_c00295{letter-spacing:0.085120pt;}
.lsa_c00295{letter-spacing:0.101120pt;}
.ls11_c00295{letter-spacing:0.117120pt;}
.ls4_c00295{letter-spacing:0.170240pt;}
.ls12_c00295{letter-spacing:0.202240pt;}
.ls13_c00295{letter-spacing:0.320000pt;}
.lse_c00295{letter-spacing:0.340480pt;}
.ls6_c00295{letter-spacing:18.700864pt;}
.ls2_c00295{letter-spacing:19.407360pt;}
.ls8_c00295{letter-spacing:19.662720pt;}
.ls0_c00295{letter-spacing:55.046400pt;}
.ls1_c00295{letter-spacing:60.570880pt;}
.ls3_c00295{letter-spacing:66.223360pt;}
.ls5_c00295{letter-spacing:69.788160pt;}
.ls7_c00295{letter-spacing:85.375360pt;}
.ws2_c00295{word-spacing:-19.577600pt;}
.ws1_c00295{word-spacing:-19.237120pt;}
.ws0_c00295{word-spacing:-19.152000pt;}
.ws15_c00295{word-spacing:-1.984000pt;}
.wsf_c00295{word-spacing:-1.617280pt;}
.ws7_c00295{word-spacing:-1.191680pt;}
.ws3_c00295{word-spacing:-0.704640pt;}
.wsc_c00295{word-spacing:-0.085120pt;}
.ws4_c00295{word-spacing:0.000000pt;}
.wsb_c00295{word-spacing:0.085120pt;}
.ws6_c00295{word-spacing:0.101120pt;}
.ws10_c00295{word-spacing:0.202240pt;}
.ws12_c00295{word-spacing:0.234240pt;}
.wse_c00295{word-spacing:0.255360pt;}
.ws5_c00295{word-spacing:0.351360pt;}
.ws14_c00295{word-spacing:0.404480pt;}
.ws8_c00295{word-spacing:0.510720pt;}
.ws13_c00295{word-spacing:0.606720pt;}
.wsd_c00295{word-spacing:0.936320pt;}
.ws11_c00295{word-spacing:1.011200pt;}
.wsa_c00295{word-spacing:1.361920pt;}
.ws9_c00295{word-spacing:2.022400pt;}
._5_c00295{margin-left:-8.242048pt;}
._6_c00295{margin-left:-7.277760pt;}
._7_c00295{margin-left:-5.317248pt;}
._1_c00295{margin-left:-4.251328pt;}
._2_c00295{margin-left:-2.466240pt;}
._0_c00295{margin-left:-0.892544pt;}
._3_c00295{width:1.063232pt;}
._4_c00295{width:2.655232pt;}
._8_c00295{width:1470.260011pt;}
.fs5_c00295{font-size:64.000000pt;}
.fs4_c00295{font-size:74.880000pt;}
.fs3_c00295{font-size:85.120000pt;}
.fs2_c00295{font-size:101.120000pt;}
.fs1_c00295{font-size:117.120000pt;}
.fs0_c00295{font-size:234.880000pt;}
.y0_c00295{bottom:0.000000pt;}
.y13_c00295{bottom:28.060000pt;}
.y12_c00295{bottom:107.213173pt;}
.y11_c00295{bottom:135.223413pt;}
.y10_c00295{bottom:163.056693pt;}
.yf_c00295{bottom:191.066933pt;}
.ye_c00295{bottom:219.866933pt;}
.yd_c00295{bottom:256.983413pt;}
.yc_c00295{bottom:284.993653pt;}
.yb_c00295{bottom:312.826933pt;}
.ya_c00295{bottom:340.034933pt;}
.y9_c00295{bottom:364.506933pt;}
.y8_c00295{bottom:388.506933pt;}
.y7_c00295{bottom:411.546933pt;}
.y6_c00295{bottom:436.986933pt;}
.y5_c00295{bottom:464.024693pt;}
.y4_c00295{bottom:488.666933pt;}
.y3_c00295{bottom:514.106800pt;}
.y2_c00295{bottom:542.746933pt;}
.y1_c00295{bottom:595.923333pt;}
.h7_c00295{height:45.937500pt;}
.h6_c00295{height:54.551250pt;}
.h4_c00295{height:61.096875pt;}
.h5_c00295{height:62.011250pt;}
.h3_c00295{height:73.667500pt;}
.h2_c00295{height:85.323750pt;}
.h1_c00295{height:160.562500pt;}
.h0_c00295{height:720.000000pt;}
.w0_c00295{width:1280.000000pt;}
.x0_c00295{left:0.000000pt;}
.x1_c00295{left:97.600000pt;}
.x2_c00295{left:145.600000pt;}
.x3_c00295{left:193.600000pt;}
.x4_c00295{left:241.600000pt;}
.x5_c00295{left:476.866533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4342b727aac501f578dc28f8.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00296;src:url('chunks/assets/font_4dd6ff454c467aad5bdbcbf6.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:0.861816;font-style: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);}
.v1_c00296{vertical-align:-5.294400px;}
.v0_c00296{vertical-align:0.000000px;}
.v2_c00296{vertical-align:29.664000px;}
.ls7_c00296{letter-spacing:-0.334080px;}
.ls1_c00296{letter-spacing:-0.324000px;}
.ls9_c00296{letter-spacing:-0.292320px;}
.ls5_c00296{letter-spacing:-0.208800px;}
.ls6_c00296{letter-spacing:-0.167040px;}
.lsa_c00296{letter-spacing:0.000000px;}
.lsb_c00296{letter-spacing:0.041760px;}
.ls0_c00296{letter-spacing:0.108000px;}
.ls2_c00296{letter-spacing:0.216000px;}
.ls4_c00296{letter-spacing:0.250560px;}
.ls3_c00296{letter-spacing:0.264240px;}
.ls8_c00296{letter-spacing:0.292320px;}
.lsd_c00296{letter-spacing:0.360000px;}
.lsc_c00296{letter-spacing:0.375840px;}
.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;}
}
.ws5_c00296{word-spacing:-9.730080px;}
.ws3_c00296{word-spacing:-9.688320px;}
.ws1_c00296{word-spacing:-9.270720px;}
.ws0_c00296{word-spacing:-9.228960px;}
.ws4_c00296{word-spacing:-9.145440px;}
.ws2_c00296{word-spacing:-9.103680px;}
.ws1a_c00296{word-spacing:-2.232000px;}
.wse_c00296{word-spacing:-1.056960px;}
.ws18_c00296{word-spacing:-0.375840px;}
.wsf_c00296{word-spacing:-0.334080px;}
.ws16_c00296{word-spacing:-0.292320px;}
.ws17_c00296{word-spacing:-0.250560px;}
.wsc_c00296{word-spacing:-0.108000px;}
.wsa_c00296{word-spacing:0.000000px;}
.ws14_c00296{word-spacing:0.125280px;}
.ws11_c00296{word-spacing:0.167040px;}
.ws12_c00296{word-spacing:0.208800px;}
.ws19_c00296{word-spacing:0.292320px;}
.ws13_c00296{word-spacing:0.334080px;}
.wsd_c00296{word-spacing:0.432000px;}
.wsb_c00296{word-spacing:1.080000px;}
.ws15_c00296{word-spacing:1.336320px;}
.ws10_c00296{word-spacing:1.712160px;}
.ws9_c00296{word-spacing:133.423200px;}
.ws7_c00296{word-spacing:138.434400px;}
.ws8_c00296{word-spacing:148.623840px;}
.ws6_c00296{word-spacing:149.375520px;}
._4_c00296{margin-left:-3.617424px;}
._0_c00296{margin-left:-2.451600px;}
._2_c00296{margin-left:-1.177200px;}
._1_c00296{width:1.296000px;}
._3_c00296{width:2.311200px;}
._6_c00296{width:146.869920px;}
._7_c00296{width:150.965040px;}
._5_c00296{width:176.811840px;}
._8_c00296{width:1646.499000px;}
.fc3_c00296{color:transparent;}
.fc1_c00296{color:rgb(47,85,151);}
.fc2_c00296{color:rgb(137,137,137);}
.fc0_c00296{color:rgb(0,0,0);}
.fs2_c00296{font-size:41.760000px;}
.fs3_c00296{font-size:48.240000px;}
.fs4_c00296{font-size:72.000000px;}
.fs0_c00296{font-size:108.000000px;}
.fs1_c00296{font-size:264.240000px;}
.y0_c00296{bottom:0.000000px;}
.y25_c00296{bottom:31.567500px;}
.y23_c00296{bottom:90.550050px;}
.y8_c00296{bottom:236.395980px;}
.y24_c00296{bottom:238.235550px;}
.y10_c00296{bottom:243.011400px;}
.y7_c00296{bottom:249.894900px;}
.yf_c00296{bottom:256.510320px;}
.y22_c00296{bottom:257.236770px;}
.y1a_c00296{bottom:261.431490px;}
.ye_c00296{bottom:270.009240px;}
.y21_c00296{bottom:270.735690px;}
.y19_c00296{bottom:274.930410px;}
.yd_c00296{bottom:283.508160px;}
.y20_c00296{bottom:284.234610px;}
.y1c_c00296{bottom:284.831730px;}
.y18_c00296{bottom:288.429330px;}
.ya_c00296{bottom:292.979280px;}
.yc_c00296{bottom:297.007080px;}
.y1f_c00296{bottom:297.733530px;}
.y1b_c00296{bottom:298.330650px;}
.y17_c00296{bottom:301.928250px;}
.y9_c00296{bottom:306.478200px;}
.yb_c00296{bottom:310.506000px;}
.y1e_c00296{bottom:311.232450px;}
.y1d_c00296{bottom:314.904450px;}
.y14_c00296{bottom:348.951990px;}
.y5_c00296{bottom:350.544600px;}
.y16_c00296{bottom:351.720450px;}
.y13_c00296{bottom:362.450910px;}
.y15_c00296{bottom:365.040450px;}
.y12_c00296{bottom:375.949830px;}
.y4_c00296{bottom:382.944600px;}
.y11_c00296{bottom:389.448750px;}
.y3_c00296{bottom:486.448200px;}
.y2_c00296{bottom:518.848200px;}
.y1_c00296{bottom:551.248200px;}
.y6_c00296{bottom:704.150700px;}
.h3_c00296{height:29.974219px;}
.h4_c00296{height:34.625391px;}
.h1_c00296{height:77.519531px;}
.h5_c00296{height:81.343687px;}
.h2_c00296{height:180.632812px;}
.h0_c00296{height:810.000000px;}
.w0_c00296{width:1440.000000px;}
.x0_c00296{left:0.000000px;}
.x2_c00296{left:48.510150px;}
.x1_c00296{left:61.580550px;}
.x3_c00296{left:109.800000px;}
.x4_c00296{left:291.900750px;}
.x5_c00296{left:306.639150px;}
.x6_c00296{left:388.642800px;}
.xc_c00296{left:491.052750px;}
.xf_c00296{left:536.474850px;}
.xd_c00296{left:539.879850px;}
.x9_c00296{left:569.784600px;}
.xb_c00296{left:582.128100px;}
.xa_c00296{left:692.443500px;}
.xe_c00296{left:793.688400px;}
.x7_c00296{left:996.437250px;}
.x8_c00296{left:1091.105400px;}
@media print{
.v1_c00296{vertical-align:-4.706133pt;}
.v0_c00296{vertical-align:0.000000pt;}
.v2_c00296{vertical-align:26.368000pt;}
.ls7_c00296{letter-spacing:-0.296960pt;}
.ls1_c00296{letter-spacing:-0.288000pt;}
.ls9_c00296{letter-spacing:-0.259840pt;}
.ls5_c00296{letter-spacing:-0.185600pt;}
.ls6_c00296{letter-spacing:-0.148480pt;}
.lsa_c00296{letter-spacing:0.000000pt;}
.lsb_c00296{letter-spacing:0.037120pt;}
.ls0_c00296{letter-spacing:0.096000pt;}
.ls2_c00296{letter-spacing:0.192000pt;}
.ls4_c00296{letter-spacing:0.222720pt;}
.ls3_c00296{letter-spacing:0.234880pt;}
.ls8_c00296{letter-spacing:0.259840pt;}
.lsd_c00296{letter-spacing:0.320000pt;}
.lsc_c00296{letter-spacing:0.334080pt;}
.ws5_c00296{word-spacing:-8.648960pt;}
.ws3_c00296{word-spacing:-8.611840pt;}
.ws1_c00296{word-spacing:-8.240640pt;}
.ws0_c00296{word-spacing:-8.203520pt;}
.ws4_c00296{word-spacing:-8.129280pt;}
.ws2_c00296{word-spacing:-8.092160pt;}
.ws1a_c00296{word-spacing:-1.984000pt;}
.wse_c00296{word-spacing:-0.939520pt;}
.ws18_c00296{word-spacing:-0.334080pt;}
.wsf_c00296{word-spacing:-0.296960pt;}
.ws16_c00296{word-spacing:-0.259840pt;}
.ws17_c00296{word-spacing:-0.222720pt;}
.wsc_c00296{word-spacing:-0.096000pt;}
.wsa_c00296{word-spacing:0.000000pt;}
.ws14_c00296{word-spacing:0.111360pt;}
.ws11_c00296{word-spacing:0.148480pt;}
.ws12_c00296{word-spacing:0.185600pt;}
.ws19_c00296{word-spacing:0.259840pt;}
.ws13_c00296{word-spacing:0.296960pt;}
.wsd_c00296{word-spacing:0.384000pt;}
.wsb_c00296{word-spacing:0.960000pt;}
.ws15_c00296{word-spacing:1.187840pt;}
.ws10_c00296{word-spacing:1.521920pt;}
.ws9_c00296{word-spacing:118.598400pt;}
.ws7_c00296{word-spacing:123.052800pt;}
.ws8_c00296{word-spacing:132.110080pt;}
.ws6_c00296{word-spacing:132.778240pt;}
._4_c00296{margin-left:-3.215488pt;}
._0_c00296{margin-left:-2.179200pt;}
._2_c00296{margin-left:-1.046400pt;}
._1_c00296{width:1.152000pt;}
._3_c00296{width:2.054400pt;}
._6_c00296{width:130.551040pt;}
._7_c00296{width:134.191147pt;}
._5_c00296{width:157.166080pt;}
._8_c00296{width:1463.554667pt;}
.fs2_c00296{font-size:37.120000pt;}
.fs3_c00296{font-size:42.880000pt;}
.fs4_c00296{font-size:64.000000pt;}
.fs0_c00296{font-size:96.000000pt;}
.fs1_c00296{font-size:234.880000pt;}
.y0_c00296{bottom:0.000000pt;}
.y25_c00296{bottom:28.060000pt;}
.y23_c00296{bottom:80.488933pt;}
.y8_c00296{bottom:210.129760pt;}
.y24_c00296{bottom:211.764933pt;}
.y10_c00296{bottom:216.010133pt;}
.y7_c00296{bottom:222.128800pt;}
.yf_c00296{bottom:228.009173pt;}
.y22_c00296{bottom:228.654907pt;}
.y1a_c00296{bottom:232.383547pt;}
.ye_c00296{bottom:240.008213pt;}
.y21_c00296{bottom:240.653947pt;}
.y19_c00296{bottom:244.382587pt;}
.yd_c00296{bottom:252.007253pt;}
.y20_c00296{bottom:252.652987pt;}
.y1c_c00296{bottom:253.183760pt;}
.y18_c00296{bottom:256.381627pt;}
.ya_c00296{bottom:260.426027pt;}
.yc_c00296{bottom:264.006293pt;}
.y1f_c00296{bottom:264.652027pt;}
.y1b_c00296{bottom:265.182800pt;}
.y17_c00296{bottom:268.380667pt;}
.y9_c00296{bottom:272.425067pt;}
.yb_c00296{bottom:276.005333pt;}
.y1e_c00296{bottom:276.651067pt;}
.y1d_c00296{bottom:279.915067pt;}
.y14_c00296{bottom:310.179547pt;}
.y5_c00296{bottom:311.595200pt;}
.y16_c00296{bottom:312.640400pt;}
.y13_c00296{bottom:322.178587pt;}
.y15_c00296{bottom:324.480400pt;}
.y12_c00296{bottom:334.177627pt;}
.y4_c00296{bottom:340.395200pt;}
.y11_c00296{bottom:346.176667pt;}
.y3_c00296{bottom:432.398400pt;}
.y2_c00296{bottom:461.198400pt;}
.y1_c00296{bottom:489.998400pt;}
.y6_c00296{bottom:625.911733pt;}
.h3_c00296{height:26.643750pt;}
.h4_c00296{height:30.778125pt;}
.h1_c00296{height:68.906250pt;}
.h5_c00296{height:72.305500pt;}
.h2_c00296{height:160.562500pt;}
.h0_c00296{height:720.000000pt;}
.w0_c00296{width:1280.000000pt;}
.x0_c00296{left:0.000000pt;}
.x2_c00296{left:43.120133pt;}
.x1_c00296{left:54.738267pt;}
.x3_c00296{left:97.600000pt;}
.x4_c00296{left:259.467333pt;}
.x5_c00296{left:272.568133pt;}
.x6_c00296{left:345.460267pt;}
.xc_c00296{left:436.491333pt;}
.xf_c00296{left:476.866533pt;}
.xd_c00296{left:479.893200pt;}
.x9_c00296{left:506.475200pt;}
.xb_c00296{left:517.447200pt;}
.xa_c00296{left:615.505333pt;}
.xe_c00296{left:705.500800pt;}
.x7_c00296{left:885.722000pt;}
.x8_c00296{left:969.871467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c083adff67bf839ec1221028.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:0.861816;font-style:normal;font-weight:normal;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_0177e87ded9e86d32ed2cbd6.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:0.817871;font-style:normal;font-weight:normal;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_c59d014a493952080ea5af61.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00297{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00297{vertical-align:0.000000px;}
.ls4_c00297{letter-spacing:-0.288000px;}
.ls2_c00297{letter-spacing:0.000000px;}
.ls3_c00297{letter-spacing:0.144000px;}
.ls5_c00297{letter-spacing:0.288000px;}
.ls6_c00297{letter-spacing:0.360000px;}
.ls1_c00297{letter-spacing:32.256000px;}
.ls0_c00297{letter-spacing:42.048000px;}
.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;}
}
.ws9_c00297{word-spacing:-2.232000px;}
.ws8_c00297{word-spacing:-1.728000px;}
.ws7_c00297{word-spacing:-1.152000px;}
.ws2_c00297{word-spacing:-0.864000px;}
.ws6_c00297{word-spacing:-0.576000px;}
.ws4_c00297{word-spacing:-0.288000px;}
.ws0_c00297{word-spacing:-0.239760px;}
.ws3_c00297{word-spacing:-0.144000px;}
.ws1_c00297{word-spacing:0.000000px;}
.ws5_c00297{word-spacing:0.144000px;}
._6_c00297{margin-left:-11.585448px;}
._5_c00297{margin-left:-9.957816px;}
._2_c00297{margin-left:-5.538456px;}
._0_c00297{margin-left:-3.476520px;}
._1_c00297{margin-left:-2.181816px;}
._3_c00297{margin-left:-1.078920px;}
._4_c00297{width:1.195632px;}
._7_c00297{width:2.196432px;}
._8_c00297{width:1655.910696px;}
.fc2_c00297{color:rgb(137,137,137);}
.fc1_c00297{color:rgb(0,0,0);}
.fc0_c00297{color:rgb(47,85,151);}
.fs2_c00297{font-size:72.000000px;}
.fs1_c00297{font-size:144.000000px;}
.fs0_c00297{font-size:239.760000px;}
.y0_c00297{bottom:0.000000px;}
.yc_c00297{bottom:31.567500px;}
.yb_c00297{bottom:64.611150px;}
.ya_c00297{bottom:94.851150px;}
.y9_c00297{bottom:140.031150px;}
.y8_c00297{bottom:170.271150px;}
.y7_c00297{bottom:215.451150px;}
.y6_c00297{bottom:245.691150px;}
.y5_c00297{bottom:275.931150px;}
.y4_c00297{bottom:321.291150px;}
.y3_c00297{bottom:351.531150px;}
.y2_c00297{bottom:396.711150px;}
.y1_c00297{bottom:738.896250px;}
.h4_c00297{height:51.679688px;}
.h3_c00297{height:103.359375px;}
.h2_c00297{height:110.953125px;}
.h1_c00297{height:163.898438px;}
.h0_c00297{height:810.000000px;}
.w0_c00297{width:1440.000000px;}
.x0_c00297{left:0.000000px;}
.x1_c00297{left:40.254750px;}
.x2_c00297{left:290.733750px;}
.x3_c00297{left:317.733750px;}
.x4_c00297{left:536.474850px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls4_c00297{letter-spacing:-0.256000pt;}
.ls2_c00297{letter-spacing:0.000000pt;}
.ls3_c00297{letter-spacing:0.128000pt;}
.ls5_c00297{letter-spacing:0.256000pt;}
.ls6_c00297{letter-spacing:0.320000pt;}
.ls1_c00297{letter-spacing:28.672000pt;}
.ls0_c00297{letter-spacing:37.376000pt;}
.ws9_c00297{word-spacing:-1.984000pt;}
.ws8_c00297{word-spacing:-1.536000pt;}
.ws7_c00297{word-spacing:-1.024000pt;}
.ws2_c00297{word-spacing:-0.768000pt;}
.ws6_c00297{word-spacing:-0.512000pt;}
.ws4_c00297{word-spacing:-0.256000pt;}
.ws0_c00297{word-spacing:-0.213120pt;}
.ws3_c00297{word-spacing:-0.128000pt;}
.ws1_c00297{word-spacing:0.000000pt;}
.ws5_c00297{word-spacing:0.128000pt;}
._6_c00297{margin-left:-10.298176pt;}
._5_c00297{margin-left:-8.851392pt;}
._2_c00297{margin-left:-4.923072pt;}
._0_c00297{margin-left:-3.090240pt;}
._1_c00297{margin-left:-1.939392pt;}
._3_c00297{margin-left:-0.959040pt;}
._4_c00297{width:1.062784pt;}
._7_c00297{width:1.952384pt;}
._8_c00297{width:1471.920619pt;}
.fs2_c00297{font-size:64.000000pt;}
.fs1_c00297{font-size:128.000000pt;}
.fs0_c00297{font-size:213.120000pt;}
.y0_c00297{bottom:0.000000pt;}
.yc_c00297{bottom:28.060000pt;}
.yb_c00297{bottom:57.432133pt;}
.ya_c00297{bottom:84.312133pt;}
.y9_c00297{bottom:124.472133pt;}
.y8_c00297{bottom:151.352133pt;}
.y7_c00297{bottom:191.512133pt;}
.y6_c00297{bottom:218.392133pt;}
.y5_c00297{bottom:245.272133pt;}
.y4_c00297{bottom:285.592133pt;}
.y3_c00297{bottom:312.472133pt;}
.y2_c00297{bottom:352.632133pt;}
.y1_c00297{bottom:656.796667pt;}
.h4_c00297{height:45.937500pt;}
.h3_c00297{height:91.875000pt;}
.h2_c00297{height:98.625000pt;}
.h1_c00297{height:145.687500pt;}
.h0_c00297{height:720.000000pt;}
.w0_c00297{width:1280.000000pt;}
.x0_c00297{left:0.000000pt;}
.x1_c00297{left:35.782000pt;}
.x2_c00297{left:258.430000pt;}
.x3_c00297{left:282.430000pt;}
.x4_c00297{left:476.866533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a7d77228ef798e4bc5e0e910.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:0.861816;font-style:normal;font-weight:normal;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_ab25cc14bc4d46a6e09a49a5.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:0.938965;font-style:normal;font-weight:normal;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_b5f497e3fbafe32926cf1c7d.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00298{letter-spacing:0.000000px;}
.ls2_c00298{letter-spacing:0.108000px;}
.ls3_c00298{letter-spacing:0.360000px;}
.ls0_c00298{letter-spacing:70.200000px;}
.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:-59.718240px;}
.ws3_c00298{word-spacing:-2.232000px;}
.ws1_c00298{word-spacing:0.000000px;}
.ws2_c00298{word-spacing:0.648000px;}
._0_c00298{margin-left:-3.593664px;}
._1_c00298{margin-left:-1.728000px;}
._2_c00298{width:1.965600px;}
._3_c00298{width:1654.239000px;}
.fc2_c00298{color:rgb(137,137,137);}
.fc1_c00298{color:rgb(0,0,0);}
.fc0_c00298{color:rgb(47,85,151);}
.fs2_c00298{font-size:72.000000px;}
.fs1_c00298{font-size:108.000000px;}
.fs0_c00298{font-size:264.240000px;}
.y0_c00298{bottom:0.000000px;}
.y5_c00298{bottom:31.567500px;}
.y4_c00298{bottom:65.211600px;}
.y3_c00298{bottom:102.822600px;}
.y2_c00298{bottom:125.502600px;}
.y1_c00298{bottom:705.238350px;}
.h4_c00298{height:51.679688px;}
.h3_c00298{height:77.519531px;}
.h2_c00298{height:78.679688px;}
.h1_c00298{height:180.632812px;}
.h0_c00298{height:810.000000px;}
.w0_c00298{width:1440.000000px;}
.x0_c00298{left:0.000000px;}
.x2_c00298{left:64.285800px;}
.x3_c00298{left:91.285800px;}
.x1_c00298{left:109.800000px;}
.x4_c00298{left:536.474850px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls1_c00298{letter-spacing:0.000000pt;}
.ls2_c00298{letter-spacing:0.096000pt;}
.ls3_c00298{letter-spacing:0.320000pt;}
.ls0_c00298{letter-spacing:62.400000pt;}
.ws0_c00298{word-spacing:-53.082880pt;}
.ws3_c00298{word-spacing:-1.984000pt;}
.ws1_c00298{word-spacing:0.000000pt;}
.ws2_c00298{word-spacing:0.576000pt;}
._0_c00298{margin-left:-3.194368pt;}
._1_c00298{margin-left:-1.536000pt;}
._2_c00298{width:1.747200pt;}
._3_c00298{width:1470.434667pt;}
.fs2_c00298{font-size:64.000000pt;}
.fs1_c00298{font-size:96.000000pt;}
.fs0_c00298{font-size:234.880000pt;}
.y0_c00298{bottom:0.000000pt;}
.y5_c00298{bottom:28.060000pt;}
.y4_c00298{bottom:57.965867pt;}
.y3_c00298{bottom:91.397867pt;}
.y2_c00298{bottom:111.557867pt;}
.y1_c00298{bottom:626.878533pt;}
.h4_c00298{height:45.937500pt;}
.h3_c00298{height:68.906250pt;}
.h2_c00298{height:69.937500pt;}
.h1_c00298{height:160.562500pt;}
.h0_c00298{height:720.000000pt;}
.w0_c00298{width:1280.000000pt;}
.x0_c00298{left:0.000000pt;}
.x2_c00298{left:57.142933pt;}
.x3_c00298{left:81.142933pt;}
.x1_c00298{left:97.600000pt;}
.x4_c00298{left:476.866533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10288f5799cc36d2f0b2aa0f.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:0.910645;font-style:normal;font-weight:normal;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_91ae26e4a48890fd4e58569e.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:0.954102;font-style:normal;font-weight:normal;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_fae450b7d019bccd8c61e024.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00299;src:url('chunks/assets/font_cf40d58cd80156b0c75b909c.woff2')format("woff");}.ff4_c00299{font-family:ff4_c00299;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00299;src:url('chunks/assets/font_26ff502ed00fbf65adc9e611.woff2')format("woff");}.ff5_c00299{font-family:ff5_c00299;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00299;src:url('chunks/assets/font_00bcdcb0c0e7446d4fcb6bdc.woff2')format("woff");}.ff6_c00299{font-family:ff6_c00299;line-height:0.938965;font-style:normal;font-weight: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_c00299;src:url('chunks/assets/font_567d95264e76ef881e39714e.woff2')format("woff");}.ff7_c00299{font-family:ff7_c00299;line-height:0.938965;font-style:normal;font-weight: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_c00299;src:url('chunks/assets/font_fb079bae4e958f8a4d603733.woff2')format("woff");}.ff8_c00299{font-family:ff8_c00299;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00299;src:url('chunks/assets/font_faa828f1c217560fd4b6c978.woff2')format("woff");}.ff9_c00299{font-family:ff9_c00299;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00299;src:url('chunks/assets/font_e68ae8067811cc797c2bf99f.woff2')format("woff");}.ffa_c00299{font-family:ffa_c00299;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00299;src:url('chunks/assets/font_ba66bdbdb85806290ab79e8b.woff2')format("woff");}.ffb_c00299{font-family:ffb_c00299;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00299;src:url('chunks/assets/font_8ea8a8bd93c4bc93f9e8706c.woff2')format("woff");}.ffc_c00299{font-family:ffc_c00299;line-height:0.960938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00299;src:url('chunks/assets/font_235d066315076655ab409cbb.woff2')format("woff");}.ffd_c00299{font-family:ffd_c00299;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00299{transform:matrix(0.249701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249701,0.000000,0.000000,0.250000,0,0);}
.mc_c00299{transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);}
.m1_c00299{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);}
.m3_c00299{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);}
.m2_c00299{transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);}
.m4_c00299{transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);}
.m0_c00299{transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);}
.md_c00299{transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);}
.me_c00299{transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);}
.m5_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);}
.ma_c00299{transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);}
.m7_c00299{transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);}
.m6_c00299{transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);}
.m8_c00299{transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);}
.m9_c00299{transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);}
.m12_c00299{transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);}
.m14_c00299{transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);}
.m13_c00299{transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);}
.m11_c00299{transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);}
.mf_c00299{transform:matrix(0.250749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250749,0.000000,0.000000,0.250000,0,0);}
.m10_c00299{transform:matrix(0.250752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250752,0.000000,0.000000,0.250000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.ls5d_c00299{letter-spacing:-0.627581px;}
.ls7c_c00299{letter-spacing:-0.527241px;}
.ls67_c00299{letter-spacing:-0.460454px;}
.ls6b_c00299{letter-spacing:-0.383712px;}
.ls7e_c00299{letter-spacing:-0.335520px;}
.ls5b_c00299{letter-spacing:-0.297275px;}
.ls7b_c00299{letter-spacing:-0.202785px;}
.ls5e_c00299{letter-spacing:-0.198184px;}
.ls4f_c00299{letter-spacing:-0.196406px;}
.ls52_c00299{letter-spacing:-0.193050px;}
.ls68_c00299{letter-spacing:-0.191856px;}
.ls6c_c00299{letter-spacing:-0.187605px;}
.ls73_c00299{letter-spacing:-0.178979px;}
.ls59_c00299{letter-spacing:-0.165153px;}
.ls7a_c00299{letter-spacing:-0.162228px;}
.ls62_c00299{letter-spacing:-0.157217px;}
.ls54_c00299{letter-spacing:-0.154440px;}
.ls6a_c00299{letter-spacing:-0.153485px;}
.ls70_c00299{letter-spacing:-0.153410px;}
.ls4d_c00299{letter-spacing:-0.140170px;}
.ls58_c00299{letter-spacing:-0.132122px;}
.ls50_c00299{letter-spacing:-0.115830px;}
.ls66_c00299{letter-spacing:-0.115114px;}
.ls71_c00299{letter-spacing:-0.102274px;}
.ls6e_c00299{letter-spacing:-0.081114px;}
.ls63_c00299{letter-spacing:-0.078608px;}
.ls55_c00299{letter-spacing:-0.077220px;}
.ls6f_c00299{letter-spacing:-0.076705px;}
.ls79_c00299{letter-spacing:-0.073620px;}
.ls76_c00299{letter-spacing:-0.066126px;}
.ls57_c00299{letter-spacing:-0.065569px;}
.ls4e_c00299{letter-spacing:-0.038610px;}
.ls65_c00299{letter-spacing:-0.038371px;}
.ls74_c00299{letter-spacing:-0.025568px;}
.ls4c_c00299{letter-spacing:0.000000px;}
.ls5a_c00299{letter-spacing:0.033031px;}
.ls69_c00299{letter-spacing:0.038371px;}
.ls53_c00299{letter-spacing:0.038610px;}
.ls6d_c00299{letter-spacing:0.045539px;}
.ls78_c00299{letter-spacing:0.051137px;}
.ls49_c00299{letter-spacing:0.066030px;}
.ls5f_c00299{letter-spacing:0.066061px;}
.ls72_c00299{letter-spacing:0.066126px;}
.ls60_c00299{letter-spacing:0.078608px;}
.ls44_c00299{letter-spacing:0.084582px;}
.ls7d_c00299{letter-spacing:0.102274px;}
.ls61_c00299{letter-spacing:0.157217px;}
.ls4a_c00299{letter-spacing:0.160073px;}
.ls47_c00299{letter-spacing:0.160673px;}
.ls1e_c00299{letter-spacing:0.165153px;}
.ls64_c00299{letter-spacing:0.191856px;}
.ls51_c00299{letter-spacing:0.196406px;}
.ls75_c00299{letter-spacing:0.203669px;}
.ls77_c00299{letter-spacing:0.204547px;}
.ls56_c00299{letter-spacing:0.239760px;}
.ls5c_c00299{letter-spacing:0.264245px;}
.ls7f_c00299{letter-spacing:0.360000px;}
.ls5_c00299{letter-spacing:1.169965px;}
.lsb_c00299{letter-spacing:34.200565px;}
.ls2d_c00299{letter-spacing:53.427269px;}
.ls18_c00299{letter-spacing:56.384947px;}
.lsf_c00299{letter-spacing:58.850678px;}
.ls6_c00299{letter-spacing:60.328917px;}
.lsa_c00299{letter-spacing:67.723711px;}
.ls9_c00299{letter-spacing:68.216857px;}
.ls42_c00299{letter-spacing:68.710004px;}
.ls25_c00299{letter-spacing:71.668281px;}
.ls17_c00299{letter-spacing:74.625959px;}
.ls26_c00299{letter-spacing:74.626559px;}
.ls7_c00299{letter-spacing:80.048768px;}
.ls8_c00299{letter-spacing:82.020753px;}
.ls2a_c00299{letter-spacing:86.950416px;}
.ls20_c00299{letter-spacing:86.951016px;}
.ls12_c00299{letter-spacing:87.443562px;}
.ls2b_c00299{letter-spacing:90.401240px;}
.ls3e_c00299{letter-spacing:90.401840px;}
.ls1c_c00299{letter-spacing:96.810341px;}
.ls11_c00299{letter-spacing:96.810941px;}
.ls1a_c00299{letter-spacing:105.191428px;}
.ls1d_c00299{letter-spacing:105.192028px;}
.ls16_c00299{letter-spacing:105.683974px;}
.ls27_c00299{letter-spacing:108.642251px;}
.ls40_c00299{letter-spacing:108.642851px;}
.lsc_c00299{letter-spacing:109.135398px;}
.ls14_c00299{letter-spacing:115.051353px;}
.ls46_c00299{letter-spacing:117.636563px;}
.ls30_c00299{letter-spacing:123.431840px;}
.ls33_c00299{letter-spacing:126.882663px;}
.lsd_c00299{letter-spacing:128.362702px;}
.ls32_c00299{letter-spacing:133.291765px;}
.lse_c00299{letter-spacing:144.137383px;}
.ls29_c00299{letter-spacing:188.506747px;}
.ls31_c00299{letter-spacing:197.380380px;}
.ls2c_c00299{letter-spacing:202.803189px;}
.ls21_c00299{letter-spacing:214.635699px;}
.ls24_c00299{letter-spacing:221.044201px;}
.ls28_c00299{letter-spacing:226.467010px;}
.ls35_c00299{letter-spacing:232.382965px;}
.ls38_c00299{letter-spacing:233.862404px;}
.ls3c_c00299{letter-spacing:235.834389px;}
.ls34_c00299{letter-spacing:248.651392px;}
.ls3d_c00299{letter-spacing:250.130831px;}
.ls3a_c00299{letter-spacing:254.074201px;}
.ls2f_c00299{letter-spacing:256.046786px;}
.ls1f_c00299{letter-spacing:256.539932px;}
.ls3f_c00299{letter-spacing:266.892404px;}
.ls10_c00299{letter-spacing:267.878096px;}
.ls2e_c00299{letter-spacing:272.315213px;}
.ls23_c00299{letter-spacing:281.681992px;}
.ls13_c00299{letter-spacing:286.119108px;}
.ls15_c00299{letter-spacing:291.541917px;}
.ls22_c00299{letter-spacing:296.965326px;}
.ls2_c00299{letter-spacing:322.729422px;}
.ls39_c00299{letter-spacing:323.586225px;}
.ls19_c00299{letter-spacing:421.198586px;}
.ls4_c00299{letter-spacing:440.237830px;}
.ls1_c00299{letter-spacing:460.382335px;}
.ls1b_c00299{letter-spacing:470.497613px;}
.ls41_c00299{letter-spacing:476.906114px;}
.ls37_c00299{letter-spacing:500.570535px;}
.ls36_c00299{letter-spacing:515.360123px;}
.ls4b_c00299{letter-spacing:520.122779px;}
.ls3b_c00299{letter-spacing:520.782932px;}
.ls0_c00299{letter-spacing:549.352996px;}
.ls3_c00299{letter-spacing:550.193100px;}
.ls45_c00299{letter-spacing:754.648833px;}
.ls48_c00299{letter-spacing:822.347369px;}
.ls43_c00299{letter-spacing:967.264030px;}
.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;}
}
.ws5_c00299{word-spacing:-12.471806px;}
.ws0_c00299{word-spacing:-12.275400px;}
.ws20_c00299{word-spacing:-11.193732px;}
.ws1e_c00299{word-spacing:-11.112618px;}
.ws21_c00299{word-spacing:-11.072061px;}
.ws1f_c00299{word-spacing:-10.747605px;}
.ws1a_c00299{word-spacing:-10.058136px;}
.wse_c00299{word-spacing:-9.983267px;}
.wsf_c00299{word-spacing:-9.826050px;}
.ws12_c00299{word-spacing:-9.784656px;}
.ws10_c00299{word-spacing:-9.747442px;}
.ws2_c00299{word-spacing:-9.691110px;}
.ws18_c00299{word-spacing:-9.631171px;}
.ws3_c00299{word-spacing:-9.613890px;}
.ws11_c00299{word-spacing:-9.554429px;}
.ws4_c00299{word-spacing:-9.498060px;}
.ws17_c00299{word-spacing:-9.477686px;}
.ws1_c00299{word-spacing:-9.459450px;}
.wsa_c00299{word-spacing:-9.446752px;}
.ws15_c00299{word-spacing:-9.439315px;}
.ws14_c00299{word-spacing:-9.400944px;}
.wsd_c00299{word-spacing:-9.248568px;}
.ws8_c00299{word-spacing:-9.215537px;}
.ws16_c00299{word-spacing:-9.209088px;}
.wsb_c00299{word-spacing:-9.182507px;}
.ws13_c00299{word-spacing:-9.132346px;}
.ws6_c00299{word-spacing:-9.050384px;}
.ws7_c00299{word-spacing:-9.017354px;}
.ws9_c00299{word-spacing:-8.885231px;}
.wsc_c00299{word-spacing:-8.554925px;}
.ws1b_c00299{word-spacing:-8.105183px;}
.ws22_c00299{word-spacing:-8.054046px;}
.ws1c_c00299{word-spacing:-8.002909px;}
.ws1d_c00299{word-spacing:-7.849499px;}
.ws56_c00299{word-spacing:-2.232000px;}
.ws2f_c00299{word-spacing:-1.198800px;}
.ws2c_c00299{word-spacing:-0.736524px;}
.ws4b_c00299{word-spacing:-0.536947px;}
.ws2b_c00299{word-spacing:-0.463320px;}
.ws36_c00299{word-spacing:-0.462428px;}
.ws27_c00299{word-spacing:-0.386100px;}
.ws41_c00299{word-spacing:-0.383712px;}
.ws2a_c00299{word-spacing:-0.294610px;}
.ws4d_c00299{word-spacing:-0.255684px;}
.ws3e_c00299{word-spacing:-0.191856px;}
.ws43_c00299{word-spacing:-0.182155px;}
.ws33_c00299{word-spacing:-0.165153px;}
.ws44_c00299{word-spacing:-0.162228px;}
.ws4f_c00299{word-spacing:-0.102274px;}
.ws3c_c00299{word-spacing:-0.078608px;}
.ws47_c00299{word-spacing:-0.066126px;}
.ws2e_c00299{word-spacing:-0.038610px;}
.ws42_c00299{word-spacing:-0.038371px;}
.ws49_c00299{word-spacing:-0.025568px;}
.ws23_c00299{word-spacing:0.000000px;}
.ws4a_c00299{word-spacing:0.025568px;}
.ws40_c00299{word-spacing:0.038371px;}
.ws26_c00299{word-spacing:0.038610px;}
.ws46_c00299{word-spacing:0.051137px;}
.ws52_c00299{word-spacing:0.066126px;}
.ws50_c00299{word-spacing:0.073620px;}
.ws2d_c00299{word-spacing:0.077220px;}
.ws28_c00299{word-spacing:0.098203px;}
.ws3f_c00299{word-spacing:0.115114px;}
.ws29_c00299{word-spacing:0.115830px;}
.ws48_c00299{word-spacing:0.127842px;}
.ws34_c00299{word-spacing:0.132122px;}
.ws4c_c00299{word-spacing:0.132252px;}
.ws45_c00299{word-spacing:0.153410px;}
.ws3d_c00299{word-spacing:0.157217px;}
.ws3b_c00299{word-spacing:0.176868px;}
.ws37_c00299{word-spacing:0.198184px;}
.ws51_c00299{word-spacing:0.202785px;}
.ws25_c00299{word-spacing:0.280339px;}
.ws4e_c00299{word-spacing:0.283899px;}
.ws31_c00299{word-spacing:0.327843px;}
.ws32_c00299{word-spacing:0.330306px;}
.ws53_c00299{word-spacing:0.365013px;}
.ws54_c00299{word-spacing:0.503280px;}
.ws35_c00299{word-spacing:0.627581px;}
.ws38_c00299{word-spacing:0.825765px;}
.ws55_c00299{word-spacing:1.006560px;}
.ws39_c00299{word-spacing:37.463891px;}
.ws24_c00299{word-spacing:57.490290px;}
.ws3a_c00299{word-spacing:57.777174px;}
.ws30_c00299{word-spacing:66.536959px;}
.ws19_c00299{word-spacing:87.943992px;}
._37_c00299{margin-left:-13.739544px;}
._35_c00299{margin-left:-12.243257px;}
._34_c00299{margin-left:-6.408432px;}
._7_c00299{margin-left:-5.101677px;}
._5_c00299{margin-left:-3.764232px;}
._6_c00299{margin-left:-2.277720px;}
._3_c00299{margin-left:-1.108107px;}
._2_c00299{width:1.037255px;}
._38_c00299{width:2.103408px;}
._36_c00299{width:3.103560px;}
._2f_c00299{width:7.891909px;}
._2a_c00299{width:18.387002px;}
._2e_c00299{width:22.184746px;}
._1_c00299{width:30.031678px;}
._a_c00299{width:35.278682px;}
._24_c00299{width:42.126787px;}
._23_c00299{width:44.061090px;}
._11_c00299{width:45.620967px;}
._2b_c00299{width:48.990153px;}
._b_c00299{width:52.441577px;}
._18_c00299{width:58.855424px;}
._19_c00299{width:61.006254px;}
._13_c00299{width:63.966926px;}
._22_c00299{width:70.625831px;}
._17_c00299{width:76.777608px;}
._1a_c00299{width:80.077156px;}
._0_c00299{width:85.623759px;}
._27_c00299{width:86.896975px;}
._30_c00299{width:90.792251px;}
._28_c00299{width:92.596301px;}
._12_c00299{width:94.894514px;}
._1b_c00299{width:96.018754px;}
._2c_c00299{width:98.535870px;}
._21_c00299{width:99.768619px;}
._8_c00299{width:101.100598px;}
._16_c00299{width:104.731877px;}
._10_c00299{width:107.749860px;}
._2d_c00299{width:108.815921px;}
._f_c00299{width:113.828004px;}
._26_c00299{width:116.555667px;}
._25_c00299{width:122.640253px;}
._32_c00299{width:126.558395px;}
._4_c00299{width:128.208366px;}
._29_c00299{width:130.826634px;}
._1d_c00299{width:135.756896px;}
._1f_c00299{width:138.714574px;}
._c_c00299{width:141.672252px;}
._33_c00299{width:150.534143px;}
._d_c00299{width:169.280643px;}
._20_c00299{width:172.730866px;}
._e_c00299{width:183.576484px;}
._1e_c00299{width:197.380980px;}
._15_c00299{width:267.819486px;}
._14_c00299{width:286.006041px;}
._9_c00299{width:648.562488px;}
._1c_c00299{width:776.644846px;}
._31_c00299{width:1249.868634px;}
._39_c00299{width:1654.431726px;}
.fc3_c00299{color:transparent;}
.fc1_c00299{color:rgb(47,85,151);}
.fc2_c00299{color:rgb(137,137,137);}
.fc0_c00299{color:rgb(0,0,0);}
.fs1b_c00299{font-size:18.515400px;}
.fsd_c00299{font-size:20.706000px;}
.fs19_c00299{font-size:25.568400px;}
.fs14_c00299{font-size:26.617800px;}
.fse_c00299{font-size:32.622600px;}
.fsc_c00299{font-size:33.030600px;}
.fs1a_c00299{font-size:33.063000px;}
.fs12_c00299{font-size:34.617600px;}
.fs0_c00299{font-size:34.832400px;}
.fs17_c00299{font-size:36.589800px;}
.fs15_c00299{font-size:37.521000px;}
.fs13_c00299{font-size:38.371200px;}
.fs1_c00299{font-size:38.610000px;}
.fsf_c00299{font-size:39.304200px;}
.fs18_c00299{font-size:40.557000px;}
.fs8_c00299{font-size:40.918800px;}
.fs9_c00299{font-size:45.355800px;}
.fs16_c00299{font-size:45.538800px;}
.fs10_c00299{font-size:45.985800px;}
.fs3_c00299{font-size:49.101600px;}
.fs6_c00299{font-size:50.780400px;}
.fs5_c00299{font-size:55.816200px;}
.fsa_c00299{font-size:57.680400px;}
.fs11_c00299{font-size:58.956000px;}
.fsb_c00299{font-size:65.568600px;}
.fs4_c00299{font-size:70.084800px;}
.fs1e_c00299{font-size:72.000000px;}
.fs1c_c00299{font-size:73.620000px;}
.fs2_c00299{font-size:97.783200px;}
.fs1d_c00299{font-size:167.760000px;}
.fs7_c00299{font-size:239.760000px;}
.y65_c00299{bottom:-141.995550px;}
.y64_c00299{bottom:-127.698600px;}
.y63_c00299{bottom:-113.648250px;}
.y62_c00299{bottom:-100.707000px;}
.y61_c00299{bottom:-87.642600px;}
.y60_c00299{bottom:-74.701500px;}
.y5f_c00299{bottom:-61.637100px;}
.y5e_c00299{bottom:-48.695850px;}
.y5d_c00299{bottom:-35.754750px;}
.y5c_c00299{bottom:-22.690350px;}
.y5b_c00299{bottom:-9.749100px;}
.ya2_c00299{bottom:-1.984200px;}
.y0_c00299{bottom:0.000000px;}
.y1c_c00299{bottom:0.876450px;}
.ya8_c00299{bottom:2.424600px;}
.y77_c00299{bottom:2.502000px;}
.y8c_c00299{bottom:2.502450px;}
.y85_c00299{bottom:2.502750px;}
.y89_c00299{bottom:2.502900px;}
.y7d_c00299{bottom:2.503200px;}
.y7a_c00299{bottom:2.605650px;}
.y82_c00299{bottom:2.606850px;}
.y97_c00299{bottom:2.754750px;}
.y5a_c00299{bottom:3.315300px;}
.ya5_c00299{bottom:3.967050px;}
.ya1_c00299{bottom:9.036750px;}
.y9b_c00299{bottom:10.469100px;}
.y96_c00299{bottom:10.910250px;}
.y7f_c00299{bottom:13.241550px;}
.y8b_c00299{bottom:13.242300px;}
.y84_c00299{bottom:13.242600px;}
.y88_c00299{bottom:13.242750px;}
.y87_c00299{bottom:13.242900px;}
.y7c_c00299{bottom:13.243050px;}
.y79_c00299{bottom:13.345500px;}
.y1b_c00299{bottom:13.991100px;}
.ya4_c00299{bottom:14.106300px;}
.ya7_c00299{bottom:14.327100px;}
.y59_c00299{bottom:15.763350px;}
.y92_c00299{bottom:16.916850px;}
.y73_c00299{bottom:17.151600px;}
.ya0_c00299{bottom:20.057700px;}
.y9a_c00299{bottom:20.608350px;}
.y8f_c00299{bottom:21.165150px;}
.y58_c00299{bottom:25.993050px;}
.yb3_c00299{bottom:27.295500px;}
.y1a_c00299{bottom:27.315600px;}
.y72_c00299{bottom:28.549800px;}
.y99_c00299{bottom:30.747750px;}
.y9f_c00299{bottom:31.188900px;}
.yb6_c00299{bottom:31.567500px;}
.y91_c00299{bottom:31.588650px;}
.y57_c00299{bottom:36.346050px;}
.yb2_c00299{bottom:39.198150px;}
.y19_c00299{bottom:39.591000px;}
.y71_c00299{bottom:40.832400px;}
.y9e_c00299{bottom:43.091550px;}
.y56_c00299{bottom:46.575750px;}
.yb1_c00299{bottom:51.100800px;}
.y18_c00299{bottom:52.705800px;}
.y9d_c00299{bottom:55.104300px;}
.y70_c00299{bottom:56.455800px;}
.y55_c00299{bottom:56.805450px;}
.yb0_c00299{bottom:62.672850px;}
.y17_c00299{bottom:65.820450px;}
.y1e_c00299{bottom:66.240000px;}
.y54_c00299{bottom:67.158300px;}
.y93_c00299{bottom:69.300000px;}
.y6f_c00299{bottom:71.980950px;}
.yaf_c00299{bottom:73.142850px;}
.y1_c00299{bottom:73.800000px;}
.y53_c00299{bottom:77.388000px;}
.y16_c00299{bottom:78.935100px;}
.yb5_c00299{bottom:82.045320px;}
.yae_c00299{bottom:85.155600px;}
.y6e_c00299{bottom:87.505950px;}
.y52_c00299{bottom:87.617700px;}
.y15_c00299{bottom:92.994150px;}
.yad_c00299{bottom:97.058250px;}
.y51_c00299{bottom:97.970550px;}
.y6d_c00299{bottom:102.245100px;}
.y14_c00299{bottom:106.843200px;}
.y50_c00299{bottom:108.200250px;}
.yac_c00299{bottom:108.960900px;}
.y6c_c00299{bottom:113.741550px;}
.y4f_c00299{bottom:118.429950px;}
.y13_c00299{bottom:119.118600px;}
.yab_c00299{bottom:120.973800px;}
.y6b_c00299{bottom:125.237850px;}
.yb4_c00299{bottom:127.424400px;}
.y4e_c00299{bottom:128.782950px;}
.y12_c00299{bottom:131.289150px;}
.yaa_c00299{bottom:132.876450px;}
.y6a_c00299{bottom:138.109950px;}
.y4d_c00299{bottom:139.012650px;}
.y11_c00299{bottom:143.564550px;}
.ya9_c00299{bottom:144.779100px;}
.y4c_c00299{bottom:149.242350px;}
.y67_c00299{bottom:152.750700px;}
.y10_c00299{bottom:156.784050px;}
.y69_c00299{bottom:156.975900px;}
.y4b_c00299{bottom:159.595200px;}
.y4a_c00299{bottom:169.824900px;}
.yf_c00299{bottom:170.318550px;}
.y68_c00299{bottom:174.367950px;}
.y49_c00299{bottom:180.054600px;}
.ye_c00299{bottom:183.433200px;}
.y48_c00299{bottom:190.407600px;}
.yd_c00299{bottom:197.282400px;}
.y47_c00299{bottom:200.637300px;}
.yc_c00299{bottom:210.502050px;}
.y46_c00299{bottom:210.866850px;}
.y45_c00299{bottom:221.219850px;}
.yb_c00299{bottom:223.931400px;}
.y75_c00299{bottom:231.292950px;}
.y44_c00299{bottom:231.449550px;}
.ya_c00299{bottom:237.151050px;}
.y43_c00299{bottom:241.679250px;}
.ya6_c00299{bottom:250.779000px;}
.y9_c00299{bottom:251.000250px;}
.y42_c00299{bottom:252.032100px;}
.y41_c00299{bottom:262.261800px;}
.y8_c00299{bottom:263.170650px;}
.y40_c00299{bottom:272.491500px;}
.ya3_c00299{bottom:274.474500px;}
.y7_c00299{bottom:276.705150px;}
.y3f_c00299{bottom:282.844500px;}
.y6_c00299{bottom:292.757550px;}
.y3e_c00299{bottom:293.074050px;}
.y3d_c00299{bottom:293.074200px;}
.y3c_c00299{bottom:303.303750px;}
.y9c_c00299{bottom:311.284500px;}
.y5_c00299{bottom:312.901650px;}
.y3b_c00299{bottom:313.656750px;}
.y3a_c00299{bottom:323.886450px;}
.y94_c00299{bottom:326.514900px;}
.y39_c00299{bottom:334.116150px;}
.y4_c00299{bottom:334.619700px;}
.y2_c00299{bottom:336.508200px;}
.y38_c00299{bottom:344.469000px;}
.y37_c00299{bottom:354.698700px;}
.y3_c00299{bottom:360.114750px;}
.y36_c00299{bottom:364.928400px;}
.y35_c00299{bottom:375.281250px;}
.y34_c00299{bottom:385.511100px;}
.y98_c00299{bottom:386.007000px;}
.y33_c00299{bottom:395.740650px;}
.y95_c00299{bottom:403.750500px;}
.y32_c00299{bottom:406.093650px;}
.y31_c00299{bottom:416.323350px;}
.y30_c00299{bottom:426.553050px;}
.y2f_c00299{bottom:436.905900px;}
.y74_c00299{bottom:445.860000px;}
.y2e_c00299{bottom:447.135600px;}
.y2d_c00299{bottom:457.365300px;}
.y8d_c00299{bottom:463.503000px;}
.y2c_c00299{bottom:467.718150px;}
.y8a_c00299{bottom:474.660000px;}
.y2b_c00299{bottom:477.947850px;}
.y2a_c00299{bottom:488.177550px;}
.y86_c00299{bottom:496.660500px;}
.y29_c00299{bottom:498.530550px;}
.y66_c00299{bottom:504.000000px;}
.y28_c00299{bottom:508.760250px;}
.y83_c00299{bottom:518.557500px;}
.y27_c00299{bottom:518.989950px;}
.y26_c00299{bottom:529.342800px;}
.y25_c00299{bottom:539.572500px;}
.y81_c00299{bottom:540.454500px;}
.y24_c00299{bottom:549.802200px;}
.y80_c00299{bottom:551.715000px;}
.y23_c00299{bottom:560.155200px;}
.y7b_c00299{bottom:562.872000px;}
.y7e_c00299{bottom:562.873500px;}
.y22_c00299{bottom:573.096300px;}
.y78_c00299{bottom:584.770500px;}
.y1f_c00299{bottom:590.597700px;}
.y21_c00299{bottom:596.636850px;}
.y76_c00299{bottom:606.771000px;}
.y20_c00299{bottom:618.451950px;}
.y90_c00299{bottom:629.100000px;}
.y8e_c00299{bottom:629.181000px;}
.y1d_c00299{bottom:712.968300px;}
.h20_c00299{height:10.738500px;}
.h1e_c00299{height:10.740000px;}
.h25_c00299{height:10.843500px;}
.h34_c00299{height:14.067364px;}
.h15_c00299{height:14.387030px;}
.h2f_c00299{height:18.314865px;}
.h27_c00299{height:18.494692px;}
.h32_c00299{height:19.550837px;}
.h2d_c00299{height:19.728000px;}
.h22_c00299{height:21.480000px;}
.h21_c00299{height:21.583500px;}
.h37_c00299{height:22.263000px;}
.h17_c00299{height:22.666973px;}
.h38_c00299{height:23.916000px;}
.h1d_c00299{height:24.053147px;}
.h13_c00299{height:24.063308px;}
.h14_c00299{height:24.063908px;}
.h33_c00299{height:24.086912px;}
.h2_c00299{height:24.202395px;}
.h2c_c00299{height:25.423479px;}
.h23_c00299{height:25.574555px;}
.h8_c00299{height:25.733716px;}
.h1f_c00299{height:26.717447px;}
.h24_c00299{height:26.718047px;}
.h29_c00299{height:26.876615px;}
.h3_c00299{height:26.883721px;}
.hb_c00299{height:26.884321px;}
.h1b_c00299{height:26.906488px;}
.h18_c00299{height:27.309510px;}
.h2e_c00299{height:28.160183px;}
.hf_c00299{height:28.431373px;}
.h31_c00299{height:29.546408px;}
.h39_c00299{height:29.547008px;}
.h19_c00299{height:30.649715px;}
.h26_c00299{height:30.879000px;}
.h28_c00299{height:30.960000px;}
.h10_c00299{height:31.514308px;}
.h2a_c00299{height:32.619834px;}
.h9_c00299{height:34.116981px;}
.hc_c00299{height:34.188907px;}
.h5_c00299{height:35.171898px;}
.ha_c00299{height:35.357837px;}
.h30_c00299{height:38.793000px;}
.h7_c00299{height:38.864210px;}
.h1a_c00299{height:40.359527px;}
.h11_c00299{height:41.316966px;}
.h12_c00299{height:46.967352px;}
.h6_c00299{height:48.696616px;}
.h36_c00299{height:51.260801px;}
.h3c_c00299{height:51.679688px;}
.h35_c00299{height:64.693500px;}
.h4_c00299{height:70.042946px;}
.h3b_c00299{height:120.413672px;}
.h16_c00299{height:153.001500px;}
.h3a_c00299{height:154.368000px;}
.hd_c00299{height:163.898438px;}
.h1c_c00299{height:182.700000px;}
.h1_c00299{height:308.520000px;}
.h2b_c00299{height:355.501500px;}
.he_c00299{height:589.140000px;}
.h0_c00299{height:810.000000px;}
.w7_c00299{width:-35.337000px;}
.wd_c00299{width:-35.335500px;}
.w11_c00299{width:-35.332500px;}
.w16_c00299{width:-35.331000px;}
.w19_c00299{width:-35.329500px;}
.w1d_c00299{width:-35.328000px;}
.w21_c00299{width:-35.325000px;}
.w25_c00299{width:-35.323500px;}
.w29_c00299{width:-35.322000px;}
.w8_c00299{width:-4.473000px;}
.we_c00299{width:-4.471500px;}
.w12_c00299{width:-4.470000px;}
.w17_c00299{width:-4.468500px;}
.w1a_c00299{width:-4.465500px;}
.w1e_c00299{width:-4.464000px;}
.w22_c00299{width:-4.462500px;}
.w26_c00299{width:-4.461000px;}
.w2a_c00299{width:-4.459500px;}
.wa_c00299{width:30.652500px;}
.w14_c00299{width:30.654000px;}
.w9_c00299{width:32.644500px;}
.wf_c00299{width:32.646000px;}
.w13_c00299{width:32.649000px;}
.w1b_c00299{width:32.650500px;}
.w1f_c00299{width:32.653500px;}
.w23_c00299{width:32.655000px;}
.w27_c00299{width:32.656500px;}
.w2b_c00299{width:32.659500px;}
.w33_c00299{width:112.890000px;}
.w30_c00299{width:118.732500px;}
.w31_c00299{width:199.540500px;}
.wb_c00299{width:202.689000px;}
.w1c_c00299{width:202.690500px;}
.w2c_c00299{width:204.886500px;}
.w28_c00299{width:204.888000px;}
.w24_c00299{width:204.891000px;}
.w20_c00299{width:204.892500px;}
.w18_c00299{width:204.895500px;}
.w15_c00299{width:204.897000px;}
.w10_c00299{width:204.900000px;}
.wc_c00299{width:204.901500px;}
.w2e_c00299{width:246.628500px;}
.w2d_c00299{width:377.463000px;}
.w32_c00299{width:394.672500px;}
.w2_c00299{width:400.311000px;}
.w1_c00299{width:400.498500px;}
.w5_c00299{width:425.745000px;}
.w3_c00299{width:440.820000px;}
.w4_c00299{width:456.577500px;}
.w6_c00299{width:472.140000px;}
.w35_c00299{width:475.921500px;}
.w34_c00299{width:479.229000px;}
.w2f_c00299{width:517.482000px;}
.w0_c00299{width:1440.000000px;}
.x1e_c00299{left:-109.050900px;}
.x28_c00299{left:-71.718450px;}
.x25_c00299{left:-56.186850px;}
.x26_c00299{left:-52.850400px;}
.xa_c00299{left:-51.148800px;}
.x1f_c00299{left:-50.037300px;}
.x2_c00299{left:-44.292000px;}
.x29_c00299{left:-41.999700px;}
.x27_c00299{left:-17.504850px;}
.x20_c00299{left:-10.938300px;}
.x17_c00299{left:-4.105950px;}
.x21_c00299{left:-1.033350px;}
.x0_c00299{left:0.000000px;}
.xe_c00299{left:3.579150px;}
.x4_c00299{left:8.812500px;}
.x7_c00299{left:11.644950px;}
.x2f_c00299{left:12.788400px;}
.x35_c00299{left:15.324900px;}
.x9_c00299{left:19.260000px;}
.x15_c00299{left:23.794050px;}
.x30_c00299{left:29.876100px;}
.x1c_c00299{left:39.552600px;}
.x2c_c00299{left:52.832400px;}
.x1b_c00299{left:90.390750px;}
.x8_c00299{left:109.800000px;}
.x33_c00299{left:110.904300px;}
.xc_c00299{left:128.442750px;}
.x6_c00299{left:166.275750px;}
.x32_c00299{left:177.381150px;}
.xd_c00299{left:183.910350px;}
.x1a_c00299{left:236.918550px;}
.x5_c00299{left:249.570750px;}
.x19_c00299{left:352.432800px;}
.x3_c00299{left:374.828100px;}
.xf_c00299{left:426.735000px;}
.xb_c00299{left:432.898050px;}
.x13_c00299{left:454.591950px;}
.x14_c00299{left:462.234150px;}
.x16_c00299{left:464.940000px;}
.x2d_c00299{left:469.620000px;}
.x10_c00299{left:480.353550px;}
.x11_c00299{left:485.530500px;}
.x18_c00299{left:492.435000px;}
.x34_c00299{left:502.030500px;}
.x2e_c00299{left:504.787500px;}
.x36_c00299{left:506.110500px;}
.x12_c00299{left:510.429300px;}
.x37_c00299{left:536.474850px;}
.x31_c00299{left:770.695500px;}
.x1d_c00299{left:939.060000px;}
.x22_c00299{left:972.121500px;}
.x2a_c00299{left:973.620000px;}
.x23_c00299{left:1003.191000px;}
.x1_c00299{left:1010.700000px;}
.x2b_c00299{left:1101.558000px;}
.x24_c00299{left:1206.298500px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls5d_c00299{letter-spacing:-0.557850pt;}
.ls7c_c00299{letter-spacing:-0.468659pt;}
.ls67_c00299{letter-spacing:-0.409293pt;}
.ls6b_c00299{letter-spacing:-0.341077pt;}
.ls7e_c00299{letter-spacing:-0.298240pt;}
.ls5b_c00299{letter-spacing:-0.264245pt;}
.ls7b_c00299{letter-spacing:-0.180253pt;}
.ls5e_c00299{letter-spacing:-0.176163pt;}
.ls4f_c00299{letter-spacing:-0.174583pt;}
.ls52_c00299{letter-spacing:-0.171600pt;}
.ls68_c00299{letter-spacing:-0.170539pt;}
.ls6c_c00299{letter-spacing:-0.166760pt;}
.ls73_c00299{letter-spacing:-0.159092pt;}
.ls59_c00299{letter-spacing:-0.146803pt;}
.ls7a_c00299{letter-spacing:-0.144203pt;}
.ls62_c00299{letter-spacing:-0.139748pt;}
.ls54_c00299{letter-spacing:-0.137280pt;}
.ls6a_c00299{letter-spacing:-0.136431pt;}
.ls70_c00299{letter-spacing:-0.136365pt;}
.ls4d_c00299{letter-spacing:-0.124595pt;}
.ls58_c00299{letter-spacing:-0.117442pt;}
.ls50_c00299{letter-spacing:-0.102960pt;}
.ls66_c00299{letter-spacing:-0.102323pt;}
.ls71_c00299{letter-spacing:-0.090910pt;}
.ls6e_c00299{letter-spacing:-0.072101pt;}
.ls63_c00299{letter-spacing:-0.069874pt;}
.ls55_c00299{letter-spacing:-0.068640pt;}
.ls6f_c00299{letter-spacing:-0.068182pt;}
.ls79_c00299{letter-spacing:-0.065440pt;}
.ls76_c00299{letter-spacing:-0.058779pt;}
.ls57_c00299{letter-spacing:-0.058283pt;}
.ls4e_c00299{letter-spacing:-0.034320pt;}
.ls65_c00299{letter-spacing:-0.034108pt;}
.ls74_c00299{letter-spacing:-0.022727pt;}
.ls4c_c00299{letter-spacing:0.000000pt;}
.ls5a_c00299{letter-spacing:0.029361pt;}
.ls69_c00299{letter-spacing:0.034108pt;}
.ls53_c00299{letter-spacing:0.034320pt;}
.ls6d_c00299{letter-spacing:0.040479pt;}
.ls78_c00299{letter-spacing:0.045455pt;}
.ls49_c00299{letter-spacing:0.058693pt;}
.ls5f_c00299{letter-spacing:0.058721pt;}
.ls72_c00299{letter-spacing:0.058779pt;}
.ls60_c00299{letter-spacing:0.069874pt;}
.ls44_c00299{letter-spacing:0.075184pt;}
.ls7d_c00299{letter-spacing:0.090910pt;}
.ls61_c00299{letter-spacing:0.139748pt;}
.ls4a_c00299{letter-spacing:0.142288pt;}
.ls47_c00299{letter-spacing:0.142821pt;}
.ls1e_c00299{letter-spacing:0.146803pt;}
.ls64_c00299{letter-spacing:0.170539pt;}
.ls51_c00299{letter-spacing:0.174583pt;}
.ls75_c00299{letter-spacing:0.181039pt;}
.ls77_c00299{letter-spacing:0.181820pt;}
.ls56_c00299{letter-spacing:0.213120pt;}
.ls5c_c00299{letter-spacing:0.234884pt;}
.ls7f_c00299{letter-spacing:0.320000pt;}
.ls5_c00299{letter-spacing:1.039969pt;}
.lsb_c00299{letter-spacing:30.400502pt;}
.ls2d_c00299{letter-spacing:47.490906pt;}
.ls18_c00299{letter-spacing:50.119953pt;}
.lsf_c00299{letter-spacing:52.311714pt;}
.ls6_c00299{letter-spacing:53.625704pt;}
.lsa_c00299{letter-spacing:60.198854pt;}
.ls9_c00299{letter-spacing:60.637207pt;}
.ls42_c00299{letter-spacing:61.075559pt;}
.ls25_c00299{letter-spacing:63.705139pt;}
.ls17_c00299{letter-spacing:66.334186pt;}
.ls26_c00299{letter-spacing:66.334719pt;}
.ls7_c00299{letter-spacing:71.154460pt;}
.ls8_c00299{letter-spacing:72.907336pt;}
.ls2a_c00299{letter-spacing:77.289258pt;}
.ls20_c00299{letter-spacing:77.289792pt;}
.ls12_c00299{letter-spacing:77.727611pt;}
.ls2b_c00299{letter-spacing:80.356657pt;}
.ls3e_c00299{letter-spacing:80.357191pt;}
.ls1c_c00299{letter-spacing:86.053636pt;}
.ls11_c00299{letter-spacing:86.054170pt;}
.ls1a_c00299{letter-spacing:93.503491pt;}
.ls1d_c00299{letter-spacing:93.504024pt;}
.ls16_c00299{letter-spacing:93.941310pt;}
.ls27_c00299{letter-spacing:96.570890pt;}
.ls40_c00299{letter-spacing:96.571423pt;}
.lsc_c00299{letter-spacing:97.009242pt;}
.ls14_c00299{letter-spacing:102.267869pt;}
.ls46_c00299{letter-spacing:104.565834pt;}
.ls30_c00299{letter-spacing:109.717191pt;}
.ls33_c00299{letter-spacing:112.784590pt;}
.lsd_c00299{letter-spacing:114.100180pt;}
.ls32_c00299{letter-spacing:118.481569pt;}
.lse_c00299{letter-spacing:128.122118pt;}
.ls29_c00299{letter-spacing:167.561553pt;}
.ls31_c00299{letter-spacing:175.449227pt;}
.ls2c_c00299{letter-spacing:180.269501pt;}
.ls21_c00299{letter-spacing:190.787288pt;}
.ls24_c00299{letter-spacing:196.483734pt;}
.ls28_c00299{letter-spacing:201.304009pt;}
.ls35_c00299{letter-spacing:206.562636pt;}
.ls38_c00299{letter-spacing:207.877692pt;}
.ls3c_c00299{letter-spacing:209.630568pt;}
.ls34_c00299{letter-spacing:221.023459pt;}
.ls3d_c00299{letter-spacing:222.338516pt;}
.ls3a_c00299{letter-spacing:225.843734pt;}
.ls2f_c00299{letter-spacing:227.597143pt;}
.ls1f_c00299{letter-spacing:228.035495pt;}
.ls3f_c00299{letter-spacing:237.237692pt;}
.ls10_c00299{letter-spacing:238.113863pt;}
.ls2e_c00299{letter-spacing:242.057967pt;}
.ls23_c00299{letter-spacing:250.383993pt;}
.ls13_c00299{letter-spacing:254.328096pt;}
.ls15_c00299{letter-spacing:259.148371pt;}
.ls22_c00299{letter-spacing:263.969179pt;}
.ls2_c00299{letter-spacing:286.870597pt;}
.ls39_c00299{letter-spacing:287.632200pt;}
.ls19_c00299{letter-spacing:374.398743pt;}
.ls4_c00299{letter-spacing:391.322516pt;}
.ls1_c00299{letter-spacing:409.228742pt;}
.ls1b_c00299{letter-spacing:418.220100pt;}
.ls41_c00299{letter-spacing:423.916546pt;}
.ls37_c00299{letter-spacing:444.951587pt;}
.ls36_c00299{letter-spacing:458.097887pt;}
.ls4b_c00299{letter-spacing:462.331359pt;}
.ls3b_c00299{letter-spacing:462.918162pt;}
.ls0_c00299{letter-spacing:488.313774pt;}
.ls3_c00299{letter-spacing:489.060533pt;}
.ls45_c00299{letter-spacing:670.798963pt;}
.ls48_c00299{letter-spacing:730.975439pt;}
.ls43_c00299{letter-spacing:859.790249pt;}
.ws5_c00299{word-spacing:-11.086050pt;}
.ws0_c00299{word-spacing:-10.911467pt;}
.ws20_c00299{word-spacing:-9.949984pt;}
.ws1e_c00299{word-spacing:-9.877883pt;}
.ws21_c00299{word-spacing:-9.841832pt;}
.ws1f_c00299{word-spacing:-9.553427pt;}
.ws1a_c00299{word-spacing:-8.940565pt;}
.wse_c00299{word-spacing:-8.874015pt;}
.wsf_c00299{word-spacing:-8.734267pt;}
.ws12_c00299{word-spacing:-8.697472pt;}
.ws10_c00299{word-spacing:-8.664393pt;}
.ws2_c00299{word-spacing:-8.614320pt;}
.ws18_c00299{word-spacing:-8.561041pt;}
.ws3_c00299{word-spacing:-8.545680pt;}
.ws11_c00299{word-spacing:-8.492826pt;}
.ws4_c00299{word-spacing:-8.442720pt;}
.ws17_c00299{word-spacing:-8.424610pt;}
.ws1_c00299{word-spacing:-8.408400pt;}
.wsa_c00299{word-spacing:-8.397113pt;}
.ws15_c00299{word-spacing:-8.390502pt;}
.ws14_c00299{word-spacing:-8.356395pt;}
.wsd_c00299{word-spacing:-8.220949pt;}
.ws8_c00299{word-spacing:-8.191589pt;}
.ws16_c00299{word-spacing:-8.185856pt;}
.wsb_c00299{word-spacing:-8.162228pt;}
.ws13_c00299{word-spacing:-8.117641pt;}
.ws6_c00299{word-spacing:-8.044786pt;}
.ws7_c00299{word-spacing:-8.015426pt;}
.ws9_c00299{word-spacing:-7.897983pt;}
.wsc_c00299{word-spacing:-7.604378pt;}
.ws1b_c00299{word-spacing:-7.204607pt;}
.ws22_c00299{word-spacing:-7.159152pt;}
.ws1c_c00299{word-spacing:-7.113697pt;}
.ws1d_c00299{word-spacing:-6.977332pt;}
.ws56_c00299{word-spacing:-1.984000pt;}
.ws2f_c00299{word-spacing:-1.065600pt;}
.ws2c_c00299{word-spacing:-0.654688pt;}
.ws4b_c00299{word-spacing:-0.477286pt;}
.ws2b_c00299{word-spacing:-0.411840pt;}
.ws36_c00299{word-spacing:-0.411047pt;}
.ws27_c00299{word-spacing:-0.343200pt;}
.ws41_c00299{word-spacing:-0.341077pt;}
.ws2a_c00299{word-spacing:-0.261875pt;}
.ws4d_c00299{word-spacing:-0.227275pt;}
.ws3e_c00299{word-spacing:-0.170539pt;}
.ws43_c00299{word-spacing:-0.161916pt;}
.ws33_c00299{word-spacing:-0.146803pt;}
.ws44_c00299{word-spacing:-0.144203pt;}
.ws4f_c00299{word-spacing:-0.090910pt;}
.ws3c_c00299{word-spacing:-0.069874pt;}
.ws47_c00299{word-spacing:-0.058779pt;}
.ws2e_c00299{word-spacing:-0.034320pt;}
.ws42_c00299{word-spacing:-0.034108pt;}
.ws49_c00299{word-spacing:-0.022727pt;}
.ws23_c00299{word-spacing:0.000000pt;}
.ws4a_c00299{word-spacing:0.022727pt;}
.ws40_c00299{word-spacing:0.034108pt;}
.ws26_c00299{word-spacing:0.034320pt;}
.ws46_c00299{word-spacing:0.045455pt;}
.ws52_c00299{word-spacing:0.058779pt;}
.ws50_c00299{word-spacing:0.065440pt;}
.ws2d_c00299{word-spacing:0.068640pt;}
.ws28_c00299{word-spacing:0.087292pt;}
.ws3f_c00299{word-spacing:0.102323pt;}
.ws29_c00299{word-spacing:0.102960pt;}
.ws48_c00299{word-spacing:0.113637pt;}
.ws34_c00299{word-spacing:0.117442pt;}
.ws4c_c00299{word-spacing:0.117557pt;}
.ws45_c00299{word-spacing:0.136365pt;}
.ws3d_c00299{word-spacing:0.139748pt;}
.ws3b_c00299{word-spacing:0.157216pt;}
.ws37_c00299{word-spacing:0.176163pt;}
.ws51_c00299{word-spacing:0.180253pt;}
.ws25_c00299{word-spacing:0.249190pt;}
.ws4e_c00299{word-spacing:0.252355pt;}
.ws31_c00299{word-spacing:0.291416pt;}
.ws32_c00299{word-spacing:0.293605pt;}
.ws53_c00299{word-spacing:0.324456pt;}
.ws54_c00299{word-spacing:0.447360pt;}
.ws35_c00299{word-spacing:0.557850pt;}
.ws38_c00299{word-spacing:0.734013pt;}
.ws55_c00299{word-spacing:0.894720pt;}
.ws39_c00299{word-spacing:33.301236pt;}
.ws24_c00299{word-spacing:51.102480pt;}
.ws3a_c00299{word-spacing:51.357488pt;}
.ws30_c00299{word-spacing:59.143963pt;}
.ws19_c00299{word-spacing:78.172437pt;}
._37_c00299{margin-left:-12.212928pt;}
._35_c00299{margin-left:-10.882895pt;}
._34_c00299{margin-left:-5.696384pt;}
._7_c00299{margin-left:-4.534824pt;}
._5_c00299{margin-left:-3.345984pt;}
._6_c00299{margin-left:-2.024640pt;}
._3_c00299{margin-left:-0.984984pt;}
._2_c00299{width:0.922004pt;}
._38_c00299{width:1.869696pt;}
._36_c00299{width:2.758720pt;}
._2f_c00299{width:7.015030pt;}
._2a_c00299{width:16.344002pt;}
._2e_c00299{width:19.719774pt;}
._1_c00299{width:26.694825pt;}
._a_c00299{width:31.358829pt;}
._24_c00299{width:37.446033pt;}
._23_c00299{width:39.165414pt;}
._11_c00299{width:40.551971pt;}
._2b_c00299{width:43.546803pt;}
._b_c00299{width:46.614735pt;}
._18_c00299{width:52.315932pt;}
._19_c00299{width:54.227781pt;}
._13_c00299{width:56.859490pt;}
._22_c00299{width:62.778516pt;}
._17_c00299{width:68.246763pt;}
._1a_c00299{width:71.179694pt;}
._0_c00299{width:76.110008pt;}
._27_c00299{width:77.241756pt;}
._30_c00299{width:80.704224pt;}
._28_c00299{width:82.307823pt;}
._12_c00299{width:84.350679pt;}
._1b_c00299{width:85.350004pt;}
._2c_c00299{width:87.587440pt;}
._21_c00299{width:88.683217pt;}
._8_c00299{width:89.867198pt;}
._16_c00299{width:93.095002pt;}
._10_c00299{width:95.777653pt;}
._2d_c00299{width:96.725263pt;}
._f_c00299{width:101.180448pt;}
._26_c00299{width:103.605037pt;}
._25_c00299{width:109.013558pt;}
._32_c00299{width:112.496351pt;}
._4_c00299{width:113.962992pt;}
._29_c00299{width:116.290341pt;}
._1d_c00299{width:120.672797pt;}
._1f_c00299{width:123.301843pt;}
._c_c00299{width:125.930890pt;}
._33_c00299{width:133.808127pt;}
._d_c00299{width:150.471682pt;}
._20_c00299{width:153.538548pt;}
._e_c00299{width:163.179097pt;}
._1e_c00299{width:175.449760pt;}
._15_c00299{width:238.061766pt;}
._14_c00299{width:254.227592pt;}
._9_c00299{width:576.499989pt;}
._1c_c00299{width:690.350974pt;}
._31_c00299{width:1110.994341pt;}
._39_c00299{width:1470.605979pt;}
.fs1b_c00299{font-size:16.458133pt;}
.fsd_c00299{font-size:18.405333pt;}
.fs19_c00299{font-size:22.727467pt;}
.fs14_c00299{font-size:23.660267pt;}
.fse_c00299{font-size:28.997867pt;}
.fsc_c00299{font-size:29.360533pt;}
.fs1a_c00299{font-size:29.389333pt;}
.fs12_c00299{font-size:30.771200pt;}
.fs0_c00299{font-size:30.962133pt;}
.fs17_c00299{font-size:32.524267pt;}
.fs15_c00299{font-size:33.352000pt;}
.fs13_c00299{font-size:34.107733pt;}
.fs1_c00299{font-size:34.320000pt;}
.fsf_c00299{font-size:34.937067pt;}
.fs18_c00299{font-size:36.050667pt;}
.fs8_c00299{font-size:36.372267pt;}
.fs9_c00299{font-size:40.316267pt;}
.fs16_c00299{font-size:40.478933pt;}
.fs10_c00299{font-size:40.876267pt;}
.fs3_c00299{font-size:43.645867pt;}
.fs6_c00299{font-size:45.138133pt;}
.fs5_c00299{font-size:49.614400pt;}
.fsa_c00299{font-size:51.271467pt;}
.fs11_c00299{font-size:52.405333pt;}
.fsb_c00299{font-size:58.283200pt;}
.fs4_c00299{font-size:62.297600pt;}
.fs1e_c00299{font-size:64.000000pt;}
.fs1c_c00299{font-size:65.440000pt;}
.fs2_c00299{font-size:86.918400pt;}
.fs1d_c00299{font-size:149.120000pt;}
.fs7_c00299{font-size:213.120000pt;}
.y65_c00299{bottom:-126.218267pt;}
.y64_c00299{bottom:-113.509867pt;}
.y63_c00299{bottom:-101.020667pt;}
.y62_c00299{bottom:-89.517333pt;}
.y61_c00299{bottom:-77.904533pt;}
.y60_c00299{bottom:-66.401333pt;}
.y5f_c00299{bottom:-54.788533pt;}
.y5e_c00299{bottom:-43.285200pt;}
.y5d_c00299{bottom:-31.782000pt;}
.y5c_c00299{bottom:-20.169200pt;}
.y5b_c00299{bottom:-8.665867pt;}
.ya2_c00299{bottom:-1.763733pt;}
.y0_c00299{bottom:0.000000pt;}
.y1c_c00299{bottom:0.779067pt;}
.ya8_c00299{bottom:2.155200pt;}
.y77_c00299{bottom:2.224000pt;}
.y8c_c00299{bottom:2.224400pt;}
.y85_c00299{bottom:2.224667pt;}
.y89_c00299{bottom:2.224800pt;}
.y7d_c00299{bottom:2.225067pt;}
.y7a_c00299{bottom:2.316133pt;}
.y82_c00299{bottom:2.317200pt;}
.y97_c00299{bottom:2.448667pt;}
.y5a_c00299{bottom:2.946933pt;}
.ya5_c00299{bottom:3.526267pt;}
.ya1_c00299{bottom:8.032667pt;}
.y9b_c00299{bottom:9.305867pt;}
.y96_c00299{bottom:9.698000pt;}
.y7f_c00299{bottom:11.770267pt;}
.y8b_c00299{bottom:11.770933pt;}
.y84_c00299{bottom:11.771200pt;}
.y88_c00299{bottom:11.771333pt;}
.y87_c00299{bottom:11.771467pt;}
.y7c_c00299{bottom:11.771600pt;}
.y79_c00299{bottom:11.862667pt;}
.y1b_c00299{bottom:12.436533pt;}
.ya4_c00299{bottom:12.538933pt;}
.ya7_c00299{bottom:12.735200pt;}
.y59_c00299{bottom:14.011867pt;}
.y92_c00299{bottom:15.037200pt;}
.y73_c00299{bottom:15.245867pt;}
.ya0_c00299{bottom:17.829067pt;}
.y9a_c00299{bottom:18.318533pt;}
.y8f_c00299{bottom:18.813467pt;}
.y58_c00299{bottom:23.104933pt;}
.yb3_c00299{bottom:24.262667pt;}
.y1a_c00299{bottom:24.280533pt;}
.y72_c00299{bottom:25.377600pt;}
.y99_c00299{bottom:27.331333pt;}
.y9f_c00299{bottom:27.723467pt;}
.yb6_c00299{bottom:28.060000pt;}
.y91_c00299{bottom:28.078800pt;}
.y57_c00299{bottom:32.307600pt;}
.yb2_c00299{bottom:34.842800pt;}
.y19_c00299{bottom:35.192000pt;}
.y71_c00299{bottom:36.295467pt;}
.y9e_c00299{bottom:38.303600pt;}
.y56_c00299{bottom:41.400667pt;}
.yb1_c00299{bottom:45.422933pt;}
.y18_c00299{bottom:46.849600pt;}
.y9d_c00299{bottom:48.981600pt;}
.y70_c00299{bottom:50.182933pt;}
.y55_c00299{bottom:50.493733pt;}
.yb0_c00299{bottom:55.709200pt;}
.y17_c00299{bottom:58.507067pt;}
.y1e_c00299{bottom:58.880000pt;}
.y54_c00299{bottom:59.696267pt;}
.y93_c00299{bottom:61.600000pt;}
.y6f_c00299{bottom:63.983067pt;}
.yaf_c00299{bottom:65.015867pt;}
.y1_c00299{bottom:65.600000pt;}
.y53_c00299{bottom:68.789333pt;}
.y16_c00299{bottom:70.164533pt;}
.yb5_c00299{bottom:72.929173pt;}
.yae_c00299{bottom:75.693867pt;}
.y6e_c00299{bottom:77.783067pt;}
.y52_c00299{bottom:77.882400pt;}
.y15_c00299{bottom:82.661467pt;}
.yad_c00299{bottom:86.274000pt;}
.y51_c00299{bottom:87.084933pt;}
.y6d_c00299{bottom:90.884533pt;}
.y14_c00299{bottom:94.971733pt;}
.y50_c00299{bottom:96.178000pt;}
.yac_c00299{bottom:96.854133pt;}
.y6c_c00299{bottom:101.103600pt;}
.y4f_c00299{bottom:105.271067pt;}
.y13_c00299{bottom:105.883200pt;}
.yab_c00299{bottom:107.532267pt;}
.y6b_c00299{bottom:111.322533pt;}
.yb4_c00299{bottom:113.266133pt;}
.y4e_c00299{bottom:114.473733pt;}
.y12_c00299{bottom:116.701467pt;}
.yaa_c00299{bottom:118.112400pt;}
.y6a_c00299{bottom:122.764400pt;}
.y4d_c00299{bottom:123.566800pt;}
.y11_c00299{bottom:127.612933pt;}
.ya9_c00299{bottom:128.692533pt;}
.y4c_c00299{bottom:132.659867pt;}
.y67_c00299{bottom:135.778400pt;}
.y10_c00299{bottom:139.363600pt;}
.y69_c00299{bottom:139.534133pt;}
.y4b_c00299{bottom:141.862400pt;}
.y4a_c00299{bottom:150.955467pt;}
.yf_c00299{bottom:151.394267pt;}
.y68_c00299{bottom:154.993733pt;}
.y49_c00299{bottom:160.048533pt;}
.ye_c00299{bottom:163.051733pt;}
.y48_c00299{bottom:169.251200pt;}
.yd_c00299{bottom:175.362133pt;}
.y47_c00299{bottom:178.344267pt;}
.yc_c00299{bottom:187.112933pt;}
.y46_c00299{bottom:187.437200pt;}
.y45_c00299{bottom:196.639867pt;}
.yb_c00299{bottom:199.050133pt;}
.y75_c00299{bottom:205.593733pt;}
.y44_c00299{bottom:205.732933pt;}
.ya_c00299{bottom:210.800933pt;}
.y43_c00299{bottom:214.826000pt;}
.ya6_c00299{bottom:222.914667pt;}
.y9_c00299{bottom:223.111333pt;}
.y42_c00299{bottom:224.028533pt;}
.y41_c00299{bottom:233.121600pt;}
.y8_c00299{bottom:233.929467pt;}
.y40_c00299{bottom:242.214667pt;}
.ya3_c00299{bottom:243.977333pt;}
.y7_c00299{bottom:245.960133pt;}
.y3f_c00299{bottom:251.417333pt;}
.y6_c00299{bottom:260.228933pt;}
.y3e_c00299{bottom:260.510267pt;}
.y3d_c00299{bottom:260.510400pt;}
.y3c_c00299{bottom:269.603333pt;}
.y9c_c00299{bottom:276.697333pt;}
.y5_c00299{bottom:278.134800pt;}
.y3b_c00299{bottom:278.806000pt;}
.y3a_c00299{bottom:287.899067pt;}
.y94_c00299{bottom:290.235467pt;}
.y39_c00299{bottom:296.992133pt;}
.y4_c00299{bottom:297.439733pt;}
.y2_c00299{bottom:299.118400pt;}
.y38_c00299{bottom:306.194667pt;}
.y37_c00299{bottom:315.287733pt;}
.y3_c00299{bottom:320.102000pt;}
.y36_c00299{bottom:324.380800pt;}
.y35_c00299{bottom:333.583333pt;}
.y34_c00299{bottom:342.676533pt;}
.y98_c00299{bottom:343.117333pt;}
.y33_c00299{bottom:351.769467pt;}
.y95_c00299{bottom:358.889333pt;}
.y32_c00299{bottom:360.972133pt;}
.y31_c00299{bottom:370.065200pt;}
.y30_c00299{bottom:379.158267pt;}
.y2f_c00299{bottom:388.360800pt;}
.y74_c00299{bottom:396.320000pt;}
.y2e_c00299{bottom:397.453867pt;}
.y2d_c00299{bottom:406.546933pt;}
.y8d_c00299{bottom:412.002667pt;}
.y2c_c00299{bottom:415.749467pt;}
.y8a_c00299{bottom:421.920000pt;}
.y2b_c00299{bottom:424.842533pt;}
.y2a_c00299{bottom:433.935600pt;}
.y86_c00299{bottom:441.476000pt;}
.y29_c00299{bottom:443.138267pt;}
.y66_c00299{bottom:448.000000pt;}
.y28_c00299{bottom:452.231333pt;}
.y83_c00299{bottom:460.940000pt;}
.y27_c00299{bottom:461.324400pt;}
.y26_c00299{bottom:470.526933pt;}
.y25_c00299{bottom:479.620000pt;}
.y81_c00299{bottom:480.404000pt;}
.y24_c00299{bottom:488.713067pt;}
.y80_c00299{bottom:490.413333pt;}
.y23_c00299{bottom:497.915733pt;}
.y7b_c00299{bottom:500.330667pt;}
.y7e_c00299{bottom:500.332000pt;}
.y22_c00299{bottom:509.418933pt;}
.y78_c00299{bottom:519.796000pt;}
.y1f_c00299{bottom:524.975733pt;}
.y21_c00299{bottom:530.343867pt;}
.y76_c00299{bottom:539.352000pt;}
.y20_c00299{bottom:549.735067pt;}
.y90_c00299{bottom:559.200000pt;}
.y8e_c00299{bottom:559.272000pt;}
.y1d_c00299{bottom:633.749600pt;}
.h20_c00299{height:9.545333pt;}
.h1e_c00299{height:9.546667pt;}
.h25_c00299{height:9.638667pt;}
.h34_c00299{height:12.504324pt;}
.h15_c00299{height:12.788471pt;}
.h2f_c00299{height:16.279880pt;}
.h27_c00299{height:16.439726pt;}
.h32_c00299{height:17.378522pt;}
.h2d_c00299{height:17.536000pt;}
.h22_c00299{height:19.093333pt;}
.h21_c00299{height:19.185333pt;}
.h37_c00299{height:19.789333pt;}
.h17_c00299{height:20.148420pt;}
.h38_c00299{height:21.258667pt;}
.h1d_c00299{height:21.380575pt;}
.h13_c00299{height:21.389607pt;}
.h14_c00299{height:21.390141pt;}
.h33_c00299{height:21.410589pt;}
.h2_c00299{height:21.513240pt;}
.h2c_c00299{height:22.598648pt;}
.h23_c00299{height:22.732937pt;}
.h8_c00299{height:22.874414pt;}
.h1f_c00299{height:23.748842pt;}
.h24_c00299{height:23.749375pt;}
.h29_c00299{height:23.890324pt;}
.h3_c00299{height:23.896641pt;}
.hb_c00299{height:23.897174pt;}
.h1b_c00299{height:23.916879pt;}
.h18_c00299{height:24.275120pt;}
.h2e_c00299{height:25.031273pt;}
.hf_c00299{height:25.272332pt;}
.h31_c00299{height:26.263474pt;}
.h39_c00299{height:26.264007pt;}
.h19_c00299{height:27.244191pt;}
.h26_c00299{height:27.448000pt;}
.h28_c00299{height:27.520000pt;}
.h10_c00299{height:28.012718pt;}
.h2a_c00299{height:28.995408pt;}
.h9_c00299{height:30.326205pt;}
.hc_c00299{height:30.390140pt;}
.h5_c00299{height:31.263909pt;}
.ha_c00299{height:31.429189pt;}
.h30_c00299{height:34.482667pt;}
.h7_c00299{height:34.545964pt;}
.h1a_c00299{height:35.875135pt;}
.h11_c00299{height:36.726192pt;}
.h12_c00299{height:41.748757pt;}
.h6_c00299{height:43.285881pt;}
.h36_c00299{height:45.565156pt;}
.h3c_c00299{height:45.937500pt;}
.h35_c00299{height:57.505333pt;}
.h4_c00299{height:62.260397pt;}
.h3b_c00299{height:107.034375pt;}
.h16_c00299{height:136.001333pt;}
.h3a_c00299{height:137.216000pt;}
.hd_c00299{height:145.687500pt;}
.h1c_c00299{height:162.400000pt;}
.h1_c00299{height:274.240000pt;}
.h2b_c00299{height:316.001333pt;}
.he_c00299{height:523.680000pt;}
.h0_c00299{height:720.000000pt;}
.w7_c00299{width:-31.410667pt;}
.wd_c00299{width:-31.409333pt;}
.w11_c00299{width:-31.406667pt;}
.w16_c00299{width:-31.405333pt;}
.w19_c00299{width:-31.404000pt;}
.w1d_c00299{width:-31.402667pt;}
.w21_c00299{width:-31.400000pt;}
.w25_c00299{width:-31.398667pt;}
.w29_c00299{width:-31.397333pt;}
.w8_c00299{width:-3.976000pt;}
.we_c00299{width:-3.974667pt;}
.w12_c00299{width:-3.973333pt;}
.w17_c00299{width:-3.972000pt;}
.w1a_c00299{width:-3.969333pt;}
.w1e_c00299{width:-3.968000pt;}
.w22_c00299{width:-3.966667pt;}
.w26_c00299{width:-3.965333pt;}
.w2a_c00299{width:-3.964000pt;}
.wa_c00299{width:27.246667pt;}
.w14_c00299{width:27.248000pt;}
.w9_c00299{width:29.017333pt;}
.wf_c00299{width:29.018667pt;}
.w13_c00299{width:29.021333pt;}
.w1b_c00299{width:29.022667pt;}
.w1f_c00299{width:29.025333pt;}
.w23_c00299{width:29.026667pt;}
.w27_c00299{width:29.028000pt;}
.w2b_c00299{width:29.030667pt;}
.w33_c00299{width:100.346667pt;}
.w30_c00299{width:105.540000pt;}
.w31_c00299{width:177.369333pt;}
.wb_c00299{width:180.168000pt;}
.w1c_c00299{width:180.169333pt;}
.w2c_c00299{width:182.121333pt;}
.w28_c00299{width:182.122667pt;}
.w24_c00299{width:182.125333pt;}
.w20_c00299{width:182.126667pt;}
.w18_c00299{width:182.129333pt;}
.w15_c00299{width:182.130667pt;}
.w10_c00299{width:182.133333pt;}
.wc_c00299{width:182.134667pt;}
.w2e_c00299{width:219.225333pt;}
.w2d_c00299{width:335.522667pt;}
.w32_c00299{width:350.820000pt;}
.w2_c00299{width:355.832000pt;}
.w1_c00299{width:355.998667pt;}
.w5_c00299{width:378.440000pt;}
.w3_c00299{width:391.840000pt;}
.w4_c00299{width:405.846667pt;}
.w6_c00299{width:419.680000pt;}
.w35_c00299{width:423.041333pt;}
.w34_c00299{width:425.981333pt;}
.w2f_c00299{width:459.984000pt;}
.w0_c00299{width:1280.000000pt;}
.x1e_c00299{left:-96.934133pt;}
.x28_c00299{left:-63.749733pt;}
.x25_c00299{left:-49.943867pt;}
.x26_c00299{left:-46.978133pt;}
.xa_c00299{left:-45.465600pt;}
.x1f_c00299{left:-44.477600pt;}
.x2_c00299{left:-39.370667pt;}
.x29_c00299{left:-37.333067pt;}
.x27_c00299{left:-15.559867pt;}
.x20_c00299{left:-9.722933pt;}
.x17_c00299{left:-3.649733pt;}
.x21_c00299{left:-0.918533pt;}
.x0_c00299{left:0.000000pt;}
.xe_c00299{left:3.181467pt;}
.x4_c00299{left:7.833333pt;}
.x7_c00299{left:10.351067pt;}
.x2f_c00299{left:11.367467pt;}
.x35_c00299{left:13.622133pt;}
.x9_c00299{left:17.120000pt;}
.x15_c00299{left:21.150267pt;}
.x30_c00299{left:26.556533pt;}
.x1c_c00299{left:35.157867pt;}
.x2c_c00299{left:46.962133pt;}
.x1b_c00299{left:80.347333pt;}
.x8_c00299{left:97.600000pt;}
.x33_c00299{left:98.581600pt;}
.xc_c00299{left:114.171333pt;}
.x6_c00299{left:147.800667pt;}
.x32_c00299{left:157.672133pt;}
.xd_c00299{left:163.475867pt;}
.x1a_c00299{left:210.594267pt;}
.x5_c00299{left:221.840667pt;}
.x19_c00299{left:313.273600pt;}
.x3_c00299{left:333.180533pt;}
.xf_c00299{left:379.320000pt;}
.xb_c00299{left:384.798267pt;}
.x13_c00299{left:404.081733pt;}
.x14_c00299{left:410.874800pt;}
.x16_c00299{left:413.280000pt;}
.x2d_c00299{left:417.440000pt;}
.x10_c00299{left:426.980933pt;}
.x11_c00299{left:431.582667pt;}
.x18_c00299{left:437.720000pt;}
.x34_c00299{left:446.249333pt;}
.x2e_c00299{left:448.700000pt;}
.x36_c00299{left:449.876000pt;}
.x12_c00299{left:453.714933pt;}
.x37_c00299{left:476.866533pt;}
.x31_c00299{left:685.062667pt;}
.x1d_c00299{left:834.720000pt;}
.x22_c00299{left:864.108000pt;}
.x2a_c00299{left:865.440000pt;}
.x23_c00299{left:891.725333pt;}
.x1_c00299{left:898.400000pt;}
.x2b_c00299{left:979.162667pt;}
.x24_c00299{left:1072.265333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1e56d02359e89a4e386c4bb9.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:0.861816;font-style:normal;font-weight:normal;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_ab25cc14bc4d46a6e09a49a5.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:0.938965;font-style:normal;font-weight:normal;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_1845259f1fc4d069f1824e38.woff2')format("woff");}.ff3_c00300{font-family:ff3_c00300;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00300{vertical-align:0.000000px;}
.ls1_c00300{letter-spacing:0.000000px;}
.ls2_c00300{letter-spacing:0.360000px;}
.ls0_c00300{letter-spacing:111.600000px;}
.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;}
}
.ws4_c00300{word-spacing:-2.232000px;}
.ws2_c00300{word-spacing:-0.864000px;}
.ws0_c00300{word-spacing:-0.792720px;}
.ws3_c00300{word-spacing:-0.144000px;}
.ws1_c00300{word-spacing:0.000000px;}
._0_c00300{margin-left:-2.774520px;}
._2_c00300{margin-left:-1.030536px;}
._1_c00300{width:1.030536px;}
._3_c00300{width:1654.445928px;}
.fc2_c00300{color:rgb(137,137,137);}
.fc1_c00300{color:rgb(0,0,0);}
.fc0_c00300{color:rgb(47,85,151);}
.fs2_c00300{font-size:72.000000px;}
.fs1_c00300{font-size:144.000000px;}
.fs0_c00300{font-size:264.240000px;}
.y0_c00300{bottom:0.000000px;}
.y6_c00300{bottom:31.567500px;}
.y5_c00300{bottom:329.036400px;}
.y4_c00300{bottom:372.236400px;}
.y3_c00300{bottom:415.436400px;}
.y2_c00300{bottom:458.636400px;}
.y1_c00300{bottom:670.413750px;}
.h4_c00300{height:51.679688px;}
.h3_c00300{height:103.359375px;}
.h2_c00300{height:104.906250px;}
.h1_c00300{height:180.632812px;}
.h0_c00300{height:810.000000px;}
.w0_c00300{width:1440.000000px;}
.x0_c00300{left:0.000000px;}
.x2_c00300{left:102.227700px;}
.x1_c00300{left:109.800000px;}
.x3_c00300{left:142.727700px;}
.x4_c00300{left:536.474850px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls1_c00300{letter-spacing:0.000000pt;}
.ls2_c00300{letter-spacing:0.320000pt;}
.ls0_c00300{letter-spacing:99.200000pt;}
.ws4_c00300{word-spacing:-1.984000pt;}
.ws2_c00300{word-spacing:-0.768000pt;}
.ws0_c00300{word-spacing:-0.704640pt;}
.ws3_c00300{word-spacing:-0.128000pt;}
.ws1_c00300{word-spacing:0.000000pt;}
._0_c00300{margin-left:-2.466240pt;}
._2_c00300{margin-left:-0.916032pt;}
._1_c00300{width:0.916032pt;}
._3_c00300{width:1470.618603pt;}
.fs2_c00300{font-size:64.000000pt;}
.fs1_c00300{font-size:128.000000pt;}
.fs0_c00300{font-size:234.880000pt;}
.y0_c00300{bottom:0.000000pt;}
.y6_c00300{bottom:28.060000pt;}
.y5_c00300{bottom:292.476800pt;}
.y4_c00300{bottom:330.876800pt;}
.y3_c00300{bottom:369.276800pt;}
.y2_c00300{bottom:407.676800pt;}
.y1_c00300{bottom:595.923333pt;}
.h4_c00300{height:45.937500pt;}
.h3_c00300{height:91.875000pt;}
.h2_c00300{height:93.250000pt;}
.h1_c00300{height:160.562500pt;}
.h0_c00300{height:720.000000pt;}
.w0_c00300{width:1280.000000pt;}
.x0_c00300{left:0.000000pt;}
.x2_c00300{left:90.869067pt;}
.x1_c00300{left:97.600000pt;}
.x3_c00300{left:126.869067pt;}
.x4_c00300{left:476.866533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5b74f63a78ad04a8e805fcc1.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:0.861816;font-style:normal;font-weight:normal;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_1cc4dd316d3f271ade2276e9.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00301{letter-spacing:-0.335520px;}
.ls2_c00301{letter-spacing:0.000000px;}
.ls4_c00301{letter-spacing:0.216000px;}
.ls0_c00301{letter-spacing:0.264240px;}
.ls3_c00301{letter-spacing:0.360000px;}
.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;}
}
.ws3_c00301{word-spacing:-2.232000px;}
.ws0_c00301{word-spacing:-1.056960px;}
.ws4_c00301{word-spacing:-0.216000px;}
.ws2_c00301{word-spacing:0.167760px;}
.ws1_c00301{word-spacing:1.342080px;}
._1_c00301{margin-left:-3.435120px;}
._3_c00301{margin-left:-2.097000px;}
._0_c00301{margin-left:-1.083384px;}
._2_c00301{width:1.291752px;}
._4_c00301{width:3.095640px;}
._5_c00301{width:1619.208480px;}
.fc2_c00301{color:rgb(137,137,137);}
.fc1_c00301{color:rgb(0,0,0);}
.fc0_c00301{color:rgb(47,85,151);}
.fs2_c00301{font-size:72.000000px;}
.fs1_c00301{font-size:167.760000px;}
.fs0_c00301{font-size:264.240000px;}
.y0_c00301{bottom:0.000000px;}
.y4_c00301{bottom:31.567500px;}
.y3_c00301{bottom:86.395470px;}
.y2_c00301{bottom:131.774550px;}
.y1_c00301{bottom:718.713900px;}
.h3_c00301{height:51.679688px;}
.h2_c00301{height:120.413672px;}
.h1_c00301{height:180.632812px;}
.h0_c00301{height:810.000000px;}
.w0_c00301{width:1440.000000px;}
.x0_c00301{left:0.000000px;}
.x1_c00301{left:89.502150px;}
.x2_c00301{left:536.474850px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls1_c00301{letter-spacing:-0.298240pt;}
.ls2_c00301{letter-spacing:0.000000pt;}
.ls4_c00301{letter-spacing:0.192000pt;}
.ls0_c00301{letter-spacing:0.234880pt;}
.ls3_c00301{letter-spacing:0.320000pt;}
.ws3_c00301{word-spacing:-1.984000pt;}
.ws0_c00301{word-spacing:-0.939520pt;}
.ws4_c00301{word-spacing:-0.192000pt;}
.ws2_c00301{word-spacing:0.149120pt;}
.ws1_c00301{word-spacing:1.192960pt;}
._1_c00301{margin-left:-3.053440pt;}
._3_c00301{margin-left:-1.864000pt;}
._0_c00301{margin-left:-0.963008pt;}
._2_c00301{width:1.148224pt;}
._4_c00301{width:2.751680pt;}
._5_c00301{width:1439.296427pt;}
.fs2_c00301{font-size:64.000000pt;}
.fs1_c00301{font-size:149.120000pt;}
.fs0_c00301{font-size:234.880000pt;}
.y0_c00301{bottom:0.000000pt;}
.y4_c00301{bottom:28.060000pt;}
.y3_c00301{bottom:76.795973pt;}
.y2_c00301{bottom:117.132933pt;}
.y1_c00301{bottom:638.856800pt;}
.h3_c00301{height:45.937500pt;}
.h2_c00301{height:107.034375pt;}
.h1_c00301{height:160.562500pt;}
.h0_c00301{height:720.000000pt;}
.w0_c00301{width:1280.000000pt;}
.x0_c00301{left:0.000000pt;}
.x1_c00301{left:79.557467pt;}
.x2_c00301{left:476.866533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a6a5d18f0ba5dfb440fef222.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:0.861816;font-style:normal;font-weight:normal;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_ab25cc14bc4d46a6e09a49a5.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:0.938965;font-style:normal;font-weight:normal;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_e813d8382375273d6ef45547.woff2')format("woff");}.ff3_c00302{font-family:ff3_c00302;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7_c00302{letter-spacing:-0.131760px;}
.ls6_c00302{letter-spacing:0.000000px;}
.ls8_c00302{letter-spacing:0.108000px;}
.lsa_c00302{letter-spacing:0.216000px;}
.ls2_c00302{letter-spacing:0.263520px;}
.ls5_c00302{letter-spacing:0.264240px;}
.ls9_c00302{letter-spacing:0.360000px;}
.ls1_c00302{letter-spacing:30.304800px;}
.ls3_c00302{letter-spacing:30.910896px;}
.ls0_c00302{letter-spacing:61.927200px;}
.ls4_c00302{letter-spacing:97.524000px;}
.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;}
}
.ws8_c00302{word-spacing:-2.232000px;}
.ws1_c00302{word-spacing:-1.056960px;}
.ws6_c00302{word-spacing:-0.790560px;}
.ws3_c00302{word-spacing:-0.263520px;}
.ws9_c00302{word-spacing:-0.216000px;}
.ws2_c00302{word-spacing:0.000000px;}
.ws5_c00302{word-spacing:0.395280px;}
.ws0_c00302{word-spacing:0.527040px;}
.ws7_c00302{word-spacing:0.648000px;}
.ws4_c00302{word-spacing:1.185840px;}
._5_c00302{margin-left:-9.504000px;}
._0_c00302{margin-left:-5.364072px;}
._2_c00302{margin-left:-2.985912px;}
._1_c00302{margin-left:-1.321200px;}
._3_c00302{width:1.368864px;}
._4_c00302{width:3.201768px;}
._6_c00302{width:1617.783960px;}
.fc2_c00302{color:rgb(137,137,137);}
.fc1_c00302{color:rgb(0,0,0);}
.fc0_c00302{color:rgb(47,85,151);}
.fs3_c00302{font-size:72.000000px;}
.fs2_c00302{font-size:108.000000px;}
.fs1_c00302{font-size:131.760000px;}
.fs0_c00302{font-size:264.240000px;}
.y0_c00302{bottom:0.000000px;}
.yb_c00302{bottom:31.567500px;}
.ya_c00302{bottom:99.685800px;}
.y9_c00302{bottom:132.085800px;}
.y8_c00302{bottom:164.485800px;}
.y7_c00302{bottom:196.885800px;}
.y6_c00302{bottom:536.858310px;}
.y5_c00302{bottom:576.098310px;}
.y4_c00302{bottom:615.331470px;}
.y3_c00302{bottom:654.398310px;}
.y2_c00302{bottom:693.629850px;}
.y1_c00302{bottom:733.061850px;}
.h5_c00302{height:51.679688px;}
.h3_c00302{height:77.519531px;}
.h4_c00302{height:78.679688px;}
.h2_c00302{height:95.989219px;}
.h1_c00302{height:180.632812px;}
.h0_c00302{height:810.000000px;}
.w0_c00302{width:1440.000000px;}
.x0_c00302{left:0.000000px;}
.x1_c00302{left:40.254600px;}
.x2_c00302{left:94.254450px;}
.x3_c00302{left:536.474850px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls7_c00302{letter-spacing:-0.117120pt;}
.ls6_c00302{letter-spacing:0.000000pt;}
.ls8_c00302{letter-spacing:0.096000pt;}
.lsa_c00302{letter-spacing:0.192000pt;}
.ls2_c00302{letter-spacing:0.234240pt;}
.ls5_c00302{letter-spacing:0.234880pt;}
.ls9_c00302{letter-spacing:0.320000pt;}
.ls1_c00302{letter-spacing:26.937600pt;}
.ls3_c00302{letter-spacing:27.476352pt;}
.ls0_c00302{letter-spacing:55.046400pt;}
.ls4_c00302{letter-spacing:86.688000pt;}
.ws8_c00302{word-spacing:-1.984000pt;}
.ws1_c00302{word-spacing:-0.939520pt;}
.ws6_c00302{word-spacing:-0.702720pt;}
.ws3_c00302{word-spacing:-0.234240pt;}
.ws9_c00302{word-spacing:-0.192000pt;}
.ws2_c00302{word-spacing:0.000000pt;}
.ws5_c00302{word-spacing:0.351360pt;}
.ws0_c00302{word-spacing:0.468480pt;}
.ws7_c00302{word-spacing:0.576000pt;}
.ws4_c00302{word-spacing:1.054080pt;}
._5_c00302{margin-left:-8.448000pt;}
._0_c00302{margin-left:-4.768064pt;}
._2_c00302{margin-left:-2.654144pt;}
._1_c00302{margin-left:-1.174400pt;}
._3_c00302{width:1.216768pt;}
._4_c00302{width:2.846016pt;}
._6_c00302{width:1438.030187pt;}
.fs3_c00302{font-size:64.000000pt;}
.fs2_c00302{font-size:96.000000pt;}
.fs1_c00302{font-size:117.120000pt;}
.fs0_c00302{font-size:234.880000pt;}
.y0_c00302{bottom:0.000000pt;}
.yb_c00302{bottom:28.060000pt;}
.ya_c00302{bottom:88.609600pt;}
.y9_c00302{bottom:117.409600pt;}
.y8_c00302{bottom:146.209600pt;}
.y7_c00302{bottom:175.009600pt;}
.y6_c00302{bottom:477.207387pt;}
.y5_c00302{bottom:512.087387pt;}
.y4_c00302{bottom:546.961307pt;}
.y3_c00302{bottom:581.687387pt;}
.y2_c00302{bottom:616.559867pt;}
.y1_c00302{bottom:651.610533pt;}
.h5_c00302{height:45.937500pt;}
.h3_c00302{height:68.906250pt;}
.h4_c00302{height:69.937500pt;}
.h2_c00302{height:85.323750pt;}
.h1_c00302{height:160.562500pt;}
.h0_c00302{height:720.000000pt;}
.w0_c00302{width:1280.000000pt;}
.x0_c00302{left:0.000000pt;}
.x1_c00302{left:35.781867pt;}
.x2_c00302{left:83.781733pt;}
.x3_c00302{left:476.866533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b610e9f0729ff21ae592f8bd.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:0.861816;font-style:normal;font-weight:normal;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_b039cb37a1a2562fc9394759.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00303;src:url('chunks/assets/font_ab25cc14bc4d46a6e09a49a5.woff2')format("woff");}.ff3_c00303{font-family:ff3_c00303;line-height:0.938965;font-style: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:-0.324000px;}
.ls4_c00303{letter-spacing:0.000000px;}
.ls2_c00303{letter-spacing:0.108000px;}
.ls6_c00303{letter-spacing:0.216000px;}
.ls1_c00303{letter-spacing:0.264240px;}
.ls5_c00303{letter-spacing:0.360000px;}
.ls0_c00303{letter-spacing:97.524000px;}
.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;}
}
.ws5_c00303{word-spacing:-2.232000px;}
.ws0_c00303{word-spacing:-1.056960px;}
.ws6_c00303{word-spacing:-0.216000px;}
.ws1_c00303{word-spacing:0.000000px;}
.ws3_c00303{word-spacing:0.108000px;}
.ws2_c00303{word-spacing:0.432000px;}
.ws4_c00303{word-spacing:0.648000px;}
._1_c00303{margin-left:-25.076376px;}
._4_c00303{margin-left:-9.439200px;}
._0_c00303{margin-left:-5.364072px;}
._2_c00303{margin-left:-3.646512px;}
._3_c00303{margin-left:-1.652400px;}
._5_c00303{width:1.771200px;}
._6_c00303{width:2.790000px;}
._7_c00303{width:1617.666600px;}
.fc2_c00303{color:rgb(137,137,137);}
.fc1_c00303{color:rgb(0,0,0);}
.fc0_c00303{color:rgb(47,85,151);}
.fs2_c00303{font-size:72.000000px;}
.fs1_c00303{font-size:108.000000px;}
.fs0_c00303{font-size:264.240000px;}
.y0_c00303{bottom:0.000000px;}
.yd_c00303{bottom:31.567500px;}
.yc_c00303{bottom:283.759800px;}
.yb_c00303{bottom:316.159800px;}
.ya_c00303{bottom:348.559800px;}
.y9_c00303{bottom:380.959800px;}
.y8_c00303{bottom:413.359800px;}
.y7_c00303{bottom:445.759800px;}
.y6_c00303{bottom:478.159800px;}
.y5_c00303{bottom:510.559800px;}
.y4_c00303{bottom:542.959800px;}
.y3_c00303{bottom:575.359800px;}
.y2_c00303{bottom:607.759800px;}
.y1_c00303{bottom:697.413750px;}
.h4_c00303{height:51.679688px;}
.h2_c00303{height:77.519531px;}
.h3_c00303{height:78.679688px;}
.h1_c00303{height:180.632812px;}
.h0_c00303{height:810.000000px;}
.w0_c00303{width:1440.000000px;}
.x0_c00303{left:0.000000px;}
.x1_c00303{left:109.800000px;}
.x4_c00303{left:536.474850px;}
.x2_c00303{left:696.389550px;}
.x3_c00303{left:730.220550px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls3_c00303{letter-spacing:-0.288000pt;}
.ls4_c00303{letter-spacing:0.000000pt;}
.ls2_c00303{letter-spacing:0.096000pt;}
.ls6_c00303{letter-spacing:0.192000pt;}
.ls1_c00303{letter-spacing:0.234880pt;}
.ls5_c00303{letter-spacing:0.320000pt;}
.ls0_c00303{letter-spacing:86.688000pt;}
.ws5_c00303{word-spacing:-1.984000pt;}
.ws0_c00303{word-spacing:-0.939520pt;}
.ws6_c00303{word-spacing:-0.192000pt;}
.ws1_c00303{word-spacing:0.000000pt;}
.ws3_c00303{word-spacing:0.096000pt;}
.ws2_c00303{word-spacing:0.384000pt;}
.ws4_c00303{word-spacing:0.576000pt;}
._1_c00303{margin-left:-22.290112pt;}
._4_c00303{margin-left:-8.390400pt;}
._0_c00303{margin-left:-4.768064pt;}
._2_c00303{margin-left:-3.241344pt;}
._3_c00303{margin-left:-1.468800pt;}
._5_c00303{width:1.574400pt;}
._6_c00303{width:2.480000pt;}
._7_c00303{width:1437.925867pt;}
.fs2_c00303{font-size:64.000000pt;}
.fs1_c00303{font-size:96.000000pt;}
.fs0_c00303{font-size:234.880000pt;}
.y0_c00303{bottom:0.000000pt;}
.yd_c00303{bottom:28.060000pt;}
.yc_c00303{bottom:252.230933pt;}
.yb_c00303{bottom:281.030933pt;}
.ya_c00303{bottom:309.830933pt;}
.y9_c00303{bottom:338.630933pt;}
.y8_c00303{bottom:367.430933pt;}
.y7_c00303{bottom:396.230933pt;}
.y6_c00303{bottom:425.030933pt;}
.y5_c00303{bottom:453.830933pt;}
.y4_c00303{bottom:482.630933pt;}
.y3_c00303{bottom:511.430933pt;}
.y2_c00303{bottom:540.230933pt;}
.y1_c00303{bottom:619.923333pt;}
.h4_c00303{height:45.937500pt;}
.h2_c00303{height:68.906250pt;}
.h3_c00303{height:69.937500pt;}
.h1_c00303{height:160.562500pt;}
.h0_c00303{height:720.000000pt;}
.w0_c00303{width:1280.000000pt;}
.x0_c00303{left:0.000000pt;}
.x1_c00303{left:97.600000pt;}
.x4_c00303{left:476.866533pt;}
.x2_c00303{left:619.012933pt;}
.x3_c00303{left:649.084933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d376e664ceaa3f2977bd89cd.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:0.861816;font-style:normal;font-weight:normal;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_09c1cd8780b19fceb5e9da84.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00304;src:url('chunks/assets/font_0177e87ded9e86d32ed2cbd6.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:0.817871;font-style:normal;font-weight:normal;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_ab25cc14bc4d46a6e09a49a5.woff2')format("woff");}.ff4_c00304{font-family:ff4_c00304;line-height:0.938965;font-style: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.335520px;}
.ls6_c00304{letter-spacing:-0.324000px;}
.ls7_c00304{letter-spacing:-0.216000px;}
.ls9_c00304{letter-spacing:-0.167760px;}
.ls5_c00304{letter-spacing:0.000000px;}
.ls2_c00304{letter-spacing:0.108000px;}
.lsb_c00304{letter-spacing:0.216000px;}
.lsa_c00304{letter-spacing:0.360000px;}
.ls0_c00304{letter-spacing:25.380000px;}
.ls3_c00304{letter-spacing:26.060400px;}
.ls4_c00304{letter-spacing:49.321440px;}
.ls1_c00304{letter-spacing:85.860000px;}
.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;}
}
.wsa_c00304{word-spacing:-2.232000px;}
.ws2_c00304{word-spacing:-0.432000px;}
.wsb_c00304{word-spacing:-0.216000px;}
.ws3_c00304{word-spacing:-0.108000px;}
.ws0_c00304{word-spacing:0.000000px;}
.ws1_c00304{word-spacing:0.324000px;}
.ws8_c00304{word-spacing:0.335520px;}
.ws4_c00304{word-spacing:0.432000px;}
.ws9_c00304{word-spacing:0.503280px;}
.ws5_c00304{word-spacing:0.648000px;}
.ws6_c00304{word-spacing:1.342080px;}
.ws7_c00304{word-spacing:2.013120px;}
._1_c00304{margin-left:-23.781600px;}
._0_c00304{margin-left:-2.774520px;}
._2_c00304{margin-left:-1.231200px;}
._3_c00304{width:1.024920px;}
._4_c00304{width:2.056320px;}
._5_c00304{width:1618.306320px;}
.fc2_c00304{color:rgb(137,137,137);}
.fc1_c00304{color:rgb(0,0,0);}
.fc0_c00304{color:rgb(47,85,151);}
.fs3_c00304{font-size:72.000000px;}
.fs1_c00304{font-size:108.000000px;}
.fs2_c00304{font-size:167.760000px;}
.fs0_c00304{font-size:264.240000px;}
.y0_c00304{bottom:0.000000px;}
.yc_c00304{bottom:31.567500px;}
.yb_c00304{bottom:98.773470px;}
.ya_c00304{bottom:139.077810px;}
.y9_c00304{bottom:194.522490px;}
.y8_c00304{bottom:234.826830px;}
.y7_c00304{bottom:290.103750px;}
.y6_c00304{bottom:557.300250px;}
.y5_c00304{bottom:589.700250px;}
.y4_c00304{bottom:622.100250px;}
.y3_c00304{bottom:654.500250px;}
.y2_c00304{bottom:686.900250px;}
.y1_c00304{bottom:737.276250px;}
.h6_c00304{height:51.679688px;}
.h2_c00304{height:77.519531px;}
.h3_c00304{height:83.214844px;}
.h4_c00304{height:120.413672px;}
.h5_c00304{height:122.215781px;}
.h1_c00304{height:180.632812px;}
.h0_c00304{height:810.000000px;}
.w0_c00304{width:1440.000000px;}
.x0_c00304{left:0.000000px;}
.x1_c00304{left:40.254750px;}
.x2_c00304{left:94.254300px;}
.x3_c00304{left:444.822900px;}
.x4_c00304{left:471.832260px;}
.x5_c00304{left:536.474850px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls8_c00304{letter-spacing:-0.298240pt;}
.ls6_c00304{letter-spacing:-0.288000pt;}
.ls7_c00304{letter-spacing:-0.192000pt;}
.ls9_c00304{letter-spacing:-0.149120pt;}
.ls5_c00304{letter-spacing:0.000000pt;}
.ls2_c00304{letter-spacing:0.096000pt;}
.lsb_c00304{letter-spacing:0.192000pt;}
.lsa_c00304{letter-spacing:0.320000pt;}
.ls0_c00304{letter-spacing:22.560000pt;}
.ls3_c00304{letter-spacing:23.164800pt;}
.ls4_c00304{letter-spacing:43.841280pt;}
.ls1_c00304{letter-spacing:76.320000pt;}
.wsa_c00304{word-spacing:-1.984000pt;}
.ws2_c00304{word-spacing:-0.384000pt;}
.wsb_c00304{word-spacing:-0.192000pt;}
.ws3_c00304{word-spacing:-0.096000pt;}
.ws0_c00304{word-spacing:0.000000pt;}
.ws1_c00304{word-spacing:0.288000pt;}
.ws8_c00304{word-spacing:0.298240pt;}
.ws4_c00304{word-spacing:0.384000pt;}
.ws9_c00304{word-spacing:0.447360pt;}
.ws5_c00304{word-spacing:0.576000pt;}
.ws6_c00304{word-spacing:1.192960pt;}
.ws7_c00304{word-spacing:1.789440pt;}
._1_c00304{margin-left:-21.139200pt;}
._0_c00304{margin-left:-2.466240pt;}
._2_c00304{margin-left:-1.094400pt;}
._3_c00304{width:0.911040pt;}
._4_c00304{width:1.827840pt;}
._5_c00304{width:1438.494507pt;}
.fs3_c00304{font-size:64.000000pt;}
.fs1_c00304{font-size:96.000000pt;}
.fs2_c00304{font-size:149.120000pt;}
.fs0_c00304{font-size:234.880000pt;}
.y0_c00304{bottom:0.000000pt;}
.yc_c00304{bottom:28.060000pt;}
.yb_c00304{bottom:87.798640pt;}
.ya_c00304{bottom:123.624720pt;}
.y9_c00304{bottom:172.908880pt;}
.y8_c00304{bottom:208.734960pt;}
.y7_c00304{bottom:257.870000pt;}
.y6_c00304{bottom:495.378000pt;}
.y5_c00304{bottom:524.178000pt;}
.y4_c00304{bottom:552.978000pt;}
.y3_c00304{bottom:581.778000pt;}
.y2_c00304{bottom:610.578000pt;}
.y1_c00304{bottom:655.356667pt;}
.h6_c00304{height:45.937500pt;}
.h2_c00304{height:68.906250pt;}
.h3_c00304{height:73.968750pt;}
.h4_c00304{height:107.034375pt;}
.h5_c00304{height:108.636250pt;}
.h1_c00304{height:160.562500pt;}
.h0_c00304{height:720.000000pt;}
.w0_c00304{width:1280.000000pt;}
.x0_c00304{left:0.000000pt;}
.x1_c00304{left:35.782000pt;}
.x2_c00304{left:83.781600pt;}
.x3_c00304{left:395.398133pt;}
.x4_c00304{left:419.406453pt;}
.x5_c00304{left:476.866533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a621de921c52a7eebd42f5c2.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:0.861816;font-style:normal;font-weight:normal;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_ed8f879ba1165a47f5fa26e5.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00305;src:url('chunks/assets/font_d613ad1cfd1f52c576f41b0b.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsa_c00305{letter-spacing:-1.684800px;}
.ls8_c00305{letter-spacing:-0.336960px;}
.ls6_c00305{letter-spacing:-0.335520px;}
.lsf_c00305{letter-spacing:-0.324000px;}
.lsd_c00305{letter-spacing:-0.252720px;}
.ls9_c00305{letter-spacing:-0.168480px;}
.lsc_c00305{letter-spacing:-0.084240px;}
.ls4_c00305{letter-spacing:0.000000px;}
.lsb_c00305{letter-spacing:0.084240px;}
.lse_c00305{letter-spacing:0.108000px;}
.ls0_c00305{letter-spacing:0.168480px;}
.ls11_c00305{letter-spacing:0.216000px;}
.ls2_c00305{letter-spacing:0.252720px;}
.ls3_c00305{letter-spacing:0.264240px;}
.ls5_c00305{letter-spacing:0.335520px;}
.ls7_c00305{letter-spacing:0.336960px;}
.ls10_c00305{letter-spacing:0.360000px;}
.ls1_c00305{letter-spacing:0.421200px;}
.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:-37.913760px;}
.ws4_c00305{word-spacing:-19.290960px;}
.ws8_c00305{word-spacing:-19.122480px;}
.ws7_c00305{word-spacing:-18.701280px;}
.wsd_c00305{word-spacing:-2.611440px;}
.ws21_c00305{word-spacing:-2.232000px;}
.ws1b_c00305{word-spacing:-2.190240px;}
.wsb_c00305{word-spacing:-2.106000px;}
.ws13_c00305{word-spacing:-1.769040px;}
.ws1a_c00305{word-spacing:-1.684800px;}
.wse_c00305{word-spacing:-1.600560px;}
.ws12_c00305{word-spacing:-1.432080px;}
.wsa_c00305{word-spacing:-1.263600px;}
.ws11_c00305{word-spacing:-1.095120px;}
.ws9_c00305{word-spacing:-1.056960px;}
.ws10_c00305{word-spacing:-0.673920px;}
.ws18_c00305{word-spacing:-0.589680px;}
.ws16_c00305{word-spacing:-0.252720px;}
.ws22_c00305{word-spacing:-0.216000px;}
.ws17_c00305{word-spacing:-0.168480px;}
.ws1c_c00305{word-spacing:-0.084240px;}
.wsc_c00305{word-spacing:0.000000px;}
.ws1d_c00305{word-spacing:0.432000px;}
.ws19_c00305{word-spacing:0.505440px;}
.ws1e_c00305{word-spacing:0.648000px;}
.ws20_c00305{word-spacing:0.756000px;}
.wsf_c00305{word-spacing:0.758160px;}
.ws1f_c00305{word-spacing:1.080000px;}
.ws14_c00305{word-spacing:1.347840px;}
.ws15_c00305{word-spacing:1.684800px;}
.ws2_c00305{word-spacing:231.693336px;}
.ws1_c00305{word-spacing:277.307280px;}
.ws6_c00305{word-spacing:291.546216px;}
.ws5_c00305{word-spacing:369.956808px;}
.ws3_c00305{word-spacing:647.301960px;}
._4_c00305{margin-left:-18.258984px;}
._10_c00305{margin-left:-7.448400px;}
._2_c00305{margin-left:-6.156792px;}
._d_c00305{margin-left:-4.683744px;}
._0_c00305{margin-left:-3.487968px;}
._6_c00305{margin-left:-2.045664px;}
._5_c00305{margin-left:-1.006560px;}
._3_c00305{width:1.004112px;}
._1_c00305{width:2.642400px;}
._c_c00305{width:150.564528px;}
._e_c00305{width:359.136000px;}
._f_c00305{width:479.127456px;}
._9_c00305{width:518.938704px;}
._8_c00305{width:608.176368px;}
._7_c00305{width:651.367584px;}
._a_c00305{width:661.247136px;}
._b_c00305{width:732.352824px;}
._11_c00305{width:1618.254696px;}
.fc2_c00305{color:rgb(137,137,137);}
.fc1_c00305{color:rgb(0,0,0);}
.fc0_c00305{color:rgb(47,85,151);}
.fs4_c00305{font-size:72.000000px;}
.fs2_c00305{font-size:84.240000px;}
.fs3_c00305{font-size:108.000000px;}
.fs1_c00305{font-size:167.760000px;}
.fs0_c00305{font-size:264.240000px;}
.y0_c00305{bottom:0.000000px;}
.y16_c00305{bottom:31.567500px;}
.y15_c00305{bottom:56.164050px;}
.y10_c00305{bottom:64.060500px;}
.y14_c00305{bottom:88.564050px;}
.yf_c00305{bottom:96.460500px;}
.y13_c00305{bottom:120.964050px;}
.y12_c00305{bottom:153.364050px;}
.y11_c00305{bottom:185.764050px;}
.ye_c00305{bottom:403.399500px;}
.yd_c00305{bottom:426.081120px;}
.yc_c00305{bottom:449.478780px;}
.yb_c00305{bottom:475.403640px;}
.ya_c00305{bottom:500.612460px;}
.y9_c00305{bottom:523.294080px;}
.y8_c00305{bottom:545.975700px;}
.y7_c00305{bottom:568.657320px;}
.y6_c00305{bottom:591.338940px;}
.y5_c00305{bottom:614.020560px;}
.y4_c00305{bottom:636.702180px;}
.y3_c00305{bottom:659.383800px;}
.y2_c00305{bottom:687.643800px;}
.y1_c00305{bottom:735.481350px;}
.h5_c00305{height:51.679688px;}
.h3_c00305{height:60.465234px;}
.h4_c00305{height:77.519531px;}
.h2_c00305{height:120.413672px;}
.h1_c00305{height:180.632812px;}
.h0_c00305{height:810.000000px;}
.w0_c00305{width:1440.000000px;}
.x0_c00305{left:0.000000px;}
.x7_c00305{left:62.769750px;}
.x4_c00305{left:110.868510px;}
.x1_c00305{left:127.899900px;}
.x2_c00305{left:139.467450px;}
.x3_c00305{left:152.967450px;}
.x6_c00305{left:388.291890px;}
.x5_c00305{left:392.567070px;}
.x9_c00305{left:536.474850px;}
.x8_c00305{left:945.511800px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.lsa_c00305{letter-spacing:-1.497600pt;}
.ls8_c00305{letter-spacing:-0.299520pt;}
.ls6_c00305{letter-spacing:-0.298240pt;}
.lsf_c00305{letter-spacing:-0.288000pt;}
.lsd_c00305{letter-spacing:-0.224640pt;}
.ls9_c00305{letter-spacing:-0.149760pt;}
.lsc_c00305{letter-spacing:-0.074880pt;}
.ls4_c00305{letter-spacing:0.000000pt;}
.lsb_c00305{letter-spacing:0.074880pt;}
.lse_c00305{letter-spacing:0.096000pt;}
.ls0_c00305{letter-spacing:0.149760pt;}
.ls11_c00305{letter-spacing:0.192000pt;}
.ls2_c00305{letter-spacing:0.224640pt;}
.ls3_c00305{letter-spacing:0.234880pt;}
.ls5_c00305{letter-spacing:0.298240pt;}
.ls7_c00305{letter-spacing:0.299520pt;}
.ls10_c00305{letter-spacing:0.320000pt;}
.ls1_c00305{letter-spacing:0.374400pt;}
.ws0_c00305{word-spacing:-33.701120pt;}
.ws4_c00305{word-spacing:-17.147520pt;}
.ws8_c00305{word-spacing:-16.997760pt;}
.ws7_c00305{word-spacing:-16.623360pt;}
.wsd_c00305{word-spacing:-2.321280pt;}
.ws21_c00305{word-spacing:-1.984000pt;}
.ws1b_c00305{word-spacing:-1.946880pt;}
.wsb_c00305{word-spacing:-1.872000pt;}
.ws13_c00305{word-spacing:-1.572480pt;}
.ws1a_c00305{word-spacing:-1.497600pt;}
.wse_c00305{word-spacing:-1.422720pt;}
.ws12_c00305{word-spacing:-1.272960pt;}
.wsa_c00305{word-spacing:-1.123200pt;}
.ws11_c00305{word-spacing:-0.973440pt;}
.ws9_c00305{word-spacing:-0.939520pt;}
.ws10_c00305{word-spacing:-0.599040pt;}
.ws18_c00305{word-spacing:-0.524160pt;}
.ws16_c00305{word-spacing:-0.224640pt;}
.ws22_c00305{word-spacing:-0.192000pt;}
.ws17_c00305{word-spacing:-0.149760pt;}
.ws1c_c00305{word-spacing:-0.074880pt;}
.wsc_c00305{word-spacing:0.000000pt;}
.ws1d_c00305{word-spacing:0.384000pt;}
.ws19_c00305{word-spacing:0.449280pt;}
.ws1e_c00305{word-spacing:0.576000pt;}
.ws20_c00305{word-spacing:0.672000pt;}
.wsf_c00305{word-spacing:0.673920pt;}
.ws1f_c00305{word-spacing:0.960000pt;}
.ws14_c00305{word-spacing:1.198080pt;}
.ws15_c00305{word-spacing:1.497600pt;}
.ws2_c00305{word-spacing:205.949632pt;}
.ws1_c00305{word-spacing:246.495360pt;}
.ws6_c00305{word-spacing:259.152192pt;}
.ws5_c00305{word-spacing:328.850496pt;}
.ws3_c00305{word-spacing:575.379520pt;}
._4_c00305{margin-left:-16.230208pt;}
._10_c00305{margin-left:-6.620800pt;}
._2_c00305{margin-left:-5.472704pt;}
._d_c00305{margin-left:-4.163328pt;}
._0_c00305{margin-left:-3.100416pt;}
._6_c00305{margin-left:-1.818368pt;}
._5_c00305{margin-left:-0.894720pt;}
._3_c00305{width:0.892544pt;}
._1_c00305{width:2.348800pt;}
._c_c00305{width:133.835136pt;}
._e_c00305{width:319.232000pt;}
._f_c00305{width:425.891072pt;}
._9_c00305{width:461.278848pt;}
._8_c00305{width:540.601216pt;}
._7_c00305{width:578.993408pt;}
._a_c00305{width:587.775232pt;}
._b_c00305{width:650.980288pt;}
._11_c00305{width:1438.448619pt;}
.fs4_c00305{font-size:64.000000pt;}
.fs2_c00305{font-size:74.880000pt;}
.fs3_c00305{font-size:96.000000pt;}
.fs1_c00305{font-size:149.120000pt;}
.fs0_c00305{font-size:234.880000pt;}
.y0_c00305{bottom:0.000000pt;}
.y16_c00305{bottom:28.060000pt;}
.y15_c00305{bottom:49.923600pt;}
.y10_c00305{bottom:56.942667pt;}
.y14_c00305{bottom:78.723600pt;}
.yf_c00305{bottom:85.742667pt;}
.y13_c00305{bottom:107.523600pt;}
.y12_c00305{bottom:136.323600pt;}
.y11_c00305{bottom:165.123600pt;}
.ye_c00305{bottom:358.577333pt;}
.yd_c00305{bottom:378.738773pt;}
.yc_c00305{bottom:399.536693pt;}
.yb_c00305{bottom:422.581013pt;}
.ya_c00305{bottom:444.988853pt;}
.y9_c00305{bottom:465.150293pt;}
.y8_c00305{bottom:485.311733pt;}
.y7_c00305{bottom:505.473173pt;}
.y6_c00305{bottom:525.634613pt;}
.y5_c00305{bottom:545.796053pt;}
.y4_c00305{bottom:565.957493pt;}
.y3_c00305{bottom:586.118933pt;}
.y2_c00305{bottom:611.238933pt;}
.y1_c00305{bottom:653.761200pt;}
.h5_c00305{height:45.937500pt;}
.h3_c00305{height:53.746875pt;}
.h4_c00305{height:68.906250pt;}
.h2_c00305{height:107.034375pt;}
.h1_c00305{height:160.562500pt;}
.h0_c00305{height:720.000000pt;}
.w0_c00305{width:1280.000000pt;}
.x0_c00305{left:0.000000pt;}
.x7_c00305{left:55.795333pt;}
.x4_c00305{left:98.549787pt;}
.x1_c00305{left:113.688800pt;}
.x2_c00305{left:123.971067pt;}
.x3_c00305{left:135.971067pt;}
.x6_c00305{left:345.148347pt;}
.x5_c00305{left:348.948507pt;}
.x9_c00305{left:476.866533pt;}
.x8_c00305{left:840.454933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5169ce071b64bb3cf4284b7b.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:0.861816;font-style:normal;font-weight:normal;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_ab25cc14bc4d46a6e09a49a5.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:0.938965;font-style:normal;font-weight:normal;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_eed83ae3a91fbb24a0ae43df.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c00306{letter-spacing:-0.240480px;}
.ls5_c00306{letter-spacing:-0.120240px;}
.ls2_c00306{letter-spacing:0.000000px;}
.ls7_c00306{letter-spacing:0.216000px;}
.ls3_c00306{letter-spacing:0.240480px;}
.ls6_c00306{letter-spacing:0.360000px;}
.ls1_c00306{letter-spacing:28.881648px;}
.ls0_c00306{letter-spacing:65.891520px;}
.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:-59.718240px;}
.ws1_c00306{word-spacing:-26.933760px;}
.wsa_c00306{word-spacing:-2.232000px;}
.ws7_c00306{word-spacing:-1.442880px;}
.ws8_c00306{word-spacing:-0.961920px;}
.ws4_c00306{word-spacing:-0.721440px;}
.ws3_c00306{word-spacing:-0.480960px;}
.ws5_c00306{word-spacing:-0.240480px;}
.wsb_c00306{word-spacing:-0.216000px;}
.ws2_c00306{word-spacing:0.000000px;}
.ws9_c00306{word-spacing:0.360720px;}
.ws6_c00306{word-spacing:0.480960px;}
._4_c00306{margin-left:-10.797552px;}
._5_c00306{margin-left:-9.510984px;}
._6_c00306{margin-left:-3.739464px;}
._1_c00306{margin-left:-2.669328px;}
._0_c00306{margin-left:-1.370736px;}
._2_c00306{width:1.551096px;}
._3_c00306{width:2.573136px;}
._7_c00306{width:1617.315312px;}
.fc2_c00306{color:rgb(137,137,137);}
.fc1_c00306{color:rgb(0,0,0);}
.fc0_c00306{color:rgb(47,85,151);}
.fs2_c00306{font-size:72.000000px;}
.fs1_c00306{font-size:120.240000px;}
.fs0_c00306{font-size:264.240000px;}
.y0_c00306{bottom:0.000000px;}
.yf_c00306{bottom:31.567500px;}
.ye_c00306{bottom:205.646220px;}
.yd_c00306{bottom:230.825700px;}
.yc_c00306{bottom:271.165680px;}
.yb_c00306{bottom:296.355960px;}
.ya_c00306{bottom:336.486060px;}
.y9_c00306{bottom:376.646220px;}
.y8_c00306{bottom:401.835450px;}
.y7_c00306{bottom:442.145910px;}
.y6_c00306{bottom:482.335560px;}
.y5_c00306{bottom:507.525840px;}
.y4_c00306{bottom:547.655940px;}
.y3_c00306{bottom:587.966400px;}
.y2_c00306{bottom:628.096500px;}
.y1_c00306{bottom:670.413750px;}
.h5_c00306{height:51.679688px;}
.h3_c00306{height:86.305078px;}
.h4_c00306{height:86.307238px;}
.h2_c00306{height:87.596719px;}
.h1_c00306{height:180.632812px;}
.h0_c00306{height:810.000000px;}
.w0_c00306{width:1440.000000px;}
.x0_c00306{left:0.000000px;}
.x1_c00306{left:109.800000px;}
.x2_c00306{left:136.793880px;}
.x3_c00306{left:536.474850px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls4_c00306{letter-spacing:-0.213760pt;}
.ls5_c00306{letter-spacing:-0.106880pt;}
.ls2_c00306{letter-spacing:0.000000pt;}
.ls7_c00306{letter-spacing:0.192000pt;}
.ls3_c00306{letter-spacing:0.213760pt;}
.ls6_c00306{letter-spacing:0.320000pt;}
.ls1_c00306{letter-spacing:25.672576pt;}
.ls0_c00306{letter-spacing:58.570240pt;}
.ws0_c00306{word-spacing:-53.082880pt;}
.ws1_c00306{word-spacing:-23.941120pt;}
.wsa_c00306{word-spacing:-1.984000pt;}
.ws7_c00306{word-spacing:-1.282560pt;}
.ws8_c00306{word-spacing:-0.855040pt;}
.ws4_c00306{word-spacing:-0.641280pt;}
.ws3_c00306{word-spacing:-0.427520pt;}
.ws5_c00306{word-spacing:-0.213760pt;}
.wsb_c00306{word-spacing:-0.192000pt;}
.ws2_c00306{word-spacing:0.000000pt;}
.ws9_c00306{word-spacing:0.320640pt;}
.ws6_c00306{word-spacing:0.427520pt;}
._4_c00306{margin-left:-9.597824pt;}
._5_c00306{margin-left:-8.454208pt;}
._6_c00306{margin-left:-3.323968pt;}
._1_c00306{margin-left:-2.372736pt;}
._0_c00306{margin-left:-1.218432pt;}
._2_c00306{width:1.378752pt;}
._3_c00306{width:2.287232pt;}
._7_c00306{width:1437.613611pt;}
.fs2_c00306{font-size:64.000000pt;}
.fs1_c00306{font-size:106.880000pt;}
.fs0_c00306{font-size:234.880000pt;}
.y0_c00306{bottom:0.000000pt;}
.yf_c00306{bottom:28.060000pt;}
.ye_c00306{bottom:182.796640pt;}
.yd_c00306{bottom:205.178400pt;}
.yc_c00306{bottom:241.036160pt;}
.yb_c00306{bottom:263.427520pt;}
.ya_c00306{bottom:299.098720pt;}
.y9_c00306{bottom:334.796640pt;}
.y8_c00306{bottom:357.187067pt;}
.y7_c00306{bottom:393.018587pt;}
.y6_c00306{bottom:428.742720pt;}
.y5_c00306{bottom:451.134080pt;}
.y4_c00306{bottom:486.805280pt;}
.y3_c00306{bottom:522.636800pt;}
.y2_c00306{bottom:558.308000pt;}
.y1_c00306{bottom:595.923333pt;}
.h5_c00306{height:45.937500pt;}
.h3_c00306{height:76.715625pt;}
.h4_c00306{height:76.717545pt;}
.h2_c00306{height:77.863750pt;}
.h1_c00306{height:160.562500pt;}
.h0_c00306{height:720.000000pt;}
.w0_c00306{width:1280.000000pt;}
.x0_c00306{left:0.000000pt;}
.x1_c00306{left:97.600000pt;}
.x2_c00306{left:121.594560pt;}
.x3_c00306{left:476.866533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e89abe04ff496189d1ff531d.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:0.861816;font-style:normal;font-weight:normal;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_4fff0d8eab6ff1659b64c3ee.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00307{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00307{vertical-align:0.000000px;}
.ls1_c00307{letter-spacing:-0.335520px;}
.ls0_c00307{letter-spacing:-0.264240px;}
.ls2_c00307{letter-spacing:0.000000px;}
.ls4_c00307{letter-spacing:0.216000px;}
.ls3_c00307{letter-spacing:0.360000px;}
.sc__c00307{text-shadow:none;}
.sc0_c00307{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00307{-webkit-text-stroke:0px transparent;}
.sc0_c00307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00307{word-spacing:-37.913760px;}
.ws0_c00307{word-spacing:-37.578240px;}
.ws6_c00307{word-spacing:-2.232000px;}
.ws7_c00307{word-spacing:-0.216000px;}
.ws2_c00307{word-spacing:0.264240px;}
.ws4_c00307{word-spacing:0.503280px;}
.ws3_c00307{word-spacing:1.342080px;}
.ws5_c00307{word-spacing:1.677600px;}
._4_c00307{margin-left:-16.323048px;}
._3_c00307{margin-left:-6.024672px;}
._5_c00307{margin-left:-3.785328px;}
._0_c00307{margin-left:-2.483856px;}
._2_c00307{margin-left:-1.056960px;}
._1_c00307{width:1.004112px;}
._7_c00307{width:2.430576px;}
._6_c00307{width:3.836592px;}
._8_c00307{width:1617.779208px;}
.fc1_c00307{color:rgb(5,99,193);}
.fc2_c00307{color:rgb(137,137,137);}
.fc0_c00307{color:rgb(0,0,0);}
.fs2_c00307{font-size:72.000000px;}
.fs1_c00307{font-size:167.760000px;}
.fs0_c00307{font-size:264.240000px;}
.y0_c00307{bottom:0.000000px;}
.y6_c00307{bottom:31.567500px;}
.y5_c00307{bottom:369.409350px;}
.y4_c00307{bottom:429.709350px;}
.y3_c00307{bottom:490.011870px;}
.y2_c00307{bottom:550.489350px;}
.y1_c00307{bottom:668.699400px;}
.h3_c00307{height:51.679688px;}
.h2_c00307{height:120.413672px;}
.h1_c00307{height:180.632812px;}
.h0_c00307{height:810.000000px;}
.w0_c00307{width:1440.000000px;}
.x0_c00307{left:0.000000px;}
.x2_c00307{left:413.442900px;}
.x1_c00307{left:481.800000px;}
.x3_c00307{left:536.474850px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls1_c00307{letter-spacing:-0.298240pt;}
.ls0_c00307{letter-spacing:-0.234880pt;}
.ls2_c00307{letter-spacing:0.000000pt;}
.ls4_c00307{letter-spacing:0.192000pt;}
.ls3_c00307{letter-spacing:0.320000pt;}
.ws1_c00307{word-spacing:-33.701120pt;}
.ws0_c00307{word-spacing:-33.402880pt;}
.ws6_c00307{word-spacing:-1.984000pt;}
.ws7_c00307{word-spacing:-0.192000pt;}
.ws2_c00307{word-spacing:0.234880pt;}
.ws4_c00307{word-spacing:0.447360pt;}
.ws3_c00307{word-spacing:1.192960pt;}
.ws5_c00307{word-spacing:1.491200pt;}
._4_c00307{margin-left:-14.509376pt;}
._3_c00307{margin-left:-5.355264pt;}
._5_c00307{margin-left:-3.364736pt;}
._0_c00307{margin-left:-2.207872pt;}
._2_c00307{margin-left:-0.939520pt;}
._1_c00307{width:0.892544pt;}
._7_c00307{width:2.160512pt;}
._6_c00307{width:3.410304pt;}
._8_c00307{width:1438.025963pt;}
.fs2_c00307{font-size:64.000000pt;}
.fs1_c00307{font-size:149.120000pt;}
.fs0_c00307{font-size:234.880000pt;}
.y0_c00307{bottom:0.000000pt;}
.y6_c00307{bottom:28.060000pt;}
.y5_c00307{bottom:328.363867pt;}
.y4_c00307{bottom:381.963867pt;}
.y3_c00307{bottom:435.566107pt;}
.y2_c00307{bottom:489.323867pt;}
.y1_c00307{bottom:594.399467pt;}
.h3_c00307{height:45.937500pt;}
.h2_c00307{height:107.034375pt;}
.h1_c00307{height:160.562500pt;}
.h0_c00307{height:720.000000pt;}
.w0_c00307{width:1280.000000pt;}
.x0_c00307{left:0.000000pt;}
.x2_c00307{left:367.504800pt;}
.x1_c00307{left:428.266667pt;}
.x3_c00307{left:476.866533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c72111fcca3bbee55366407.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:0.938965;font-style:normal;font-weight:normal;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_04391c8f0d41e2b83a317a0a.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00308;src:url('chunks/assets/font_8cdbf6b4574db99cb368f6a2.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00308;src:url('chunks/assets/font_b0d4d3a7fbd26ba9b1a6d27e.woff2')format("woff");}.ff4_c00308{font-family:ff4_c00308;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00308;src:url('chunks/assets/font_8474c5a8f99f63353ecea2e6.woff2')format("woff");}.ff5_c00308{font-family:ff5_c00308;line-height:0.857910;font-style: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;}
.ls5_c00308{letter-spacing:-0.324000px;}
.ls3_c00308{letter-spacing:-0.144000px;}
.ls7_c00308{letter-spacing:0.000000px;}
.ls2_c00308{letter-spacing:0.108000px;}
.ls6_c00308{letter-spacing:0.216000px;}
.ls4_c00308{letter-spacing:0.324000px;}
.ls1_c00308{letter-spacing:30.240000px;}
.ls0_c00308{letter-spacing:39.888000px;}
.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:-24.084000px;}
.ws7_c00308{word-spacing:-2.268000px;}
.ws8_c00308{word-spacing:-2.052000px;}
.ws6_c00308{word-spacing:-1.512000px;}
.ws1_c00308{word-spacing:-1.008000px;}
.ws3_c00308{word-spacing:-0.288000px;}
.ws4_c00308{word-spacing:-0.108000px;}
.ws2_c00308{word-spacing:0.000000px;}
.ws5_c00308{word-spacing:0.540000px;}
._0_c00308{margin-left:-11.073600px;}
._5_c00308{margin-left:-9.554400px;}
._6_c00308{margin-left:-8.553600px;}
._7_c00308{margin-left:-6.994800px;}
._2_c00308{margin-left:-5.328000px;}
._8_c00308{margin-left:-3.099600px;}
._4_c00308{margin-left:-1.263600px;}
._3_c00308{width:1.310400px;}
._1_c00308{width:2.736000px;}
.fc2_c00308{color:rgb(0,0,0);}
.fc1_c00308{color:rgb(192,0,0);}
.fc0_c00308{color:rgb(0,112,192);}
.fs2_c00308{font-size:96.000000px;}
.fs1_c00308{font-size:108.000000px;}
.fs0_c00308{font-size:144.000000px;}
.y0_c00308{bottom:0.000000px;}
.y6_c00308{bottom:36.609000px;}
.y5_c00308{bottom:330.625200px;}
.y4_c00308{bottom:363.025200px;}
.y3_c00308{bottom:426.745200px;}
.y2_c00308{bottom:491.545200px;}
.y1_c00308{bottom:569.125350px;}
.y9_c00308{bottom:701.070000px;}
.y8_c00308{bottom:729.870000px;}
.y7_c00308{bottom:758.670000px;}
.h6_c00308{height:65.296875px;}
.h5_c00308{height:77.519531px;}
.h4_c00308{height:78.416016px;}
.h3_c00308{height:78.626953px;}
.h2_c00308{height:78.679688px;}
.h1_c00308{height:104.906250px;}
.h0_c00308{height:810.000000px;}
.w0_c00308{width:1440.000000px;}
.x0_c00308{left:0.000000px;}
.x1_c00308{left:91.552350px;}
.x7_c00308{left:165.078000px;}
.x4_c00308{left:173.794350px;}
.x8_c00308{left:204.558000px;}
.x5_c00308{left:210.541350px;}
.x3_c00308{left:288.463350px;}
.x9_c00308{left:294.852000px;}
.x6_c00308{left:555.555000px;}
.x2_c00308{left:612.652350px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls5_c00308{letter-spacing:-0.288000pt;}
.ls3_c00308{letter-spacing:-0.128000pt;}
.ls7_c00308{letter-spacing:0.000000pt;}
.ls2_c00308{letter-spacing:0.096000pt;}
.ls6_c00308{letter-spacing:0.192000pt;}
.ls4_c00308{letter-spacing:0.288000pt;}
.ls1_c00308{letter-spacing:26.880000pt;}
.ls0_c00308{letter-spacing:35.456000pt;}
.ws0_c00308{word-spacing:-21.408000pt;}
.ws7_c00308{word-spacing:-2.016000pt;}
.ws8_c00308{word-spacing:-1.824000pt;}
.ws6_c00308{word-spacing:-1.344000pt;}
.ws1_c00308{word-spacing:-0.896000pt;}
.ws3_c00308{word-spacing:-0.256000pt;}
.ws4_c00308{word-spacing:-0.096000pt;}
.ws2_c00308{word-spacing:0.000000pt;}
.ws5_c00308{word-spacing:0.480000pt;}
._0_c00308{margin-left:-9.843200pt;}
._5_c00308{margin-left:-8.492800pt;}
._6_c00308{margin-left:-7.603200pt;}
._7_c00308{margin-left:-6.217600pt;}
._2_c00308{margin-left:-4.736000pt;}
._8_c00308{margin-left:-2.755200pt;}
._4_c00308{margin-left:-1.123200pt;}
._3_c00308{width:1.164800pt;}
._1_c00308{width:2.432000pt;}
.fs2_c00308{font-size:85.333333pt;}
.fs1_c00308{font-size:96.000000pt;}
.fs0_c00308{font-size:128.000000pt;}
.y0_c00308{bottom:0.000000pt;}
.y6_c00308{bottom:32.541333pt;}
.y5_c00308{bottom:293.889067pt;}
.y4_c00308{bottom:322.689067pt;}
.y3_c00308{bottom:379.329067pt;}
.y2_c00308{bottom:436.929067pt;}
.y1_c00308{bottom:505.889200pt;}
.y9_c00308{bottom:623.173333pt;}
.y8_c00308{bottom:648.773333pt;}
.y7_c00308{bottom:674.373333pt;}
.h6_c00308{height:58.041667pt;}
.h5_c00308{height:68.906250pt;}
.h4_c00308{height:69.703125pt;}
.h3_c00308{height:69.890625pt;}
.h2_c00308{height:69.937500pt;}
.h1_c00308{height:93.250000pt;}
.h0_c00308{height:720.000000pt;}
.w0_c00308{width:1280.000000pt;}
.x0_c00308{left:0.000000pt;}
.x1_c00308{left:81.379867pt;}
.x7_c00308{left:146.736000pt;}
.x4_c00308{left:154.483867pt;}
.x8_c00308{left:181.829333pt;}
.x5_c00308{left:187.147867pt;}
.x3_c00308{left:256.411867pt;}
.x9_c00308{left:262.090667pt;}
.x6_c00308{left:493.826667pt;}
.x2_c00308{left:544.579867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_669ee752cdbc0cd9f98d6269.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00309{vertical-align:-25.258800px;}
.v2_c00309{vertical-align:-16.745400px;}
.v0_c00309{vertical-align:0.000000px;}
.ls2_c00309{letter-spacing:0.084240px;}
.ls0_c00309{letter-spacing:0.168480px;}
.ls1_c00309{letter-spacing:0.239760px;}
.sc__c00309{text-shadow:none;}
.sc0_c00309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00309{-webkit-text-stroke:0px transparent;}
.sc0_c00309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00309{word-spacing:-2.527200px;}
.ws0_c00309{word-spacing:-1.937520px;}
.ws4_c00309{word-spacing:-1.853280px;}
.ws1_c00309{word-spacing:-1.179360px;}
.ws2_c00309{word-spacing:1.678320px;}
._4_c00309{margin-left:-21.049632px;}
._0_c00309{margin-left:-7.034040px;}
._3_c00309{margin-left:-3.883464px;}
._5_c00309{margin-left:-2.746224px;}
._2_c00309{margin-left:-1.608984px;}
._1_c00309{width:1.111968px;}
._6_c00309{width:2.122848px;}
._7_c00309{width:1081.754640px;}
._8_c00309{width:1150.008648px;}
.fc1_c00309{color:rgb(0,112,192);}
.fc0_c00309{color:rgb(0,0,0);}
.fs0_c00309{font-size:84.240000px;}
.fs1_c00309{font-size:239.760000px;}
.y0_c00309{bottom:0.000000px;}
.y8_c00309{bottom:71.200800px;}
.y7_c00309{bottom:73.456800px;}
.y2_c00309{bottom:74.433600px;}
.y3_c00309{bottom:370.755000px;}
.y6_c00309{bottom:376.428000px;}
.y1_c00309{bottom:378.574050px;}
.y5_c00309{bottom:381.405600px;}
.y4_c00309{bottom:711.071250px;}
.h1_c00309{height:61.164492px;}
.h2_c00309{height:174.083555px;}
.h0_c00309{height:810.000000px;}
.w0_c00309{width:1440.000000px;}
.x0_c00309{left:0.000000px;}
.x2_c00309{left:65.629500px;}
.x6_c00309{left:239.325750px;}
.x7_c00309{left:274.312800px;}
.x5_c00309{left:463.600050px;}
.x4_c00309{left:489.573600px;}
.x8_c00309{left:529.681350px;}
.x1_c00309{left:748.649250px;}
.x3_c00309{left:925.653450px;}
@media print{
.v1_c00309{vertical-align:-22.452267pt;}
.v2_c00309{vertical-align:-14.884800pt;}
.v0_c00309{vertical-align:0.000000pt;}
.ls2_c00309{letter-spacing:0.074880pt;}
.ls0_c00309{letter-spacing:0.149760pt;}
.ls1_c00309{letter-spacing:0.213120pt;}
.ws3_c00309{word-spacing:-2.246400pt;}
.ws0_c00309{word-spacing:-1.722240pt;}
.ws4_c00309{word-spacing:-1.647360pt;}
.ws1_c00309{word-spacing:-1.048320pt;}
.ws2_c00309{word-spacing:1.491840pt;}
._4_c00309{margin-left:-18.710784pt;}
._0_c00309{margin-left:-6.252480pt;}
._3_c00309{margin-left:-3.451968pt;}
._5_c00309{margin-left:-2.441088pt;}
._2_c00309{margin-left:-1.430208pt;}
._1_c00309{width:0.988416pt;}
._6_c00309{width:1.886976pt;}
._7_c00309{width:961.559680pt;}
._8_c00309{width:1022.229909pt;}
.fs0_c00309{font-size:74.880000pt;}
.fs1_c00309{font-size:213.120000pt;}
.y0_c00309{bottom:0.000000pt;}
.y8_c00309{bottom:63.289600pt;}
.y7_c00309{bottom:65.294933pt;}
.y2_c00309{bottom:66.163200pt;}
.y3_c00309{bottom:329.560000pt;}
.y6_c00309{bottom:334.602667pt;}
.y1_c00309{bottom:336.510267pt;}
.y5_c00309{bottom:339.027200pt;}
.y4_c00309{bottom:632.063333pt;}
.h1_c00309{height:54.368437pt;}
.h2_c00309{height:154.740938pt;}
.h0_c00309{height:720.000000pt;}
.w0_c00309{width:1280.000000pt;}
.x0_c00309{left:0.000000pt;}
.x2_c00309{left:58.337333pt;}
.x6_c00309{left:212.734000pt;}
.x7_c00309{left:243.833600pt;}
.x5_c00309{left:412.088933pt;}
.x4_c00309{left:435.176533pt;}
.x8_c00309{left:470.827867pt;}
.x1_c00309{left:665.466000pt;}
.x3_c00309{left:822.803067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33eeb365a50ae7526e2a5b05.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00310{vertical-align:0.000000px;}
.ls0_c00310{letter-spacing:0.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;}
}
.ws0_c00310{word-spacing:1.198800px;}
.fc0_c00310{color:rgb(0,51,204);}
.fs0_c00310{font-size:239.760000px;}
.y0_c00310{bottom:0.000000px;}
.y1_c00310{bottom:741.438600px;}
.h1_c00310{height:191.761172px;}
.h0_c00310{height:810.000000px;}
.w0_c00310{width:1440.000000px;}
.x0_c00310{left:0.000000px;}
.x1_c00310{left:558.000000px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls0_c00310{letter-spacing:0.000000pt;}
.ws0_c00310{word-spacing:1.065600pt;}
.fs0_c00310{font-size:213.120000pt;}
.y0_c00310{bottom:0.000000pt;}
.y1_c00310{bottom:659.056533pt;}
.h1_c00310{height:170.454375pt;}
.h0_c00310{height:720.000000pt;}
.w0_c00310{width:1280.000000pt;}
.x0_c00310{left:0.000000pt;}
.x1_c00310{left:496.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_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_48c50146c8f7784b93f2b8b6.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00311;src:url('chunks/assets/font_569b7a2fd70ded3eb565c470.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:0.938965;font-style:normal;font-weight:normal;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_e380485a096a614381e5b569.woff2')format("woff");}.ff3_c00311{font-family:ff3_c00311;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6_c00311{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m7_c00311{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,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);}
.m3_c00311{transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);}
.m5_c00311{transform:matrix(0.250081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250081,0.000000,0.000000,0.250000,0,0);}
.m4_c00311{transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);}
.m2_c00311{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m1_c00311{transform:matrix(0.250149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250149,0.000000,0.000000,0.250000,0,0);}
.m8_c00311{transform:matrix(0.274808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274808,0.000000,0.000000,0.250000,0,0);}
.v3_c00311{vertical-align:-36.589800px;}
.v2_c00311{vertical-align:-34.870800px;}
.v1_c00311{vertical-align:-14.179200px;}
.v0_c00311{vertical-align:0.000000px;}
.lsa_c00311{letter-spacing:-0.336960px;}
.ls9_c00311{letter-spacing:-0.324000px;}
.lsb_c00311{letter-spacing:-0.252720px;}
.ls6_c00311{letter-spacing:-0.180828px;}
.ls8_c00311{letter-spacing:-0.084240px;}
.ls5_c00311{letter-spacing:0.000000px;}
.ls7_c00311{letter-spacing:0.216994px;}
.ls3_c00311{letter-spacing:0.288000px;}
.ls2_c00311{letter-spacing:29.893077px;}
.ls4_c00311{letter-spacing:31.367781px;}
.ls1_c00311{letter-spacing:39.357418px;}
.ls0_c00311{letter-spacing:40.059422px;}
.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;}
}
.ws7_c00311{word-spacing:-24.084000px;}
.ws6_c00311{word-spacing:-12.455456px;}
.ws5_c00311{word-spacing:-11.870322px;}
.ws1_c00311{word-spacing:-11.825119px;}
.ws0_c00311{word-spacing:-11.726540px;}
.ws4_c00311{word-spacing:-10.271030px;}
.ws3_c00311{word-spacing:-10.054037px;}
.wsd_c00311{word-spacing:-2.442960px;}
.wse_c00311{word-spacing:-1.769040px;}
.wsc_c00311{word-spacing:-1.010880px;}
.wsb_c00311{word-spacing:-0.864000px;}
.ws8_c00311{word-spacing:-0.540000px;}
.ws9_c00311{word-spacing:0.000000px;}
.wsa_c00311{word-spacing:0.180828px;}
.ws10_c00311{word-spacing:0.252720px;}
.wsf_c00311{word-spacing:1.432080px;}
.ws2_c00311{word-spacing:23.493101px;}
._3_c00311{margin-left:-2.247048px;}
._1_c00311{margin-left:-1.008000px;}
._0_c00311{width:1.252800px;}
._2_c00311{width:2.596968px;}
.fc4_c00311{color:transparent;}
.fc3_c00311{color:rgb(51,51,255);}
.fc2_c00311{color:rgb(255,0,0);}
.fc1_c00311{color:rgb(0,0,255);}
.fc0_c00311{color:rgb(0,0,0);}
.fs7_c00311{font-size:24.110400px;}
.fs2_c00311{font-size:28.003200px;}
.fs4_c00311{font-size:28.357800px;}
.fsa_c00311{font-size:28.465800px;}
.fsf_c00311{font-size:29.869200px;}
.fs5_c00311{font-size:35.864400px;}
.fs6_c00311{font-size:36.165600px;}
.fs1_c00311{font-size:42.181800px;}
.fs9_c00311{font-size:42.343200px;}
.fs3_c00311{font-size:42.536400px;}
.fs8_c00311{font-size:42.699000px;}
.fse_c00311{font-size:44.430000px;}
.fsd_c00311{font-size:44.803800px;}
.fsc_c00311{font-size:84.240000px;}
.fs0_c00311{font-size:108.000000px;}
.fsb_c00311{font-size:144.000000px;}
.y0_c00311{bottom:0.000000px;}
.yf_c00311{bottom:3.013650px;}
.y1a_c00311{bottom:3.558150px;}
.ye_c00311{bottom:6.027600px;}
.y7_c00311{bottom:7.085250px;}
.y19_c00311{bottom:7.116375px;}
.y28_c00311{bottom:7.467045px;}
.y18_c00311{bottom:16.723650px;}
.y27_c00311{bottom:17.547900px;}
.y17_c00311{bottom:27.220500px;}
.y26_c00311{bottom:28.562100px;}
.y1c_c00311{bottom:41.097300px;}
.y1b_c00311{bottom:44.655750px;}
.y15_c00311{bottom:44.833950px;}
.y12_c00311{bottom:45.056400px;}
.y29_c00311{bottom:46.856850px;}
.y24_c00311{bottom:47.043900px;}
.y11_c00311{bottom:47.618250px;}
.y16_c00311{bottom:53.551500px;}
.y25_c00311{bottom:56.191050px;}
.y4_c00311{bottom:56.269650px;}
.yb_c00311{bottom:56.358450px;}
.y5_c00311{bottom:66.283050px;}
.y14_c00311{bottom:67.072950px;}
.yd_c00311{bottom:68.263050px;}
.y23_c00311{bottom:70.379100px;}
.yc_c00311{bottom:71.276850px;}
.ya_c00311{bottom:71.277000px;}
.y6_c00311{bottom:83.829150px;}
.y3_c00311{bottom:83.831100px;}
.y10_c00311{bottom:89.962500px;}
.y8_c00311{bottom:105.804750px;}
.y2a_c00311{bottom:177.866400px;}
.y22_c00311{bottom:218.520000px;}
.y1_c00311{bottom:347.039850px;}
.y13_c00311{bottom:364.320000px;}
.y21_c00311{bottom:381.042000px;}
.y20_c00311{bottom:406.250820px;}
.y1e_c00311{bottom:478.260000px;}
.y2c_c00311{bottom:479.965230px;}
.y9_c00311{bottom:500.220000px;}
.y2_c00311{bottom:504.900000px;}
.y2b_c00311{bottom:505.174050px;}
.y1f_c00311{bottom:703.260000px;}
.y1d_c00311{bottom:743.400000px;}
.h8_c00311{height:17.564803px;}
.hc_c00311{height:20.737780px;}
.h6_c00311{height:26.127776px;}
.h7_c00311{height:26.347205px;}
.h3_c00311{height:30.730100px;}
.hb_c00311{height:30.847683px;}
.h4_c00311{height:30.988432px;}
.ha_c00311{height:31.106889px;}
.h11_c00311{height:32.367949px;}
.h10_c00311{height:32.640268px;}
.h13_c00311{height:60.465234px;}
.he_c00311{height:61.370156px;}
.h9_c00311{height:76.680000px;}
.h12_c00311{height:77.519531px;}
.hf_c00311{height:80.460000px;}
.h1_c00311{height:86.378906px;}
.h5_c00311{height:98.100000px;}
.hd_c00311{height:115.171875px;}
.h2_c00311{height:115.380000px;}
.h0_c00311{height:810.000000px;}
.w3_c00311{width:153.000000px;}
.w2_c00311{width:153.001500px;}
.w4_c00311{width:176.580000px;}
.w1_c00311{width:180.000000px;}
.w0_c00311{width:1440.000000px;}
.x0_c00311{left:0.000000px;}
.xf_c00311{left:29.620350px;}
.x4_c00311{left:39.815550px;}
.x10_c00311{left:42.583950px;}
.x9_c00311{left:45.351300px;}
.x14_c00311{left:46.469400px;}
.x3_c00311{left:53.354400px;}
.x15_c00311{left:54.739950px;}
.xa_c00311{left:60.274500px;}
.x12_c00311{left:62.082600px;}
.x5_c00311{left:70.911000px;}
.x13_c00311{left:79.062750px;}
.xd_c00311{left:86.273400px;}
.x1c_c00311{left:91.248000px;}
.xe_c00311{left:99.243150px;}
.x7_c00311{left:101.497800px;}
.x16_c00311{left:131.810100px;}
.xb_c00311{left:135.037200px;}
.xc_c00311{left:148.007100px;}
.x1d_c00311{left:152.126250px;}
.x6_c00311{left:158.867250px;}
.x18_c00311{left:253.800000px;}
.x2_c00311{left:297.000000px;}
.x19_c00311{left:424.800000px;}
.x1_c00311{left:451.800000px;}
.x17_c00311{left:559.800000px;}
.x8_c00311{left:801.000000px;}
.x11_c00311{left:810.000000px;}
.x1a_c00311{left:982.805760px;}
.x1b_c00311{left:1052.280000px;}
.x1e_c00311{left:1107.747150px;}
.x1f_c00311{left:1146.248100px;}
@media print{
.v3_c00311{vertical-align:-32.524267pt;}
.v2_c00311{vertical-align:-30.996267pt;}
.v1_c00311{vertical-align:-12.603733pt;}
.v0_c00311{vertical-align:0.000000pt;}
.lsa_c00311{letter-spacing:-0.299520pt;}
.ls9_c00311{letter-spacing:-0.288000pt;}
.lsb_c00311{letter-spacing:-0.224640pt;}
.ls6_c00311{letter-spacing:-0.160736pt;}
.ls8_c00311{letter-spacing:-0.074880pt;}
.ls5_c00311{letter-spacing:0.000000pt;}
.ls7_c00311{letter-spacing:0.192883pt;}
.ls3_c00311{letter-spacing:0.256000pt;}
.ls2_c00311{letter-spacing:26.571624pt;}
.ls4_c00311{letter-spacing:27.882472pt;}
.ls1_c00311{letter-spacing:34.984372pt;}
.ls0_c00311{letter-spacing:35.608375pt;}
.ws7_c00311{word-spacing:-21.408000pt;}
.ws6_c00311{word-spacing:-11.071517pt;}
.ws5_c00311{word-spacing:-10.551397pt;}
.ws1_c00311{word-spacing:-10.511217pt;}
.ws0_c00311{word-spacing:-10.423591pt;}
.ws4_c00311{word-spacing:-9.129805pt;}
.ws3_c00311{word-spacing:-8.936922pt;}
.wsd_c00311{word-spacing:-2.171520pt;}
.wse_c00311{word-spacing:-1.572480pt;}
.wsc_c00311{word-spacing:-0.898560pt;}
.wsb_c00311{word-spacing:-0.768000pt;}
.ws8_c00311{word-spacing:-0.480000pt;}
.ws9_c00311{word-spacing:0.000000pt;}
.wsa_c00311{word-spacing:0.160736pt;}
.ws10_c00311{word-spacing:0.224640pt;}
.wsf_c00311{word-spacing:1.272960pt;}
.ws2_c00311{word-spacing:20.882757pt;}
._3_c00311{margin-left:-1.997376pt;}
._1_c00311{margin-left:-0.896000pt;}
._0_c00311{width:1.113600pt;}
._2_c00311{width:2.308416pt;}
.fs7_c00311{font-size:21.431467pt;}
.fs2_c00311{font-size:24.891733pt;}
.fs4_c00311{font-size:25.206933pt;}
.fsa_c00311{font-size:25.302933pt;}
.fsf_c00311{font-size:26.550400pt;}
.fs5_c00311{font-size:31.879467pt;}
.fs6_c00311{font-size:32.147200pt;}
.fs1_c00311{font-size:37.494933pt;}
.fs9_c00311{font-size:37.638400pt;}
.fs3_c00311{font-size:37.810133pt;}
.fs8_c00311{font-size:37.954667pt;}
.fse_c00311{font-size:39.493333pt;}
.fsd_c00311{font-size:39.825600pt;}
.fsc_c00311{font-size:74.880000pt;}
.fs0_c00311{font-size:96.000000pt;}
.fsb_c00311{font-size:128.000000pt;}
.y0_c00311{bottom:0.000000pt;}
.yf_c00311{bottom:2.678800pt;}
.y1a_c00311{bottom:3.162800pt;}
.ye_c00311{bottom:5.357867pt;}
.y7_c00311{bottom:6.298000pt;}
.y19_c00311{bottom:6.325667pt;}
.y28_c00311{bottom:6.637373pt;}
.y18_c00311{bottom:14.865467pt;}
.y27_c00311{bottom:15.598133pt;}
.y17_c00311{bottom:24.196000pt;}
.y26_c00311{bottom:25.388533pt;}
.y1c_c00311{bottom:36.530933pt;}
.y1b_c00311{bottom:39.694000pt;}
.y15_c00311{bottom:39.852400pt;}
.y12_c00311{bottom:40.050133pt;}
.y29_c00311{bottom:41.650533pt;}
.y24_c00311{bottom:41.816800pt;}
.y11_c00311{bottom:42.327333pt;}
.y16_c00311{bottom:47.601333pt;}
.y25_c00311{bottom:49.947600pt;}
.y4_c00311{bottom:50.017467pt;}
.yb_c00311{bottom:50.096400pt;}
.y5_c00311{bottom:58.918267pt;}
.y14_c00311{bottom:59.620400pt;}
.yd_c00311{bottom:60.678267pt;}
.y23_c00311{bottom:62.559200pt;}
.yc_c00311{bottom:63.357200pt;}
.ya_c00311{bottom:63.357333pt;}
.y6_c00311{bottom:74.514800pt;}
.y3_c00311{bottom:74.516533pt;}
.y10_c00311{bottom:79.966667pt;}
.y8_c00311{bottom:94.048667pt;}
.y2a_c00311{bottom:158.103467pt;}
.y22_c00311{bottom:194.240000pt;}
.y1_c00311{bottom:308.479867pt;}
.y13_c00311{bottom:323.840000pt;}
.y21_c00311{bottom:338.704000pt;}
.y20_c00311{bottom:361.111840pt;}
.y1e_c00311{bottom:425.120000pt;}
.y2c_c00311{bottom:426.635760pt;}
.y9_c00311{bottom:444.640000pt;}
.y2_c00311{bottom:448.800000pt;}
.y2b_c00311{bottom:449.043600pt;}
.y1f_c00311{bottom:625.120000pt;}
.y1d_c00311{bottom:660.800000pt;}
.h8_c00311{height:15.613158pt;}
.hc_c00311{height:18.433582pt;}
.h6_c00311{height:23.224690pt;}
.h7_c00311{height:23.419738pt;}
.h3_c00311{height:27.315645pt;}
.hb_c00311{height:27.420162pt;}
.h4_c00311{height:27.545273pt;}
.ha_c00311{height:27.650568pt;}
.h11_c00311{height:28.771510pt;}
.h10_c00311{height:29.013572pt;}
.h13_c00311{height:53.746875pt;}
.he_c00311{height:54.551250pt;}
.h9_c00311{height:68.160000pt;}
.h12_c00311{height:68.906250pt;}
.hf_c00311{height:71.520000pt;}
.h1_c00311{height:76.781250pt;}
.h5_c00311{height:87.200000pt;}
.hd_c00311{height:102.375000pt;}
.h2_c00311{height:102.560000pt;}
.h0_c00311{height:720.000000pt;}
.w3_c00311{width:136.000000pt;}
.w2_c00311{width:136.001333pt;}
.w4_c00311{width:156.960000pt;}
.w1_c00311{width:160.000000pt;}
.w0_c00311{width:1280.000000pt;}
.x0_c00311{left:0.000000pt;}
.xf_c00311{left:26.329200pt;}
.x4_c00311{left:35.391600pt;}
.x10_c00311{left:37.852400pt;}
.x9_c00311{left:40.312267pt;}
.x14_c00311{left:41.306133pt;}
.x3_c00311{left:47.426133pt;}
.x15_c00311{left:48.657733pt;}
.xa_c00311{left:53.577333pt;}
.x12_c00311{left:55.184533pt;}
.x5_c00311{left:63.032000pt;}
.x13_c00311{left:70.278000pt;}
.xd_c00311{left:76.687467pt;}
.x1c_c00311{left:81.109333pt;}
.xe_c00311{left:88.216133pt;}
.x7_c00311{left:90.220267pt;}
.x16_c00311{left:117.164533pt;}
.xb_c00311{left:120.033067pt;}
.xc_c00311{left:131.561867pt;}
.x1d_c00311{left:135.223333pt;}
.x6_c00311{left:141.215333pt;}
.x18_c00311{left:225.600000pt;}
.x2_c00311{left:264.000000pt;}
.x19_c00311{left:377.600000pt;}
.x1_c00311{left:401.600000pt;}
.x17_c00311{left:497.600000pt;}
.x8_c00311{left:712.000000pt;}
.x11_c00311{left:720.000000pt;}
.x1a_c00311{left:873.605120pt;}
.x1b_c00311{left:935.360000pt;}
.x1e_c00311{left:984.664133pt;}
.x1f_c00311{left:1018.887200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e3d7b14dec03285f709b16fa.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00312;src:url('chunks/assets/font_90b14ea8d53db468136ae6b9.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:0.938965;font-style:normal;font-weight:normal;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_0d6cf3e6b5314573367c41c2.woff2')format("woff");}.ff3_c00312{font-family:ff3_c00312;line-height:0.938965;font-style:normal;font-weight:normal;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_653492554819c415c819c59c.woff2')format("woff");}.ff4_c00312{font-family:ff4_c00312;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00312;src:url('chunks/assets/font_9d823fecb414dc50b84b8d83.woff2')format("woff");}.ff5_c00312{font-family:ff5_c00312;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00312{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3_c00312{transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);}
.m2_c00312{transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);}
.m4_c00312{transform:matrix(0.249676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249676,0.000000,0.000000,0.250000,0,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);}
.m6_c00312{transform:matrix(0.250178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250178,0.000000,0.000000,0.250000,0,0);}
.m5_c00312{transform:matrix(0.250183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250183,0.000000,0.000000,0.250000,0,0);}
.v1_c00312{vertical-align:-40.274400px;}
.v2_c00312{vertical-align:-16.404180px;}
.v0_c00312{vertical-align:0.000000px;}
.ls8_c00312{letter-spacing:-0.324000px;}
.ls5_c00312{letter-spacing:-0.288000px;}
.ls7_c00312{letter-spacing:-0.216000px;}
.ls4_c00312{letter-spacing:-0.072000px;}
.ls3_c00312{letter-spacing:0.000000px;}
.ls6_c00312{letter-spacing:0.108000px;}
.ls0_c00312{letter-spacing:0.216000px;}
.ls2_c00312{letter-spacing:34.455845px;}
.ls1_c00312{letter-spacing:34.525138px;}
.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;}
}
.ws6_c00312{word-spacing:-107.784000px;}
.ws7_c00312{word-spacing:-107.676000px;}
.ws3_c00312{word-spacing:-46.872000px;}
.ws2_c00312{word-spacing:-20.232000px;}
.ws0_c00312{word-spacing:-19.944000px;}
.ws1_c00312{word-spacing:-19.728000px;}
.ws4_c00312{word-spacing:-13.709292px;}
.ws5_c00312{word-spacing:-13.681436px;}
.wsc_c00312{word-spacing:-6.415920px;}
.ws9_c00312{word-spacing:-1.681920px;}
.wse_c00312{word-spacing:-0.864000px;}
.ws8_c00312{word-spacing:-0.840960px;}
.wsa_c00312{word-spacing:-0.670320px;}
.wsf_c00312{word-spacing:0.000000px;}
.wsb_c00312{word-spacing:0.766080px;}
.wsd_c00312{word-spacing:2.202480px;}
._3_c00312{margin-left:-6.923448px;}
._5_c00312{margin-left:-2.290896px;}
._1_c00312{margin-left:-1.198368px;}
._0_c00312{width:1.955232px;}
._2_c00312{width:3.256848px;}
._4_c00312{width:6.435072px;}
.fc4_c00312{color:transparent;}
.fc3_c00312{color:rgb(0,0,255);}
.fc1_c00312{color:rgb(255,0,0);}
.fc2_c00312{color:rgb(0,0,0);}
.fc0_c00312{color:rgb(0,51,204);}
.fs9_c00312{font-size:32.809200px;}
.fs6_c00312{font-size:32.875800px;}
.fs8_c00312{font-size:48.804000px;}
.fs5_c00312{font-size:48.903000px;}
.fs7_c00312{font-size:49.213800px;}
.fs4_c00312{font-size:49.314000px;}
.fs2_c00312{font-size:72.000000px;}
.fs1_c00312{font-size:95.760000px;}
.fs3_c00312{font-size:108.000000px;}
.fs0_c00312{font-size:210.240000px;}
.y0_c00312{bottom:0.000000px;}
.y14_c00312{bottom:4.105050px;}
.y1d_c00312{bottom:8.203695px;}
.y13_c00312{bottom:8.214450px;}
.yc_c00312{bottom:12.352350px;}
.y1c_c00312{bottom:19.276800px;}
.y12_c00312{bottom:19.310100px;}
.y1b_c00312{bottom:31.375200px;}
.y11_c00312{bottom:31.433400px;}
.y16_c00312{bottom:47.460000px;}
.y1e_c00312{bottom:51.471150px;}
.y15_c00312{bottom:51.569550px;}
.y19_c00312{bottom:51.674850px;}
.yf_c00312{bottom:51.779400px;}
.y4_c00312{bottom:59.388300px;}
.y1a_c00312{bottom:61.723500px;}
.y10_c00312{bottom:61.844250px;}
.y6_c00312{bottom:68.365800px;}
.yb_c00312{bottom:68.388300px;}
.y18_c00312{bottom:77.307000px;}
.ye_c00312{bottom:77.464200px;}
.y3_c00312{bottom:102.600000px;}
.y5_c00312{bottom:111.577500px;}
.ya_c00312{bottom:111.600000px;}
.y20_c00312{bottom:215.781450px;}
.y17_c00312{bottom:248.400000px;}
.y1f_c00312{bottom:378.726450px;}
.yd_c00312{bottom:406.440000px;}
.y8_c00312{bottom:505.800000px;}
.y9_c00312{bottom:514.800000px;}
.y7_c00312{bottom:523.800000px;}
.y2_c00312{bottom:645.021510px;}
.y1_c00312{bottom:701.733750px;}
.h8_c00312{height:23.950534px;}
.hb_c00312{height:35.554477px;}
.h7_c00312{height:35.626600px;}
.ha_c00312{height:35.853022px;}
.h6_c00312{height:35.926020px;}
.h3_c00312{height:52.453125px;}
.h2_c00312{height:69.762656px;}
.hc_c00312{height:77.519531px;}
.h4_c00312{height:86.378906px;}
.h9_c00312{height:88.380000px;}
.h5_c00312{height:88.560000px;}
.h1_c00312{height:168.150937px;}
.h0_c00312{height:810.000000px;}
.w1_c00312{width:176.580000px;}
.w0_c00312{width:1440.000000px;}
.x0_c00312{left:0.000000px;}
.x15_c00312{left:53.632500px;}
.x16_c00312{left:63.177900px;}
.x13_c00312{left:71.650800px;}
.x14_c00312{left:91.248000px;}
.x17_c00312{left:152.126250px;}
.x18_c00312{left:169.782450px;}
.x3_c00312{left:183.600000px;}
.x1_c00312{left:286.458750px;}
.xc_c00312{left:337.860000px;}
.x11_c00312{left:351.258750px;}
.xd_c00312{left:368.460000px;}
.xe_c00312{left:399.060000px;}
.x2_c00312{left:455.491710px;}
.x4_c00312{left:539.994780px;}
.x5_c00312{left:587.156580px;}
.x6_c00312{left:679.860000px;}
.x7_c00312{left:710.460000px;}
.x8_c00312{left:741.060000px;}
.xf_c00312{left:900.000000px;}
.x10_c00312{left:940.506480px;}
.x9_c00312{left:1039.860000px;}
.xa_c00312{left:1070.460000px;}
.xb_c00312{left:1101.060000px;}
.x12_c00312{left:1188.000000px;}
.x19_c00312{left:1196.280000px;}
.x1a_c00312{left:1241.390850px;}
.x1b_c00312{left:1251.785850px;}
@media print{
.v1_c00312{vertical-align:-35.799467pt;}
.v2_c00312{vertical-align:-14.581493pt;}
.v0_c00312{vertical-align:0.000000pt;}
.ls8_c00312{letter-spacing:-0.288000pt;}
.ls5_c00312{letter-spacing:-0.256000pt;}
.ls7_c00312{letter-spacing:-0.192000pt;}
.ls4_c00312{letter-spacing:-0.064000pt;}
.ls3_c00312{letter-spacing:0.000000pt;}
.ls6_c00312{letter-spacing:0.096000pt;}
.ls0_c00312{letter-spacing:0.192000pt;}
.ls2_c00312{letter-spacing:30.627417pt;}
.ls1_c00312{letter-spacing:30.689012pt;}
.ws6_c00312{word-spacing:-95.808000pt;}
.ws7_c00312{word-spacing:-95.712000pt;}
.ws3_c00312{word-spacing:-41.664000pt;}
.ws2_c00312{word-spacing:-17.984000pt;}
.ws0_c00312{word-spacing:-17.728000pt;}
.ws1_c00312{word-spacing:-17.536000pt;}
.ws4_c00312{word-spacing:-12.186037pt;}
.ws5_c00312{word-spacing:-12.161277pt;}
.wsc_c00312{word-spacing:-5.703040pt;}
.ws9_c00312{word-spacing:-1.495040pt;}
.wse_c00312{word-spacing:-0.768000pt;}
.ws8_c00312{word-spacing:-0.747520pt;}
.wsa_c00312{word-spacing:-0.595840pt;}
.wsf_c00312{word-spacing:0.000000pt;}
.wsb_c00312{word-spacing:0.680960pt;}
.wsd_c00312{word-spacing:1.957760pt;}
._3_c00312{margin-left:-6.154176pt;}
._5_c00312{margin-left:-2.036352pt;}
._1_c00312{margin-left:-1.065216pt;}
._0_c00312{width:1.737984pt;}
._2_c00312{width:2.894976pt;}
._4_c00312{width:5.720064pt;}
.fs9_c00312{font-size:29.163733pt;}
.fs6_c00312{font-size:29.222933pt;}
.fs8_c00312{font-size:43.381333pt;}
.fs5_c00312{font-size:43.469333pt;}
.fs7_c00312{font-size:43.745600pt;}
.fs4_c00312{font-size:43.834667pt;}
.fs2_c00312{font-size:64.000000pt;}
.fs1_c00312{font-size:85.120000pt;}
.fs3_c00312{font-size:96.000000pt;}
.fs0_c00312{font-size:186.880000pt;}
.y0_c00312{bottom:0.000000pt;}
.y14_c00312{bottom:3.648933pt;}
.y1d_c00312{bottom:7.292173pt;}
.y13_c00312{bottom:7.301733pt;}
.yc_c00312{bottom:10.979867pt;}
.y1c_c00312{bottom:17.134933pt;}
.y12_c00312{bottom:17.164533pt;}
.y1b_c00312{bottom:27.889067pt;}
.y11_c00312{bottom:27.940800pt;}
.y16_c00312{bottom:42.186667pt;}
.y1e_c00312{bottom:45.752133pt;}
.y15_c00312{bottom:45.839600pt;}
.y19_c00312{bottom:45.933200pt;}
.yf_c00312{bottom:46.026133pt;}
.y4_c00312{bottom:52.789600pt;}
.y1a_c00312{bottom:54.865333pt;}
.y10_c00312{bottom:54.972667pt;}
.y6_c00312{bottom:60.769600pt;}
.yb_c00312{bottom:60.789600pt;}
.y18_c00312{bottom:68.717333pt;}
.ye_c00312{bottom:68.857067pt;}
.y3_c00312{bottom:91.200000pt;}
.y5_c00312{bottom:99.180000pt;}
.ya_c00312{bottom:99.200000pt;}
.y20_c00312{bottom:191.805733pt;}
.y17_c00312{bottom:220.800000pt;}
.y1f_c00312{bottom:336.645733pt;}
.yd_c00312{bottom:361.280000pt;}
.y8_c00312{bottom:449.600000pt;}
.y9_c00312{bottom:457.600000pt;}
.y7_c00312{bottom:465.600000pt;}
.y2_c00312{bottom:573.352453pt;}
.y1_c00312{bottom:623.763333pt;}
.h8_c00312{height:21.289364pt;}
.hb_c00312{height:31.603979pt;}
.h7_c00312{height:31.668089pt;}
.ha_c00312{height:31.869353pt;}
.h6_c00312{height:31.934240pt;}
.h3_c00312{height:46.625000pt;}
.h2_c00312{height:62.011250pt;}
.hc_c00312{height:68.906250pt;}
.h4_c00312{height:76.781250pt;}
.h9_c00312{height:78.560000pt;}
.h5_c00312{height:78.720000pt;}
.h1_c00312{height:149.467500pt;}
.h0_c00312{height:720.000000pt;}
.w1_c00312{width:156.960000pt;}
.w0_c00312{width:1280.000000pt;}
.x0_c00312{left:0.000000pt;}
.x15_c00312{left:47.673333pt;}
.x16_c00312{left:56.158133pt;}
.x13_c00312{left:63.689600pt;}
.x14_c00312{left:81.109333pt;}
.x17_c00312{left:135.223333pt;}
.x18_c00312{left:150.917733pt;}
.x3_c00312{left:163.200000pt;}
.x1_c00312{left:254.630000pt;}
.xc_c00312{left:300.320000pt;}
.x11_c00312{left:312.230000pt;}
.xd_c00312{left:327.520000pt;}
.xe_c00312{left:354.720000pt;}
.x2_c00312{left:404.881520pt;}
.x4_c00312{left:479.995360pt;}
.x5_c00312{left:521.916960pt;}
.x6_c00312{left:604.320000pt;}
.x7_c00312{left:631.520000pt;}
.x8_c00312{left:658.720000pt;}
.xf_c00312{left:800.000000pt;}
.x10_c00312{left:836.005760pt;}
.x9_c00312{left:924.320000pt;}
.xa_c00312{left:951.520000pt;}
.xb_c00312{left:978.720000pt;}
.x12_c00312{left:1056.000000pt;}
.x19_c00312{left:1063.360000pt;}
.x1a_c00312{left:1103.458533pt;}
.x1b_c00312{left:1112.698533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2c6f358dc67cbb5db7c9e117.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:0.938965;font-style:normal;font-weight:normal;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_e4c576aee00e8cf4d4860f7f.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00313;src:url('chunks/assets/font_7d40e3b6db7f31644e6941e6.woff2')format("woff");}.ff3_c00313{font-family:ff3_c00313;line-height:0.844238;font-style:normal;font-weight:normal;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_8074ec2a20d98d6995478414.woff2')format("woff");}.ff4_c00313{font-family:ff4_c00313;line-height:0.861816;font-style: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.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);}
.m1_c00313{transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);}
.m2_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);}
.v1_c00313{vertical-align:-58.036200px;}
.v2_c00313{vertical-align:-23.688060px;}
.v0_c00313{vertical-align:0.000000px;}
.ls7_c00313{letter-spacing:-1.345680px;}
.ls8_c00313{letter-spacing:-0.842400px;}
.ls5_c00313{letter-spacing:-0.336960px;}
.ls3_c00313{letter-spacing:-0.287280px;}
.ls6_c00313{letter-spacing:-0.252720px;}
.ls4_c00313{letter-spacing:-0.168480px;}
.ls2_c00313{letter-spacing:0.000000px;}
.ls1_c00313{letter-spacing:0.193752px;}
.ls0_c00313{letter-spacing:49.752650px;}
.sc__c00313{text-shadow:none;}
.sc1_c00313{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.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;}
.sc1_c00313{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc0_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00313{word-spacing:-24.408000px;}
.ws0_c00313{word-spacing:-19.755959px;}
.ws4_c00313{word-spacing:-19.038240px;}
.ws3_c00313{word-spacing:-18.701280px;}
.ws2_c00313{word-spacing:-18.195840px;}
.wsa_c00313{word-spacing:-1.153440px;}
.ws8_c00313{word-spacing:-0.673920px;}
.wsb_c00313{word-spacing:-0.336960px;}
.wsd_c00313{word-spacing:-0.084240px;}
.ws5_c00313{word-spacing:0.000000px;}
.ws9_c00313{word-spacing:0.252720px;}
.wsc_c00313{word-spacing:0.758160px;}
.ws7_c00313{word-spacing:1.263600px;}
.ws6_c00313{word-spacing:2.394000px;}
._5_c00313{margin-left:-5.774544px;}
._4_c00313{margin-left:-4.459968px;}
._3_c00313{margin-left:-3.447144px;}
._1_c00313{margin-left:-1.608768px;}
._0_c00313{width:1.273608px;}
._2_c00313{width:2.764944px;}
.fc2_c00313{color:rgb(0,0,255);}
.fc1_c00313{color:rgb(255,255,255);}
.fc0_c00313{color:rgb(0,0,0);}
.fs2_c00313{font-size:47.376600px;}
.fs1_c00313{font-size:70.472400px;}
.fs0_c00313{font-size:71.064600px;}
.fs4_c00313{font-size:84.240000px;}
.fs3_c00313{font-size:95.760000px;}
.fs5_c00313{font-size:108.000000px;}
.fs6_c00313{font-size:192.240000px;}
.y0_c00313{bottom:0.000000px;}
.y7_c00313{bottom:11.844315px;}
.y6_c00313{bottom:27.833850px;}
.y5_c00313{bottom:45.303750px;}
.y8_c00313{bottom:74.321850px;}
.y3_c00313{bottom:74.617800px;}
.y4_c00313{bottom:89.126850px;}
.y2_c00313{bottom:111.630600px;}
.y10_c00313{bottom:150.891210px;}
.yc_c00313{bottom:175.618800px;}
.yf_c00313{bottom:176.100030px;}
.ye_c00313{bottom:201.308850px;}
.yb_c00313{bottom:269.722380px;}
.ya_c00313{bottom:294.931200px;}
.y9_c00313{bottom:394.761450px;}
.y1_c00313{bottom:430.380000px;}
.yd_c00313{bottom:675.273750px;}
.h3_c00313{height:51.340245px;}
.h2_c00313{height:51.771671px;}
.h5_c00313{height:60.465234px;}
.h4_c00313{height:68.733984px;}
.h6_c00313{height:77.519531px;}
.h1_c00313{height:127.620000px;}
.h7_c00313{height:131.414062px;}
.h0_c00313{height:810.000000px;}
.w1_c00313{width:254.698500px;}
.w0_c00313{width:1440.000000px;}
.x0_c00313{left:0.000000px;}
.x4_c00313{left:77.359950px;}
.x5_c00313{left:78.388650px;}
.x2_c00313{left:103.349700px;}
.xa_c00313{left:109.800000px;}
.x3_c00313{left:131.616750px;}
.x6_c00313{left:219.428250px;}
.x9_c00313{left:224.376300px;}
.x7_c00313{left:671.265900px;}
.x1_c00313{left:677.520000px;}
.x8_c00313{left:688.275600px;}
.xb_c00313{left:690.002850px;}
@media print{
.v1_c00313{vertical-align:-51.587733pt;}
.v2_c00313{vertical-align:-21.056053pt;}
.v0_c00313{vertical-align:0.000000pt;}
.ls7_c00313{letter-spacing:-1.196160pt;}
.ls8_c00313{letter-spacing:-0.748800pt;}
.ls5_c00313{letter-spacing:-0.299520pt;}
.ls3_c00313{letter-spacing:-0.255360pt;}
.ls6_c00313{letter-spacing:-0.224640pt;}
.ls4_c00313{letter-spacing:-0.149760pt;}
.ls2_c00313{letter-spacing:0.000000pt;}
.ls1_c00313{letter-spacing:0.172224pt;}
.ls0_c00313{letter-spacing:44.224578pt;}
.ws1_c00313{word-spacing:-21.696000pt;}
.ws0_c00313{word-spacing:-17.560852pt;}
.ws4_c00313{word-spacing:-16.922880pt;}
.ws3_c00313{word-spacing:-16.623360pt;}
.ws2_c00313{word-spacing:-16.174080pt;}
.wsa_c00313{word-spacing:-1.025280pt;}
.ws8_c00313{word-spacing:-0.599040pt;}
.wsb_c00313{word-spacing:-0.299520pt;}
.wsd_c00313{word-spacing:-0.074880pt;}
.ws5_c00313{word-spacing:0.000000pt;}
.ws9_c00313{word-spacing:0.224640pt;}
.wsc_c00313{word-spacing:0.673920pt;}
.ws7_c00313{word-spacing:1.123200pt;}
.ws6_c00313{word-spacing:2.128000pt;}
._5_c00313{margin-left:-5.132928pt;}
._4_c00313{margin-left:-3.964416pt;}
._3_c00313{margin-left:-3.064128pt;}
._1_c00313{margin-left:-1.430016pt;}
._0_c00313{width:1.132096pt;}
._2_c00313{width:2.457728pt;}
.fs2_c00313{font-size:42.112533pt;}
.fs1_c00313{font-size:62.642133pt;}
.fs0_c00313{font-size:63.168533pt;}
.fs4_c00313{font-size:74.880000pt;}
.fs3_c00313{font-size:85.120000pt;}
.fs5_c00313{font-size:96.000000pt;}
.fs6_c00313{font-size:170.880000pt;}
.y0_c00313{bottom:0.000000pt;}
.y7_c00313{bottom:10.528280pt;}
.y6_c00313{bottom:24.741200pt;}
.y5_c00313{bottom:40.270000pt;}
.y8_c00313{bottom:66.063867pt;}
.y3_c00313{bottom:66.326933pt;}
.y4_c00313{bottom:79.223867pt;}
.y2_c00313{bottom:99.227200pt;}
.y10_c00313{bottom:134.125520pt;}
.yc_c00313{bottom:156.105600pt;}
.yf_c00313{bottom:156.533360pt;}
.ye_c00313{bottom:178.941200pt;}
.yb_c00313{bottom:239.753227pt;}
.ya_c00313{bottom:262.161067pt;}
.y9_c00313{bottom:350.899067pt;}
.y1_c00313{bottom:382.560000pt;}
.yd_c00313{bottom:600.243333pt;}
.h3_c00313{height:45.635773pt;}
.h2_c00313{height:46.019264pt;}
.h5_c00313{height:53.746875pt;}
.h4_c00313{height:61.096875pt;}
.h6_c00313{height:68.906250pt;}
.h1_c00313{height:113.440000pt;}
.h7_c00313{height:116.812500pt;}
.h0_c00313{height:720.000000pt;}
.w1_c00313{width:226.398667pt;}
.w0_c00313{width:1280.000000pt;}
.x0_c00313{left:0.000000pt;}
.x4_c00313{left:68.764400pt;}
.x5_c00313{left:69.678800pt;}
.x2_c00313{left:91.866400pt;}
.xa_c00313{left:97.600000pt;}
.x3_c00313{left:116.992667pt;}
.x6_c00313{left:195.047333pt;}
.x9_c00313{left:199.445600pt;}
.x7_c00313{left:596.680800pt;}
.x1_c00313{left:602.240000pt;}
.x8_c00313{left:611.800533pt;}
.xb_c00313{left:613.335867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc8dffb04fae84668d284c0f.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00314;src:url('chunks/assets/font_824850a73965f91a3ad4adbf.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:0.938965;font-style:normal;font-weight:normal;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_31d743037a189c0f6bb51a3e.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:0.938965;font-style:normal;font-weight:normal;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_8b029b6d212a2ec91d73059e.woff2')format("woff");}.ff4_c00314{font-family:ff4_c00314;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00314;src:url('chunks/assets/font_0be7e00afe895422615242bd.woff2')format("woff");}.ff5_c00314{font-family:ff5_c00314;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00314{transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);}
.m1_c00314{transform:matrix(0.248198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248198,0.000000,0.000000,0.250000,0,0);}
.m5_c00314{transform:matrix(0.248198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248198,0.000000,0.000000,0.250000,0,0);}
.m3_c00314{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.m2_c00314{transform:matrix(0.248204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248204,0.000000,0.000000,0.250000,0,0);}
.m7_c00314{transform:matrix(0.248703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248703,0.000000,0.000000,0.250000,0,0);}
.m9_c00314{transform:matrix(0.248706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248706,0.000000,0.000000,0.250000,0,0);}
.m6_c00314{transform:matrix(0.248708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248708,0.000000,0.000000,0.250000,0,0);}
.ma_c00314{transform:matrix(0.248709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248709,0.000000,0.000000,0.250000,0,0);}
.m8_c00314{transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248710,0.000000,0.000000,0.250000,0,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);}
.mb_c00314{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.v0_c00314{vertical-align:0.000000px;}
.v2_c00314{vertical-align:18.010800px;}
.v1_c00314{vertical-align:35.970480px;}
.lse_c00314{letter-spacing:-0.830115px;}
.lsd_c00314{letter-spacing:-0.792000px;}
.ls7_c00314{letter-spacing:-0.336960px;}
.ls4_c00314{letter-spacing:-0.241920px;}
.lsb_c00314{letter-spacing:-0.239040px;}
.ls9_c00314{letter-spacing:-0.216000px;}
.ls6_c00314{letter-spacing:-0.084240px;}
.ls5_c00314{letter-spacing:0.000000px;}
.ls2_c00314{letter-spacing:0.043920px;}
.ls1_c00314{letter-spacing:0.059760px;}
.lsa_c00314{letter-spacing:0.072000px;}
.ls3_c00314{letter-spacing:0.192240px;}
.ls8_c00314{letter-spacing:0.216000px;}
.ls0_c00314{letter-spacing:0.288000px;}
.lsc_c00314{letter-spacing:0.360000px;}
.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;}
}
.ws5_c00314{word-spacing:-23.334480px;}
.wsa_c00314{word-spacing:-16.632000px;}
.ws7_c00314{word-spacing:-16.344000px;}
.ws6_c00314{word-spacing:-16.056000px;}
.wsc_c00314{word-spacing:-15.480000px;}
.wsb_c00314{word-spacing:-13.565520px;}
.ws9_c00314{word-spacing:-13.505760px;}
.ws8_c00314{word-spacing:-13.266720px;}
.ws3_c00314{word-spacing:-7.023948px;}
.ws2_c00314{word-spacing:-6.872827px;}
.ws1_c00314{word-spacing:-5.937246px;}
.ws0_c00314{word-spacing:-5.809477px;}
.ws12_c00314{word-spacing:-2.442960px;}
.wsf_c00314{word-spacing:-1.684800px;}
.ws10_c00314{word-spacing:-1.432080px;}
.ws14_c00314{word-spacing:-0.648000px;}
.wsd_c00314{word-spacing:0.000000px;}
.ws13_c00314{word-spacing:0.072000px;}
.ws11_c00314{word-spacing:0.084240px;}
.ws15_c00314{word-spacing:0.119520px;}
.wse_c00314{word-spacing:0.241920px;}
.ws16_c00314{word-spacing:0.830115px;}
.ws4_c00314{word-spacing:1401.332400px;}
._4_c00314{margin-left:-10.993248px;}
._0_c00314{margin-left:-2.460672px;}
._1_c00314{margin-left:-1.095768px;}
._2_c00314{width:1.381536px;}
._3_c00314{width:2.687256px;}
.fc5_c00314{color:transparent;}
.fc4_c00314{color:rgb(204,51,0);}
.fc3_c00314{color:rgb(255,0,0);}
.fc2_c00314{color:rgb(0,0,0);}
.fc1_c00314{color:rgb(204,0,0);}
.fc0_c00314{color:rgb(51,51,255);}
.fs3_c00314{font-size:13.778400px;}
.fs7_c00314{font-size:14.238000px;}
.fs13_c00314{font-size:15.093000px;}
.fs9_c00314{font-size:16.300800px;}
.fsd_c00314{font-size:16.843800px;}
.fs2_c00314{font-size:20.897400px;}
.fs6_c00314{font-size:21.357000px;}
.fs8_c00314{font-size:24.722400px;}
.fsc_c00314{font-size:25.266000px;}
.fs5_c00314{font-size:27.327600px;}
.fs4_c00314{font-size:27.557400px;}
.fs1_c00314{font-size:30.240000px;}
.fsb_c00314{font-size:32.329200px;}
.fsa_c00314{font-size:32.601000px;}
.fs12_c00314{font-size:40.320000px;}
.fs11_c00314{font-size:59.760000px;}
.fs10_c00314{font-size:72.000000px;}
.fse_c00314{font-size:84.240000px;}
.fsf_c00314{font-size:95.760000px;}
.fs0_c00314{font-size:192.240000px;}
.y0_c00314{bottom:0.000000px;}
.y9_c00314{bottom:2.009400px;}
.y26_c00314{bottom:2.009550px;}
.y2f_c00314{bottom:2.009700px;}
.y12_c00314{bottom:2.377200px;}
.y8_c00314{bottom:3.731700px;}
.y22_c00314{bottom:3.731850px;}
.y2e_c00314{bottom:3.732000px;}
.y11_c00314{bottom:4.414650px;}
.y2c_c00314{bottom:25.200000px;}
.y23_c00314{bottom:37.546950px;}
.yc_c00314{bottom:37.547100px;}
.y32_c00314{bottom:37.547400px;}
.yf_c00314{bottom:40.245300px;}
.y2b_c00314{bottom:40.245450px;}
.y35_c00314{bottom:40.246050px;}
.ye_c00314{bottom:42.025050px;}
.y2a_c00314{bottom:42.025200px;}
.y34_c00314{bottom:42.025800px;}
.y15_c00314{bottom:44.419050px;}
.y18_c00314{bottom:47.611350px;}
.ya_c00314{bottom:48.742050px;}
.y27_c00314{bottom:48.742200px;}
.y30_c00314{bottom:48.742350px;}
.yd_c00314{bottom:49.603350px;}
.y29_c00314{bottom:49.603500px;}
.y33_c00314{bottom:49.603800px;}
.y17_c00314{bottom:49.716900px;}
.y43_c00314{bottom:53.005050px;}
.y13_c00314{bottom:57.663150px;}
.y16_c00314{bottom:58.682100px;}
.y19_c00314{bottom:59.293500px;}
.yb_c00314{bottom:61.659600px;}
.y28_c00314{bottom:61.659750px;}
.y31_c00314{bottom:61.659900px;}
.y1b_c00314{bottom:70.771800px;}
.y21_c00314{bottom:71.640000px;}
.y1a_c00314{bottom:72.809400px;}
.y14_c00314{bottom:72.945000px;}
.y45_c00314{bottom:79.958482px;}
.y44_c00314{bottom:84.448650px;}
.y20_c00314{bottom:122.219850px;}
.y2d_c00314{bottom:148.140000px;}
.y41_c00314{bottom:151.557300px;}
.y24_c00314{bottom:154.260000px;}
.y40_c00314{bottom:169.560000px;}
.y3f_c00314{bottom:188.265780px;}
.y3e_c00314{bottom:209.151900px;}
.y37_c00314{bottom:226.080000px;}
.y3d_c00314{bottom:245.157300px;}
.y3c_c00314{bottom:263.160000px;}
.y25_c00314{bottom:265.140000px;}
.y1f_c00314{bottom:265.842360px;}
.y3b_c00314{bottom:281.880000px;}
.y1e_c00314{bottom:291.051180px;}
.y3a_c00314{bottom:303.480000px;}
.y1d_c00314{bottom:316.260000px;}
.y39_c00314{bottom:325.080000px;}
.y36_c00314{bottom:343.080000px;}
.y38_c00314{bottom:346.680000px;}
.y1c_c00314{bottom:361.260000px;}
.y7_c00314{bottom:440.640000px;}
.y5_c00314{bottom:491.219850px;}
.y2_c00314{bottom:491.220000px;}
.y6_c00314{bottom:540.722730px;}
.y4_c00314{bottom:545.223600px;}
.y10_c00314{bottom:549.720000px;}
.y3_c00314{bottom:554.220000px;}
.y42_c00314{bottom:565.560000px;}
.y1_c00314{bottom:674.733750px;}
.h5_c00314{height:10.037780px;}
.h9_c00314{height:10.372605px;}
.h1b_c00314{height:10.995486px;}
.hc_c00314{height:11.875387px;}
.h10_c00314{height:12.270971px;}
.h4_c00314{height:15.224082px;}
.h8_c00314{height:15.558908px;}
.hb_c00314{height:18.010655px;}
.hf_c00314{height:18.406676px;}
.h7_c00314{height:19.908584px;}
.h6_c00314{height:20.075996px;}
.h2_c00314{height:22.030313px;}
.he_c00314{height:23.552327px;}
.hd_c00314{height:23.750338px;}
.h17_c00314{height:42.894141px;}
.h19_c00314{height:46.951425px;}
.h16_c00314{height:51.679688px;}
.h18_c00314{height:51.736568px;}
.h15_c00314{height:52.277344px;}
.h12_c00314{height:61.370156px;}
.h13_c00314{height:67.858500px;}
.h3_c00314{height:67.860000px;}
.h14_c00314{height:69.762656px;}
.ha_c00314{height:80.280000px;}
.h11_c00314{height:97.340636px;}
.h1a_c00314{height:100.440000px;}
.h1_c00314{height:153.754453px;}
.h0_c00314{height:810.000000px;}
.w3_c00314{width:66.060000px;}
.w1_c00314{width:66.061500px;}
.w4_c00314{width:87.840000px;}
.w2_c00314{width:135.000000px;}
.w0_c00314{width:1440.000000px;}
.x0_c00314{left:0.000000px;}
.x10_c00314{left:1.041750px;}
.xb_c00314{left:8.481600px;}
.x11_c00314{left:10.051350px;}
.x23_c00314{left:11.340000px;}
.xa_c00314{left:39.769800px;}
.x7_c00314{left:41.787900px;}
.xf_c00314{left:47.143200px;}
.x8_c00314{left:49.207800px;}
.x9_c00314{left:52.551450px;}
.xd_c00314{left:58.332150px;}
.xe_c00314{left:62.296050px;}
.x24_c00314{left:68.040000px;}
.x12_c00314{left:76.846650px;}
.x1_c00314{left:109.800000px;}
.x13_c00314{left:122.374350px;}
.x14_c00314{left:131.169900px;}
.x1a_c00314{left:225.000000px;}
.x1c_c00314{left:243.000000px;}
.x1b_c00314{left:244.800000px;}
.x2_c00314{left:298.800000px;}
.x15_c00314{left:352.800000px;}
.x3_c00314{left:412.425000px;}
.x22_c00314{left:423.000000px;}
.x1d_c00314{left:487.800000px;}
.x20_c00314{left:497.877480px;}
.x21_c00314{left:501.298740px;}
.x1f_c00314{left:504.720000px;}
.x1e_c00314{left:508.500000px;}
.xc_c00314{left:522.000000px;}
.x19_c00314{left:604.800000px;}
.x18_c00314{left:837.000000px;}
.x6_c00314{left:855.000000px;}
.x17_c00314{left:905.940000px;}
.x4_c00314{left:923.940000px;}
.x16_c00314{left:1018.800000px;}
.x5_c00314{left:1033.423920px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.v2_c00314{vertical-align:16.009600pt;}
.v1_c00314{vertical-align:31.973760pt;}
.lse_c00314{letter-spacing:-0.737880pt;}
.lsd_c00314{letter-spacing:-0.704000pt;}
.ls7_c00314{letter-spacing:-0.299520pt;}
.ls4_c00314{letter-spacing:-0.215040pt;}
.lsb_c00314{letter-spacing:-0.212480pt;}
.ls9_c00314{letter-spacing:-0.192000pt;}
.ls6_c00314{letter-spacing:-0.074880pt;}
.ls5_c00314{letter-spacing:0.000000pt;}
.ls2_c00314{letter-spacing:0.039040pt;}
.ls1_c00314{letter-spacing:0.053120pt;}
.lsa_c00314{letter-spacing:0.064000pt;}
.ls3_c00314{letter-spacing:0.170880pt;}
.ls8_c00314{letter-spacing:0.192000pt;}
.ls0_c00314{letter-spacing:0.256000pt;}
.lsc_c00314{letter-spacing:0.320000pt;}
.ws5_c00314{word-spacing:-20.741760pt;}
.wsa_c00314{word-spacing:-14.784000pt;}
.ws7_c00314{word-spacing:-14.528000pt;}
.ws6_c00314{word-spacing:-14.272000pt;}
.wsc_c00314{word-spacing:-13.760000pt;}
.wsb_c00314{word-spacing:-12.058240pt;}
.ws9_c00314{word-spacing:-12.005120pt;}
.ws8_c00314{word-spacing:-11.792640pt;}
.ws3_c00314{word-spacing:-6.243509pt;}
.ws2_c00314{word-spacing:-6.109180pt;}
.ws1_c00314{word-spacing:-5.277552pt;}
.ws0_c00314{word-spacing:-5.163980pt;}
.ws12_c00314{word-spacing:-2.171520pt;}
.wsf_c00314{word-spacing:-1.497600pt;}
.ws10_c00314{word-spacing:-1.272960pt;}
.ws14_c00314{word-spacing:-0.576000pt;}
.wsd_c00314{word-spacing:0.000000pt;}
.ws13_c00314{word-spacing:0.064000pt;}
.ws11_c00314{word-spacing:0.074880pt;}
.ws15_c00314{word-spacing:0.106240pt;}
.wse_c00314{word-spacing:0.215040pt;}
.ws16_c00314{word-spacing:0.737880pt;}
.ws4_c00314{word-spacing:1245.628800pt;}
._4_c00314{margin-left:-9.771776pt;}
._0_c00314{margin-left:-2.187264pt;}
._1_c00314{margin-left:-0.974016pt;}
._2_c00314{width:1.228032pt;}
._3_c00314{width:2.388672pt;}
.fs3_c00314{font-size:12.247467pt;}
.fs7_c00314{font-size:12.656000pt;}
.fs13_c00314{font-size:13.416000pt;}
.fs9_c00314{font-size:14.489600pt;}
.fsd_c00314{font-size:14.972267pt;}
.fs2_c00314{font-size:18.575467pt;}
.fs6_c00314{font-size:18.984000pt;}
.fs8_c00314{font-size:21.975467pt;}
.fsc_c00314{font-size:22.458667pt;}
.fs5_c00314{font-size:24.291200pt;}
.fs4_c00314{font-size:24.495467pt;}
.fs1_c00314{font-size:26.880000pt;}
.fsb_c00314{font-size:28.737067pt;}
.fsa_c00314{font-size:28.978667pt;}
.fs12_c00314{font-size:35.840000pt;}
.fs11_c00314{font-size:53.120000pt;}
.fs10_c00314{font-size:64.000000pt;}
.fse_c00314{font-size:74.880000pt;}
.fsf_c00314{font-size:85.120000pt;}
.fs0_c00314{font-size:170.880000pt;}
.y0_c00314{bottom:0.000000pt;}
.y9_c00314{bottom:1.786133pt;}
.y26_c00314{bottom:1.786267pt;}
.y2f_c00314{bottom:1.786400pt;}
.y12_c00314{bottom:2.113067pt;}
.y8_c00314{bottom:3.317067pt;}
.y22_c00314{bottom:3.317200pt;}
.y2e_c00314{bottom:3.317333pt;}
.y11_c00314{bottom:3.924133pt;}
.y2c_c00314{bottom:22.400000pt;}
.y23_c00314{bottom:33.375067pt;}
.yc_c00314{bottom:33.375200pt;}
.y32_c00314{bottom:33.375467pt;}
.yf_c00314{bottom:35.773600pt;}
.y2b_c00314{bottom:35.773733pt;}
.y35_c00314{bottom:35.774267pt;}
.ye_c00314{bottom:37.355600pt;}
.y2a_c00314{bottom:37.355733pt;}
.y34_c00314{bottom:37.356267pt;}
.y15_c00314{bottom:39.483600pt;}
.y18_c00314{bottom:42.321200pt;}
.ya_c00314{bottom:43.326267pt;}
.y27_c00314{bottom:43.326400pt;}
.y30_c00314{bottom:43.326533pt;}
.yd_c00314{bottom:44.091867pt;}
.y29_c00314{bottom:44.092000pt;}
.y33_c00314{bottom:44.092267pt;}
.y17_c00314{bottom:44.192800pt;}
.y43_c00314{bottom:47.115600pt;}
.y13_c00314{bottom:51.256133pt;}
.y16_c00314{bottom:52.161867pt;}
.y19_c00314{bottom:52.705333pt;}
.yb_c00314{bottom:54.808533pt;}
.y28_c00314{bottom:54.808667pt;}
.y31_c00314{bottom:54.808800pt;}
.y1b_c00314{bottom:62.908267pt;}
.y21_c00314{bottom:63.680000pt;}
.y1a_c00314{bottom:64.719467pt;}
.y14_c00314{bottom:64.840000pt;}
.y45_c00314{bottom:71.074207pt;}
.y44_c00314{bottom:75.065467pt;}
.y20_c00314{bottom:108.639867pt;}
.y2d_c00314{bottom:131.680000pt;}
.y41_c00314{bottom:134.717600pt;}
.y24_c00314{bottom:137.120000pt;}
.y40_c00314{bottom:150.720000pt;}
.y3f_c00314{bottom:167.347360pt;}
.y3e_c00314{bottom:185.912800pt;}
.y37_c00314{bottom:200.960000pt;}
.y3d_c00314{bottom:217.917600pt;}
.y3c_c00314{bottom:233.920000pt;}
.y25_c00314{bottom:235.680000pt;}
.y1f_c00314{bottom:236.304320pt;}
.y3b_c00314{bottom:250.560000pt;}
.y1e_c00314{bottom:258.712160pt;}
.y3a_c00314{bottom:269.760000pt;}
.y1d_c00314{bottom:281.120000pt;}
.y39_c00314{bottom:288.960000pt;}
.y36_c00314{bottom:304.960000pt;}
.y38_c00314{bottom:308.160000pt;}
.y1c_c00314{bottom:321.120000pt;}
.y7_c00314{bottom:391.680000pt;}
.y5_c00314{bottom:436.639867pt;}
.y2_c00314{bottom:436.640000pt;}
.y6_c00314{bottom:480.642427pt;}
.y4_c00314{bottom:484.643200pt;}
.y10_c00314{bottom:488.640000pt;}
.y3_c00314{bottom:492.640000pt;}
.y42_c00314{bottom:502.720000pt;}
.y1_c00314{bottom:599.763333pt;}
.h5_c00314{height:8.922471pt;}
.h9_c00314{height:9.220094pt;}
.h1b_c00314{height:9.773766pt;}
.hc_c00314{height:10.555900pt;}
.h10_c00314{height:10.907530pt;}
.h4_c00314{height:13.532518pt;}
.h8_c00314{height:13.830141pt;}
.hb_c00314{height:16.009471pt;}
.hf_c00314{height:16.361490pt;}
.h7_c00314{height:17.696519pt;}
.h6_c00314{height:17.845330pt;}
.h2_c00314{height:19.582500pt;}
.he_c00314{height:20.935402pt;}
.hd_c00314{height:21.111411pt;}
.h17_c00314{height:38.128125pt;}
.h19_c00314{height:41.734600pt;}
.h16_c00314{height:45.937500pt;}
.h18_c00314{height:45.988060pt;}
.h15_c00314{height:46.468750pt;}
.h12_c00314{height:54.551250pt;}
.h13_c00314{height:60.318667pt;}
.h3_c00314{height:60.320000pt;}
.h14_c00314{height:62.011250pt;}
.ha_c00314{height:71.360000pt;}
.h11_c00314{height:86.525010pt;}
.h1a_c00314{height:89.280000pt;}
.h1_c00314{height:136.670625pt;}
.h0_c00314{height:720.000000pt;}
.w3_c00314{width:58.720000pt;}
.w1_c00314{width:58.721333pt;}
.w4_c00314{width:78.080000pt;}
.w2_c00314{width:120.000000pt;}
.w0_c00314{width:1280.000000pt;}
.x0_c00314{left:0.000000pt;}
.x10_c00314{left:0.926000pt;}
.xb_c00314{left:7.539200pt;}
.x11_c00314{left:8.934533pt;}
.x23_c00314{left:10.080000pt;}
.xa_c00314{left:35.350933pt;}
.x7_c00314{left:37.144800pt;}
.xf_c00314{left:41.905067pt;}
.x8_c00314{left:43.740267pt;}
.x9_c00314{left:46.712400pt;}
.xd_c00314{left:51.850800pt;}
.xe_c00314{left:55.374267pt;}
.x24_c00314{left:60.480000pt;}
.x12_c00314{left:68.308133pt;}
.x1_c00314{left:97.600000pt;}
.x13_c00314{left:108.777200pt;}
.x14_c00314{left:116.595467pt;}
.x1a_c00314{left:200.000000pt;}
.x1c_c00314{left:216.000000pt;}
.x1b_c00314{left:217.600000pt;}
.x2_c00314{left:265.600000pt;}
.x15_c00314{left:313.600000pt;}
.x3_c00314{left:366.600000pt;}
.x22_c00314{left:376.000000pt;}
.x1d_c00314{left:433.600000pt;}
.x20_c00314{left:442.557760pt;}
.x21_c00314{left:445.598880pt;}
.x1f_c00314{left:448.640000pt;}
.x1e_c00314{left:452.000000pt;}
.xc_c00314{left:464.000000pt;}
.x19_c00314{left:537.600000pt;}
.x18_c00314{left:744.000000pt;}
.x6_c00314{left:760.000000pt;}
.x17_c00314{left:805.280000pt;}
.x4_c00314{left:821.280000pt;}
.x16_c00314{left:905.600000pt;}
.x5_c00314{left:918.599040pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_94309ec750254c8b826975a8.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00315{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00315{vertical-align:0.000000px;}
.ls2_c00315{letter-spacing:-0.192240px;}
.ls1_c00315{letter-spacing:0.000000px;}
.ls0_c00315{letter-spacing:0.192240px;}
.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:-57.479760px;}
.ws1_c00315{word-spacing:-57.287520px;}
.ws2_c00315{word-spacing:0.000000px;}
._0_c00315{margin-left:-1.249560px;}
.fc0_c00315{color:rgb(0,0,255);}
.fs0_c00315{font-size:192.240000px;}
.y0_c00315{bottom:0.000000px;}
.y2_c00315{bottom:669.566010px;}
.y1_c00315{bottom:721.422750px;}
.h1_c00315{height:153.754453px;}
.h0_c00315{height:810.000000px;}
.w0_c00315{width:1440.000000px;}
.x0_c00315{left:0.000000px;}
.x1_c00315{left:274.758750px;}
.x2_c00315{left:405.241650px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls2_c00315{letter-spacing:-0.170880pt;}
.ls1_c00315{letter-spacing:0.000000pt;}
.ls0_c00315{letter-spacing:0.170880pt;}
.ws0_c00315{word-spacing:-51.093120pt;}
.ws1_c00315{word-spacing:-50.922240pt;}
.ws2_c00315{word-spacing:0.000000pt;}
._0_c00315{margin-left:-1.110720pt;}
.fs0_c00315{font-size:170.880000pt;}
.y0_c00315{bottom:0.000000pt;}
.y2_c00315{bottom:595.169787pt;}
.y1_c00315{bottom:641.264667pt;}
.h1_c00315{height:136.670625pt;}
.h0_c00315{height:720.000000pt;}
.w0_c00315{width:1280.000000pt;}
.x0_c00315{left:0.000000pt;}
.x1_c00315{left:244.230000pt;}
.x2_c00315{left:360.214800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f75fbbe87e01986278f290be.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00316{vertical-align:0.000000px;}
.ls2_c00316{letter-spacing:-0.216000px;}
.ls1_c00316{letter-spacing:-0.167760px;}
.ls0_c00316{letter-spacing:0.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;}
}
.ws1_c00316{word-spacing:-32.076000px;}
.ws0_c00316{word-spacing:0.503280px;}
.ws2_c00316{word-spacing:1.845360px;}
._0_c00316{width:1.207872px;}
.fc1_c00316{color:rgb(204,51,0);}
.fc0_c00316{color:rgb(0,0,255);}
.fs1_c00316{font-size:108.000000px;}
.fs0_c00316{font-size:167.760000px;}
.y0_c00316{bottom:0.000000px;}
.y2_c00316{bottom:433.440000px;}
.y1_c00316{bottom:701.820000px;}
.h2_c00316{height:86.378906px;}
.h1_c00316{height:134.175234px;}
.h0_c00316{height:810.000000px;}
.w0_c00316{width:1440.000000px;}
.x0_c00316{left:0.000000px;}
.x1_c00316{left:334.800000px;}
.x2_c00316{left:1152.000000px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls2_c00316{letter-spacing:-0.192000pt;}
.ls1_c00316{letter-spacing:-0.149120pt;}
.ls0_c00316{letter-spacing:0.000000pt;}
.ws1_c00316{word-spacing:-28.512000pt;}
.ws0_c00316{word-spacing:0.447360pt;}
.ws2_c00316{word-spacing:1.640320pt;}
._0_c00316{width:1.073664pt;}
.fs1_c00316{font-size:96.000000pt;}
.fs0_c00316{font-size:149.120000pt;}
.y0_c00316{bottom:0.000000pt;}
.y2_c00316{bottom:385.280000pt;}
.y1_c00316{bottom:623.840000pt;}
.h2_c00316{height:76.781250pt;}
.h1_c00316{height:119.266875pt;}
.h0_c00316{height:720.000000pt;}
.w0_c00316{width:1280.000000pt;}
.x0_c00316{left:0.000000pt;}
.x1_c00316{left:297.600000pt;}
.x2_c00316{left:1024.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_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_f39b86fa61a97a6f3c9ce381.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00317;src:url('chunks/assets/font_1703237ef610ab799a4096fb.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.083984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.ls0_c00317{letter-spacing:-0.216000px;}
.ls2_c00317{letter-spacing:-0.131760px;}
.ls1_c00317{letter-spacing:0.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:-64.584000px;}
.ws4_c00317{word-spacing:0.000000px;}
.ws2_c00317{word-spacing:0.216000px;}
.ws3_c00317{word-spacing:0.395280px;}
.ws1_c00317{word-spacing:1.296000px;}
.ws5_c00317{word-spacing:1.844640px;}
._1_c00317{margin-left:-1.222776px;}
._0_c00317{width:1.080000px;}
.fc1_c00317{color:rgb(204,51,0);}
.fc0_c00317{color:rgb(51,51,255);}
.fs1_c00317{font-size:131.760000px;}
.fs0_c00317{font-size:216.000000px;}
.y0_c00317{bottom:0.000000px;}
.y2_c00317{bottom:655.050000px;}
.y1_c00317{bottom:695.910000px;}
.h2_c00317{height:105.382266px;}
.h1_c00317{height:172.757812px;}
.h0_c00317{height:810.000000px;}
.w0_c00317{width:1440.000000px;}
.x0_c00317{left:0.000000px;}
.x1_c00317{left:180.000000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls0_c00317{letter-spacing:-0.192000pt;}
.ls2_c00317{letter-spacing:-0.117120pt;}
.ls1_c00317{letter-spacing:0.000000pt;}
.ws0_c00317{word-spacing:-57.408000pt;}
.ws4_c00317{word-spacing:0.000000pt;}
.ws2_c00317{word-spacing:0.192000pt;}
.ws3_c00317{word-spacing:0.351360pt;}
.ws1_c00317{word-spacing:1.152000pt;}
.ws5_c00317{word-spacing:1.639680pt;}
._1_c00317{margin-left:-1.086912pt;}
._0_c00317{width:0.960000pt;}
.fs1_c00317{font-size:117.120000pt;}
.fs0_c00317{font-size:192.000000pt;}
.y0_c00317{bottom:0.000000pt;}
.y2_c00317{bottom:582.266667pt;}
.y1_c00317{bottom:618.586667pt;}
.h2_c00317{height:93.673125pt;}
.h1_c00317{height:153.562500pt;}
.h0_c00317{height:720.000000pt;}
.w0_c00317{width:1280.000000pt;}
.x0_c00317{left:0.000000pt;}
.x1_c00317{left:160.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_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_cb51624f3e0e341503a723b9.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00318;src:url('chunks/assets/font_f18d0a1ec4d8912ca7979ec6.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:0.938965;font-style:normal;font-weight:normal;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_9b1577d50a510d07c46ae5d2.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:0.971191;font-style: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);}
.v1_c00318{vertical-align:-4.500000px;}
.v0_c00318{vertical-align:0.000000px;}
.ls1_c00318{letter-spacing:-0.324000px;}
.ls3_c00318{letter-spacing:-0.216000px;}
.ls0_c00318{letter-spacing:-0.167760px;}
.ls4_c00318{letter-spacing:0.216000px;}
.ls2_c00318{letter-spacing:0.288000px;}
.sc__c00318{text-shadow:none;}
.sc0_c00318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00318{-webkit-text-stroke:0px transparent;}
.sc0_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00318{word-spacing:-22.752000px;}
.ws1_c00318{word-spacing:-0.335520px;}
.ws4_c00318{word-spacing:0.288000px;}
.ws2_c00318{word-spacing:0.540000px;}
.ws5_c00318{word-spacing:0.792000px;}
.ws3_c00318{word-spacing:1.296000px;}
._3_c00318{margin-left:-11.533104px;}
._5_c00318{margin-left:-6.421968px;}
._6_c00318{margin-left:-1.008000px;}
._2_c00318{width:1.140768px;}
._0_c00318{width:2.197656px;}
._1_c00318{width:3.220992px;}
._4_c00318{width:204.598800px;}
.fc1_c00318{color:rgb(0,0,0);}
.fc0_c00318{color:rgb(0,0,255);}
.fs2_c00318{font-size:72.000000px;}
.fs1_c00318{font-size:108.000000px;}
.fs0_c00318{font-size:167.760000px;}
.y0_c00318{bottom:0.000000px;}
.y2_c00318{bottom:24.345000px;}
.y5_c00318{bottom:375.479850px;}
.y4_c00318{bottom:397.079850px;}
.y3_c00318{bottom:418.679850px;}
.y1_c00318{bottom:717.408600px;}
.h3_c00318{height:55.054688px;}
.h2_c00318{height:78.679688px;}
.h1_c00318{height:134.175234px;}
.h0_c00318{height:810.000000px;}
.w0_c00318{width:1440.000000px;}
.x0_c00318{left:0.000000px;}
.x2_c00318{left:227.250000px;}
.x1_c00318{left:306.000000px;}
.x3_c00318{left:948.375000px;}
@media print{
.v1_c00318{vertical-align:-4.000000pt;}
.v0_c00318{vertical-align:0.000000pt;}
.ls1_c00318{letter-spacing:-0.288000pt;}
.ls3_c00318{letter-spacing:-0.192000pt;}
.ls0_c00318{letter-spacing:-0.149120pt;}
.ls4_c00318{letter-spacing:0.192000pt;}
.ls2_c00318{letter-spacing:0.256000pt;}
.ws0_c00318{word-spacing:-20.224000pt;}
.ws1_c00318{word-spacing:-0.298240pt;}
.ws4_c00318{word-spacing:0.256000pt;}
.ws2_c00318{word-spacing:0.480000pt;}
.ws5_c00318{word-spacing:0.704000pt;}
.ws3_c00318{word-spacing:1.152000pt;}
._3_c00318{margin-left:-10.251648pt;}
._5_c00318{margin-left:-5.708416pt;}
._6_c00318{margin-left:-0.896000pt;}
._2_c00318{width:1.014016pt;}
._0_c00318{width:1.953472pt;}
._1_c00318{width:2.863104pt;}
._4_c00318{width:181.865600pt;}
.fs2_c00318{font-size:64.000000pt;}
.fs1_c00318{font-size:96.000000pt;}
.fs0_c00318{font-size:149.120000pt;}
.y0_c00318{bottom:0.000000pt;}
.y2_c00318{bottom:21.640000pt;}
.y5_c00318{bottom:333.759867pt;}
.y4_c00318{bottom:352.959867pt;}
.y3_c00318{bottom:372.159867pt;}
.y1_c00318{bottom:637.696533pt;}
.h3_c00318{height:48.937500pt;}
.h2_c00318{height:69.937500pt;}
.h1_c00318{height:119.266875pt;}
.h0_c00318{height:720.000000pt;}
.w0_c00318{width:1280.000000pt;}
.x0_c00318{left:0.000000pt;}
.x2_c00318{left:202.000000pt;}
.x1_c00318{left:272.000000pt;}
.x3_c00318{left:843.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_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_c20c70ad7d2c141801e18ec5.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00319{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.ls0_c00319{letter-spacing:0.000000px;}
.sc__c00319{text-shadow:none;}
.sc0_c00319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00319{-webkit-text-stroke:0px transparent;}
.sc0_c00319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00319{word-spacing:-0.432000px;}
._0_c00319{width:1.080000px;}
.fc0_c00319{color:rgb(0,0,204);}
.fs0_c00319{font-size:216.000000px;}
.y0_c00319{bottom:0.000000px;}
.y1_c00319{bottom:682.987200px;}
.h1_c00319{height:172.757812px;}
.h0_c00319{height:810.000000px;}
.w0_c00319{width:1440.000000px;}
.x0_c00319{left:0.000000px;}
.x1_c00319{left:313.040700px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls0_c00319{letter-spacing:0.000000pt;}
.ws0_c00319{word-spacing:-0.384000pt;}
._0_c00319{width:0.960000pt;}
.fs0_c00319{font-size:192.000000pt;}
.y0_c00319{bottom:0.000000pt;}
.y1_c00319{bottom:607.099733pt;}
.h1_c00319{height:153.562500pt;}
.h0_c00319{height:720.000000pt;}
.w0_c00319{width:1280.000000pt;}
.x0_c00319{left:0.000000pt;}
.x1_c00319{left:278.258400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44be5e0afbca54b41aac7a06.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00320{letter-spacing:-0.192240px;}
.ls0_c00320{letter-spacing:0.192240px;}
.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;}
}
.ws1_c00320{word-spacing:0.000000px;}
.ws0_c00320{word-spacing:0.384480px;}
._2_c00320{margin-left:-3.018168px;}
._1_c00320{margin-left:-1.268784px;}
._0_c00320{width:1.153440px;}
.fc0_c00320{color:rgb(0,0,204);}
.fs0_c00320{font-size:192.240000px;}
.y0_c00320{bottom:0.000000px;}
.y5_c00320{bottom:381.930540px;}
.y4_c00320{bottom:433.787280px;}
.y3_c00320{bottom:485.644020px;}
.y2_c00320{bottom:537.500760px;}
.y1_c00320{bottom:589.357500px;}
.h1_c00320{height:153.754453px;}
.h0_c00320{height:810.000000px;}
.w0_c00320{width:1440.000000px;}
.x0_c00320{left:0.000000px;}
.x1_c00320{left:68.850000px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls1_c00320{letter-spacing:-0.170880pt;}
.ls0_c00320{letter-spacing:0.170880pt;}
.ws1_c00320{word-spacing:0.000000pt;}
.ws0_c00320{word-spacing:0.341760pt;}
._2_c00320{margin-left:-2.682816pt;}
._1_c00320{margin-left:-1.127808pt;}
._0_c00320{width:1.025280pt;}
.fs0_c00320{font-size:170.880000pt;}
.y0_c00320{bottom:0.000000pt;}
.y5_c00320{bottom:339.493813pt;}
.y4_c00320{bottom:385.588693pt;}
.y3_c00320{bottom:431.683573pt;}
.y2_c00320{bottom:477.778453pt;}
.y1_c00320{bottom:523.873333pt;}
.h1_c00320{height:136.670625pt;}
.h0_c00320{height:720.000000pt;}
.w0_c00320{width:1280.000000pt;}
.x0_c00320{left:0.000000pt;}
.x1_c00320{left:61.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_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_b49830585d44e2f2c19d5b9e.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:0.938965;font-style:normal;font-weight:normal;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_01e2644da2b12916ca546fcd.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:0.938965;font-style:normal;font-weight:normal;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_37dbeee91c64bdfa1f851acb.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:0.722656;font-style:normal;font-weight:normal;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_32695747ac6afe9fbf3e2c5a.woff2')format("woff");}.ff4_c00321{font-family:ff4_c00321;line-height:0.834473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00321{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00321{vertical-align:0.000000px;}
.ls4_c00321{letter-spacing:-0.132480px;}
.ls5_c00321{letter-spacing:-0.072000px;}
.ls3_c00321{letter-spacing:0.120240px;}
.ls1_c00321{letter-spacing:0.288000px;}
.ls2_c00321{letter-spacing:33.192000px;}
.ls0_c00321{letter-spacing:49.608000px;}
.sc__c00321{text-shadow:none;}
.sc1_c00321{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1_c00321{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00321{word-spacing:-33.546960px;}
.ws3_c00321{word-spacing:-0.144000px;}
.ws2_c00321{word-spacing:0.000000px;}
.ws1_c00321{word-spacing:0.132480px;}
.ws4_c00321{word-spacing:2.376000px;}
._3_c00321{margin-left:-5.040000px;}
._1_c00321{margin-left:-2.755728px;}
._0_c00321{margin-left:-1.070136px;}
._2_c00321{width:1.296000px;}
.fc1_c00321{color:rgb(0,0,0);}
.fc0_c00321{color:rgb(0,0,255);}
.fs1_c00321{font-size:66.240000px;}
.fs2_c00321{font-size:72.000000px;}
.fs0_c00321{font-size:120.240000px;}
.y0_c00321{bottom:0.000000px;}
.y1_c00321{bottom:748.440000px;}
.y3_c00321{bottom:749.879850px;}
.y2_c00321{bottom:779.579850px;}
.h2_c00321{height:48.256875px;}
.h3_c00321{height:56.074219px;}
.h1_c00321{height:87.596719px;}
.h0_c00321{height:810.000000px;}
.w0_c00321{width:1440.000000px;}
.x0_c00321{left:0.000000px;}
.x1_c00321{left:262.800000px;}
.x2_c00321{left:604.800000px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls4_c00321{letter-spacing:-0.117760pt;}
.ls5_c00321{letter-spacing:-0.064000pt;}
.ls3_c00321{letter-spacing:0.106880pt;}
.ls1_c00321{letter-spacing:0.256000pt;}
.ls2_c00321{letter-spacing:29.504000pt;}
.ls0_c00321{letter-spacing:44.096000pt;}
.ws0_c00321{word-spacing:-29.819520pt;}
.ws3_c00321{word-spacing:-0.128000pt;}
.ws2_c00321{word-spacing:0.000000pt;}
.ws1_c00321{word-spacing:0.117760pt;}
.ws4_c00321{word-spacing:2.112000pt;}
._3_c00321{margin-left:-4.480000pt;}
._1_c00321{margin-left:-2.449536pt;}
._0_c00321{margin-left:-0.951232pt;}
._2_c00321{width:1.152000pt;}
.fs1_c00321{font-size:58.880000pt;}
.fs2_c00321{font-size:64.000000pt;}
.fs0_c00321{font-size:106.880000pt;}
.y0_c00321{bottom:0.000000pt;}
.y1_c00321{bottom:665.280000pt;}
.y3_c00321{bottom:666.559867pt;}
.y2_c00321{bottom:692.959867pt;}
.h2_c00321{height:42.895000pt;}
.h3_c00321{height:49.843750pt;}
.h1_c00321{height:77.863750pt;}
.h0_c00321{height:720.000000pt;}
.w0_c00321{width:1280.000000pt;}
.x0_c00321{left:0.000000pt;}
.x1_c00321{left:233.600000pt;}
.x2_c00321{left:537.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_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_b8afd498cf0beb1fc5308bfc.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:0.938965;font-style:normal;font-weight:normal;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_01e2644da2b12916ca546fcd.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:0.938965;font-style:normal;font-weight:normal;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_37dbeee91c64bdfa1f851acb.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:0.722656;font-style:normal;font-weight:normal;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_32695747ac6afe9fbf3e2c5a.woff2')format("woff");}.ff4_c00322{font-family:ff4_c00322;line-height:0.834473;font-style: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;}
.ls4_c00322{letter-spacing:-0.132480px;}
.ls5_c00322{letter-spacing:-0.072000px;}
.ls3_c00322{letter-spacing:0.120240px;}
.ls1_c00322{letter-spacing:0.288000px;}
.ls2_c00322{letter-spacing:33.192000px;}
.ls0_c00322{letter-spacing:49.608000px;}
.sc__c00322{text-shadow:none;}
.sc1_c00322{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1_c00322{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00322{word-spacing:-1.082160px;}
.ws3_c00322{word-spacing:-0.144000px;}
.ws2_c00322{word-spacing:0.000000px;}
.ws1_c00322{word-spacing:0.132480px;}
.ws4_c00322{word-spacing:2.376000px;}
._3_c00322{margin-left:-5.040000px;}
._1_c00322{margin-left:-2.419056px;}
._0_c00322{margin-left:-1.238472px;}
._2_c00322{width:1.296000px;}
.fc1_c00322{color:rgb(0,0,0);}
.fc0_c00322{color:rgb(0,0,255);}
.fs1_c00322{font-size:66.240000px;}
.fs2_c00322{font-size:72.000000px;}
.fs0_c00322{font-size:120.240000px;}
.y0_c00322{bottom:0.000000px;}
.y1_c00322{bottom:741.697050px;}
.y3_c00322{bottom:749.879850px;}
.y2_c00322{bottom:779.579850px;}
.h2_c00322{height:48.256875px;}
.h3_c00322{height:56.074219px;}
.h1_c00322{height:87.596719px;}
.h0_c00322{height:810.000000px;}
.w0_c00322{width:1440.000000px;}
.x0_c00322{left:0.000000px;}
.x1_c00322{left:253.080000px;}
.x2_c00322{left:613.800000px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls4_c00322{letter-spacing:-0.117760pt;}
.ls5_c00322{letter-spacing:-0.064000pt;}
.ls3_c00322{letter-spacing:0.106880pt;}
.ls1_c00322{letter-spacing:0.256000pt;}
.ls2_c00322{letter-spacing:29.504000pt;}
.ls0_c00322{letter-spacing:44.096000pt;}
.ws0_c00322{word-spacing:-0.961920pt;}
.ws3_c00322{word-spacing:-0.128000pt;}
.ws2_c00322{word-spacing:0.000000pt;}
.ws1_c00322{word-spacing:0.117760pt;}
.ws4_c00322{word-spacing:2.112000pt;}
._3_c00322{margin-left:-4.480000pt;}
._1_c00322{margin-left:-2.150272pt;}
._0_c00322{margin-left:-1.100864pt;}
._2_c00322{width:1.152000pt;}
.fs1_c00322{font-size:58.880000pt;}
.fs2_c00322{font-size:64.000000pt;}
.fs0_c00322{font-size:106.880000pt;}
.y0_c00322{bottom:0.000000pt;}
.y1_c00322{bottom:659.286267pt;}
.y3_c00322{bottom:666.559867pt;}
.y2_c00322{bottom:692.959867pt;}
.h2_c00322{height:42.895000pt;}
.h3_c00322{height:49.843750pt;}
.h1_c00322{height:77.863750pt;}
.h0_c00322{height:720.000000pt;}
.w0_c00322{width:1280.000000pt;}
.x0_c00322{left:0.000000pt;}
.x1_c00322{left:224.960000pt;}
.x2_c00322{left:545.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_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_3a07b059f19e2ff9c5c3d6f1.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:0.938965;font-style:normal;font-weight:normal;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_01e2644da2b12916ca546fcd.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:0.938965;font-style:normal;font-weight:normal;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_37dbeee91c64bdfa1f851acb.woff2')format("woff");}.ff3_c00323{font-family:ff3_c00323;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00323;src:url('chunks/assets/font_32695747ac6afe9fbf3e2c5a.woff2')format("woff");}.ff4_c00323{font-family:ff4_c00323;line-height:0.834473;font-style: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;}
.v1_c00323{vertical-align:79.531200px;}
.ls4_c00323{letter-spacing:-0.132480px;}
.ls5_c00323{letter-spacing:-0.072000px;}
.ls3_c00323{letter-spacing:0.120240px;}
.ls1_c00323{letter-spacing:0.288000px;}
.ls2_c00323{letter-spacing:33.192000px;}
.ls0_c00323{letter-spacing:49.608000px;}
.sc__c00323{text-shadow:none;}
.sc1_c00323{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1_c00323{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00323{word-spacing:-0.144000px;}
.ws2_c00323{word-spacing:0.000000px;}
.ws1_c00323{word-spacing:0.132480px;}
.ws4_c00323{word-spacing:2.376000px;}
.ws0_c00323{word-spacing:262.994688px;}
._3_c00323{margin-left:-5.040000px;}
._1_c00323{margin-left:-2.298816px;}
._0_c00323{margin-left:-1.298592px;}
._2_c00323{width:1.296000px;}
.fc1_c00323{color:rgb(0,0,0);}
.fc0_c00323{color:rgb(0,0,255);}
.fs1_c00323{font-size:66.240000px;}
.fs2_c00323{font-size:72.000000px;}
.fs0_c00323{font-size:120.240000px;}
.y0_c00323{bottom:0.000000px;}
.y2_c00323{bottom:740.879850px;}
.y1_c00323{bottom:750.697050px;}
.h2_c00323{height:56.074219px;}
.h1_c00323{height:127.788075px;}
.h0_c00323{height:810.000000px;}
.w0_c00323{width:1440.000000px;}
.x0_c00323{left:0.000000px;}
.x1_c00323{left:262.800000px;}
.x2_c00323{left:622.800000px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.v1_c00323{vertical-align:70.694400pt;}
.ls4_c00323{letter-spacing:-0.117760pt;}
.ls5_c00323{letter-spacing:-0.064000pt;}
.ls3_c00323{letter-spacing:0.106880pt;}
.ls1_c00323{letter-spacing:0.256000pt;}
.ls2_c00323{letter-spacing:29.504000pt;}
.ls0_c00323{letter-spacing:44.096000pt;}
.ws3_c00323{word-spacing:-0.128000pt;}
.ws2_c00323{word-spacing:0.000000pt;}
.ws1_c00323{word-spacing:0.117760pt;}
.ws4_c00323{word-spacing:2.112000pt;}
.ws0_c00323{word-spacing:233.773056pt;}
._3_c00323{margin-left:-4.480000pt;}
._1_c00323{margin-left:-2.043392pt;}
._0_c00323{margin-left:-1.154304pt;}
._2_c00323{width:1.152000pt;}
.fs1_c00323{font-size:58.880000pt;}
.fs2_c00323{font-size:64.000000pt;}
.fs0_c00323{font-size:106.880000pt;}
.y0_c00323{bottom:0.000000pt;}
.y2_c00323{bottom:658.559867pt;}
.y1_c00323{bottom:667.286267pt;}
.h2_c00323{height:49.843750pt;}
.h1_c00323{height:113.589400pt;}
.h0_c00323{height:720.000000pt;}
.w0_c00323{width:1280.000000pt;}
.x0_c00323{left:0.000000pt;}
.x1_c00323{left:233.600000pt;}
.x2_c00323{left:553.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_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_e99bfddd32749f9b7ca742ef.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00324;src:url('chunks/assets/font_6821ec9e45d6f267d3a783bf.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.083984;font-style:normal;font-weight:normal;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_9356590ec5a6d720b774658b.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00324;src:url('chunks/assets/font_5ad8875aace27b8366ac27f3.woff2')format("woff");}.ff4_c00324{font-family:ff4_c00324;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00324;src:url('chunks/assets/font_8cd2ca9632b73865c751379d.woff2')format("woff");}.ff5_c00324{font-family:ff5_c00324;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00324;src:url('chunks/assets/font_2abafd211ef330f86988c7bb.woff2')format("woff");}.ff6_c00324{font-family:ff6_c00324;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00324;src:url('chunks/assets/font_e20e7fe95de7a5401b92fb6b.woff2')format("woff");}.ff7_c00324{font-family:ff7_c00324;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00324;src:url('chunks/assets/font_3188a7b9c2699ced36b4bc8b.woff2')format("woff");}.ff8_c00324{font-family:ff8_c00324;line-height:0.844238;font-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_c00324{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,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);}
.m2_c00324{transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);}
.v1_c00324{vertical-align:-32.400600px;}
.v3_c00324{vertical-align:-12.978000px;}
.v0_c00324{vertical-align:0.000000px;}
.v2_c00324{vertical-align:38.700000px;}
.ls6_c00324{letter-spacing:-1.944000px;}
.ls7_c00324{letter-spacing:-0.864000px;}
.ls8_c00324{letter-spacing:-0.324000px;}
.ls9_c00324{letter-spacing:-0.270000px;}
.ls5_c00324{letter-spacing:-0.112320px;}
.lsa_c00324{letter-spacing:-0.108000px;}
.ls4_c00324{letter-spacing:0.000000px;}
.ls3_c00324{letter-spacing:0.108000px;}
.ls0_c00324{letter-spacing:0.216000px;}
.ls2_c00324{letter-spacing:24.516000px;}
.ls1_c00324{letter-spacing:359.755200px;}
.sc__c00324{text-shadow:none;}
.sc1_c00324{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1_c00324{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00324{word-spacing:-24.516000px;}
.ws1_c00324{word-spacing:-24.408000px;}
.ws2_c00324{word-spacing:-22.464000px;}
.ws3_c00324{word-spacing:-14.344800px;}
.ws5_c00324{word-spacing:-12.204000px;}
.ws4_c00324{word-spacing:-11.880000px;}
.ws8_c00324{word-spacing:-2.583360px;}
.ws9_c00324{word-spacing:-1.010880px;}
.wse_c00324{word-spacing:-0.432000px;}
.ws0_c00324{word-spacing:-0.112320px;}
.ws6_c00324{word-spacing:-0.108000px;}
.wsa_c00324{word-spacing:0.000000px;}
.wsc_c00324{word-spacing:0.054000px;}
.wsf_c00324{word-spacing:0.216000px;}
.wsd_c00324{word-spacing:0.324000px;}
.ws10_c00324{word-spacing:0.648000px;}
.wsb_c00324{word-spacing:0.864000px;}
._4_c00324{margin-left:-4.672800px;}
._3_c00324{margin-left:-2.988000px;}
._2_c00324{margin-left:-1.260000px;}
._1_c00324{width:1.931904px;}
._0_c00324{width:3.032640px;}
.fc1_c00324{color:rgb(0,0,0);}
.fc0_c00324{color:rgb(0,0,204);}
.fs6_c00324{font-size:36.000000px;}
.fs4_c00324{font-size:51.600000px;}
.fs5_c00324{font-size:54.000000px;}
.fs1_c00324{font-size:72.000000px;}
.fs2_c00324{font-size:108.000000px;}
.fs0_c00324{font-size:112.320000px;}
.fs3_c00324{font-size:113.841996px;}
.y0_c00324{bottom:0.000000px;}
.yc_c00324{bottom:2.166600px;}
.ya_c00324{bottom:7.533000px;}
.yf_c00324{bottom:26.031600px;}
.yb_c00324{bottom:51.612300px;}
.y7_c00324{bottom:104.708700px;}
.y1e_c00324{bottom:115.200000px;}
.y5_c00324{bottom:119.543700px;}
.y6_c00324{bottom:135.668700px;}
.y1d_c00324{bottom:147.600000px;}
.y8_c00324{bottom:167.918700px;}
.y12_c00324{bottom:171.000000px;}
.ye_c00324{bottom:175.245900px;}
.y1c_c00324{bottom:180.000000px;}
.y13_c00324{bottom:180.004500px;}
.y9_c00324{bottom:188.133000px;}
.yd_c00324{bottom:197.820900px;}
.y11_c00324{bottom:207.004500px;}
.y1b_c00324{bottom:212.400000px;}
.y15_c00324{bottom:234.004500px;}
.y1a_c00324{bottom:244.800000px;}
.y4_c00324{bottom:259.020000px;}
.y19_c00324{bottom:277.200000px;}
.y14_c00324{bottom:297.009000px;}
.y18_c00324{bottom:309.600000px;}
.y17_c00324{bottom:342.000000px;}
.y16_c00324{bottom:374.400000px;}
.y10_c00324{bottom:576.000000px;}
.y3_c00324{bottom:688.863600px;}
.y2_c00324{bottom:696.963750px;}
.y1_c00324{bottom:754.563600px;}
.h6_c00324{height:37.591406px;}
.h8_c00324{height:39.208008px;}
.h2_c00324{height:49.218750px;}
.h4_c00324{height:73.828125px;}
.h7_c00324{height:76.291406px;}
.h9_c00324{height:77.519531px;}
.h3_c00324{height:77.821677px;}
.h1_c00324{height:89.834062px;}
.h5_c00324{height:208.980000px;}
.h0_c00324{height:810.000000px;}
.w1_c00324{width:297.540000px;}
.w0_c00324{width:1440.000000px;}
.x0_c00324{left:0.000000px;}
.xa_c00324{left:1.516396px;}
.xf_c00324{left:30.108502px;}
.xb_c00324{left:33.787396px;}
.xd_c00324{left:69.272587px;}
.xc_c00324{left:74.655390px;}
.xe_c00324{left:105.842084px;}
.x2_c00324{left:109.800000px;}
.x6_c00324{left:121.771050px;}
.x7_c00324{left:150.595507px;}
.x14_c00324{left:158.850000px;}
.x9_c00324{left:162.432510px;}
.x8_c00324{left:177.703147px;}
.x15_c00324{left:194.854500px;}
.x16_c00324{left:230.859000px;}
.x1_c00324{left:258.660000px;}
.x5_c00324{left:301.140000px;}
.x3_c00324{left:437.220000px;}
.x13_c00324{left:441.594000px;}
.x4_c00324{left:450.720000px;}
.x12_c00324{left:563.850000px;}
.x10_c00324{left:671.850000px;}
.x11_c00324{left:689.845500px;}
.x17_c00324{left:994.950000px;}
@media print{
.v1_c00324{vertical-align:-28.800533pt;}
.v3_c00324{vertical-align:-11.536000pt;}
.v0_c00324{vertical-align:0.000000pt;}
.v2_c00324{vertical-align:34.400000pt;}
.ls6_c00324{letter-spacing:-1.728000pt;}
.ls7_c00324{letter-spacing:-0.768000pt;}
.ls8_c00324{letter-spacing:-0.288000pt;}
.ls9_c00324{letter-spacing:-0.240000pt;}
.ls5_c00324{letter-spacing:-0.099840pt;}
.lsa_c00324{letter-spacing:-0.096000pt;}
.ls4_c00324{letter-spacing:0.000000pt;}
.ls3_c00324{letter-spacing:0.096000pt;}
.ls0_c00324{letter-spacing:0.192000pt;}
.ls2_c00324{letter-spacing:21.792000pt;}
.ls1_c00324{letter-spacing:319.782400pt;}
.ws7_c00324{word-spacing:-21.792000pt;}
.ws1_c00324{word-spacing:-21.696000pt;}
.ws2_c00324{word-spacing:-19.968000pt;}
.ws3_c00324{word-spacing:-12.750933pt;}
.ws5_c00324{word-spacing:-10.848000pt;}
.ws4_c00324{word-spacing:-10.560000pt;}
.ws8_c00324{word-spacing:-2.296320pt;}
.ws9_c00324{word-spacing:-0.898560pt;}
.wse_c00324{word-spacing:-0.384000pt;}
.ws0_c00324{word-spacing:-0.099840pt;}
.ws6_c00324{word-spacing:-0.096000pt;}
.wsa_c00324{word-spacing:0.000000pt;}
.wsc_c00324{word-spacing:0.048000pt;}
.wsf_c00324{word-spacing:0.192000pt;}
.wsd_c00324{word-spacing:0.288000pt;}
.ws10_c00324{word-spacing:0.576000pt;}
.wsb_c00324{word-spacing:0.768000pt;}
._4_c00324{margin-left:-4.153600pt;}
._3_c00324{margin-left:-2.656000pt;}
._2_c00324{margin-left:-1.120000pt;}
._1_c00324{width:1.717248pt;}
._0_c00324{width:2.695680pt;}
.fs6_c00324{font-size:32.000000pt;}
.fs4_c00324{font-size:45.866667pt;}
.fs5_c00324{font-size:48.000000pt;}
.fs1_c00324{font-size:64.000000pt;}
.fs2_c00324{font-size:96.000000pt;}
.fs0_c00324{font-size:99.840000pt;}
.fs3_c00324{font-size:101.192885pt;}
.y0_c00324{bottom:0.000000pt;}
.yc_c00324{bottom:1.925867pt;}
.ya_c00324{bottom:6.696000pt;}
.yf_c00324{bottom:23.139200pt;}
.yb_c00324{bottom:45.877600pt;}
.y7_c00324{bottom:93.074400pt;}
.y1e_c00324{bottom:102.400000pt;}
.y5_c00324{bottom:106.261067pt;}
.y6_c00324{bottom:120.594400pt;}
.y1d_c00324{bottom:131.200000pt;}
.y8_c00324{bottom:149.261067pt;}
.y12_c00324{bottom:152.000000pt;}
.ye_c00324{bottom:155.774133pt;}
.y1c_c00324{bottom:160.000000pt;}
.y13_c00324{bottom:160.004000pt;}
.y9_c00324{bottom:167.229333pt;}
.yd_c00324{bottom:175.840800pt;}
.y11_c00324{bottom:184.004000pt;}
.y1b_c00324{bottom:188.800000pt;}
.y15_c00324{bottom:208.004000pt;}
.y1a_c00324{bottom:217.600000pt;}
.y4_c00324{bottom:230.240000pt;}
.y19_c00324{bottom:246.400000pt;}
.y14_c00324{bottom:264.008000pt;}
.y18_c00324{bottom:275.200000pt;}
.y17_c00324{bottom:304.000000pt;}
.y16_c00324{bottom:332.800000pt;}
.y10_c00324{bottom:512.000000pt;}
.y3_c00324{bottom:612.323200pt;}
.y2_c00324{bottom:619.523333pt;}
.y1_c00324{bottom:670.723200pt;}
.h6_c00324{height:33.414583pt;}
.h8_c00324{height:34.851562pt;}
.h2_c00324{height:43.750000pt;}
.h4_c00324{height:65.625000pt;}
.h7_c00324{height:67.814583pt;}
.h9_c00324{height:68.906250pt;}
.h3_c00324{height:69.174824pt;}
.h1_c00324{height:79.852500pt;}
.h5_c00324{height:185.760000pt;}
.h0_c00324{height:720.000000pt;}
.w1_c00324{width:264.480000pt;}
.w0_c00324{width:1280.000000pt;}
.x0_c00324{left:0.000000pt;}
.xa_c00324{left:1.347907pt;}
.xf_c00324{left:26.763113pt;}
.xb_c00324{left:30.033241pt;}
.xd_c00324{left:61.575633pt;}
.xc_c00324{left:66.360347pt;}
.xe_c00324{left:94.081853pt;}
.x2_c00324{left:97.600000pt;}
.x6_c00324{left:108.240933pt;}
.x7_c00324{left:133.862673pt;}
.x14_c00324{left:141.200000pt;}
.x9_c00324{left:144.384453pt;}
.x8_c00324{left:157.958353pt;}
.x15_c00324{left:173.204000pt;}
.x16_c00324{left:205.208000pt;}
.x1_c00324{left:229.920000pt;}
.x5_c00324{left:267.680000pt;}
.x3_c00324{left:388.640000pt;}
.x13_c00324{left:392.528000pt;}
.x4_c00324{left:400.640000pt;}
.x12_c00324{left:501.200000pt;}
.x10_c00324{left:597.200000pt;}
.x11_c00324{left:613.196000pt;}
.x17_c00324{left:884.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_7f23d47948763e126937773b.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:0.861816;font-style:normal;font-weight:normal;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_5ad8875aace27b8366ac27f3.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:0.938965;font-style:normal;font-weight:normal;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_8cd2ca9632b73865c751379d.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:0.938965;font-style:normal;font-weight:normal;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_1de0255753b32167905c0838.woff2')format("woff");}.ff4_c00325{font-family:ff4_c00325;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00325{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m2_c00325{transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,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);}
.v1_c00325{vertical-align:-43.200000px;}
.v2_c00325{vertical-align:-12.978000px;}
.v0_c00325{vertical-align:0.000000px;}
.ls3_c00325{letter-spacing:-2.160000px;}
.ls2_c00325{letter-spacing:-1.296000px;}
.ls4_c00325{letter-spacing:-0.720000px;}
.ls1_c00325{letter-spacing:-0.576000px;}
.ls6_c00325{letter-spacing:-0.324000px;}
.ls5_c00325{letter-spacing:-0.270000px;}
.ls0_c00325{letter-spacing:0.000000px;}
.sc__c00325{text-shadow:none;}
.sc1_c00325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00325{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00325{-webkit-text-stroke:0px transparent;}
.sc1_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00325{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00325{word-spacing:-32.544000px;}
.ws2_c00325{word-spacing:-31.248000px;}
.ws3_c00325{word-spacing:-30.384000px;}
.ws0_c00325{word-spacing:-21.641760px;}
.ws6_c00325{word-spacing:-12.204000px;}
.ws5_c00325{word-spacing:-11.880000px;}
.ws7_c00325{word-spacing:-1.728000px;}
.wsc_c00325{word-spacing:-0.432000px;}
.ws8_c00325{word-spacing:0.000000px;}
.wsa_c00325{word-spacing:0.054000px;}
.wsb_c00325{word-spacing:0.324000px;}
.ws9_c00325{word-spacing:0.720000px;}
.ws4_c00325{word-spacing:1153.427869px;}
._1_c00325{margin-left:-2.160000px;}
._0_c00325{margin-left:-1.030320px;}
._2_c00325{width:1.204200px;}
.fc0_c00325{color:rgb(0,0,0);}
.fs5_c00325{font-size:36.000000px;}
.fs3_c00325{font-size:46.179600px;}
.fs4_c00325{font-size:54.000000px;}
.fs0_c00325{font-size:95.760000px;}
.fs1_c00325{font-size:144.000000px;}
.fs2_c00325{font-size:151.789328px;}
.y0_c00325{bottom:0.000000px;}
.yc_c00325{bottom:1.917687px;}
.ya_c00325{bottom:14.420813px;}
.yb_c00325{bottom:45.211062px;}
.y6_c00325{bottom:92.741415px;}
.y4_c00325{bottom:106.018050px;}
.y5_c00325{bottom:120.449175px;}
.y8_c00325{bottom:134.684037px;}
.y7_c00325{bottom:149.311425px;}
.ye_c00325{bottom:155.857383px;}
.y15_c00325{bottom:171.004500px;}
.yd_c00325{bottom:174.132960px;}
.y9_c00325{bottom:176.049413px;}
.y10_c00325{bottom:252.004500px;}
.y12_c00325{bottom:270.013500px;}
.y13_c00325{bottom:342.009000px;}
.y3_c00325{bottom:400.860000px;}
.y11_c00325{bottom:423.009000px;}
.y14_c00325{bottom:441.004500px;}
.yf_c00325{bottom:540.000000px;}
.y2_c00325{bottom:678.693750px;}
.y1_c00325{bottom:689.493750px;}
.h5_c00325{height:33.642560px;}
.h6_c00325{height:39.208008px;}
.h1_c00325{height:65.460938px;}
.h3_c00325{height:98.437500px;}
.h2_c00325{height:103.762236px;}
.h4_c00325{height:184.140000px;}
.h0_c00325{height:810.000000px;}
.w1_c00325{width:327.421500px;}
.w0_c00325{width:1440.000000px;}
.x0_c00325{left:0.000000px;}
.x9_c00325{left:4.813932px;}
.xa_c00325{left:37.513410px;}
.xd_c00325{left:87.526413px;}
.xc_c00325{left:90.412000px;}
.x1_c00325{left:109.800000px;}
.xe_c00325{left:120.225890px;}
.x5_c00325{left:134.469150px;}
.xb_c00325{left:143.322132px;}
.x6_c00325{left:160.243218px;}
.x8_c00325{left:170.827553px;}
.x7_c00325{left:184.482153px;}
.x13_c00325{left:370.795500px;}
.x14_c00325{left:451.795500px;}
.x12_c00325{left:464.539500px;}
.x4_c00325{left:477.000000px;}
.x2_c00325{left:584.280000px;}
.x3_c00325{left:602.280000px;}
.x11_c00325{left:743.544000px;}
.x10_c00325{left:887.548500px;}
.xf_c00325{left:1027.800000px;}
.x15_c00325{left:1045.795500px;}
@media print{
.v1_c00325{vertical-align:-38.400000pt;}
.v2_c00325{vertical-align:-11.536000pt;}
.v0_c00325{vertical-align:0.000000pt;}
.ls3_c00325{letter-spacing:-1.920000pt;}
.ls2_c00325{letter-spacing:-1.152000pt;}
.ls4_c00325{letter-spacing:-0.640000pt;}
.ls1_c00325{letter-spacing:-0.512000pt;}
.ls6_c00325{letter-spacing:-0.288000pt;}
.ls5_c00325{letter-spacing:-0.240000pt;}
.ls0_c00325{letter-spacing:0.000000pt;}
.ws1_c00325{word-spacing:-28.928000pt;}
.ws2_c00325{word-spacing:-27.776000pt;}
.ws3_c00325{word-spacing:-27.008000pt;}
.ws0_c00325{word-spacing:-19.237120pt;}
.ws6_c00325{word-spacing:-10.848000pt;}
.ws5_c00325{word-spacing:-10.560000pt;}
.ws7_c00325{word-spacing:-1.536000pt;}
.wsc_c00325{word-spacing:-0.384000pt;}
.ws8_c00325{word-spacing:0.000000pt;}
.wsa_c00325{word-spacing:0.048000pt;}
.wsb_c00325{word-spacing:0.288000pt;}
.ws9_c00325{word-spacing:0.640000pt;}
.ws4_c00325{word-spacing:1025.269217pt;}
._1_c00325{margin-left:-1.920000pt;}
._0_c00325{margin-left:-0.915840pt;}
._2_c00325{width:1.070400pt;}
.fs5_c00325{font-size:32.000000pt;}
.fs3_c00325{font-size:41.048533pt;}
.fs4_c00325{font-size:48.000000pt;}
.fs0_c00325{font-size:85.120000pt;}
.fs1_c00325{font-size:128.000000pt;}
.fs2_c00325{font-size:134.923847pt;}
.y0_c00325{bottom:0.000000pt;}
.yc_c00325{bottom:1.704610pt;}
.ya_c00325{bottom:12.818501pt;}
.yb_c00325{bottom:40.187610pt;}
.y6_c00325{bottom:82.436813pt;}
.y4_c00325{bottom:94.238267pt;}
.y5_c00325{bottom:107.065933pt;}
.y8_c00325{bottom:119.719144pt;}
.y7_c00325{bottom:132.721267pt;}
.ye_c00325{bottom:138.539896pt;}
.y15_c00325{bottom:152.004000pt;}
.yd_c00325{bottom:154.784853pt;}
.y9_c00325{bottom:156.488367pt;}
.y10_c00325{bottom:224.004000pt;}
.y12_c00325{bottom:240.012000pt;}
.y13_c00325{bottom:304.008000pt;}
.y3_c00325{bottom:356.320000pt;}
.y11_c00325{bottom:376.008000pt;}
.y14_c00325{bottom:392.004000pt;}
.yf_c00325{bottom:480.000000pt;}
.y2_c00325{bottom:603.283333pt;}
.y1_c00325{bottom:612.883333pt;}
.h5_c00325{height:29.904498pt;}
.h6_c00325{height:34.851562pt;}
.h1_c00325{height:58.187500pt;}
.h3_c00325{height:87.500000pt;}
.h2_c00325{height:92.233098pt;}
.h4_c00325{height:163.680000pt;}
.h0_c00325{height:720.000000pt;}
.w1_c00325{width:291.041333pt;}
.w0_c00325{width:1280.000000pt;}
.x0_c00325{left:0.000000pt;}
.x9_c00325{left:4.279051pt;}
.xa_c00325{left:33.345253pt;}
.xd_c00325{left:77.801256pt;}
.xc_c00325{left:80.366222pt;}
.x1_c00325{left:97.600000pt;}
.xe_c00325{left:106.867458pt;}
.x5_c00325{left:119.528133pt;}
.xb_c00325{left:127.397451pt;}
.x6_c00325{left:142.438416pt;}
.x8_c00325{left:151.846713pt;}
.x7_c00325{left:163.984136pt;}
.x13_c00325{left:329.596000pt;}
.x14_c00325{left:401.596000pt;}
.x12_c00325{left:412.924000pt;}
.x4_c00325{left:424.000000pt;}
.x2_c00325{left:519.360000pt;}
.x3_c00325{left:535.360000pt;}
.x11_c00325{left:660.928000pt;}
.x10_c00325{left:788.932000pt;}
.xf_c00325{left:913.600000pt;}
.x15_c00325{left:929.596000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_862bb1ba088d056ade1844ea.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00326;src:url('chunks/assets/font_f5d1d9049af681560afdb4c8.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.083984;font-style: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;}
.ls0_c00326{letter-spacing:0.000000px;}
.ls1_c00326{letter-spacing:0.288000px;}
.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;}
}
.ws2_c00326{word-spacing:-0.144000px;}
.ws1_c00326{word-spacing:0.000000px;}
.ws0_c00326{word-spacing:0.144000px;}
._0_c00326{margin-left:-1.008000px;}
.fc0_c00326{color:rgb(0,0,204);}
.fs0_c00326{font-size:144.000000px;}
.y0_c00326{bottom:0.000000px;}
.y1_c00326{bottom:736.650000px;}
.h1_c00326{height:115.171875px;}
.h0_c00326{height:810.000000px;}
.w0_c00326{width:1440.000000px;}
.x0_c00326{left:0.000000px;}
.x1_c00326{left:213.300000px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls0_c00326{letter-spacing:0.000000pt;}
.ls1_c00326{letter-spacing:0.256000pt;}
.ws2_c00326{word-spacing:-0.128000pt;}
.ws1_c00326{word-spacing:0.000000pt;}
.ws0_c00326{word-spacing:0.128000pt;}
._0_c00326{margin-left:-0.896000pt;}
.fs0_c00326{font-size:128.000000pt;}
.y0_c00326{bottom:0.000000pt;}
.y1_c00326{bottom:654.800000pt;}
.h1_c00326{height:102.375000pt;}
.h0_c00326{height:720.000000pt;}
.w0_c00326{width:1280.000000pt;}
.x0_c00326{left:0.000000pt;}
.x1_c00326{left:189.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_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_720733fb82388fcc24b0337b.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00327;src:url('chunks/assets/font_ab25cc14bc4d46a6e09a49a5.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:0.938965;font-style:normal;font-weight:normal;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_d82ee11186f7ec52ff18b629.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00327;src:url('chunks/assets/font_1361cf4262ff534cdd326344.woff2')format("woff");}.ff4_c00327{font-family:ff4_c00327;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00327{letter-spacing:-0.324000px;}
.ls4_c00327{letter-spacing:0.000000px;}
.ls3_c00327{letter-spacing:0.086400px;}
.ls2_c00327{letter-spacing:0.108000px;}
.ls5_c00327{letter-spacing:0.324000px;}
.ls1_c00327{letter-spacing:24.516000px;}
.ls0_c00327{letter-spacing:97.524000px;}
.sc__c00327{text-shadow:none;}
.sc0_c00327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00327{-webkit-text-stroke:0px transparent;}
.sc0_c00327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00327{word-spacing:-71.688240px;}
.ws1_c00327{word-spacing:-24.732000px;}
.ws2_c00327{word-spacing:-24.516000px;}
.ws4_c00327{word-spacing:-2.376000px;}
.ws7_c00327{word-spacing:-0.972000px;}
.ws3_c00327{word-spacing:0.000000px;}
.ws5_c00327{word-spacing:0.648000px;}
.ws6_c00327{word-spacing:1.080000px;}
._4_c00327{margin-left:-7.880400px;}
._5_c00327{margin-left:-4.698000px;}
._0_c00327{margin-left:-3.639600px;}
._1_c00327{margin-left:-2.300400px;}
._3_c00327{margin-left:-1.036800px;}
._2_c00327{width:1.998000px;}
._6_c00327{width:3.348000px;}
.fc1_c00327{color:rgb(192,0,0);}
.fc0_c00327{color:rgb(0,0,204);}
.fs1_c00327{font-size:108.000000px;}
.fs0_c00327{font-size:239.760000px;}
.y0_c00327{bottom:0.000000px;}
.y14_c00327{bottom:39.849000px;}
.y13_c00327{bottom:72.240000px;}
.y12_c00327{bottom:104.640000px;}
.y11_c00327{bottom:149.100000px;}
.y10_c00327{bottom:181.500000px;}
.yf_c00327{bottom:225.969000px;}
.ye_c00327{bottom:258.369000px;}
.yd_c00327{bottom:290.769000px;}
.yc_c00327{bottom:335.049000px;}
.yb_c00327{bottom:367.449000px;}
.ya_c00327{bottom:399.840000px;}
.y9_c00327{bottom:432.240000px;}
.y8_c00327{bottom:476.700000px;}
.y7_c00327{bottom:509.100000px;}
.y6_c00327{bottom:553.569000px;}
.y5_c00327{bottom:585.969000px;}
.y4_c00327{bottom:618.369000px;}
.y3_c00327{bottom:650.769000px;}
.y2_c00327{bottom:683.169000px;}
.y1_c00327{bottom:736.057500px;}
.h3_c00327{height:77.519531px;}
.h5_c00327{height:77.555531px;}
.h4_c00327{height:78.452016px;}
.h2_c00327{height:78.679688px;}
.h1_c00327{height:191.761172px;}
.h0_c00327{height:810.000000px;}
.w0_c00327{width:1440.000000px;}
.x0_c00327{left:0.000000px;}
.x2_c00327{left:102.375000px;}
.x3_c00327{left:136.206000px;}
.x1_c00327{left:574.810200px;}
.x4_c00327{left:1074.357000px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls6_c00327{letter-spacing:-0.288000pt;}
.ls4_c00327{letter-spacing:0.000000pt;}
.ls3_c00327{letter-spacing:0.076800pt;}
.ls2_c00327{letter-spacing:0.096000pt;}
.ls5_c00327{letter-spacing:0.288000pt;}
.ls1_c00327{letter-spacing:21.792000pt;}
.ls0_c00327{letter-spacing:86.688000pt;}
.ws0_c00327{word-spacing:-63.722880pt;}
.ws1_c00327{word-spacing:-21.984000pt;}
.ws2_c00327{word-spacing:-21.792000pt;}
.ws4_c00327{word-spacing:-2.112000pt;}
.ws7_c00327{word-spacing:-0.864000pt;}
.ws3_c00327{word-spacing:0.000000pt;}
.ws5_c00327{word-spacing:0.576000pt;}
.ws6_c00327{word-spacing:0.960000pt;}
._4_c00327{margin-left:-7.004800pt;}
._5_c00327{margin-left:-4.176000pt;}
._0_c00327{margin-left:-3.235200pt;}
._1_c00327{margin-left:-2.044800pt;}
._3_c00327{margin-left:-0.921600pt;}
._2_c00327{width:1.776000pt;}
._6_c00327{width:2.976000pt;}
.fs1_c00327{font-size:96.000000pt;}
.fs0_c00327{font-size:213.120000pt;}
.y0_c00327{bottom:0.000000pt;}
.y14_c00327{bottom:35.421333pt;}
.y13_c00327{bottom:64.213333pt;}
.y12_c00327{bottom:93.013333pt;}
.y11_c00327{bottom:132.533333pt;}
.y10_c00327{bottom:161.333333pt;}
.yf_c00327{bottom:200.861333pt;}
.ye_c00327{bottom:229.661333pt;}
.yd_c00327{bottom:258.461333pt;}
.yc_c00327{bottom:297.821333pt;}
.yb_c00327{bottom:326.621333pt;}
.ya_c00327{bottom:355.413333pt;}
.y9_c00327{bottom:384.213333pt;}
.y8_c00327{bottom:423.733333pt;}
.y7_c00327{bottom:452.533333pt;}
.y6_c00327{bottom:492.061333pt;}
.y5_c00327{bottom:520.861333pt;}
.y4_c00327{bottom:549.661333pt;}
.y3_c00327{bottom:578.461333pt;}
.y2_c00327{bottom:607.261333pt;}
.y1_c00327{bottom:654.273333pt;}
.h3_c00327{height:68.906250pt;}
.h5_c00327{height:68.938250pt;}
.h4_c00327{height:69.735125pt;}
.h2_c00327{height:69.937500pt;}
.h1_c00327{height:170.454375pt;}
.h0_c00327{height:720.000000pt;}
.w0_c00327{width:1280.000000pt;}
.x0_c00327{left:0.000000pt;}
.x2_c00327{left:91.000000pt;}
.x3_c00327{left:121.072000pt;}
.x1_c00327{left:510.942400pt;}
.x4_c00327{left:954.984000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4b92bc726adfce37c0e82ffb.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:0.965820;font-style:normal;font-weight:normal;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_d0cb1381ea8588c76b729634.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:0.938965;font-style: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.324000px;}
.ls1_c00328{letter-spacing:-0.216000px;}
.ls0_c00328{letter-spacing:0.192240px;}
.ls3_c00328{letter-spacing:0.324000px;}
.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;}
}
.ws5_c00328{word-spacing:-3.024000px;}
.ws0_c00328{word-spacing:-2.499120px;}
.ws4_c00328{word-spacing:-0.756000px;}
.ws6_c00328{word-spacing:0.216000px;}
.ws1_c00328{word-spacing:0.432000px;}
.ws2_c00328{word-spacing:0.540000px;}
.ws3_c00328{word-spacing:0.648000px;}
._2_c00328{margin-left:-2.418336px;}
._0_c00328{margin-left:-1.288008px;}
._1_c00328{width:1.112400px;}
._3_c00328{width:3.465936px;}
._4_c00328{width:6.705936px;}
.fc0_c00328{color:rgb(0,0,204);}
.fs1_c00328{font-size:108.000000px;}
.fs0_c00328{font-size:192.240000px;}
.y0_c00328{bottom:0.000000px;}
.y9_c00328{bottom:242.820000px;}
.y8_c00328{bottom:275.220000px;}
.y7_c00328{bottom:307.620000px;}
.y6_c00328{bottom:340.020000px;}
.y5_c00328{bottom:372.420000px;}
.y4_c00328{bottom:404.820000px;}
.y3_c00328{bottom:437.220000px;}
.y2_c00328{bottom:469.620000px;}
.y1_c00328{bottom:563.400000px;}
.h2_c00328{height:78.679688px;}
.h1_c00328{height:146.996016px;}
.h0_c00328{height:810.000000px;}
.w0_c00328{width:1440.000000px;}
.x0_c00328{left:0.000000px;}
.x2_c00328{left:202.050000px;}
.x1_c00328{left:281.070000px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls2_c00328{letter-spacing:-0.288000pt;}
.ls1_c00328{letter-spacing:-0.192000pt;}
.ls0_c00328{letter-spacing:0.170880pt;}
.ls3_c00328{letter-spacing:0.288000pt;}
.ws5_c00328{word-spacing:-2.688000pt;}
.ws0_c00328{word-spacing:-2.221440pt;}
.ws4_c00328{word-spacing:-0.672000pt;}
.ws6_c00328{word-spacing:0.192000pt;}
.ws1_c00328{word-spacing:0.384000pt;}
.ws2_c00328{word-spacing:0.480000pt;}
.ws3_c00328{word-spacing:0.576000pt;}
._2_c00328{margin-left:-2.149632pt;}
._0_c00328{margin-left:-1.144896pt;}
._1_c00328{width:0.988800pt;}
._3_c00328{width:3.080832pt;}
._4_c00328{width:5.960832pt;}
.fs1_c00328{font-size:96.000000pt;}
.fs0_c00328{font-size:170.880000pt;}
.y0_c00328{bottom:0.000000pt;}
.y9_c00328{bottom:215.840000pt;}
.y8_c00328{bottom:244.640000pt;}
.y7_c00328{bottom:273.440000pt;}
.y6_c00328{bottom:302.240000pt;}
.y5_c00328{bottom:331.040000pt;}
.y4_c00328{bottom:359.840000pt;}
.y3_c00328{bottom:388.640000pt;}
.y2_c00328{bottom:417.440000pt;}
.y1_c00328{bottom:500.800000pt;}
.h2_c00328{height:69.937500pt;}
.h1_c00328{height:130.663125pt;}
.h0_c00328{height:720.000000pt;}
.w0_c00328{width:1280.000000pt;}
.x0_c00328{left:0.000000pt;}
.x2_c00328{left:179.600000pt;}
.x1_c00328{left:249.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f81c870d82717b0d010d1163.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:0.965820;font-style:normal;font-weight:normal;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_45df7e8abf6d1d87615f50c1.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:0.938965;font-style: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;}
.ls9_c00329{letter-spacing:-0.696960px;}
.ls7_c00329{letter-spacing:-0.316800px;}
.ls8_c00329{letter-spacing:-0.190080px;}
.ls4_c00329{letter-spacing:-0.167760px;}
.ls5_c00329{letter-spacing:0.000000px;}
.ls1_c00329{letter-spacing:0.063360px;}
.ls2_c00329{letter-spacing:0.190080px;}
.ls6_c00329{letter-spacing:0.316800px;}
.ls3_c00329{letter-spacing:59.178240px;}
.ls0_c00329{letter-spacing:59.875200px;}
.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;}
}
.ws7_c00329{word-spacing:-17.930880px;}
.wse_c00329{word-spacing:-17.677440px;}
.ws3_c00329{word-spacing:-17.614080px;}
.ws16_c00329{word-spacing:-17.424000px;}
.ws5_c00329{word-spacing:-17.297280px;}
.ws17_c00329{word-spacing:-3.104640px;}
.ws2_c00329{word-spacing:-2.141568px;}
.ws1c_c00329{word-spacing:-2.090880px;}
.wsd_c00329{word-spacing:-1.913472px;}
.wsc_c00329{word-spacing:-1.894464px;}
.wsb_c00329{word-spacing:-1.837440px;}
.ws4_c00329{word-spacing:-1.774080px;}
.ws6_c00329{word-spacing:-1.564992px;}
.ws10_c00329{word-spacing:-1.425600px;}
.ws15_c00329{word-spacing:-1.412928px;}
.ws1f_c00329{word-spacing:-1.330560px;}
.ws1_c00329{word-spacing:-1.286208px;}
.ws9_c00329{word-spacing:-1.165824px;}
.ws0_c00329{word-spacing:-1.108800px;}
.ws1a_c00329{word-spacing:-1.077120px;}
.wsa_c00329{word-spacing:-0.975744px;}
.ws8_c00329{word-spacing:-0.880704px;}
.ws13_c00329{word-spacing:-0.868032px;}
.ws11_c00329{word-spacing:-0.849024px;}
.wsf_c00329{word-spacing:-0.443520px;}
.ws1b_c00329{word-spacing:-0.380160px;}
.ws1e_c00329{word-spacing:-0.063360px;}
.ws19_c00329{word-spacing:0.000000px;}
.ws12_c00329{word-spacing:0.253440px;}
.ws1d_c00329{word-spacing:0.316800px;}
.ws20_c00329{word-spacing:0.696960px;}
.ws14_c00329{word-spacing:1.058112px;}
.ws18_c00329{word-spacing:1.509840px;}
._2_c00329{margin-left:-2.275200px;}
._0_c00329{margin-left:-1.124352px;}
._1_c00329{width:1.235520px;}
.fc0_c00329{color:rgb(0,0,204);}
.fs1_c00329{font-size:63.360000px;}
.fs0_c00329{font-size:167.760000px;}
.y0_c00329{bottom:0.000000px;}
.y15_c00329{bottom:282.608490px;}
.y14_c00329{bottom:301.505610px;}
.y13_c00329{bottom:320.408490px;}
.y12_c00329{bottom:339.305610px;}
.y11_c00329{bottom:358.202730px;}
.y10_c00329{bottom:377.105610px;}
.yf_c00329{bottom:396.005610px;}
.ye_c00329{bottom:414.902730px;}
.yd_c00329{bottom:433.805610px;}
.yc_c00329{bottom:452.702730px;}
.yb_c00329{bottom:471.605610px;}
.ya_c00329{bottom:490.502730px;}
.y9_c00329{bottom:509.405610px;}
.y8_c00329{bottom:528.302730px;}
.y7_c00329{bottom:547.205610px;}
.y6_c00329{bottom:566.102730px;}
.y5_c00329{bottom:584.992650px;}
.y4_c00329{bottom:603.905610px;}
.y3_c00329{bottom:622.802730px;}
.y2_c00329{bottom:641.699850px;}
.y1_c00329{bottom:717.729150px;}
.h2_c00329{height:46.158750px;}
.h3_c00329{height:46.187550px;}
.h1_c00329{height:128.277422px;}
.h0_c00329{height:810.000000px;}
.w0_c00329{width:1440.000000px;}
.x0_c00329{left:0.000000px;}
.x2_c00329{left:225.000000px;}
.x4_c00329{left:245.355840px;}
.x3_c00329{left:246.597120px;}
.x1_c00329{left:450.000000px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls9_c00329{letter-spacing:-0.619520pt;}
.ls7_c00329{letter-spacing:-0.281600pt;}
.ls8_c00329{letter-spacing:-0.168960pt;}
.ls4_c00329{letter-spacing:-0.149120pt;}
.ls5_c00329{letter-spacing:0.000000pt;}
.ls1_c00329{letter-spacing:0.056320pt;}
.ls2_c00329{letter-spacing:0.168960pt;}
.ls6_c00329{letter-spacing:0.281600pt;}
.ls3_c00329{letter-spacing:52.602880pt;}
.ls0_c00329{letter-spacing:53.222400pt;}
.ws7_c00329{word-spacing:-15.938560pt;}
.wse_c00329{word-spacing:-15.713280pt;}
.ws3_c00329{word-spacing:-15.656960pt;}
.ws16_c00329{word-spacing:-15.488000pt;}
.ws5_c00329{word-spacing:-15.375360pt;}
.ws17_c00329{word-spacing:-2.759680pt;}
.ws2_c00329{word-spacing:-1.903616pt;}
.ws1c_c00329{word-spacing:-1.858560pt;}
.wsd_c00329{word-spacing:-1.700864pt;}
.wsc_c00329{word-spacing:-1.683968pt;}
.wsb_c00329{word-spacing:-1.633280pt;}
.ws4_c00329{word-spacing:-1.576960pt;}
.ws6_c00329{word-spacing:-1.391104pt;}
.ws10_c00329{word-spacing:-1.267200pt;}
.ws15_c00329{word-spacing:-1.255936pt;}
.ws1f_c00329{word-spacing:-1.182720pt;}
.ws1_c00329{word-spacing:-1.143296pt;}
.ws9_c00329{word-spacing:-1.036288pt;}
.ws0_c00329{word-spacing:-0.985600pt;}
.ws1a_c00329{word-spacing:-0.957440pt;}
.wsa_c00329{word-spacing:-0.867328pt;}
.ws8_c00329{word-spacing:-0.782848pt;}
.ws13_c00329{word-spacing:-0.771584pt;}
.ws11_c00329{word-spacing:-0.754688pt;}
.wsf_c00329{word-spacing:-0.394240pt;}
.ws1b_c00329{word-spacing:-0.337920pt;}
.ws1e_c00329{word-spacing:-0.056320pt;}
.ws19_c00329{word-spacing:0.000000pt;}
.ws12_c00329{word-spacing:0.225280pt;}
.ws1d_c00329{word-spacing:0.281600pt;}
.ws20_c00329{word-spacing:0.619520pt;}
.ws14_c00329{word-spacing:0.940544pt;}
.ws18_c00329{word-spacing:1.342080pt;}
._2_c00329{margin-left:-2.022400pt;}
._0_c00329{margin-left:-0.999424pt;}
._1_c00329{width:1.098240pt;}
.fs1_c00329{font-size:56.320000pt;}
.fs0_c00329{font-size:149.120000pt;}
.y0_c00329{bottom:0.000000pt;}
.y15_c00329{bottom:251.207547pt;}
.y14_c00329{bottom:268.004987pt;}
.y13_c00329{bottom:284.807547pt;}
.y12_c00329{bottom:301.604987pt;}
.y11_c00329{bottom:318.402427pt;}
.y10_c00329{bottom:335.204987pt;}
.yf_c00329{bottom:352.004987pt;}
.ye_c00329{bottom:368.802427pt;}
.yd_c00329{bottom:385.604987pt;}
.yc_c00329{bottom:402.402427pt;}
.yb_c00329{bottom:419.204987pt;}
.ya_c00329{bottom:436.002427pt;}
.y9_c00329{bottom:452.804987pt;}
.y8_c00329{bottom:469.602427pt;}
.y7_c00329{bottom:486.404987pt;}
.y6_c00329{bottom:503.202427pt;}
.y5_c00329{bottom:519.993467pt;}
.y4_c00329{bottom:536.804987pt;}
.y3_c00329{bottom:553.602427pt;}
.y2_c00329{bottom:570.399867pt;}
.y1_c00329{bottom:637.981467pt;}
.h2_c00329{height:41.030000pt;}
.h3_c00329{height:41.055600pt;}
.h1_c00329{height:114.024375pt;}
.h0_c00329{height:720.000000pt;}
.w0_c00329{width:1280.000000pt;}
.x0_c00329{left:0.000000pt;}
.x2_c00329{left:200.000000pt;}
.x4_c00329{left:218.094080pt;}
.x3_c00329{left:219.197440pt;}
.x1_c00329{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_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_dfe81465a5668130f8fb3a22.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:0.965820;font-style:normal;font-weight:normal;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_ab25cc14bc4d46a6e09a49a5.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:0.938965;font-style:normal;font-weight:normal;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_75f038b36c66035e600a84e7.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:0.971191;font-style: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;}
.ls4_c00330{letter-spacing:-0.324000px;}
.lsa_c00330{letter-spacing:-0.162000px;}
.ls6_c00330{letter-spacing:-0.108000px;}
.ls5_c00330{letter-spacing:-0.054000px;}
.ls3_c00330{letter-spacing:0.000000px;}
.ls1_c00330{letter-spacing:0.054000px;}
.ls7_c00330{letter-spacing:0.108000px;}
.ls8_c00330{letter-spacing:0.216000px;}
.ls9_c00330{letter-spacing:0.270000px;}
.ls0_c00330{letter-spacing:42.282000px;}
.ls2_c00330{letter-spacing:94.122000px;}
.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;}
}
.ws6_c00330{word-spacing:-17.172000px;}
.ws8_c00330{word-spacing:-17.010000px;}
.ws2_c00330{word-spacing:-16.902000px;}
.ws3_c00330{word-spacing:-16.794000px;}
.ws5_c00330{word-spacing:-16.578000px;}
.wsf_c00330{word-spacing:-1.242000px;}
.ws1d_c00330{word-spacing:-1.080000px;}
.ws17_c00330{word-spacing:-0.702000px;}
.wse_c00330{word-spacing:-0.432000px;}
.ws10_c00330{word-spacing:-0.378000px;}
.ws1_c00330{word-spacing:-0.324000px;}
.ws1a_c00330{word-spacing:-0.270000px;}
.ws15_c00330{word-spacing:-0.216000px;}
.ws16_c00330{word-spacing:-0.054000px;}
.wsa_c00330{word-spacing:0.000000px;}
.ws7_c00330{word-spacing:0.054000px;}
.ws1c_c00330{word-spacing:0.216000px;}
.wsc_c00330{word-spacing:0.324000px;}
.ws11_c00330{word-spacing:0.378000px;}
.ws1b_c00330{word-spacing:0.486000px;}
.ws19_c00330{word-spacing:0.540000px;}
.ws18_c00330{word-spacing:0.594000px;}
.wsb_c00330{word-spacing:0.756000px;}
.ws9_c00330{word-spacing:0.973800px;}
.ws12_c00330{word-spacing:1.026000px;}
.ws4_c00330{word-spacing:1.080000px;}
.ws0_c00330{word-spacing:1.387800px;}
.wsd_c00330{word-spacing:1.458000px;}
.ws13_c00330{word-spacing:2.160000px;}
.ws14_c00330{word-spacing:2.916000px;}
._0_c00330{margin-left:-1.123200px;}
._1_c00330{width:1.080000px;}
._2_c00330{width:2.208600px;}
._3_c00330{width:3.747600px;}
._4_c00330{width:19.461600px;}
.fc1_c00330{color:rgb(0,0,204);}
.fc0_c00330{color:rgb(255,255,255);}
.fs1_c00330{font-size:54.000000px;}
.fs0_c00330{font-size:108.000000px;}
.y0_c00330{bottom:0.000000px;}
.y1c_c00330{bottom:149.310000px;}
.y1b_c00330{bottom:171.270000px;}
.y1a_c00330{bottom:187.474500px;}
.y19_c00330{bottom:209.250000px;}
.y18_c00330{bottom:225.445500px;}
.y17_c00330{bottom:247.414500px;}
.y16_c00330{bottom:269.190000px;}
.y15_c00330{bottom:285.385500px;}
.y14_c00330{bottom:307.350000px;}
.y13_c00330{bottom:323.550000px;}
.y12_c00330{bottom:345.325500px;}
.y11_c00330{bottom:367.290000px;}
.y10_c00330{bottom:383.490000px;}
.yf_c00330{bottom:405.270000px;}
.ye_c00330{bottom:427.234500px;}
.yd_c00330{bottom:449.010000px;}
.yc_c00330{bottom:465.205500px;}
.yb_c00330{bottom:487.170000px;}
.ya_c00330{bottom:503.374500px;}
.y9_c00330{bottom:525.150000px;}
.y8_c00330{bottom:541.345500px;}
.y7_c00330{bottom:563.310000px;}
.y6_c00330{bottom:579.514500px;}
.y5_c00330{bottom:601.290000px;}
.y4_c00330{bottom:617.490000px;}
.y3_c00330{bottom:633.690000px;}
.y2_c00330{bottom:649.890000px;}
.y1_c00330{bottom:717.604800px;}
.h4_c00330{height:41.273016px;}
.h2_c00330{height:41.291016px;}
.h3_c00330{height:41.309016px;}
.h1_c00330{height:82.582031px;}
.h0_c00330{height:810.000000px;}
.w0_c00330{width:1440.000000px;}
.x0_c00330{left:0.000000px;}
.x4_c00330{left:196.875150px;}
.x2_c00330{left:207.675150px;}
.x3_c00330{left:222.975150px;}
.x1_c00330{left:269.419350px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls4_c00330{letter-spacing:-0.288000pt;}
.lsa_c00330{letter-spacing:-0.144000pt;}
.ls6_c00330{letter-spacing:-0.096000pt;}
.ls5_c00330{letter-spacing:-0.048000pt;}
.ls3_c00330{letter-spacing:0.000000pt;}
.ls1_c00330{letter-spacing:0.048000pt;}
.ls7_c00330{letter-spacing:0.096000pt;}
.ls8_c00330{letter-spacing:0.192000pt;}
.ls9_c00330{letter-spacing:0.240000pt;}
.ls0_c00330{letter-spacing:37.584000pt;}
.ls2_c00330{letter-spacing:83.664000pt;}
.ws6_c00330{word-spacing:-15.264000pt;}
.ws8_c00330{word-spacing:-15.120000pt;}
.ws2_c00330{word-spacing:-15.024000pt;}
.ws3_c00330{word-spacing:-14.928000pt;}
.ws5_c00330{word-spacing:-14.736000pt;}
.wsf_c00330{word-spacing:-1.104000pt;}
.ws1d_c00330{word-spacing:-0.960000pt;}
.ws17_c00330{word-spacing:-0.624000pt;}
.wse_c00330{word-spacing:-0.384000pt;}
.ws10_c00330{word-spacing:-0.336000pt;}
.ws1_c00330{word-spacing:-0.288000pt;}
.ws1a_c00330{word-spacing:-0.240000pt;}
.ws15_c00330{word-spacing:-0.192000pt;}
.ws16_c00330{word-spacing:-0.048000pt;}
.wsa_c00330{word-spacing:0.000000pt;}
.ws7_c00330{word-spacing:0.048000pt;}
.ws1c_c00330{word-spacing:0.192000pt;}
.wsc_c00330{word-spacing:0.288000pt;}
.ws11_c00330{word-spacing:0.336000pt;}
.ws1b_c00330{word-spacing:0.432000pt;}
.ws19_c00330{word-spacing:0.480000pt;}
.ws18_c00330{word-spacing:0.528000pt;}
.wsb_c00330{word-spacing:0.672000pt;}
.ws9_c00330{word-spacing:0.865600pt;}
.ws12_c00330{word-spacing:0.912000pt;}
.ws4_c00330{word-spacing:0.960000pt;}
.ws0_c00330{word-spacing:1.233600pt;}
.wsd_c00330{word-spacing:1.296000pt;}
.ws13_c00330{word-spacing:1.920000pt;}
.ws14_c00330{word-spacing:2.592000pt;}
._0_c00330{margin-left:-0.998400pt;}
._1_c00330{width:0.960000pt;}
._2_c00330{width:1.963200pt;}
._3_c00330{width:3.331200pt;}
._4_c00330{width:17.299200pt;}
.fs1_c00330{font-size:48.000000pt;}
.fs0_c00330{font-size:96.000000pt;}
.y0_c00330{bottom:0.000000pt;}
.y1c_c00330{bottom:132.720000pt;}
.y1b_c00330{bottom:152.240000pt;}
.y1a_c00330{bottom:166.644000pt;}
.y19_c00330{bottom:186.000000pt;}
.y18_c00330{bottom:200.396000pt;}
.y17_c00330{bottom:219.924000pt;}
.y16_c00330{bottom:239.280000pt;}
.y15_c00330{bottom:253.676000pt;}
.y14_c00330{bottom:273.200000pt;}
.y13_c00330{bottom:287.600000pt;}
.y12_c00330{bottom:306.956000pt;}
.y11_c00330{bottom:326.480000pt;}
.y10_c00330{bottom:340.880000pt;}
.yf_c00330{bottom:360.240000pt;}
.ye_c00330{bottom:379.764000pt;}
.yd_c00330{bottom:399.120000pt;}
.yc_c00330{bottom:413.516000pt;}
.yb_c00330{bottom:433.040000pt;}
.ya_c00330{bottom:447.444000pt;}
.y9_c00330{bottom:466.800000pt;}
.y8_c00330{bottom:481.196000pt;}
.y7_c00330{bottom:500.720000pt;}
.y6_c00330{bottom:515.124000pt;}
.y5_c00330{bottom:534.480000pt;}
.y4_c00330{bottom:548.880000pt;}
.y3_c00330{bottom:563.280000pt;}
.y2_c00330{bottom:577.680000pt;}
.y1_c00330{bottom:637.870933pt;}
.h4_c00330{height:36.687125pt;}
.h2_c00330{height:36.703125pt;}
.h3_c00330{height:36.719125pt;}
.h1_c00330{height:73.406250pt;}
.h0_c00330{height:720.000000pt;}
.w0_c00330{width:1280.000000pt;}
.x0_c00330{left:0.000000pt;}
.x4_c00330{left:175.000133pt;}
.x2_c00330{left:184.600133pt;}
.x3_c00330{left:198.200133pt;}
.x1_c00330{left:239.483867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ab25cc14bc4d46a6e09a49a5.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:0.938965;font-style:normal;font-weight:normal;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_05f9db160b5c9946c297157f.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:0.971191;font-style:normal;font-weight:normal;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_110489172f79ad40391e4ec9.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:0.965820;font-style: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;}
.v1_c00331{vertical-align:18.010800px;}
.lsc_c00331{letter-spacing:-0.358560px;}
.ls7_c00331{letter-spacing:-0.239040px;}
.ls5_c00331{letter-spacing:-0.179280px;}
.lsa_c00331{letter-spacing:-0.059760px;}
.ls6_c00331{letter-spacing:0.000000px;}
.lsd_c00331{letter-spacing:0.059760px;}
.ls3_c00331{letter-spacing:0.119520px;}
.ls8_c00331{letter-spacing:0.179280px;}
.lsb_c00331{letter-spacing:0.201600px;}
.ls9_c00331{letter-spacing:0.239040px;}
.ls4_c00331{letter-spacing:19.063440px;}
.ls1_c00331{letter-spacing:19.182960px;}
.ls2_c00331{letter-spacing:19.780560px;}
.ls0_c00331{letter-spacing:40.278240px;}
.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;}
}
.ws3_c00331{word-spacing:-18.943920px;}
.ws2_c00331{word-spacing:-18.884160px;}
.ws1_c00331{word-spacing:-18.704880px;}
.ws6_c00331{word-spacing:-18.645120px;}
.ws0_c00331{word-spacing:-18.465840px;}
.wsa_c00331{word-spacing:-0.442224px;}
.wsc_c00331{word-spacing:-0.310752px;}
.wsb_c00331{word-spacing:-0.280872px;}
.ws19_c00331{word-spacing:-0.239040px;}
.ws1d_c00331{word-spacing:-0.179280px;}
.ws1b_c00331{word-spacing:-0.119520px;}
.ws12_c00331{word-spacing:0.000000px;}
.ws14_c00331{word-spacing:0.059760px;}
.ws9_c00331{word-spacing:0.077688px;}
.ws1a_c00331{word-spacing:0.119520px;}
.ws1c_c00331{word-spacing:0.179280px;}
.ws13_c00331{word-spacing:0.239040px;}
.ws15_c00331{word-spacing:0.298800px;}
.ws7_c00331{word-spacing:0.370512px;}
.ws10_c00331{word-spacing:0.412344px;}
.wse_c00331{word-spacing:0.507960px;}
.ws8_c00331{word-spacing:0.573696px;}
.ws1e_c00331{word-spacing:0.776880px;}
.ws5_c00331{word-spacing:0.836640px;}
.ws17_c00331{word-spacing:0.956160px;}
.wsf_c00331{word-spacing:1.015920px;}
.ws11_c00331{word-spacing:1.075680px;}
.ws16_c00331{word-spacing:1.673280px;}
.ws1f_c00331{word-spacing:1.733040px;}
.wsd_c00331{word-spacing:2.181240px;}
.ws18_c00331{word-spacing:2.450160px;}
.ws4_c00331{word-spacing:6.969600px;}
._3_c00331{margin-left:-2.229048px;}
._2_c00331{margin-left:-1.051776px;}
._1_c00331{width:1.093608px;}
._0_c00331{width:2.121480px;}
._4_c00331{width:3.436200px;}
.fc0_c00331{color:rgb(0,0,204);}
.fs1_c00331{font-size:40.320000px;}
.fs0_c00331{font-size:59.760000px;}
.fs2_c00331{font-size:108.000000px;}
.y0_c00331{bottom:0.000000px;}
.y24_c00331{bottom:109.317150px;}
.y23_c00331{bottom:127.319850px;}
.y22_c00331{bottom:145.317150px;}
.y21_c00331{bottom:163.314450px;}
.y20_c00331{bottom:181.317150px;}
.y1f_c00331{bottom:199.319850px;}
.y1e_c00331{bottom:217.322550px;}
.y1d_c00331{bottom:235.332090px;}
.y1c_c00331{bottom:253.319850px;}
.y1b_c00331{bottom:271.322550px;}
.y1a_c00331{bottom:289.332090px;}
.y19_c00331{bottom:307.319850px;}
.y18_c00331{bottom:325.322550px;}
.y17_c00331{bottom:343.319850px;}
.y16_c00331{bottom:361.322550px;}
.y15_c00331{bottom:379.319850px;}
.y14_c00331{bottom:397.322550px;}
.y13_c00331{bottom:415.329390px;}
.y12_c00331{bottom:433.317150px;}
.y11_c00331{bottom:451.319850px;}
.y10_c00331{bottom:469.322550px;}
.yf_c00331{bottom:487.332090px;}
.ye_c00331{bottom:505.319850px;}
.yd_c00331{bottom:523.317150px;}
.yc_c00331{bottom:541.319850px;}
.yb_c00331{bottom:559.322550px;}
.ya_c00331{bottom:577.322550px;}
.y9_c00331{bottom:595.319850px;}
.y8_c00331{bottom:613.317150px;}
.y7_c00331{bottom:631.314450px;}
.y6_c00331{bottom:649.317150px;}
.y5_c00331{bottom:667.319850px;}
.y4_c00331{bottom:685.317150px;}
.y3_c00331{bottom:703.319850px;}
.y2_c00331{bottom:721.322550px;}
.y1_c00331{bottom:739.325250px;}
.y25_c00331{bottom:770.631450px;}
.h1_c00331{height:45.695391px;}
.h2_c00331{height:45.716991px;}
.h3_c00331{height:48.841425px;}
.h4_c00331{height:82.582031px;}
.h0_c00331{height:810.000000px;}
.w0_c00331{width:1440.000000px;}
.x0_c00331{left:0.000000px;}
.x1_c00331{left:220.122600px;}
.x2_c00331{left:235.377780px;}
.x3_c00331{left:239.922600px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.v1_c00331{vertical-align:16.009600pt;}
.lsc_c00331{letter-spacing:-0.318720pt;}
.ls7_c00331{letter-spacing:-0.212480pt;}
.ls5_c00331{letter-spacing:-0.159360pt;}
.lsa_c00331{letter-spacing:-0.053120pt;}
.ls6_c00331{letter-spacing:0.000000pt;}
.lsd_c00331{letter-spacing:0.053120pt;}
.ls3_c00331{letter-spacing:0.106240pt;}
.ls8_c00331{letter-spacing:0.159360pt;}
.lsb_c00331{letter-spacing:0.179200pt;}
.ls9_c00331{letter-spacing:0.212480pt;}
.ls4_c00331{letter-spacing:16.945280pt;}
.ls1_c00331{letter-spacing:17.051520pt;}
.ls2_c00331{letter-spacing:17.582720pt;}
.ls0_c00331{letter-spacing:35.802880pt;}
.ws3_c00331{word-spacing:-16.839040pt;}
.ws2_c00331{word-spacing:-16.785920pt;}
.ws1_c00331{word-spacing:-16.626560pt;}
.ws6_c00331{word-spacing:-16.573440pt;}
.ws0_c00331{word-spacing:-16.414080pt;}
.wsa_c00331{word-spacing:-0.393088pt;}
.wsc_c00331{word-spacing:-0.276224pt;}
.wsb_c00331{word-spacing:-0.249664pt;}
.ws19_c00331{word-spacing:-0.212480pt;}
.ws1d_c00331{word-spacing:-0.159360pt;}
.ws1b_c00331{word-spacing:-0.106240pt;}
.ws12_c00331{word-spacing:0.000000pt;}
.ws14_c00331{word-spacing:0.053120pt;}
.ws9_c00331{word-spacing:0.069056pt;}
.ws1a_c00331{word-spacing:0.106240pt;}
.ws1c_c00331{word-spacing:0.159360pt;}
.ws13_c00331{word-spacing:0.212480pt;}
.ws15_c00331{word-spacing:0.265600pt;}
.ws7_c00331{word-spacing:0.329344pt;}
.ws10_c00331{word-spacing:0.366528pt;}
.wse_c00331{word-spacing:0.451520pt;}
.ws8_c00331{word-spacing:0.509952pt;}
.ws1e_c00331{word-spacing:0.690560pt;}
.ws5_c00331{word-spacing:0.743680pt;}
.ws17_c00331{word-spacing:0.849920pt;}
.wsf_c00331{word-spacing:0.903040pt;}
.ws11_c00331{word-spacing:0.956160pt;}
.ws16_c00331{word-spacing:1.487360pt;}
.ws1f_c00331{word-spacing:1.540480pt;}
.wsd_c00331{word-spacing:1.938880pt;}
.ws18_c00331{word-spacing:2.177920pt;}
.ws4_c00331{word-spacing:6.195200pt;}
._3_c00331{margin-left:-1.981376pt;}
._2_c00331{margin-left:-0.934912pt;}
._1_c00331{width:0.972096pt;}
._0_c00331{width:1.885760pt;}
._4_c00331{width:3.054400pt;}
.fs1_c00331{font-size:35.840000pt;}
.fs0_c00331{font-size:53.120000pt;}
.fs2_c00331{font-size:96.000000pt;}
.y0_c00331{bottom:0.000000pt;}
.y24_c00331{bottom:97.170800pt;}
.y23_c00331{bottom:113.173200pt;}
.y22_c00331{bottom:129.170800pt;}
.y21_c00331{bottom:145.168400pt;}
.y20_c00331{bottom:161.170800pt;}
.y1f_c00331{bottom:177.173200pt;}
.y1e_c00331{bottom:193.175600pt;}
.y1d_c00331{bottom:209.184080pt;}
.y1c_c00331{bottom:225.173200pt;}
.y1b_c00331{bottom:241.175600pt;}
.y1a_c00331{bottom:257.184080pt;}
.y19_c00331{bottom:273.173200pt;}
.y18_c00331{bottom:289.175600pt;}
.y17_c00331{bottom:305.173200pt;}
.y16_c00331{bottom:321.175600pt;}
.y15_c00331{bottom:337.173200pt;}
.y14_c00331{bottom:353.175600pt;}
.y13_c00331{bottom:369.181680pt;}
.y12_c00331{bottom:385.170800pt;}
.y11_c00331{bottom:401.173200pt;}
.y10_c00331{bottom:417.175600pt;}
.yf_c00331{bottom:433.184080pt;}
.ye_c00331{bottom:449.173200pt;}
.yd_c00331{bottom:465.170800pt;}
.yc_c00331{bottom:481.173200pt;}
.yb_c00331{bottom:497.175600pt;}
.ya_c00331{bottom:513.175600pt;}
.y9_c00331{bottom:529.173200pt;}
.y8_c00331{bottom:545.170800pt;}
.y7_c00331{bottom:561.168400pt;}
.y6_c00331{bottom:577.170800pt;}
.y5_c00331{bottom:593.173200pt;}
.y4_c00331{bottom:609.170800pt;}
.y3_c00331{bottom:625.173200pt;}
.y2_c00331{bottom:641.175600pt;}
.y1_c00331{bottom:657.178000pt;}
.y25_c00331{bottom:685.005733pt;}
.h1_c00331{height:40.618125pt;}
.h2_c00331{height:40.637325pt;}
.h3_c00331{height:43.414600pt;}
.h4_c00331{height:73.406250pt;}
.h0_c00331{height:720.000000pt;}
.w0_c00331{width:1280.000000pt;}
.x0_c00331{left:0.000000pt;}
.x1_c00331{left:195.664533pt;}
.x2_c00331{left:209.224693pt;}
.x3_c00331{left:213.264533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3297ed295a72e40bfab19a59.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:0.971191;font-style:normal;font-weight:normal;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_ab25cc14bc4d46a6e09a49a5.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:0.938965;font-style: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;}
.ls5_c00332{letter-spacing:-0.324000px;}
.ls4_c00332{letter-spacing:-0.270000px;}
.ls8_c00332{letter-spacing:-0.108000px;}
.ls7_c00332{letter-spacing:-0.054000px;}
.ls6_c00332{letter-spacing:0.000000px;}
.ls1_c00332{letter-spacing:0.054000px;}
.lsa_c00332{letter-spacing:0.108000px;}
.ls9_c00332{letter-spacing:0.162000px;}
.ls3_c00332{letter-spacing:0.216000px;}
.ls2_c00332{letter-spacing:0.288000px;}
.ls0_c00332{letter-spacing:42.282000px;}
.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;}
}
.ws7_c00332{word-spacing:-16.956000px;}
.ws1_c00332{word-spacing:-16.902000px;}
.wsa_c00332{word-spacing:-16.848000px;}
.wsc_c00332{word-spacing:-16.794000px;}
.ws0_c00332{word-spacing:-16.632000px;}
.ws5_c00332{word-spacing:-16.578000px;}
.ws6_c00332{word-spacing:-2.268000px;}
.ws14_c00332{word-spacing:-1.080000px;}
.ws23_c00332{word-spacing:-0.972000px;}
.ws1f_c00332{word-spacing:-0.918000px;}
.wsf_c00332{word-spacing:-0.576000px;}
.ws11_c00332{word-spacing:-0.540000px;}
.ws20_c00332{word-spacing:-0.432000px;}
.ws19_c00332{word-spacing:-0.378000px;}
.ws21_c00332{word-spacing:-0.324000px;}
.ws15_c00332{word-spacing:-0.270000px;}
.ws1b_c00332{word-spacing:-0.054000px;}
.ws10_c00332{word-spacing:0.000000px;}
.wse_c00332{word-spacing:0.054000px;}
.ws1c_c00332{word-spacing:0.108000px;}
.wsb_c00332{word-spacing:0.178200px;}
.ws18_c00332{word-spacing:0.216000px;}
.ws9_c00332{word-spacing:0.270000px;}
.ws1e_c00332{word-spacing:0.324000px;}
.ws1a_c00332{word-spacing:0.378000px;}
.ws4_c00332{word-spacing:0.448200px;}
.ws2_c00332{word-spacing:0.464400px;}
.ws17_c00332{word-spacing:0.486000px;}
.ws16_c00332{word-spacing:0.540000px;}
.ws1d_c00332{word-spacing:0.702000px;}
.ws12_c00332{word-spacing:0.756000px;}
.ws22_c00332{word-spacing:0.918000px;}
.ws3_c00332{word-spacing:1.382400px;}
.ws8_c00332{word-spacing:1.404000px;}
.ws13_c00332{word-spacing:1.458000px;}
.wsd_c00332{word-spacing:1.760400px;}
._0_c00332{margin-left:-1.440000px;}
._1_c00332{width:1.085400px;}
._2_c00332{width:2.257200px;}
._3_c00332{width:17.656200px;}
.fc0_c00332{color:rgb(0,0,204);}
.fs1_c00332{font-size:54.000000px;}
.fs0_c00332{font-size:144.000000px;}
.y0_c00332{bottom:0.000000px;}
.y27_c00332{bottom:51.425550px;}
.y26_c00332{bottom:67.625550px;}
.y25_c00332{bottom:83.825550px;}
.y24_c00332{bottom:100.025550px;}
.y23_c00332{bottom:116.225550px;}
.y22_c00332{bottom:132.425550px;}
.y21_c00332{bottom:148.625550px;}
.y20_c00332{bottom:164.825550px;}
.y1f_c00332{bottom:181.025550px;}
.y1e_c00332{bottom:197.225550px;}
.y1d_c00332{bottom:213.425550px;}
.y1c_c00332{bottom:229.625550px;}
.y1b_c00332{bottom:245.825550px;}
.y1a_c00332{bottom:262.025550px;}
.y19_c00332{bottom:278.225550px;}
.y18_c00332{bottom:294.425550px;}
.y17_c00332{bottom:310.625550px;}
.y16_c00332{bottom:326.825550px;}
.y15_c00332{bottom:343.025550px;}
.y14_c00332{bottom:359.225550px;}
.y13_c00332{bottom:375.425550px;}
.y12_c00332{bottom:391.625550px;}
.y11_c00332{bottom:407.825550px;}
.y10_c00332{bottom:424.025550px;}
.yf_c00332{bottom:440.225550px;}
.ye_c00332{bottom:456.425550px;}
.yd_c00332{bottom:472.625550px;}
.yc_c00332{bottom:488.825550px;}
.yb_c00332{bottom:505.025550px;}
.ya_c00332{bottom:521.225550px;}
.y9_c00332{bottom:537.425550px;}
.y8_c00332{bottom:553.625550px;}
.y7_c00332{bottom:569.825550px;}
.y6_c00332{bottom:586.025550px;}
.y5_c00332{bottom:602.225550px;}
.y4_c00332{bottom:618.425550px;}
.y3_c00332{bottom:634.625550px;}
.y2_c00332{bottom:650.825550px;}
.y1_c00332{bottom:733.609200px;}
.h2_c00332{height:41.291016px;}
.h1_c00332{height:110.109375px;}
.h0_c00332{height:810.000000px;}
.w0_c00332{width:1440.000000px;}
.x0_c00332{left:0.000000px;}
.x1_c00332{left:238.413000px;}
.x2_c00332{left:253.713000px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls5_c00332{letter-spacing:-0.288000pt;}
.ls4_c00332{letter-spacing:-0.240000pt;}
.ls8_c00332{letter-spacing:-0.096000pt;}
.ls7_c00332{letter-spacing:-0.048000pt;}
.ls6_c00332{letter-spacing:0.000000pt;}
.ls1_c00332{letter-spacing:0.048000pt;}
.lsa_c00332{letter-spacing:0.096000pt;}
.ls9_c00332{letter-spacing:0.144000pt;}
.ls3_c00332{letter-spacing:0.192000pt;}
.ls2_c00332{letter-spacing:0.256000pt;}
.ls0_c00332{letter-spacing:37.584000pt;}
.ws7_c00332{word-spacing:-15.072000pt;}
.ws1_c00332{word-spacing:-15.024000pt;}
.wsa_c00332{word-spacing:-14.976000pt;}
.wsc_c00332{word-spacing:-14.928000pt;}
.ws0_c00332{word-spacing:-14.784000pt;}
.ws5_c00332{word-spacing:-14.736000pt;}
.ws6_c00332{word-spacing:-2.016000pt;}
.ws14_c00332{word-spacing:-0.960000pt;}
.ws23_c00332{word-spacing:-0.864000pt;}
.ws1f_c00332{word-spacing:-0.816000pt;}
.wsf_c00332{word-spacing:-0.512000pt;}
.ws11_c00332{word-spacing:-0.480000pt;}
.ws20_c00332{word-spacing:-0.384000pt;}
.ws19_c00332{word-spacing:-0.336000pt;}
.ws21_c00332{word-spacing:-0.288000pt;}
.ws15_c00332{word-spacing:-0.240000pt;}
.ws1b_c00332{word-spacing:-0.048000pt;}
.ws10_c00332{word-spacing:0.000000pt;}
.wse_c00332{word-spacing:0.048000pt;}
.ws1c_c00332{word-spacing:0.096000pt;}
.wsb_c00332{word-spacing:0.158400pt;}
.ws18_c00332{word-spacing:0.192000pt;}
.ws9_c00332{word-spacing:0.240000pt;}
.ws1e_c00332{word-spacing:0.288000pt;}
.ws1a_c00332{word-spacing:0.336000pt;}
.ws4_c00332{word-spacing:0.398400pt;}
.ws2_c00332{word-spacing:0.412800pt;}
.ws17_c00332{word-spacing:0.432000pt;}
.ws16_c00332{word-spacing:0.480000pt;}
.ws1d_c00332{word-spacing:0.624000pt;}
.ws12_c00332{word-spacing:0.672000pt;}
.ws22_c00332{word-spacing:0.816000pt;}
.ws3_c00332{word-spacing:1.228800pt;}
.ws8_c00332{word-spacing:1.248000pt;}
.ws13_c00332{word-spacing:1.296000pt;}
.wsd_c00332{word-spacing:1.564800pt;}
._0_c00332{margin-left:-1.280000pt;}
._1_c00332{width:0.964800pt;}
._2_c00332{width:2.006400pt;}
._3_c00332{width:15.694400pt;}
.fs1_c00332{font-size:48.000000pt;}
.fs0_c00332{font-size:128.000000pt;}
.y0_c00332{bottom:0.000000pt;}
.y27_c00332{bottom:45.711600pt;}
.y26_c00332{bottom:60.111600pt;}
.y25_c00332{bottom:74.511600pt;}
.y24_c00332{bottom:88.911600pt;}
.y23_c00332{bottom:103.311600pt;}
.y22_c00332{bottom:117.711600pt;}
.y21_c00332{bottom:132.111600pt;}
.y20_c00332{bottom:146.511600pt;}
.y1f_c00332{bottom:160.911600pt;}
.y1e_c00332{bottom:175.311600pt;}
.y1d_c00332{bottom:189.711600pt;}
.y1c_c00332{bottom:204.111600pt;}
.y1b_c00332{bottom:218.511600pt;}
.y1a_c00332{bottom:232.911600pt;}
.y19_c00332{bottom:247.311600pt;}
.y18_c00332{bottom:261.711600pt;}
.y17_c00332{bottom:276.111600pt;}
.y16_c00332{bottom:290.511600pt;}
.y15_c00332{bottom:304.911600pt;}
.y14_c00332{bottom:319.311600pt;}
.y13_c00332{bottom:333.711600pt;}
.y12_c00332{bottom:348.111600pt;}
.y11_c00332{bottom:362.511600pt;}
.y10_c00332{bottom:376.911600pt;}
.yf_c00332{bottom:391.311600pt;}
.ye_c00332{bottom:405.711600pt;}
.yd_c00332{bottom:420.111600pt;}
.yc_c00332{bottom:434.511600pt;}
.yb_c00332{bottom:448.911600pt;}
.ya_c00332{bottom:463.311600pt;}
.y9_c00332{bottom:477.711600pt;}
.y8_c00332{bottom:492.111600pt;}
.y7_c00332{bottom:506.511600pt;}
.y6_c00332{bottom:520.911600pt;}
.y5_c00332{bottom:535.311600pt;}
.y4_c00332{bottom:549.711600pt;}
.y3_c00332{bottom:564.111600pt;}
.y2_c00332{bottom:578.511600pt;}
.y1_c00332{bottom:652.097067pt;}
.h2_c00332{height:36.703125pt;}
.h1_c00332{height:97.875000pt;}
.h0_c00332{height:720.000000pt;}
.w0_c00332{width:1280.000000pt;}
.x0_c00332{left:0.000000pt;}
.x1_c00332{left:211.922667pt;}
.x2_c00332{left:225.522667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4aa093f25c1eac97a2c6fc07.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:0.971191;font-style:normal;font-weight:normal;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_c7d5da0bfab29e72731fbdc7.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c00333{letter-spacing:-0.239040px;}
.ls8_c00333{letter-spacing:-0.179280px;}
.ls6_c00333{letter-spacing:-0.168480px;}
.lsa_c00333{letter-spacing:-0.059760px;}
.ls7_c00333{letter-spacing:0.000000px;}
.ls1_c00333{letter-spacing:0.059760px;}
.lsd_c00333{letter-spacing:0.119520px;}
.lsb_c00333{letter-spacing:0.179280px;}
.ls5_c00333{letter-spacing:0.216000px;}
.lse_c00333{letter-spacing:0.239040px;}
.lsc_c00333{letter-spacing:0.298800px;}
.ls4_c00333{letter-spacing:18.645120px;}
.ls3_c00333{letter-spacing:19.362240px;}
.ls2_c00333{letter-spacing:20.079360px;}
.ls0_c00333{letter-spacing:94.181760px;}
.sc__c00333{text-shadow:none;}
.sc0_c00333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00333{-webkit-text-stroke:0px transparent;}
.sc0_c00333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00333{word-spacing:-26.198640px;}
.ws3_c00333{word-spacing:-19.003680px;}
.ws4_c00333{word-spacing:-18.943920px;}
.ws8_c00333{word-spacing:-18.884160px;}
.ws5_c00333{word-spacing:-18.764640px;}
.ws1_c00333{word-spacing:-18.704880px;}
.ws2_c00333{word-spacing:-18.645120px;}
.ws7_c00333{word-spacing:-18.525600px;}
.ws9_c00333{word-spacing:-18.465840px;}
.wsa_c00333{word-spacing:-0.864000px;}
.ws1c_c00333{word-spacing:-0.418320px;}
.ws1e_c00333{word-spacing:-0.239040px;}
.ws19_c00333{word-spacing:-0.179280px;}
.ws18_c00333{word-spacing:-0.119520px;}
.ws6_c00333{word-spacing:-0.059760px;}
.wsb_c00333{word-spacing:0.000000px;}
.wsc_c00333{word-spacing:0.059760px;}
.ws14_c00333{word-spacing:0.119520px;}
.ws15_c00333{word-spacing:0.179280px;}
.wsf_c00333{word-spacing:0.239040px;}
.ws13_c00333{word-spacing:0.298800px;}
.ws16_c00333{word-spacing:0.776880px;}
.ws10_c00333{word-spacing:0.836640px;}
.wsd_c00333{word-spacing:0.956160px;}
.ws11_c00333{word-spacing:1.015920px;}
.ws17_c00333{word-spacing:1.314720px;}
.ws1b_c00333{word-spacing:1.494000px;}
.ws1a_c00333{word-spacing:1.553760px;}
.ws12_c00333{word-spacing:1.673280px;}
.ws1d_c00333{word-spacing:1.733040px;}
.wse_c00333{word-spacing:2.450160px;}
._4_c00333{margin-left:-2.263896px;}
._0_c00333{margin-left:-1.080000px;}
._1_c00333{width:1.231056px;}
._2_c00333{width:2.354544px;}
._5_c00333{width:4.438152px;}
._3_c00333{width:20.139120px;}
.fc0_c00333{color:rgb(0,0,204);}
.fs2_c00333{font-size:59.760000px;}
.fs1_c00333{font-size:84.240000px;}
.fs0_c00333{font-size:108.000000px;}
.y0_c00333{bottom:0.000000px;}
.y25_c00333{bottom:36.769170px;}
.y24_c00333{bottom:56.026830px;}
.y23_c00333{bottom:75.289170px;}
.y22_c00333{bottom:94.546830px;}
.y21_c00333{bottom:113.804490px;}
.y20_c00333{bottom:133.069170px;}
.y1f_c00333{bottom:152.326830px;}
.y1e_c00333{bottom:171.591510px;}
.y1d_c00333{bottom:190.849170px;}
.y1c_c00333{bottom:210.106830px;}
.y1b_c00333{bottom:229.364490px;}
.y1a_c00333{bottom:248.629170px;}
.y19_c00333{bottom:267.886830px;}
.y18_c00333{bottom:287.151510px;}
.y17_c00333{bottom:306.409170px;}
.y16_c00333{bottom:325.666830px;}
.y15_c00333{bottom:344.931510px;}
.y14_c00333{bottom:364.189170px;}
.y13_c00333{bottom:383.446830px;}
.y12_c00333{bottom:402.711510px;}
.y11_c00333{bottom:421.969170px;}
.y10_c00333{bottom:441.226830px;}
.yf_c00333{bottom:460.489170px;}
.ye_c00333{bottom:479.746830px;}
.yd_c00333{bottom:499.011510px;}
.yc_c00333{bottom:518.269170px;}
.yb_c00333{bottom:537.526830px;}
.ya_c00333{bottom:556.789170px;}
.y9_c00333{bottom:576.046830px;}
.y8_c00333{bottom:595.311510px;}
.y7_c00333{bottom:614.569170px;}
.y6_c00333{bottom:633.826830px;}
.y5_c00333{bottom:653.089170px;}
.y4_c00333{bottom:672.346830px;}
.y3_c00333{bottom:691.604490px;}
.y2_c00333{bottom:710.862150px;}
.y1_c00333{bottom:749.775450px;}
.h2_c00333{height:45.695391px;}
.h1_c00333{height:82.582031px;}
.h0_c00333{height:810.000000px;}
.w0_c00333{width:1440.000000px;}
.x0_c00333{left:0.000000px;}
.x2_c00333{left:210.396750px;}
.x3_c00333{left:240.816750px;}
.x1_c00333{left:241.896750px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls9_c00333{letter-spacing:-0.212480pt;}
.ls8_c00333{letter-spacing:-0.159360pt;}
.ls6_c00333{letter-spacing:-0.149760pt;}
.lsa_c00333{letter-spacing:-0.053120pt;}
.ls7_c00333{letter-spacing:0.000000pt;}
.ls1_c00333{letter-spacing:0.053120pt;}
.lsd_c00333{letter-spacing:0.106240pt;}
.lsb_c00333{letter-spacing:0.159360pt;}
.ls5_c00333{letter-spacing:0.192000pt;}
.lse_c00333{letter-spacing:0.212480pt;}
.lsc_c00333{letter-spacing:0.265600pt;}
.ls4_c00333{letter-spacing:16.573440pt;}
.ls3_c00333{letter-spacing:17.210880pt;}
.ls2_c00333{letter-spacing:17.848320pt;}
.ls0_c00333{letter-spacing:83.717120pt;}
.ws0_c00333{word-spacing:-23.287680pt;}
.ws3_c00333{word-spacing:-16.892160pt;}
.ws4_c00333{word-spacing:-16.839040pt;}
.ws8_c00333{word-spacing:-16.785920pt;}
.ws5_c00333{word-spacing:-16.679680pt;}
.ws1_c00333{word-spacing:-16.626560pt;}
.ws2_c00333{word-spacing:-16.573440pt;}
.ws7_c00333{word-spacing:-16.467200pt;}
.ws9_c00333{word-spacing:-16.414080pt;}
.wsa_c00333{word-spacing:-0.768000pt;}
.ws1c_c00333{word-spacing:-0.371840pt;}
.ws1e_c00333{word-spacing:-0.212480pt;}
.ws19_c00333{word-spacing:-0.159360pt;}
.ws18_c00333{word-spacing:-0.106240pt;}
.ws6_c00333{word-spacing:-0.053120pt;}
.wsb_c00333{word-spacing:0.000000pt;}
.wsc_c00333{word-spacing:0.053120pt;}
.ws14_c00333{word-spacing:0.106240pt;}
.ws15_c00333{word-spacing:0.159360pt;}
.wsf_c00333{word-spacing:0.212480pt;}
.ws13_c00333{word-spacing:0.265600pt;}
.ws16_c00333{word-spacing:0.690560pt;}
.ws10_c00333{word-spacing:0.743680pt;}
.wsd_c00333{word-spacing:0.849920pt;}
.ws11_c00333{word-spacing:0.903040pt;}
.ws17_c00333{word-spacing:1.168640pt;}
.ws1b_c00333{word-spacing:1.328000pt;}
.ws1a_c00333{word-spacing:1.381120pt;}
.ws12_c00333{word-spacing:1.487360pt;}
.ws1d_c00333{word-spacing:1.540480pt;}
.wse_c00333{word-spacing:2.177920pt;}
._4_c00333{margin-left:-2.012352pt;}
._0_c00333{margin-left:-0.960000pt;}
._1_c00333{width:1.094272pt;}
._2_c00333{width:2.092928pt;}
._5_c00333{width:3.945024pt;}
._3_c00333{width:17.901440pt;}
.fs2_c00333{font-size:53.120000pt;}
.fs1_c00333{font-size:74.880000pt;}
.fs0_c00333{font-size:96.000000pt;}
.y0_c00333{bottom:0.000000pt;}
.y25_c00333{bottom:32.683707pt;}
.y24_c00333{bottom:49.801627pt;}
.y23_c00333{bottom:66.923707pt;}
.y22_c00333{bottom:84.041627pt;}
.y21_c00333{bottom:101.159547pt;}
.y20_c00333{bottom:118.283707pt;}
.y1f_c00333{bottom:135.401627pt;}
.y1e_c00333{bottom:152.525787pt;}
.y1d_c00333{bottom:169.643707pt;}
.y1c_c00333{bottom:186.761627pt;}
.y1b_c00333{bottom:203.879547pt;}
.y1a_c00333{bottom:221.003707pt;}
.y19_c00333{bottom:238.121627pt;}
.y18_c00333{bottom:255.245787pt;}
.y17_c00333{bottom:272.363707pt;}
.y16_c00333{bottom:289.481627pt;}
.y15_c00333{bottom:306.605787pt;}
.y14_c00333{bottom:323.723707pt;}
.y13_c00333{bottom:340.841627pt;}
.y12_c00333{bottom:357.965787pt;}
.y11_c00333{bottom:375.083707pt;}
.y10_c00333{bottom:392.201627pt;}
.yf_c00333{bottom:409.323707pt;}
.ye_c00333{bottom:426.441627pt;}
.yd_c00333{bottom:443.565787pt;}
.yc_c00333{bottom:460.683707pt;}
.yb_c00333{bottom:477.801627pt;}
.ya_c00333{bottom:494.923707pt;}
.y9_c00333{bottom:512.041627pt;}
.y8_c00333{bottom:529.165787pt;}
.y7_c00333{bottom:546.283707pt;}
.y6_c00333{bottom:563.401627pt;}
.y5_c00333{bottom:580.523707pt;}
.y4_c00333{bottom:597.641627pt;}
.y3_c00333{bottom:614.759547pt;}
.y2_c00333{bottom:631.877467pt;}
.y1_c00333{bottom:666.467067pt;}
.h2_c00333{height:40.618125pt;}
.h1_c00333{height:73.406250pt;}
.h0_c00333{height:720.000000pt;}
.w0_c00333{width:1280.000000pt;}
.x0_c00333{left:0.000000pt;}
.x2_c00333{left:187.019333pt;}
.x3_c00333{left:214.059333pt;}
.x1_c00333{left:215.019333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b50fb555b0101ba015d9a8c.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:0.873535;font-style:normal;font-weight:normal;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_936c4f174ad13549a5c7734d.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:0.690918;font-style:normal;font-weight:normal;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_fa93208766ce1d52adc76717.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00334{letter-spacing:-0.348000px;}
.ls3_c00334{letter-spacing:0.000000px;}
.ls2_c00334{letter-spacing:0.330000px;}
.ls0_c00334{letter-spacing:0.360000px;}
.ls4_c00334{letter-spacing:0.522000px;}
.ls1_c00334{letter-spacing:0.660000px;}
.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:-38.976000px;}
.ws1_c00334{word-spacing:-27.480000px;}
.ws10_c00334{word-spacing:-3.480000px;}
.wsf_c00334{word-spacing:-3.360000px;}
.ws2_c00334{word-spacing:-3.300000px;}
.ws14_c00334{word-spacing:-2.400000px;}
.ws15_c00334{word-spacing:-2.280000px;}
.ws12_c00334{word-spacing:-2.040000px;}
.ws6_c00334{word-spacing:-1.740000px;}
.ws3_c00334{word-spacing:-1.650000px;}
.ws5_c00334{word-spacing:-1.392000px;}
.ws11_c00334{word-spacing:-1.080000px;}
.ws4_c00334{word-spacing:0.000000px;}
.wsc_c00334{word-spacing:0.138000px;}
.ws13_c00334{word-spacing:0.600000px;}
.ws7_c00334{word-spacing:0.696000px;}
.ws16_c00334{word-spacing:0.702000px;}
.wsb_c00334{word-spacing:0.798000px;}
.wsa_c00334{word-spacing:0.888000px;}
.wsd_c00334{word-spacing:1.632000px;}
.wse_c00334{word-spacing:1.674000px;}
.ws8_c00334{word-spacing:2.022000px;}
.ws9_c00334{word-spacing:3.132000px;}
._1_c00334{margin-left:-4.059000px;}
._3_c00334{margin-left:-2.970000px;}
._0_c00334{margin-left:-1.155000px;}
._2_c00334{width:1.815000px;}
.fc0_c00334{color:rgb(255,255,255);}
.fs2_c00334{font-size:120.000000px;}
.fs1_c00334{font-size:174.000000px;}
.fs0_c00334{font-size:330.000000px;}
.y0_c00334{bottom:0.000000px;}
.y8_c00334{bottom:63.733800px;}
.y7_c00334{bottom:118.333800px;}
.y6_c00334{bottom:232.039800px;}
.y5_c00334{bottom:304.336500px;}
.y4_c00334{bottom:376.633500px;}
.y3_c00334{bottom:489.848850px;}
.y2_c00334{bottom:598.748850px;}
.y1_c00334{bottom:707.648850px;}
.h5_c00334{height:83.437500px;}
.h2_c00334{height:120.984375px;}
.h4_c00334{height:124.892578px;}
.h3_c00334{height:124.893778px;}
.h1_c00334{height:229.453125px;}
.h0_c00334{height:810.000000px;}
.w0_c00334{width:1440.000000px;}
.x0_c00334{left:0.000000px;}
.x1_c00334{left:47.874750px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls5_c00334{letter-spacing:-0.309333pt;}
.ls3_c00334{letter-spacing:0.000000pt;}
.ls2_c00334{letter-spacing:0.293333pt;}
.ls0_c00334{letter-spacing:0.320000pt;}
.ls4_c00334{letter-spacing:0.464000pt;}
.ls1_c00334{letter-spacing:0.586667pt;}
.ws0_c00334{word-spacing:-34.645333pt;}
.ws1_c00334{word-spacing:-24.426667pt;}
.ws10_c00334{word-spacing:-3.093333pt;}
.wsf_c00334{word-spacing:-2.986667pt;}
.ws2_c00334{word-spacing:-2.933333pt;}
.ws14_c00334{word-spacing:-2.133333pt;}
.ws15_c00334{word-spacing:-2.026667pt;}
.ws12_c00334{word-spacing:-1.813333pt;}
.ws6_c00334{word-spacing:-1.546667pt;}
.ws3_c00334{word-spacing:-1.466667pt;}
.ws5_c00334{word-spacing:-1.237333pt;}
.ws11_c00334{word-spacing:-0.960000pt;}
.ws4_c00334{word-spacing:0.000000pt;}
.wsc_c00334{word-spacing:0.122667pt;}
.ws13_c00334{word-spacing:0.533333pt;}
.ws7_c00334{word-spacing:0.618667pt;}
.ws16_c00334{word-spacing:0.624000pt;}
.wsb_c00334{word-spacing:0.709333pt;}
.wsa_c00334{word-spacing:0.789333pt;}
.wsd_c00334{word-spacing:1.450667pt;}
.wse_c00334{word-spacing:1.488000pt;}
.ws8_c00334{word-spacing:1.797333pt;}
.ws9_c00334{word-spacing:2.784000pt;}
._1_c00334{margin-left:-3.608000pt;}
._3_c00334{margin-left:-2.640000pt;}
._0_c00334{margin-left:-1.026667pt;}
._2_c00334{width:1.613333pt;}
.fs2_c00334{font-size:106.666667pt;}
.fs1_c00334{font-size:154.666667pt;}
.fs0_c00334{font-size:293.333333pt;}
.y0_c00334{bottom:0.000000pt;}
.y8_c00334{bottom:56.652267pt;}
.y7_c00334{bottom:105.185600pt;}
.y6_c00334{bottom:206.257600pt;}
.y5_c00334{bottom:270.521333pt;}
.y4_c00334{bottom:334.785333pt;}
.y3_c00334{bottom:435.421200pt;}
.y2_c00334{bottom:532.221200pt;}
.y1_c00334{bottom:629.021200pt;}
.h5_c00334{height:74.166667pt;}
.h2_c00334{height:107.541667pt;}
.h4_c00334{height:111.015625pt;}
.h3_c00334{height:111.016692pt;}
.h1_c00334{height:203.958333pt;}
.h0_c00334{height:720.000000pt;}
.w0_c00334{width:1280.000000pt;}
.x0_c00334{left:0.000000pt;}
.x1_c00334{left:42.555333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c30551fb85a927092d5235a.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00335;src:url('chunks/assets/font_f863752da2c06bee737cc6ae.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00335;src:url('chunks/assets/font_64f9e488343acc0810aeb407.woff2')format("woff");}.ff3_c00335{font-family:ff3_c00335;line-height:0.873535;font-style:normal;font-weight:normal;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_c733006d33f9c08664a47ef4.woff2')format("woff");}.ff4_c00335{font-family:ff4_c00335;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lse_c00335{letter-spacing:-6.912000px;}
.ls11_c00335{letter-spacing:-6.372000px;}
.ls7_c00335{letter-spacing:-5.508000px;}
.ls12_c00335{letter-spacing:-4.860000px;}
.lsd_c00335{letter-spacing:-2.916000px;}
.lsb_c00335{letter-spacing:-1.620000px;}
.ls8_c00335{letter-spacing:-1.512000px;}
.lsa_c00335{letter-spacing:-1.404000px;}
.lsc_c00335{letter-spacing:-1.296000px;}
.ls15_c00335{letter-spacing:-0.756000px;}
.ls10_c00335{letter-spacing:-0.540000px;}
.ls4_c00335{letter-spacing:-0.432000px;}
.ls3_c00335{letter-spacing:-0.324000px;}
.lsf_c00335{letter-spacing:-0.216000px;}
.ls2_c00335{letter-spacing:-0.192000px;}
.ls6_c00335{letter-spacing:-0.108000px;}
.ls16_c00335{letter-spacing:0.000000px;}
.ls14_c00335{letter-spacing:0.216000px;}
.ls9_c00335{letter-spacing:0.432000px;}
.ls0_c00335{letter-spacing:0.540000px;}
.ls5_c00335{letter-spacing:0.756000px;}
.ls13_c00335{letter-spacing:0.864000px;}
.ls1_c00335{letter-spacing:48.384000px;}
.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;}
}
.ws34_c00335{word-spacing:-24.624000px;}
.ws5_c00335{word-spacing:-24.084000px;}
.wsb_c00335{word-spacing:-23.112000px;}
.ws13_c00335{word-spacing:-23.004000px;}
.ws18_c00335{word-spacing:-18.900000px;}
.ws15_c00335{word-spacing:-18.036000px;}
.ws36_c00335{word-spacing:-3.456000px;}
.ws35_c00335{word-spacing:-0.432000px;}
.ws2c_c00335{word-spacing:-0.421200px;}
.ws0_c00335{word-spacing:0.000000px;}
.ws33_c00335{word-spacing:1.177200px;}
.ws2d_c00335{word-spacing:1.296000px;}
.ws31_c00335{word-spacing:1.944000px;}
.ws30_c00335{word-spacing:1.954800px;}
.ws2f_c00335{word-spacing:2.473200px;}
.ws32_c00335{word-spacing:2.883600px;}
.ws2a_c00335{word-spacing:2.916000px;}
.ws2e_c00335{word-spacing:4.374000px;}
.ws3_c00335{word-spacing:4.708800px;}
.ws8_c00335{word-spacing:5.086800px;}
.ws4_c00335{word-spacing:5.562000px;}
.ws2_c00335{word-spacing:6.037200px;}
.ws1_c00335{word-spacing:6.490800px;}
.ws2b_c00335{word-spacing:7.322400px;}
.ws9_c00335{word-spacing:7.884000px;}
.ws7_c00335{word-spacing:9.568800px;}
.wsa_c00335{word-spacing:10.195200px;}
.ws6_c00335{word-spacing:17.182800px;}
.ws12_c00335{word-spacing:22.593600px;}
.ws17_c00335{word-spacing:22.615200px;}
.wsf_c00335{word-spacing:23.922000px;}
.ws10_c00335{word-spacing:24.375600px;}
.wsd_c00335{word-spacing:24.483600px;}
.ws14_c00335{word-spacing:24.526800px;}
.ws11_c00335{word-spacing:25.380000px;}
.wsc_c00335{word-spacing:29.170800px;}
.ws16_c00335{word-spacing:31.989600px;}
.ws21_c00335{word-spacing:36.504000px;}
.ws27_c00335{word-spacing:36.687600px;}
.wse_c00335{word-spacing:36.849600px;}
.ws29_c00335{word-spacing:37.173600px;}
.ws20_c00335{word-spacing:38.156400px;}
.ws28_c00335{word-spacing:38.491200px;}
.ws26_c00335{word-spacing:39.862800px;}
.ws23_c00335{word-spacing:40.024800px;}
.ws25_c00335{word-spacing:42.930000px;}
.ws22_c00335{word-spacing:43.286400px;}
.ws24_c00335{word-spacing:46.353600px;}
.ws1b_c00335{word-spacing:57.164400px;}
.ws1f_c00335{word-spacing:57.801600px;}
.ws1d_c00335{word-spacing:59.032800px;}
.ws1a_c00335{word-spacing:59.464800px;}
.ws1c_c00335{word-spacing:60.004800px;}
.ws19_c00335{word-spacing:60.231600px;}
.ws1e_c00335{word-spacing:63.007200px;}
._9_c00335{margin-left:-3.391200px;}
._1_c00335{margin-left:-2.092800px;}
._2_c00335{margin-left:-1.006800px;}
._0_c00335{width:1.785600px;}
._5_c00335{width:2.829600px;}
._7_c00335{width:4.237200px;}
._4_c00335{width:5.310000px;}
._3_c00335{width:6.412800px;}
._6_c00335{width:8.024400px;}
._a_c00335{width:63.168000px;}
._8_c00335{width:84.607200px;}
.fc1_c00335{color:rgb(0,0,0);}
.fc0_c00335{color:rgb(255,255,255);}
.fs1_c00335{font-size:108.000000px;}
.fs0_c00335{font-size:192.000000px;}
.y0_c00335{bottom:0.000000px;}
.y6_c00335{bottom:63.582900px;}
.y5_c00335{bottom:95.982900px;}
.y4_c00335{bottom:128.382900px;}
.y3_c00335{bottom:160.782900px;}
.y2_c00335{bottom:193.182900px;}
.y1_c00335{bottom:262.913250px;}
.y7_c00335{bottom:557.661450px;}
.h2_c00335{height:77.519531px;}
.h3_c00335{height:78.626953px;}
.h1_c00335{height:144.000000px;}
.h0_c00335{height:810.000000px;}
.w0_c00335{width:1440.000000px;}
.x0_c00335{left:0.000000px;}
.x1_c00335{left:237.173100px;}
.x2_c00335{left:245.420550px;}
.x3_c00335{left:593.417700px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.lse_c00335{letter-spacing:-6.144000pt;}
.ls11_c00335{letter-spacing:-5.664000pt;}
.ls7_c00335{letter-spacing:-4.896000pt;}
.ls12_c00335{letter-spacing:-4.320000pt;}
.lsd_c00335{letter-spacing:-2.592000pt;}
.lsb_c00335{letter-spacing:-1.440000pt;}
.ls8_c00335{letter-spacing:-1.344000pt;}
.lsa_c00335{letter-spacing:-1.248000pt;}
.lsc_c00335{letter-spacing:-1.152000pt;}
.ls15_c00335{letter-spacing:-0.672000pt;}
.ls10_c00335{letter-spacing:-0.480000pt;}
.ls4_c00335{letter-spacing:-0.384000pt;}
.ls3_c00335{letter-spacing:-0.288000pt;}
.lsf_c00335{letter-spacing:-0.192000pt;}
.ls2_c00335{letter-spacing:-0.170667pt;}
.ls6_c00335{letter-spacing:-0.096000pt;}
.ls16_c00335{letter-spacing:0.000000pt;}
.ls14_c00335{letter-spacing:0.192000pt;}
.ls9_c00335{letter-spacing:0.384000pt;}
.ls0_c00335{letter-spacing:0.480000pt;}
.ls5_c00335{letter-spacing:0.672000pt;}
.ls13_c00335{letter-spacing:0.768000pt;}
.ls1_c00335{letter-spacing:43.008000pt;}
.ws34_c00335{word-spacing:-21.888000pt;}
.ws5_c00335{word-spacing:-21.408000pt;}
.wsb_c00335{word-spacing:-20.544000pt;}
.ws13_c00335{word-spacing:-20.448000pt;}
.ws18_c00335{word-spacing:-16.800000pt;}
.ws15_c00335{word-spacing:-16.032000pt;}
.ws36_c00335{word-spacing:-3.072000pt;}
.ws35_c00335{word-spacing:-0.384000pt;}
.ws2c_c00335{word-spacing:-0.374400pt;}
.ws0_c00335{word-spacing:0.000000pt;}
.ws33_c00335{word-spacing:1.046400pt;}
.ws2d_c00335{word-spacing:1.152000pt;}
.ws31_c00335{word-spacing:1.728000pt;}
.ws30_c00335{word-spacing:1.737600pt;}
.ws2f_c00335{word-spacing:2.198400pt;}
.ws32_c00335{word-spacing:2.563200pt;}
.ws2a_c00335{word-spacing:2.592000pt;}
.ws2e_c00335{word-spacing:3.888000pt;}
.ws3_c00335{word-spacing:4.185600pt;}
.ws8_c00335{word-spacing:4.521600pt;}
.ws4_c00335{word-spacing:4.944000pt;}
.ws2_c00335{word-spacing:5.366400pt;}
.ws1_c00335{word-spacing:5.769600pt;}
.ws2b_c00335{word-spacing:6.508800pt;}
.ws9_c00335{word-spacing:7.008000pt;}
.ws7_c00335{word-spacing:8.505600pt;}
.wsa_c00335{word-spacing:9.062400pt;}
.ws6_c00335{word-spacing:15.273600pt;}
.ws12_c00335{word-spacing:20.083200pt;}
.ws17_c00335{word-spacing:20.102400pt;}
.wsf_c00335{word-spacing:21.264000pt;}
.ws10_c00335{word-spacing:21.667200pt;}
.wsd_c00335{word-spacing:21.763200pt;}
.ws14_c00335{word-spacing:21.801600pt;}
.ws11_c00335{word-spacing:22.560000pt;}
.wsc_c00335{word-spacing:25.929600pt;}
.ws16_c00335{word-spacing:28.435200pt;}
.ws21_c00335{word-spacing:32.448000pt;}
.ws27_c00335{word-spacing:32.611200pt;}
.wse_c00335{word-spacing:32.755200pt;}
.ws29_c00335{word-spacing:33.043200pt;}
.ws20_c00335{word-spacing:33.916800pt;}
.ws28_c00335{word-spacing:34.214400pt;}
.ws26_c00335{word-spacing:35.433600pt;}
.ws23_c00335{word-spacing:35.577600pt;}
.ws25_c00335{word-spacing:38.160000pt;}
.ws22_c00335{word-spacing:38.476800pt;}
.ws24_c00335{word-spacing:41.203200pt;}
.ws1b_c00335{word-spacing:50.812800pt;}
.ws1f_c00335{word-spacing:51.379200pt;}
.ws1d_c00335{word-spacing:52.473600pt;}
.ws1a_c00335{word-spacing:52.857600pt;}
.ws1c_c00335{word-spacing:53.337600pt;}
.ws19_c00335{word-spacing:53.539200pt;}
.ws1e_c00335{word-spacing:56.006400pt;}
._9_c00335{margin-left:-3.014400pt;}
._1_c00335{margin-left:-1.860267pt;}
._2_c00335{margin-left:-0.894933pt;}
._0_c00335{width:1.587200pt;}
._5_c00335{width:2.515200pt;}
._7_c00335{width:3.766400pt;}
._4_c00335{width:4.720000pt;}
._3_c00335{width:5.700267pt;}
._6_c00335{width:7.132800pt;}
._a_c00335{width:56.149333pt;}
._8_c00335{width:75.206400pt;}
.fs1_c00335{font-size:96.000000pt;}
.fs0_c00335{font-size:170.666667pt;}
.y0_c00335{bottom:0.000000pt;}
.y6_c00335{bottom:56.518133pt;}
.y5_c00335{bottom:85.318133pt;}
.y4_c00335{bottom:114.118133pt;}
.y3_c00335{bottom:142.918133pt;}
.y2_c00335{bottom:171.718133pt;}
.y1_c00335{bottom:233.700667pt;}
.y7_c00335{bottom:495.699067pt;}
.h2_c00335{height:68.906250pt;}
.h3_c00335{height:69.890625pt;}
.h1_c00335{height:128.000000pt;}
.h0_c00335{height:720.000000pt;}
.w0_c00335{width:1280.000000pt;}
.x0_c00335{left:0.000000pt;}
.x1_c00335{left:210.820533pt;}
.x2_c00335{left:218.151600pt;}
.x3_c00335{left:527.482400pt;}
}





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





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





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d1c90d65fcaa7f21a73affb4.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00339;src:url('chunks/assets/font_f25f1aef5b53cb10bb2cf639.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00339;src:url('chunks/assets/font_ea9d79dc6fe3e694f98d257a.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00339;src:url('chunks/assets/font_c75dfc0e74d8b99fbd8cd569.woff2')format("woff");}.ff4_c00339{font-family:ff4_c00339;line-height:0.873535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.ls1_c00339{letter-spacing:-0.342000px;}
.ls3_c00339{letter-spacing:-0.168000px;}
.ls4_c00339{letter-spacing:0.168000px;}
.ls2_c00339{letter-spacing:0.504000px;}
.ls0_c00339{letter-spacing:103.152000px;}
.sc__c00339{text-shadow:none;}
.sc0_c00339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00339{-webkit-text-stroke:0px transparent;}
.sc0_c00339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00339{word-spacing:-4.872000px;}
.ws3_c00339{word-spacing:-2.184000px;}
.ws2_c00339{word-spacing:-0.672000px;}
.ws0_c00339{word-spacing:0.000000px;}
._6_c00339{margin-left:-12.600000px;}
._4_c00339{margin-left:-4.569600px;}
._1_c00339{margin-left:-3.225600px;}
._2_c00339{margin-left:-1.310400px;}
._0_c00339{width:1.060200px;}
._5_c00339{width:2.570400px;}
._3_c00339{width:3.763200px;}
.fc0_c00339{color:rgb(255,255,255);}
.fs1_c00339{font-size:168.000000px;}
.fs0_c00339{font-size:342.000000px;}
.y0_c00339{bottom:0.000000px;}
.y6_c00339{bottom:110.794050px;}
.y5_c00339{bottom:384.136650px;}
.y4_c00339{bottom:434.536650px;}
.y3_c00339{bottom:484.936650px;}
.y2_c00339{bottom:577.354500px;}
.y1_c00339{bottom:669.780000px;}
.h3_c00339{height:116.812500px;}
.h2_c00339{height:122.308594px;}
.h1_c00339{height:256.500000px;}
.h0_c00339{height:810.000000px;}
.w0_c00339{width:1440.000000px;}
.x0_c00339{left:0.000000px;}
.x2_c00339{left:58.629900px;}
.x1_c00339{left:75.840900px;}
.x3_c00339{left:873.498750px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls1_c00339{letter-spacing:-0.304000pt;}
.ls3_c00339{letter-spacing:-0.149333pt;}
.ls4_c00339{letter-spacing:0.149333pt;}
.ls2_c00339{letter-spacing:0.448000pt;}
.ls0_c00339{letter-spacing:91.690667pt;}
.ws1_c00339{word-spacing:-4.330667pt;}
.ws3_c00339{word-spacing:-1.941333pt;}
.ws2_c00339{word-spacing:-0.597333pt;}
.ws0_c00339{word-spacing:0.000000pt;}
._6_c00339{margin-left:-11.200000pt;}
._4_c00339{margin-left:-4.061867pt;}
._1_c00339{margin-left:-2.867200pt;}
._2_c00339{margin-left:-1.164800pt;}
._0_c00339{width:0.942400pt;}
._5_c00339{width:2.284800pt;}
._3_c00339{width:3.345067pt;}
.fs1_c00339{font-size:149.333333pt;}
.fs0_c00339{font-size:304.000000pt;}
.y0_c00339{bottom:0.000000pt;}
.y6_c00339{bottom:98.483600pt;}
.y5_c00339{bottom:341.454800pt;}
.y4_c00339{bottom:386.254800pt;}
.y3_c00339{bottom:431.054800pt;}
.y2_c00339{bottom:513.204000pt;}
.y1_c00339{bottom:595.360000pt;}
.h3_c00339{height:103.833333pt;}
.h2_c00339{height:108.718750pt;}
.h1_c00339{height:228.000000pt;}
.h0_c00339{height:720.000000pt;}
.w0_c00339{width:1280.000000pt;}
.x0_c00339{left:0.000000pt;}
.x2_c00339{left:52.115467pt;}
.x1_c00339{left:67.414133pt;}
.x3_c00339{left:776.443333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fcf12b651d06ca1322904939.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00340;src:url('chunks/assets/font_f25f1aef5b53cb10bb2cf639.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00340;src:url('chunks/assets/font_c30c39fb18be45adfdd9ce92.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1d_c00340{letter-spacing:-2.916000px;}
.ls19_c00340{letter-spacing:-2.808000px;}
.ls13_c00340{letter-spacing:-1.728000px;}
.ls17_c00340{letter-spacing:-1.620000px;}
.lsf_c00340{letter-spacing:-1.512000px;}
.lsb_c00340{letter-spacing:-1.440000px;}
.lse_c00340{letter-spacing:-1.404000px;}
.ls18_c00340{letter-spacing:-1.296000px;}
.ls12_c00340{letter-spacing:-1.188000px;}
.ls10_c00340{letter-spacing:-0.540000px;}
.ls11_c00340{letter-spacing:-0.432000px;}
.ls6_c00340{letter-spacing:-0.408000px;}
.ls15_c00340{letter-spacing:-0.324000px;}
.ls8_c00340{letter-spacing:-0.288000px;}
.ls1e_c00340{letter-spacing:-0.216000px;}
.lsd_c00340{letter-spacing:-0.108000px;}
.lsa_c00340{letter-spacing:0.000000px;}
.ls1a_c00340{letter-spacing:0.108000px;}
.ls9_c00340{letter-spacing:0.144000px;}
.ls16_c00340{letter-spacing:0.216000px;}
.lsc_c00340{letter-spacing:0.288000px;}
.ls14_c00340{letter-spacing:0.432000px;}
.ls2_c00340{letter-spacing:0.540000px;}
.ls7_c00340{letter-spacing:0.576000px;}
.ls1b_c00340{letter-spacing:0.648000px;}
.ls1c_c00340{letter-spacing:0.864000px;}
.ls5_c00340{letter-spacing:25.056000px;}
.ls1_c00340{letter-spacing:26.244000px;}
.ls4_c00340{letter-spacing:37.584000px;}
.ls3_c00340{letter-spacing:38.232000px;}
.ls0_c00340{letter-spacing:111.600000px;}
.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;}
}
.ws2_c00340{word-spacing:-33.120000px;}
.ws1_c00340{word-spacing:-31.104000px;}
.ws3_c00340{word-spacing:-24.300000px;}
.wsc_c00340{word-spacing:-24.084000px;}
.ws7_c00340{word-spacing:-23.976000px;}
.ws2b_c00340{word-spacing:-23.004000px;}
.ws5_c00340{word-spacing:-22.896000px;}
.ws16_c00340{word-spacing:-21.600000px;}
.ws2c_c00340{word-spacing:-3.168000px;}
.ws31_c00340{word-spacing:-2.880000px;}
.ws2d_c00340{word-spacing:-2.304000px;}
.ws2e_c00340{word-spacing:-1.440000px;}
.ws32_c00340{word-spacing:-1.008000px;}
.ws33_c00340{word-spacing:-0.648000px;}
.ws30_c00340{word-spacing:-0.432000px;}
.ws2f_c00340{word-spacing:-0.144000px;}
.ws0_c00340{word-spacing:0.000000px;}
.ws2a_c00340{word-spacing:0.226800px;}
.ws22_c00340{word-spacing:0.928800px;}
.ws20_c00340{word-spacing:1.404000px;}
.ws19_c00340{word-spacing:2.160000px;}
.ws18_c00340{word-spacing:2.203200px;}
.ws1c_c00340{word-spacing:2.678400px;}
.ws1a_c00340{word-spacing:3.218400px;}
.ws1d_c00340{word-spacing:3.240000px;}
.ws6_c00340{word-spacing:3.380400px;}
.ws29_c00340{word-spacing:3.531600px;}
.ws26_c00340{word-spacing:3.780000px;}
.ws1f_c00340{word-spacing:3.790800px;}
.ws21_c00340{word-spacing:4.050000px;}
.ws25_c00340{word-spacing:4.114800px;}
.ws27_c00340{word-spacing:4.276800px;}
.ws23_c00340{word-spacing:4.762800px;}
.ws1e_c00340{word-spacing:5.248800px;}
.ws4_c00340{word-spacing:5.313600px;}
.ws1b_c00340{word-spacing:6.393600px;}
.ws28_c00340{word-spacing:8.002800px;}
.ws24_c00340{word-spacing:8.499600px;}
.ws10_c00340{word-spacing:11.772000px;}
.ws13_c00340{word-spacing:12.042000px;}
.wsd_c00340{word-spacing:12.052800px;}
.wsf_c00340{word-spacing:12.711600px;}
.wsb_c00340{word-spacing:12.960000px;}
.ws15_c00340{word-spacing:13.662000px;}
.wse_c00340{word-spacing:14.061600px;}
.ws17_c00340{word-spacing:14.364000px;}
.ws12_c00340{word-spacing:15.152400px;}
.ws9_c00340{word-spacing:15.422400px;}
.ws11_c00340{word-spacing:15.735600px;}
.ws14_c00340{word-spacing:15.768000px;}
.ws8_c00340{word-spacing:15.789600px;}
.wsa_c00340{word-spacing:16.934400px;}
._5_c00340{margin-left:-5.467200px;}
._3_c00340{margin-left:-4.276800px;}
._2_c00340{margin-left:-2.491200px;}
._1_c00340{margin-left:-1.108800px;}
._0_c00340{width:1.795200px;}
._4_c00340{width:2.913600px;}
.fc0_c00340{color:rgb(255,255,255);}
.fs2_c00340{font-size:108.000000px;}
.fs1_c00340{font-size:144.000000px;}
.fs0_c00340{font-size:408.000000px;}
.y0_c00340{bottom:0.000000px;}
.yc_c00340{bottom:49.792500px;}
.yb_c00340{bottom:82.192500px;}
.ya_c00340{bottom:114.592500px;}
.y9_c00340{bottom:179.392500px;}
.y8_c00340{bottom:276.426900px;}
.y7_c00340{bottom:319.626900px;}
.y6_c00340{bottom:362.826900px;}
.y5_c00340{bottom:406.026900px;}
.y4_c00340{bottom:449.226900px;}
.y3_c00340{bottom:492.426900px;}
.y2_c00340{bottom:535.626900px;}
.y1_c00340{bottom:637.678500px;}
.h4_c00340{height:77.519531px;}
.h3_c00340{height:103.359375px;}
.h2_c00340{height:104.835938px;}
.h1_c00340{height:306.000000px;}
.h0_c00340{height:810.000000px;}
.w0_c00340{width:1440.000000px;}
.x0_c00340{left:0.000000px;}
.x1_c00340{left:30.164400px;}
.x2_c00340{left:40.631550px;}
.x4_c00340{left:41.649150px;}
.x3_c00340{left:81.131550px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls1d_c00340{letter-spacing:-2.592000pt;}
.ls19_c00340{letter-spacing:-2.496000pt;}
.ls13_c00340{letter-spacing:-1.536000pt;}
.ls17_c00340{letter-spacing:-1.440000pt;}
.lsf_c00340{letter-spacing:-1.344000pt;}
.lsb_c00340{letter-spacing:-1.280000pt;}
.lse_c00340{letter-spacing:-1.248000pt;}
.ls18_c00340{letter-spacing:-1.152000pt;}
.ls12_c00340{letter-spacing:-1.056000pt;}
.ls10_c00340{letter-spacing:-0.480000pt;}
.ls11_c00340{letter-spacing:-0.384000pt;}
.ls6_c00340{letter-spacing:-0.362667pt;}
.ls15_c00340{letter-spacing:-0.288000pt;}
.ls8_c00340{letter-spacing:-0.256000pt;}
.ls1e_c00340{letter-spacing:-0.192000pt;}
.lsd_c00340{letter-spacing:-0.096000pt;}
.lsa_c00340{letter-spacing:0.000000pt;}
.ls1a_c00340{letter-spacing:0.096000pt;}
.ls9_c00340{letter-spacing:0.128000pt;}
.ls16_c00340{letter-spacing:0.192000pt;}
.lsc_c00340{letter-spacing:0.256000pt;}
.ls14_c00340{letter-spacing:0.384000pt;}
.ls2_c00340{letter-spacing:0.480000pt;}
.ls7_c00340{letter-spacing:0.512000pt;}
.ls1b_c00340{letter-spacing:0.576000pt;}
.ls1c_c00340{letter-spacing:0.768000pt;}
.ls5_c00340{letter-spacing:22.272000pt;}
.ls1_c00340{letter-spacing:23.328000pt;}
.ls4_c00340{letter-spacing:33.408000pt;}
.ls3_c00340{letter-spacing:33.984000pt;}
.ls0_c00340{letter-spacing:99.200000pt;}
.ws2_c00340{word-spacing:-29.440000pt;}
.ws1_c00340{word-spacing:-27.648000pt;}
.ws3_c00340{word-spacing:-21.600000pt;}
.wsc_c00340{word-spacing:-21.408000pt;}
.ws7_c00340{word-spacing:-21.312000pt;}
.ws2b_c00340{word-spacing:-20.448000pt;}
.ws5_c00340{word-spacing:-20.352000pt;}
.ws16_c00340{word-spacing:-19.200000pt;}
.ws2c_c00340{word-spacing:-2.816000pt;}
.ws31_c00340{word-spacing:-2.560000pt;}
.ws2d_c00340{word-spacing:-2.048000pt;}
.ws2e_c00340{word-spacing:-1.280000pt;}
.ws32_c00340{word-spacing:-0.896000pt;}
.ws33_c00340{word-spacing:-0.576000pt;}
.ws30_c00340{word-spacing:-0.384000pt;}
.ws2f_c00340{word-spacing:-0.128000pt;}
.ws0_c00340{word-spacing:0.000000pt;}
.ws2a_c00340{word-spacing:0.201600pt;}
.ws22_c00340{word-spacing:0.825600pt;}
.ws20_c00340{word-spacing:1.248000pt;}
.ws19_c00340{word-spacing:1.920000pt;}
.ws18_c00340{word-spacing:1.958400pt;}
.ws1c_c00340{word-spacing:2.380800pt;}
.ws1a_c00340{word-spacing:2.860800pt;}
.ws1d_c00340{word-spacing:2.880000pt;}
.ws6_c00340{word-spacing:3.004800pt;}
.ws29_c00340{word-spacing:3.139200pt;}
.ws26_c00340{word-spacing:3.360000pt;}
.ws1f_c00340{word-spacing:3.369600pt;}
.ws21_c00340{word-spacing:3.600000pt;}
.ws25_c00340{word-spacing:3.657600pt;}
.ws27_c00340{word-spacing:3.801600pt;}
.ws23_c00340{word-spacing:4.233600pt;}
.ws1e_c00340{word-spacing:4.665600pt;}
.ws4_c00340{word-spacing:4.723200pt;}
.ws1b_c00340{word-spacing:5.683200pt;}
.ws28_c00340{word-spacing:7.113600pt;}
.ws24_c00340{word-spacing:7.555200pt;}
.ws10_c00340{word-spacing:10.464000pt;}
.ws13_c00340{word-spacing:10.704000pt;}
.wsd_c00340{word-spacing:10.713600pt;}
.wsf_c00340{word-spacing:11.299200pt;}
.wsb_c00340{word-spacing:11.520000pt;}
.ws15_c00340{word-spacing:12.144000pt;}
.wse_c00340{word-spacing:12.499200pt;}
.ws17_c00340{word-spacing:12.768000pt;}
.ws12_c00340{word-spacing:13.468800pt;}
.ws9_c00340{word-spacing:13.708800pt;}
.ws11_c00340{word-spacing:13.987200pt;}
.ws14_c00340{word-spacing:14.016000pt;}
.ws8_c00340{word-spacing:14.035200pt;}
.wsa_c00340{word-spacing:15.052800pt;}
._5_c00340{margin-left:-4.859733pt;}
._3_c00340{margin-left:-3.801600pt;}
._2_c00340{margin-left:-2.214400pt;}
._1_c00340{margin-left:-0.985600pt;}
._0_c00340{width:1.595733pt;}
._4_c00340{width:2.589867pt;}
.fs2_c00340{font-size:96.000000pt;}
.fs1_c00340{font-size:128.000000pt;}
.fs0_c00340{font-size:362.666667pt;}
.y0_c00340{bottom:0.000000pt;}
.yc_c00340{bottom:44.260000pt;}
.yb_c00340{bottom:73.060000pt;}
.ya_c00340{bottom:101.860000pt;}
.y9_c00340{bottom:159.460000pt;}
.y8_c00340{bottom:245.712800pt;}
.y7_c00340{bottom:284.112800pt;}
.y6_c00340{bottom:322.512800pt;}
.y5_c00340{bottom:360.912800pt;}
.y4_c00340{bottom:399.312800pt;}
.y3_c00340{bottom:437.712800pt;}
.y2_c00340{bottom:476.112800pt;}
.y1_c00340{bottom:566.825333pt;}
.h4_c00340{height:68.906250pt;}
.h3_c00340{height:91.875000pt;}
.h2_c00340{height:93.187500pt;}
.h1_c00340{height:272.000000pt;}
.h0_c00340{height:720.000000pt;}
.w0_c00340{width:1280.000000pt;}
.x0_c00340{left:0.000000pt;}
.x1_c00340{left:26.812800pt;}
.x2_c00340{left:36.116933pt;}
.x4_c00340{left:37.021467pt;}
.x3_c00340{left:72.116933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb447ccf18c6971899f1c527.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00341;src:url('chunks/assets/font_f25f1aef5b53cb10bb2cf639.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00341;src:url('chunks/assets/font_facff2a4511363987410a34e.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00341{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00341{vertical-align:0.000000px;}
.ls1_c00341{letter-spacing:-0.366000px;}
.ls2_c00341{letter-spacing:-0.312000px;}
.ls0_c00341{letter-spacing:107.328000px;}
.sc__c00341{text-shadow:none;}
.sc0_c00341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00341{-webkit-text-stroke:0px transparent;}
.sc0_c00341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00341{word-spacing:-1.404000px;}
.ws1_c00341{word-spacing:-0.156000px;}
.ws0_c00341{word-spacing:0.000000px;}
._1_c00341{margin-left:-9.576000px;}
._3_c00341{margin-left:-2.974800px;}
._2_c00341{margin-left:-1.123200px;}
._0_c00341{width:1.207800px;}
.fc0_c00341{color:rgb(255,255,255);}
.fs1_c00341{font-size:156.000000px;}
.fs0_c00341{font-size:366.000000px;}
.y0_c00341{bottom:0.000000px;}
.y6_c00341{bottom:283.002900px;}
.y5_c00341{bottom:329.802900px;}
.y4_c00341{bottom:376.602900px;}
.y3_c00341{bottom:423.402900px;}
.y2_c00341{bottom:511.814550px;}
.y1_c00341{bottom:610.543050px;}
.h3_c00341{height:111.972656px;}
.h4_c00341{height:111.973256px;}
.h2_c00341{height:113.572266px;}
.h1_c00341{height:274.500000px;}
.h0_c00341{height:810.000000px;}
.w0_c00341{width:1440.000000px;}
.x0_c00341{left:0.000000px;}
.x1_c00341{left:40.631550px;}
.x2_c00341{left:84.701550px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls1_c00341{letter-spacing:-0.325333pt;}
.ls2_c00341{letter-spacing:-0.277333pt;}
.ls0_c00341{letter-spacing:95.402667pt;}
.ws2_c00341{word-spacing:-1.248000pt;}
.ws1_c00341{word-spacing:-0.138667pt;}
.ws0_c00341{word-spacing:0.000000pt;}
._1_c00341{margin-left:-8.512000pt;}
._3_c00341{margin-left:-2.644267pt;}
._2_c00341{margin-left:-0.998400pt;}
._0_c00341{width:1.073600pt;}
.fs1_c00341{font-size:138.666667pt;}
.fs0_c00341{font-size:325.333333pt;}
.y0_c00341{bottom:0.000000pt;}
.y6_c00341{bottom:251.558133pt;}
.y5_c00341{bottom:293.158133pt;}
.y4_c00341{bottom:334.758133pt;}
.y3_c00341{bottom:376.358133pt;}
.y2_c00341{bottom:454.946267pt;}
.y1_c00341{bottom:542.704933pt;}
.h3_c00341{height:99.531250pt;}
.h4_c00341{height:99.531783pt;}
.h2_c00341{height:100.953125pt;}
.h1_c00341{height:244.000000pt;}
.h0_c00341{height:720.000000pt;}
.w0_c00341{width:1280.000000pt;}
.x0_c00341{left:0.000000pt;}
.x1_c00341{left:36.116933pt;}
.x2_c00341{left:75.290267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_db75cb2fa03b2055ec2afd63.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00342;src:url('chunks/assets/font_f25f1aef5b53cb10bb2cf639.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00342;src:url('chunks/assets/font_a208bcfbb7a8f47a086b48ae.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00342{letter-spacing:-0.342000px;}
.ls6_c00342{letter-spacing:-0.324000px;}
.ls4_c00342{letter-spacing:-0.312000px;}
.ls5_c00342{letter-spacing:-0.168000px;}
.ls2_c00342{letter-spacing:0.000000px;}
.ls7_c00342{letter-spacing:0.432000px;}
.ls1_c00342{letter-spacing:103.152000px;}
.ls0_c00342{letter-spacing:107.328000px;}
.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;}
}
.ws5_c00342{word-spacing:-2.496000px;}
.ws2_c00342{word-spacing:-1.404000px;}
.ws7_c00342{word-spacing:-0.864000px;}
.ws0_c00342{word-spacing:-0.342000px;}
.ws4_c00342{word-spacing:-0.156000px;}
.ws1_c00342{word-spacing:0.000000px;}
.ws3_c00342{word-spacing:0.168000px;}
.ws6_c00342{word-spacing:2.268000px;}
._4_c00342{margin-left:-12.070800px;}
._7_c00342{margin-left:-8.413200px;}
._6_c00342{margin-left:-5.788800px;}
._3_c00342{margin-left:-2.527200px;}
._0_c00342{margin-left:-1.333800px;}
._1_c00342{width:1.076400px;}
._2_c00342{width:2.776800px;}
._5_c00342{width:5.491800px;}
.fc0_c00342{color:rgb(255,255,255);}
.fs3_c00342{font-size:108.000000px;}
.fs1_c00342{font-size:156.000000px;}
.fs2_c00342{font-size:168.000000px;}
.fs0_c00342{font-size:342.000000px;}
.y0_c00342{bottom:0.000000px;}
.y8_c00342{bottom:179.705250px;}
.y7_c00342{bottom:218.693250px;}
.y6_c00342{bottom:305.127150px;}
.y5_c00342{bottom:355.527150px;}
.y4_c00342{bottom:405.027150px;}
.y3_c00342{bottom:451.827150px;}
.y2_c00342{bottom:531.181650px;}
.y1_c00342{bottom:623.607150px;}
.h4_c00342{height:77.519531px;}
.h2_c00342{height:113.572266px;}
.h3_c00342{height:122.308594px;}
.h1_c00342{height:256.500000px;}
.h0_c00342{height:810.000000px;}
.w0_c00342{width:1440.000000px;}
.x0_c00342{left:0.000000px;}
.x1_c00342{left:23.167200px;}
.x2_c00342{left:28.583100px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls3_c00342{letter-spacing:-0.304000pt;}
.ls6_c00342{letter-spacing:-0.288000pt;}
.ls4_c00342{letter-spacing:-0.277333pt;}
.ls5_c00342{letter-spacing:-0.149333pt;}
.ls2_c00342{letter-spacing:0.000000pt;}
.ls7_c00342{letter-spacing:0.384000pt;}
.ls1_c00342{letter-spacing:91.690667pt;}
.ls0_c00342{letter-spacing:95.402667pt;}
.ws5_c00342{word-spacing:-2.218667pt;}
.ws2_c00342{word-spacing:-1.248000pt;}
.ws7_c00342{word-spacing:-0.768000pt;}
.ws0_c00342{word-spacing:-0.304000pt;}
.ws4_c00342{word-spacing:-0.138667pt;}
.ws1_c00342{word-spacing:0.000000pt;}
.ws3_c00342{word-spacing:0.149333pt;}
.ws6_c00342{word-spacing:2.016000pt;}
._4_c00342{margin-left:-10.729600pt;}
._7_c00342{margin-left:-7.478400pt;}
._6_c00342{margin-left:-5.145600pt;}
._3_c00342{margin-left:-2.246400pt;}
._0_c00342{margin-left:-1.185600pt;}
._1_c00342{width:0.956800pt;}
._2_c00342{width:2.468267pt;}
._5_c00342{width:4.881600pt;}
.fs3_c00342{font-size:96.000000pt;}
.fs1_c00342{font-size:138.666667pt;}
.fs2_c00342{font-size:149.333333pt;}
.fs0_c00342{font-size:304.000000pt;}
.y0_c00342{bottom:0.000000pt;}
.y8_c00342{bottom:159.738000pt;}
.y7_c00342{bottom:194.394000pt;}
.y6_c00342{bottom:271.224133pt;}
.y5_c00342{bottom:316.024133pt;}
.y4_c00342{bottom:360.024133pt;}
.y3_c00342{bottom:401.624133pt;}
.y2_c00342{bottom:472.161467pt;}
.y1_c00342{bottom:554.317467pt;}
.h4_c00342{height:68.906250pt;}
.h2_c00342{height:100.953125pt;}
.h3_c00342{height:108.718750pt;}
.h1_c00342{height:228.000000pt;}
.h0_c00342{height:720.000000pt;}
.w0_c00342{width:1280.000000pt;}
.x0_c00342{left:0.000000pt;}
.x1_c00342{left:20.593067pt;}
.x2_c00342{left:25.407200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_237a09b3c41adad738b13544.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00343{letter-spacing:-0.432000px;}
.ls1_c00343{letter-spacing:-0.288000px;}
.ls0_c00343{letter-spacing:0.288000px;}
.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:-32.112000px;}
.ws2_c00343{word-spacing:-1.584000px;}
.ws1_c00343{word-spacing:-1.008000px;}
.ws3_c00343{word-spacing:0.000000px;}
._3_c00343{margin-left:-2.275200px;}
._2_c00343{margin-left:-1.224000px;}
._1_c00343{width:1.051200px;}
._0_c00343{width:2.980800px;}
.fc0_c00343{color:rgb(255,255,255);}
.fs0_c00343{font-size:144.000000px;}
.y0_c00343{bottom:0.000000px;}
.y3_c00343{bottom:472.909800px;}
.y2_c00343{bottom:559.309800px;}
.y1_c00343{bottom:602.509800px;}
.h1_c00343{height:103.359375px;}
.h0_c00343{height:810.000000px;}
.w0_c00343{width:1440.000000px;}
.x0_c00343{left:0.000000px;}
.x1_c00343{left:972.505350px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls2_c00343{letter-spacing:-0.384000pt;}
.ls1_c00343{letter-spacing:-0.256000pt;}
.ls0_c00343{letter-spacing:0.256000pt;}
.ws0_c00343{word-spacing:-28.544000pt;}
.ws2_c00343{word-spacing:-1.408000pt;}
.ws1_c00343{word-spacing:-0.896000pt;}
.ws3_c00343{word-spacing:0.000000pt;}
._3_c00343{margin-left:-2.022400pt;}
._2_c00343{margin-left:-1.088000pt;}
._1_c00343{width:0.934400pt;}
._0_c00343{width:2.649600pt;}
.fs0_c00343{font-size:128.000000pt;}
.y0_c00343{bottom:0.000000pt;}
.y3_c00343{bottom:420.364267pt;}
.y2_c00343{bottom:497.164267pt;}
.y1_c00343{bottom:535.564267pt;}
.h1_c00343{height:91.875000pt;}
.h0_c00343{height:720.000000pt;}
.w0_c00343{width:1280.000000pt;}
.x0_c00343{left:0.000000pt;}
.x1_c00343{left:864.449200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69bfab5247c5d876a1c40393.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00344;src:url('chunks/assets/font_f25f1aef5b53cb10bb2cf639.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00344;src:url('chunks/assets/font_c7126cd0c7d14aed2ab6a2b4.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00344{vertical-align:0.000000px;}
.ls1_c00344{letter-spacing:-0.432000px;}
.ls2_c00344{letter-spacing:-0.408000px;}
.ls4_c00344{letter-spacing:0.000000px;}
.ls3_c00344{letter-spacing:0.408000px;}
.ls0_c00344{letter-spacing:45.084000px;}
.sc__c00344{text-shadow:none;}
.sc0_c00344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00344{-webkit-text-stroke:0px transparent;}
.sc0_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00344{word-spacing:-1.224000px;}
.ws2_c00344{word-spacing:-0.816000px;}
.ws0_c00344{word-spacing:0.000000px;}
._2_c00344{margin-left:-4.916400px;}
._4_c00344{margin-left:-3.061200px;}
._1_c00344{margin-left:-1.550400px;}
._0_c00344{width:1.123200px;}
._3_c00344{width:3.141600px;}
.fc0_c00344{color:rgb(255,255,255);}
.fs1_c00344{font-size:204.000000px;}
.fs0_c00344{font-size:432.000000px;}
.y0_c00344{bottom:0.000000px;}
.y4_c00344{bottom:304.052100px;}
.y3_c00344{bottom:365.252100px;}
.y2_c00344{bottom:426.452100px;}
.y1_c00344{bottom:556.950450px;}
.h2_c00344{height:148.517578px;}
.h1_c00344{height:324.000000px;}
.h0_c00344{height:810.000000px;}
.w0_c00344{width:1440.000000px;}
.x0_c00344{left:0.000000px;}
.x1_c00344{left:86.036850px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls1_c00344{letter-spacing:-0.384000pt;}
.ls2_c00344{letter-spacing:-0.362667pt;}
.ls4_c00344{letter-spacing:0.000000pt;}
.ls3_c00344{letter-spacing:0.362667pt;}
.ls0_c00344{letter-spacing:40.074667pt;}
.ws1_c00344{word-spacing:-1.088000pt;}
.ws2_c00344{word-spacing:-0.725333pt;}
.ws0_c00344{word-spacing:0.000000pt;}
._2_c00344{margin-left:-4.370133pt;}
._4_c00344{margin-left:-2.721067pt;}
._1_c00344{margin-left:-1.378133pt;}
._0_c00344{width:0.998400pt;}
._3_c00344{width:2.792533pt;}
.fs1_c00344{font-size:181.333333pt;}
.fs0_c00344{font-size:384.000000pt;}
.y0_c00344{bottom:0.000000pt;}
.y4_c00344{bottom:270.268533pt;}
.y3_c00344{bottom:324.668533pt;}
.y2_c00344{bottom:379.068533pt;}
.y1_c00344{bottom:495.067067pt;}
.h2_c00344{height:132.015625pt;}
.h1_c00344{height:288.000000pt;}
.h0_c00344{height:720.000000pt;}
.w0_c00344{width:1280.000000pt;}
.x0_c00344{left:0.000000pt;}
.x1_c00344{left:76.477200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d126e686d47268472f9f4fdf.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00345;src:url('chunks/assets/font_aa23bc1cff4b284bcead7127.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00345{vertical-align:0.000000px;}
.ls1_c00345{letter-spacing:-0.486000px;}
.ls2_c00345{letter-spacing:0.000000px;}
.ls3_c00345{letter-spacing:0.864000px;}
.ls0_c00345{letter-spacing:1.008000px;}
.sc__c00345{text-shadow:none;}
.sc0_c00345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00345{-webkit-text-stroke:0px transparent;}
.sc0_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00345{word-spacing:-33.408000px;}
.ws1_c00345{word-spacing:0.000000px;}
._2_c00345{margin-left:-12.528000px;}
._3_c00345{margin-left:-3.859200px;}
._0_c00345{margin-left:-2.520000px;}
._1_c00345{margin-left:-1.036800px;}
.fc0_c00345{color:rgb(0,0,0);}
.fs1_c00345{font-size:144.000000px;}
.fs0_c00345{font-size:288.000000px;}
.y0_c00345{bottom:0.000000px;}
.y7_c00345{bottom:51.027000px;}
.y6_c00345{bottom:230.640000px;}
.y5_c00345{bottom:283.200000px;}
.y4_c00345{bottom:410.602500px;}
.y3_c00345{bottom:488.523000px;}
.y2_c00345{bottom:566.443500px;}
.y1_c00345{bottom:644.364000px;}
.h2_c00345{height:103.359375px;}
.h1_c00345{height:205.453125px;}
.h0_c00345{height:810.000000px;}
.w0_c00345{width:1440.000000px;}
.x0_c00345{left:0.000000px;}
.x3_c00345{left:246.597000px;}
.x1_c00345{left:259.357500px;}
.x2_c00345{left:312.694500px;}
.x7_c00345{left:466.044000px;}
.x6_c00345{left:545.120250px;}
.x5_c00345{left:562.076250px;}
.x4_c00345{left:573.820500px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls1_c00345{letter-spacing:-0.432000pt;}
.ls2_c00345{letter-spacing:0.000000pt;}
.ls3_c00345{letter-spacing:0.768000pt;}
.ls0_c00345{letter-spacing:0.896000pt;}
.ws0_c00345{word-spacing:-29.696000pt;}
.ws1_c00345{word-spacing:0.000000pt;}
._2_c00345{margin-left:-11.136000pt;}
._3_c00345{margin-left:-3.430400pt;}
._0_c00345{margin-left:-2.240000pt;}
._1_c00345{margin-left:-0.921600pt;}
.fs1_c00345{font-size:128.000000pt;}
.fs0_c00345{font-size:256.000000pt;}
.y0_c00345{bottom:0.000000pt;}
.y7_c00345{bottom:45.357333pt;}
.y6_c00345{bottom:205.013333pt;}
.y5_c00345{bottom:251.733333pt;}
.y4_c00345{bottom:364.980000pt;}
.y3_c00345{bottom:434.242667pt;}
.y2_c00345{bottom:503.505333pt;}
.y1_c00345{bottom:572.768000pt;}
.h2_c00345{height:91.875000pt;}
.h1_c00345{height:182.625000pt;}
.h0_c00345{height:720.000000pt;}
.w0_c00345{width:1280.000000pt;}
.x0_c00345{left:0.000000pt;}
.x3_c00345{left:219.197333pt;}
.x1_c00345{left:230.540000pt;}
.x2_c00345{left:277.950667pt;}
.x7_c00345{left:414.261333pt;}
.x6_c00345{left:484.551333pt;}
.x5_c00345{left:499.623333pt;}
.x4_c00345{left:510.062667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_966fbed64ab86d26bd23522d.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00346;src:url('chunks/assets/font_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:0.625000;font-style:normal;font-weight:normal;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_3a093a76bc4886124d776df0.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00346;src:url('chunks/assets/font_a1454747162c3ca3543f391e.woff2')format("woff");}.ff4_c00346{font-family:ff4_c00346;line-height:0.625000;font-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_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);}
.m0_c00346{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_c00346{vertical-align:0.000000px;}
.ls3_c00346{letter-spacing:-0.302400px;}
.ls5_c00346{letter-spacing:-0.218400px;}
.ls4_c00346{letter-spacing:0.000000px;}
.ls8_c00346{letter-spacing:0.235200px;}
.ls6_c00346{letter-spacing:0.288000px;}
.ls7_c00346{letter-spacing:0.374400px;}
.ls2_c00346{letter-spacing:0.491765px;}
.ls0_c00346{letter-spacing:49.224000px;}
.ls1_c00346{letter-spacing:57.600000px;}
.sc__c00346{text-shadow:none;}
.sc1_c00346{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00346{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00346{-webkit-text-stroke:0px transparent;}
.sc1_c00346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00346{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00346{word-spacing:-1.152000px;}
.ws1_c00346{word-spacing:0.000000px;}
._4_c00346{margin-left:-14.155057px;}
._5_c00346{margin-left:-7.405167px;}
._0_c00346{margin-left:-4.400005px;}
._2_c00346{margin-left:-3.105886px;}
._1_c00346{margin-left:-1.552943px;}
._3_c00346{width:1.008000px;}
.fc1_c00346{color:rgb(255,0,0);}
.fc0_c00346{color:rgb(0,0,0);}
.fs2_c00346{font-size:144.000000px;}
.fs1_c00346{font-size:168.000000px;}
.fs0_c00346{font-size:258.823800px;}
.y0_c00346{bottom:0.000000px;}
.yb_c00346{bottom:102.960000px;}
.ya_c00346{bottom:140.400000px;}
.y9_c00346{bottom:188.640000px;}
.y8_c00346{bottom:248.400000px;}
.y7_c00346{bottom:296.640000px;}
.y6_c00346{bottom:354.960000px;}
.y5_c00346{bottom:402.858000px;}
.y4_c00346{bottom:447.840000px;}
.y3_c00346{bottom:506.520000px;}
.y2_c00346{bottom:554.400000px;}
.y1_c00346{bottom:671.055150px;}
.h3_c00346{height:103.359375px;}
.h2_c00346{height:120.585938px;}
.h1_c00346{height:184.639439px;}
.h0_c00346{height:810.000000px;}
.w0_c00346{width:1440.000000px;}
.x0_c00346{left:0.000000px;}
.x2_c00346{left:109.800000px;}
.x4_c00346{left:136.806000px;}
.x3_c00346{left:163.800000px;}
.x5_c00346{left:190.800000px;}
.x1_c00346{left:255.060000px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls3_c00346{letter-spacing:-0.268800pt;}
.ls5_c00346{letter-spacing:-0.194133pt;}
.ls4_c00346{letter-spacing:0.000000pt;}
.ls8_c00346{letter-spacing:0.209067pt;}
.ls6_c00346{letter-spacing:0.256000pt;}
.ls7_c00346{letter-spacing:0.332800pt;}
.ls2_c00346{letter-spacing:0.437125pt;}
.ls0_c00346{letter-spacing:43.754667pt;}
.ls1_c00346{letter-spacing:51.200000pt;}
.ws0_c00346{word-spacing:-1.024000pt;}
.ws1_c00346{word-spacing:0.000000pt;}
._4_c00346{margin-left:-12.582273pt;}
._5_c00346{margin-left:-6.582371pt;}
._0_c00346{margin-left:-3.911115pt;}
._2_c00346{margin-left:-2.760787pt;}
._1_c00346{margin-left:-1.380394pt;}
._3_c00346{width:0.896000pt;}
.fs2_c00346{font-size:128.000000pt;}
.fs1_c00346{font-size:149.333333pt;}
.fs0_c00346{font-size:230.065600pt;}
.y0_c00346{bottom:0.000000pt;}
.yb_c00346{bottom:91.520000pt;}
.ya_c00346{bottom:124.800000pt;}
.y9_c00346{bottom:167.680000pt;}
.y8_c00346{bottom:220.800000pt;}
.y7_c00346{bottom:263.680000pt;}
.y6_c00346{bottom:315.520000pt;}
.y5_c00346{bottom:358.096000pt;}
.y4_c00346{bottom:398.080000pt;}
.y3_c00346{bottom:450.240000pt;}
.y2_c00346{bottom:492.800000pt;}
.y1_c00346{bottom:596.493467pt;}
.h3_c00346{height:91.875000pt;}
.h2_c00346{height:107.187500pt;}
.h1_c00346{height:164.123946pt;}
.h0_c00346{height:720.000000pt;}
.w0_c00346{width:1280.000000pt;}
.x0_c00346{left:0.000000pt;}
.x2_c00346{left:97.600000pt;}
.x4_c00346{left:121.605333pt;}
.x3_c00346{left:145.600000pt;}
.x5_c00346{left:169.600000pt;}
.x1_c00346{left:226.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b46801dbe2af2bfe7b60a5c8.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00347{letter-spacing:-0.316800px;}
.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:-263.683200px;}
._1_c00347{margin-left:-3.168000px;}
._0_c00347{width:2.112000px;}
.fc1_c00347{color:transparent;}
.fc0_c00347{color:rgb(0,0,0);}
.fs0_c00347{font-size:264.000000px;}
.y0_c00347{bottom:0.000000px;}
.y1_c00347{bottom:670.320000px;}
.h1_c00347{height:188.332031px;}
.h0_c00347{height:810.000000px;}
.w0_c00347{width:1440.000000px;}
.x0_c00347{left:0.000000px;}
.x1_c00347{left:109.800000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls0_c00347{letter-spacing:-0.281600pt;}
.ws0_c00347{word-spacing:-234.385067pt;}
._1_c00347{margin-left:-2.816000pt;}
._0_c00347{width:1.877333pt;}
.fs0_c00347{font-size:234.666667pt;}
.y0_c00347{bottom:0.000000pt;}
.y1_c00347{bottom:595.840000pt;}
.h1_c00347{height:167.406250pt;}
.h0_c00347{height:720.000000pt;}
.w0_c00347{width:1280.000000pt;}
.x0_c00347{left:0.000000pt;}
.x1_c00347{left:97.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_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_074526761e2b15413a4ffd9a.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00348{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_c00348{vertical-align:0.000000px;}
.ls1_c00348{letter-spacing:-0.025882px;}
.ls0_c00348{letter-spacing:0.491765px;}
.sc__c00348{text-shadow:none;}
.sc0_c00348{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00348{-webkit-text-stroke:0px transparent;}
.sc0_c00348{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00348{word-spacing:-0.336471px;}
.ws1_c00348{word-spacing:0.000000px;}
._1_c00348{margin-left:-6.211771px;}
._0_c00348{margin-left:-3.882357px;}
._2_c00348{margin-left:-2.847062px;}
._3_c00348{width:1.035295px;}
.fc0_c00348{color:rgb(0,0,0);}
.fs0_c00348{font-size:258.823800px;}
.y0_c00348{bottom:0.000000px;}
.y1_c00348{bottom:671.055150px;}
.h1_c00348{height:184.639439px;}
.h0_c00348{height:810.000000px;}
.w0_c00348{width:1440.000000px;}
.x0_c00348{left:0.000000px;}
.x1_c00348{left:382.012350px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls1_c00348{letter-spacing:-0.023007pt;}
.ls0_c00348{letter-spacing:0.437125pt;}
.ws0_c00348{word-spacing:-0.299085pt;}
.ws1_c00348{word-spacing:0.000000pt;}
._1_c00348{margin-left:-5.521574pt;}
._0_c00348{margin-left:-3.450984pt;}
._2_c00348{margin-left:-2.530722pt;}
._3_c00348{width:0.920262pt;}
.fs0_c00348{font-size:230.065600pt;}
.y0_c00348{bottom:0.000000pt;}
.y1_c00348{bottom:596.493467pt;}
.h1_c00348{height:164.123946pt;}
.h0_c00348{height:720.000000pt;}
.w0_c00348{width:1280.000000pt;}
.x0_c00348{left:0.000000pt;}
.x1_c00348{left:339.566533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f85d3e536e6a7534f62069d.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00349{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_c00349{vertical-align:0.000000px;}
.ls2_c00349{letter-spacing:-0.025882px;}
.ls1_c00349{letter-spacing:0.284706px;}
.ls0_c00349{letter-spacing:0.491765px;}
.sc__c00349{text-shadow:none;}
.sc0_c00349{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00349{-webkit-text-stroke:0px transparent;}
.sc0_c00349{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00349{word-spacing:-58.468296px;}
.ws0_c00349{word-spacing:-0.181177px;}
.ws2_c00349{word-spacing:0.000000px;}
._0_c00349{margin-left:-5.952947px;}
._1_c00349{margin-left:-2.847062px;}
._2_c00349{margin-left:-1.035295px;}
.fc0_c00349{color:rgb(0,0,0);}
.fs0_c00349{font-size:258.823800px;}
.y0_c00349{bottom:0.000000px;}
.y1_c00349{bottom:671.055150px;}
.h1_c00349{height:184.639439px;}
.h0_c00349{height:810.000000px;}
.w0_c00349{width:1440.000000px;}
.x0_c00349{left:0.000000px;}
.x1_c00349{left:109.800000px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls2_c00349{letter-spacing:-0.023007pt;}
.ls1_c00349{letter-spacing:0.253072pt;}
.ls0_c00349{letter-spacing:0.437125pt;}
.ws1_c00349{word-spacing:-51.971819pt;}
.ws0_c00349{word-spacing:-0.161046pt;}
.ws2_c00349{word-spacing:0.000000pt;}
._0_c00349{margin-left:-5.291509pt;}
._1_c00349{margin-left:-2.530722pt;}
._2_c00349{margin-left:-0.920262pt;}
.fs0_c00349{font-size:230.065600pt;}
.y0_c00349{bottom:0.000000pt;}
.y1_c00349{bottom:596.493467pt;}
.h1_c00349{height:164.123946pt;}
.h0_c00349{height:720.000000pt;}
.w0_c00349{width:1280.000000pt;}
.x0_c00349{left:0.000000pt;}
.x1_c00349{left:97.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_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_2c8030ab035396122c15e4e5.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00350{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_c00350{vertical-align:0.000000px;}
.ls2_c00350{letter-spacing:-0.025882px;}
.ls1_c00350{letter-spacing:0.284706px;}
.ls0_c00350{letter-spacing:0.491765px;}
.sc__c00350{text-shadow:none;}
.sc0_c00350{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00350{-webkit-text-stroke:0px transparent;}
.sc0_c00350{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c00350{word-spacing:-58.468296px;}
.ws0_c00350{word-spacing:-0.181177px;}
.ws2_c00350{word-spacing:0.000000px;}
._0_c00350{margin-left:-5.952947px;}
._1_c00350{margin-left:-2.847062px;}
._2_c00350{margin-left:-1.035295px;}
.fc0_c00350{color:rgb(0,0,0);}
.fs0_c00350{font-size:258.823800px;}
.y0_c00350{bottom:0.000000px;}
.y1_c00350{bottom:706.695150px;}
.h1_c00350{height:184.639439px;}
.h0_c00350{height:810.000000px;}
.w0_c00350{width:1440.000000px;}
.x0_c00350{left:0.000000px;}
.x1_c00350{left:170.531250px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls2_c00350{letter-spacing:-0.023007pt;}
.ls1_c00350{letter-spacing:0.253072pt;}
.ls0_c00350{letter-spacing:0.437125pt;}
.ws1_c00350{word-spacing:-51.971819pt;}
.ws0_c00350{word-spacing:-0.161046pt;}
.ws2_c00350{word-spacing:0.000000pt;}
._0_c00350{margin-left:-5.291509pt;}
._1_c00350{margin-left:-2.530722pt;}
._2_c00350{margin-left:-0.920262pt;}
.fs0_c00350{font-size:230.065600pt;}
.y0_c00350{bottom:0.000000pt;}
.y1_c00350{bottom:628.173467pt;}
.h1_c00350{height:164.123946pt;}
.h0_c00350{height:720.000000pt;}
.w0_c00350{width:1280.000000pt;}
.x0_c00350{left:0.000000pt;}
.x1_c00350{left:151.583333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f95c2528e5169e9d3fedcfbc.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00351;src:url('chunks/assets/font_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:0.625000;font-style:normal;font-weight:normal;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_c796530d1e1e36d4c14509d1.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsa_c00351{letter-spacing:-1.898400px;}
.lsb_c00351{letter-spacing:-1.192800px;}
.ls6_c00351{letter-spacing:-0.302400px;}
.ls7_c00351{letter-spacing:-0.218400px;}
.ls4_c00351{letter-spacing:-0.158400px;}
.ls9_c00351{letter-spacing:0.000000px;}
.ls1_c00351{letter-spacing:0.079200px;}
.ls3_c00351{letter-spacing:0.252000px;}
.ls5_c00351{letter-spacing:0.316800px;}
.ls8_c00351{letter-spacing:0.352800px;}
.ls2_c00351{letter-spacing:49.224000px;}
.ls0_c00351{letter-spacing:59.664000px;}
.sc__c00351{text-shadow:none;}
.sc0_c00351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00351{-webkit-text-stroke:0px transparent;}
.sc0_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00351{word-spacing:-59.980800px;}
.ws2_c00351{word-spacing:-38.220000px;}
.ws4_c00351{word-spacing:-36.775200px;}
.ws5_c00351{word-spacing:0.000000px;}
.ws3_c00351{word-spacing:0.487200px;}
.ws0_c00351{word-spacing:0.792000px;}
._5_c00351{margin-left:-20.860800px;}
._6_c00351{margin-left:-11.524800px;}
._4_c00351{margin-left:-6.336000px;}
._2_c00351{margin-left:-5.016000px;}
._1_c00351{margin-left:-3.009600px;}
._3_c00351{margin-left:-1.848000px;}
._0_c00351{width:1.056000px;}
._7_c00351{width:2.138400px;}
._8_c00351{width:3.148800px;}
.fc0_c00351{color:rgb(0,0,0);}
.fs1_c00351{font-size:168.000000px;}
.fs0_c00351{font-size:264.000000px;}
.y0_c00351{bottom:0.000000px;}
.yb_c00351{bottom:131.460000px;}
.ya_c00351{bottom:176.442000px;}
.y9_c00351{bottom:222.894000px;}
.y8_c00351{bottom:282.996000px;}
.y7_c00351{bottom:343.098000px;}
.y6_c00351{bottom:388.080000px;}
.y5_c00351{bottom:449.652000px;}
.y4_c00351{bottom:509.418000px;}
.y3_c00351{bottom:554.400000px;}
.y2_c00351{bottom:635.406000px;}
.y1_c00351{bottom:705.960000px;}
.h2_c00351{height:120.585938px;}
.h1_c00351{height:188.332031px;}
.h0_c00351{height:810.000000px;}
.w0_c00351{width:1440.000000px;}
.x0_c00351{left:0.000000px;}
.x1_c00351{left:109.800000px;}
.x2_c00351{left:136.806000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.lsa_c00351{letter-spacing:-1.687467pt;}
.lsb_c00351{letter-spacing:-1.060267pt;}
.ls6_c00351{letter-spacing:-0.268800pt;}
.ls7_c00351{letter-spacing:-0.194133pt;}
.ls4_c00351{letter-spacing:-0.140800pt;}
.ls9_c00351{letter-spacing:0.000000pt;}
.ls1_c00351{letter-spacing:0.070400pt;}
.ls3_c00351{letter-spacing:0.224000pt;}
.ls5_c00351{letter-spacing:0.281600pt;}
.ls8_c00351{letter-spacing:0.313600pt;}
.ls2_c00351{letter-spacing:43.754667pt;}
.ls0_c00351{letter-spacing:53.034667pt;}
.ws1_c00351{word-spacing:-53.316267pt;}
.ws2_c00351{word-spacing:-33.973333pt;}
.ws4_c00351{word-spacing:-32.689067pt;}
.ws5_c00351{word-spacing:0.000000pt;}
.ws3_c00351{word-spacing:0.433067pt;}
.ws0_c00351{word-spacing:0.704000pt;}
._5_c00351{margin-left:-18.542933pt;}
._6_c00351{margin-left:-10.244267pt;}
._4_c00351{margin-left:-5.632000pt;}
._2_c00351{margin-left:-4.458667pt;}
._1_c00351{margin-left:-2.675200pt;}
._3_c00351{margin-left:-1.642667pt;}
._0_c00351{width:0.938667pt;}
._7_c00351{width:1.900800pt;}
._8_c00351{width:2.798933pt;}
.fs1_c00351{font-size:149.333333pt;}
.fs0_c00351{font-size:234.666667pt;}
.y0_c00351{bottom:0.000000pt;}
.yb_c00351{bottom:116.853333pt;}
.ya_c00351{bottom:156.837333pt;}
.y9_c00351{bottom:198.128000pt;}
.y8_c00351{bottom:251.552000pt;}
.y7_c00351{bottom:304.976000pt;}
.y6_c00351{bottom:344.960000pt;}
.y5_c00351{bottom:399.690667pt;}
.y4_c00351{bottom:452.816000pt;}
.y3_c00351{bottom:492.800000pt;}
.y2_c00351{bottom:564.805333pt;}
.y1_c00351{bottom:627.520000pt;}
.h2_c00351{height:107.187500pt;}
.h1_c00351{height:167.406250pt;}
.h0_c00351{height:720.000000pt;}
.w0_c00351{width:1280.000000pt;}
.x0_c00351{left:0.000000pt;}
.x1_c00351{left:97.600000pt;}
.x2_c00351{left:121.605333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_097d1874e13cf8720e1994d9.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00352{letter-spacing:-5.649600px;}
.ls1_c00352{letter-spacing:-0.343200px;}
.ls0_c00352{letter-spacing:59.664000px;}
.sc__c00352{text-shadow:none;}
.sc0_c00352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00352{-webkit-text-stroke:0px transparent;}
.sc0_c00352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00352{word-spacing:-54.014400px;}
.ws1_c00352{word-spacing:0.000000px;}
._1_c00352{margin-left:-2.376000px;}
._0_c00352{width:1.056000px;}
._2_c00352{width:5.940000px;}
.fc0_c00352{color:rgb(0,0,0);}
.fs0_c00352{font-size:264.000000px;}
.y0_c00352{bottom:0.000000px;}
.y1_c00352{bottom:670.320000px;}
.h1_c00352{height:188.332031px;}
.h0_c00352{height:810.000000px;}
.w0_c00352{width:1440.000000px;}
.x0_c00352{left:0.000000px;}
.x1_c00352{left:109.800000px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls2_c00352{letter-spacing:-5.021867pt;}
.ls1_c00352{letter-spacing:-0.305067pt;}
.ls0_c00352{letter-spacing:53.034667pt;}
.ws0_c00352{word-spacing:-48.012800pt;}
.ws1_c00352{word-spacing:0.000000pt;}
._1_c00352{margin-left:-2.112000pt;}
._0_c00352{width:0.938667pt;}
._2_c00352{width:5.280000pt;}
.fs0_c00352{font-size:234.666667pt;}
.y0_c00352{bottom:0.000000pt;}
.y1_c00352{bottom:595.840000pt;}
.h1_c00352{height:167.406250pt;}
.h0_c00352{height:720.000000pt;}
.w0_c00352{width:1280.000000pt;}
.x0_c00352{left:0.000000pt;}
.x1_c00352{left:97.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_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_0b47d56da3e480fa2a7d7785.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-5.649600px;}
.ls1_c00353{letter-spacing:-0.343200px;}
.ls0_c00353{letter-spacing:59.664000px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00353{word-spacing:0.000000px;}
._1_c00353{margin-left:-2.376000px;}
._0_c00353{width:1.056000px;}
._2_c00353{width:5.940000px;}
.fc0_c00353{color:rgb(0,0,0);}
.fs0_c00353{font-size:264.000000px;}
.y0_c00353{bottom:0.000000px;}
.y1_c00353{bottom:670.320000px;}
.h1_c00353{height:188.332031px;}
.h0_c00353{height:810.000000px;}
.w0_c00353{width:1440.000000px;}
.x0_c00353{left:0.000000px;}
.x1_c00353{left:109.800000px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls2_c00353{letter-spacing:-5.021867pt;}
.ls1_c00353{letter-spacing:-0.305067pt;}
.ls0_c00353{letter-spacing:53.034667pt;}
.ws0_c00353{word-spacing:0.000000pt;}
._1_c00353{margin-left:-2.112000pt;}
._0_c00353{width:0.938667pt;}
._2_c00353{width:5.280000pt;}
.fs0_c00353{font-size:234.666667pt;}
.y0_c00353{bottom:0.000000pt;}
.y1_c00353{bottom:595.840000pt;}
.h1_c00353{height:167.406250pt;}
.h0_c00353{height:720.000000pt;}
.w0_c00353{width:1280.000000pt;}
.x0_c00353{left:0.000000pt;}
.x1_c00353{left:97.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_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_d9f8f009c1f7dbcbbf38c494.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00354{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_c00354{vertical-align:0.000000px;}
.ls0_c00354{letter-spacing:-5.538829px;}
.sc__c00354{text-shadow:none;}
.sc0_c00354{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00354{-webkit-text-stroke:0px transparent;}
.sc0_c00354{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00354{word-spacing:0.000000px;}
._2_c00354{width:1.294119px;}
._1_c00354{width:2.588238px;}
._0_c00354{width:5.694124px;}
._3_c00354{width:6.729419px;}
.fc0_c00354{color:rgb(0,0,0);}
.fs0_c00354{font-size:258.823800px;}
.y0_c00354{bottom:0.000000px;}
.y1_c00354{bottom:671.055150px;}
.h1_c00354{height:184.639439px;}
.h0_c00354{height:810.000000px;}
.w0_c00354{width:1440.000000px;}
.x0_c00354{left:0.000000px;}
.x1_c00354{left:196.923750px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls0_c00354{letter-spacing:-4.923404pt;}
.ws0_c00354{word-spacing:0.000000pt;}
._2_c00354{width:1.150328pt;}
._1_c00354{width:2.300656pt;}
._0_c00354{width:5.061443pt;}
._3_c00354{width:5.981706pt;}
.fs0_c00354{font-size:230.065600pt;}
.y0_c00354{bottom:0.000000pt;}
.y1_c00354{bottom:596.493467pt;}
.h1_c00354{height:164.123946pt;}
.h0_c00354{height:720.000000pt;}
.w0_c00354{width:1280.000000pt;}
.x0_c00354{left:0.000000pt;}
.x1_c00354{left:175.043333pt;}
}





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





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_123977bb1a436384f16dd562.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00357{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_c00357{vertical-align:0.000000px;}
.ls0_c00357{letter-spacing:-5.538829px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00357{word-spacing:0.000000px;}
._3_c00357{width:1.811767px;}
._1_c00357{width:3.364709px;}
._0_c00357{width:5.694124px;}
._2_c00357{width:6.729419px;}
.fc0_c00357{color:rgb(0,0,0);}
.fs0_c00357{font-size:258.823800px;}
.y0_c00357{bottom:0.000000px;}
.y1_c00357{bottom:671.055150px;}
.h1_c00357{height:184.639439px;}
.h0_c00357{height:810.000000px;}
.w0_c00357{width:1440.000000px;}
.x0_c00357{left:0.000000px;}
.x1_c00357{left:217.672500px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls0_c00357{letter-spacing:-4.923404pt;}
.ws0_c00357{word-spacing:0.000000pt;}
._3_c00357{width:1.610459pt;}
._1_c00357{width:2.990853pt;}
._0_c00357{width:5.061443pt;}
._2_c00357{width:5.981706pt;}
.fs0_c00357{font-size:230.065600pt;}
.y0_c00357{bottom:0.000000pt;}
.y1_c00357{bottom:596.493467pt;}
.h1_c00357{height:164.123946pt;}
.h0_c00357{height:720.000000pt;}
.w0_c00357{width:1280.000000pt;}
.x0_c00357{left:0.000000pt;}
.x1_c00357{left:193.486667pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9d9576244d9e02133b7a667a.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00359;src:url('chunks/assets/font_1f0cc7cb027440a617f2b054.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:0.689000;font-style:normal;font-weight:normal;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_b26adf8e50a3a38d5ccbdc36.woff2')format("woff");}.ff3_c00359{font-family:ff3_c00359;line-height:0.654000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00359{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.ls2_c00359{letter-spacing:-0.334800px;}
.ls3_c00359{letter-spacing:-0.216000px;}
.ls1_c00359{letter-spacing:-0.118800px;}
.ls4_c00359{letter-spacing:-0.010800px;}
.ls6_c00359{letter-spacing:0.000000px;}
.ls5_c00359{letter-spacing:0.302400px;}
.ls0_c00359{letter-spacing:24.516000px;}
.sc__c00359{text-shadow:none;}
.sc0_c00359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00359{-webkit-text-stroke:0px transparent;}
.sc0_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00359{word-spacing:0.000000px;}
._2_c00359{margin-left:-4.525200px;}
._1_c00359{margin-left:-1.836000px;}
._0_c00359{width:1.404000px;}
.fc0_c00359{color:rgb(0,0,0);}
.fs0_c00359{font-size:108.000000px;}
.y0_c00359{bottom:0.000000px;}
.y1_c00359{bottom:32.040000px;}
.h1_c00359{height:77.519531px;}
.h0_c00359{height:810.000000px;}
.w0_c00359{width:1440.000000px;}
.x0_c00359{left:0.000000px;}
.x1_c00359{left:235.800000px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls2_c00359{letter-spacing:-0.297600pt;}
.ls3_c00359{letter-spacing:-0.192000pt;}
.ls1_c00359{letter-spacing:-0.105600pt;}
.ls4_c00359{letter-spacing:-0.009600pt;}
.ls6_c00359{letter-spacing:0.000000pt;}
.ls5_c00359{letter-spacing:0.268800pt;}
.ls0_c00359{letter-spacing:21.792000pt;}
.ws0_c00359{word-spacing:0.000000pt;}
._2_c00359{margin-left:-4.022400pt;}
._1_c00359{margin-left:-1.632000pt;}
._0_c00359{width:1.248000pt;}
.fs0_c00359{font-size:96.000000pt;}
.y0_c00359{bottom:0.000000pt;}
.y1_c00359{bottom:28.480000pt;}
.h1_c00359{height:68.906250pt;}
.h0_c00359{height:720.000000pt;}
.w0_c00359{width:1280.000000pt;}
.x0_c00359{left:0.000000pt;}
.x1_c00359{left:209.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_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;}
.sc__c00360{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00360{-webkit-text-stroke:0px transparent;}
}
.y0_c00360{bottom:0.000000px;}
.h0_c00360{height:810.000000px;}
.w0_c00360{width:1440.000000px;}
.x0_c00360{left:0.000000px;}
@media print{
.y0_c00360{bottom:0.000000pt;}
.h0_c00360{height:720.000000pt;}
.w0_c00360{width:1280.000000pt;}
.x0_c00360{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1d7fe74b938c203ff0fdca52.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00361;src:url('chunks/assets/font_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:0.625000;font-style:normal;font-weight:normal;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_228cbdcd3983c3f427c162e2.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00361;src:url('chunks/assets/font_a1454747162c3ca3543f391e.woff2')format("woff");}.ff4_c00361{font-family:ff4_c00361;line-height:0.625000;font-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_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);}
.m0_c00361{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_c00361{vertical-align:0.000000px;}
.ls8_c00361{letter-spacing:-0.144000px;}
.ls9_c00361{letter-spacing:-0.129600px;}
.lsa_c00361{letter-spacing:-0.072000px;}
.ls7_c00361{letter-spacing:-0.028800px;}
.ls6_c00361{letter-spacing:0.000000px;}
.ls5_c00361{letter-spacing:0.230400px;}
.ls2_c00361{letter-spacing:0.319200px;}
.ls4_c00361{letter-spacing:0.491765px;}
.ls3_c00361{letter-spacing:32.544000px;}
.ls0_c00361{letter-spacing:49.224000px;}
.ls1_c00361{letter-spacing:57.600000px;}
.sc__c00361{text-shadow:none;}
.sc1_c00361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c00361{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00361{-webkit-text-stroke:0px transparent;}
.sc1_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c00361{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c00361{word-spacing:-32.544000px;}
.ws1_c00361{word-spacing:0.000000px;}
._3_c00361{margin-left:-6.729419px;}
._0_c00361{margin-left:-4.400005px;}
._2_c00361{margin-left:-3.105886px;}
._1_c00361{margin-left:-1.552943px;}
._4_c00361{width:1.092000px;}
.fc1_c00361{color:rgb(255,0,0);}
.fc0_c00361{color:rgb(0,0,0);}
.fs2_c00361{font-size:144.000000px;}
.fs1_c00361{font-size:168.000000px;}
.fs0_c00361{font-size:258.823800px;}
.y0_c00361{bottom:0.000000px;}
.y9_c00361{bottom:186.840000px;}
.y8_c00361{bottom:235.080000px;}
.y7_c00361{bottom:293.400000px;}
.y6_c00361{bottom:341.640000px;}
.y5_c00361{bottom:399.960000px;}
.y4_c00361{bottom:447.840000px;}
.y3_c00361{bottom:506.520000px;}
.y2_c00361{bottom:554.400000px;}
.y1_c00361{bottom:671.055150px;}
.h3_c00361{height:103.359375px;}
.h2_c00361{height:120.585938px;}
.h1_c00361{height:184.639439px;}
.h0_c00361{height:810.000000px;}
.w0_c00361{width:1440.000000px;}
.x0_c00361{left:0.000000px;}
.x1_c00361{left:109.800000px;}
.x2_c00361{left:163.800000px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls8_c00361{letter-spacing:-0.128000pt;}
.ls9_c00361{letter-spacing:-0.115200pt;}
.lsa_c00361{letter-spacing:-0.064000pt;}
.ls7_c00361{letter-spacing:-0.025600pt;}
.ls6_c00361{letter-spacing:0.000000pt;}
.ls5_c00361{letter-spacing:0.204800pt;}
.ls2_c00361{letter-spacing:0.283733pt;}
.ls4_c00361{letter-spacing:0.437125pt;}
.ls3_c00361{letter-spacing:28.928000pt;}
.ls0_c00361{letter-spacing:43.754667pt;}
.ls1_c00361{letter-spacing:51.200000pt;}
.ws0_c00361{word-spacing:-28.928000pt;}
.ws1_c00361{word-spacing:0.000000pt;}
._3_c00361{margin-left:-5.981706pt;}
._0_c00361{margin-left:-3.911115pt;}
._2_c00361{margin-left:-2.760787pt;}
._1_c00361{margin-left:-1.380394pt;}
._4_c00361{width:0.970667pt;}
.fs2_c00361{font-size:128.000000pt;}
.fs1_c00361{font-size:149.333333pt;}
.fs0_c00361{font-size:230.065600pt;}
.y0_c00361{bottom:0.000000pt;}
.y9_c00361{bottom:166.080000pt;}
.y8_c00361{bottom:208.960000pt;}
.y7_c00361{bottom:260.800000pt;}
.y6_c00361{bottom:303.680000pt;}
.y5_c00361{bottom:355.520000pt;}
.y4_c00361{bottom:398.080000pt;}
.y3_c00361{bottom:450.240000pt;}
.y2_c00361{bottom:492.800000pt;}
.y1_c00361{bottom:596.493467pt;}
.h3_c00361{height:91.875000pt;}
.h2_c00361{height:107.187500pt;}
.h1_c00361{height:164.123946pt;}
.h0_c00361{height:720.000000pt;}
.w0_c00361{width:1280.000000pt;}
.x0_c00361{left:0.000000pt;}
.x1_c00361{left:97.600000pt;}
.x2_c00361{left:145.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_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_1a0da3352f44ea4b4a71949a.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00362;src:url('chunks/assets/font_a595cb752e9785c4befeee39.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00362;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00362;src:url('chunks/assets/font_e84d70e2e4237a072e2e6d79.woff2')format("woff");}.ff4_c00362{font-family:ff4_c00362;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00362;src:url('chunks/assets/font_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff5_c00362{font-family:ff5_c00362;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00362{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00362{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00362{vertical-align:-15.600000px;}
.v0_c00362{vertical-align:0.000000px;}
.v3_c00362{vertical-align:15.600000px;}
.v1_c00362{vertical-align:21.600000px;}
.ls23_c00362{letter-spacing:-0.540000px;}
.ls21_c00362{letter-spacing:-0.528000px;}
.ls11_c00362{letter-spacing:-0.480000px;}
.ls13_c00362{letter-spacing:-0.432000px;}
.ls24_c00362{letter-spacing:-0.420000px;}
.ls1f_c00362{letter-spacing:-0.384000px;}
.ls19_c00362{letter-spacing:-0.360000px;}
.ls10_c00362{letter-spacing:-0.336000px;}
.ls22_c00362{letter-spacing:-0.300000px;}
.ls15_c00362{letter-spacing:-0.288000px;}
.lsc_c00362{letter-spacing:-0.216000px;}
.lsf_c00362{letter-spacing:-0.192000px;}
.ls12_c00362{letter-spacing:-0.144000px;}
.ls16_c00362{letter-spacing:-0.096000px;}
.lsd_c00362{letter-spacing:0.000000px;}
.ls14_c00362{letter-spacing:0.048000px;}
.ls1a_c00362{letter-spacing:0.060000px;}
.lse_c00362{letter-spacing:0.096000px;}
.ls1c_c00362{letter-spacing:0.120000px;}
.ls20_c00362{letter-spacing:0.288000px;}
.ls1d_c00362{letter-spacing:0.316800px;}
.ls1e_c00362{letter-spacing:0.390000px;}
.ls8_c00362{letter-spacing:0.432000px;}
.ls6_c00362{letter-spacing:0.468000px;}
.ls18_c00362{letter-spacing:0.480000px;}
.ls17_c00362{letter-spacing:0.528000px;}
.ls3_c00362{letter-spacing:0.628800px;}
.ls1b_c00362{letter-spacing:0.660000px;}
.lsa_c00362{letter-spacing:0.840000px;}
.ls2_c00362{letter-spacing:0.864000px;}
.ls5_c00362{letter-spacing:0.912000px;}
.ls4_c00362{letter-spacing:1.008000px;}
.ls7_c00362{letter-spacing:1.152000px;}
.ls9_c00362{letter-spacing:2.040000px;}
.lsb_c00362{letter-spacing:3.240000px;}
.ls1_c00362{letter-spacing:3.552000px;}
.ls0_c00362{letter-spacing:91.152000px;}
.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;}
}
.ws14_c00362{word-spacing:-18.648000px;}
.ws0_c00362{word-spacing:-16.056000px;}
.ws11_c00362{word-spacing:-15.840000px;}
.ws9_c00362{word-spacing:-13.680000px;}
.ws8_c00362{word-spacing:-13.620000px;}
.ws7_c00362{word-spacing:-13.560000px;}
.ws13_c00362{word-spacing:-13.260000px;}
.ws12_c00362{word-spacing:-13.020000px;}
.wse_c00362{word-spacing:-11.136000px;}
.ws1_c00362{word-spacing:-10.944000px;}
.ws2_c00362{word-spacing:-10.848000px;}
.wsc_c00362{word-spacing:-10.752000px;}
.wsf_c00362{word-spacing:-10.704000px;}
.wsb_c00362{word-spacing:-10.656000px;}
.ws5_c00362{word-spacing:-10.560000px;}
.ws6_c00362{word-spacing:-10.512000px;}
.wsd_c00362{word-spacing:-10.464000px;}
.ws4_c00362{word-spacing:-10.416000px;}
.ws3_c00362{word-spacing:-10.368000px;}
.ws10_c00362{word-spacing:-10.320000px;}
.wsa_c00362{word-spacing:-9.266400px;}
.ws23_c00362{word-spacing:-0.660000px;}
.ws32_c00362{word-spacing:-0.480000px;}
.ws33_c00362{word-spacing:-0.420000px;}
.ws24_c00362{word-spacing:-0.390000px;}
.ws19_c00362{word-spacing:-0.144000px;}
.ws31_c00362{word-spacing:-0.060000px;}
.ws1a_c00362{word-spacing:-0.048000px;}
.ws16_c00362{word-spacing:0.000000px;}
.ws20_c00362{word-spacing:0.096000px;}
.ws17_c00362{word-spacing:0.144000px;}
.ws26_c00362{word-spacing:0.192000px;}
.ws18_c00362{word-spacing:0.288000px;}
.ws2a_c00362{word-spacing:0.300000px;}
.ws1d_c00362{word-spacing:0.336000px;}
.ws25_c00362{word-spacing:0.432000px;}
.ws15_c00362{word-spacing:0.720000px;}
.ws22_c00362{word-spacing:0.840000px;}
.ws2b_c00362{word-spacing:1.140000px;}
.ws2d_c00362{word-spacing:1.260000px;}
.ws27_c00362{word-spacing:1.584000px;}
.ws28_c00362{word-spacing:2.340000px;}
.ws2f_c00362{word-spacing:2.580000px;}
.ws21_c00362{word-spacing:3.024000px;}
.ws29_c00362{word-spacing:3.540000px;}
.ws1f_c00362{word-spacing:3.552000px;}
.ws1b_c00362{word-spacing:3.696000px;}
.ws1e_c00362{word-spacing:3.744000px;}
.ws2e_c00362{word-spacing:3.780000px;}
.ws1c_c00362{word-spacing:3.888000px;}
.ws30_c00362{word-spacing:4.740000px;}
.ws2c_c00362{word-spacing:5.940000px;}
._7_c00362{margin-left:-2.544000px;}
._1_c00362{margin-left:-1.152000px;}
._0_c00362{width:1.036800px;}
._2_c00362{width:2.121600px;}
._6_c00362{width:4.003200px;}
._3_c00362{width:92.592000px;}
._8_c00362{width:108.864000px;}
._5_c00362{width:135.264000px;}
._4_c00362{width:158.352000px;}
.fc2_c00362{color:transparent;}
.fc1_c00362{color:rgb(0,0,0);}
.fc0_c00362{color:rgb(0,0,255);}
.fs6_c00362{font-size:30.000000px;}
.fs5_c00362{font-size:39.600000px;}
.fs1_c00362{font-size:48.000000px;}
.fs2_c00362{font-size:54.000000px;}
.fs3_c00362{font-size:60.000000px;}
.fs0_c00362{font-size:72.000000px;}
.fs7_c00362{font-size:84.000000px;}
.fs4_c00362{font-size:120.000000px;}
.y0_c00362{bottom:0.000000px;}
.y2_c00362{bottom:15.300000px;}
.yd_c00362{bottom:67.800000px;}
.yc_c00362{bottom:85.500000px;}
.yb_c00362{bottom:100.200000px;}
.ya_c00362{bottom:114.900000px;}
.y9_c00362{bottom:132.900000px;}
.y34_c00362{bottom:177.300000px;}
.y33_c00362{bottom:199.200000px;}
.y32_c00362{bottom:221.400000px;}
.y31_c00362{bottom:243.300000px;}
.y30_c00362{bottom:265.200000px;}
.y2f_c00362{bottom:287.100000px;}
.y2e_c00362{bottom:309.000000px;}
.y2d_c00362{bottom:340.200000px;}
.y2c_c00362{bottom:363.900000px;}
.y2b_c00362{bottom:388.800000px;}
.y2a_c00362{bottom:418.500000px;}
.y29_c00362{bottom:439.200000px;}
.y28_c00362{bottom:460.500000px;}
.y27_c00362{bottom:482.400000px;}
.y26_c00362{bottom:504.300000px;}
.y25_c00362{bottom:526.500000px;}
.y24_c00362{bottom:548.400000px;}
.y23_c00362{bottom:570.300000px;}
.y22_c00362{bottom:592.200000px;}
.y21_c00362{bottom:614.400000px;}
.y20_c00362{bottom:636.300000px;}
.y1f_c00362{bottom:658.200000px;}
.y1e_c00362{bottom:680.100000px;}
.y1d_c00362{bottom:702.300000px;}
.y1c_c00362{bottom:724.200000px;}
.y1b_c00362{bottom:746.100000px;}
.y1a_c00362{bottom:775.800000px;}
.y19_c00362{bottom:796.200000px;}
.y18_c00362{bottom:818.700000px;}
.y17_c00362{bottom:836.400000px;}
.y16_c00362{bottom:851.100000px;}
.y15_c00362{bottom:865.800000px;}
.y14_c00362{bottom:880.500000px;}
.y13_c00362{bottom:895.200000px;}
.y12_c00362{bottom:909.900000px;}
.y11_c00362{bottom:924.300000px;}
.y10_c00362{bottom:942.900000px;}
.yf_c00362{bottom:954.300000px;}
.ye_c00362{bottom:1006.800000px;}
.y8_c00362{bottom:1061.100000px;}
.y7_c00362{bottom:1075.500000px;}
.y6_c00362{bottom:1090.200000px;}
.y5_c00362{bottom:1104.900000px;}
.y4_c00362{bottom:1119.600000px;}
.y3_c00362{bottom:1134.300000px;}
.y1_c00362{bottom:1145.700000px;}
.h9_c00362{height:21.533203px;}
.h1_c00362{height:32.400000px;}
.h3_c00362{height:34.453125px;}
.h5_c00362{height:34.851562px;}
.h4_c00362{height:35.991211px;}
.hb_c00362{height:41.689453px;}
.ha_c00362{height:43.066406px;}
.h6_c00362{height:43.564453px;}
.h8_c00362{height:50.023828px;}
.h2_c00362{height:52.277344px;}
.hc_c00362{height:60.990234px;}
.h7_c00362{height:87.128906px;}
.h0_c00362{height:1263.000000px;}
.w2_c00362{width:738.900000px;}
.w0_c00362{width:893.100000px;}
.w1_c00362{width:893.250000px;}
.x0_c00362{left:0.000000px;}
.x2_c00362{left:7.800000px;}
.x1_c00362{left:77.100000px;}
.x3_c00362{left:84.900000px;}
.x5_c00362{left:99.900000px;}
.x4_c00362{left:442.500000px;}
@media print{
.v2_c00362{vertical-align:-13.866667pt;}
.v0_c00362{vertical-align:0.000000pt;}
.v3_c00362{vertical-align:13.866667pt;}
.v1_c00362{vertical-align:19.200000pt;}
.ls23_c00362{letter-spacing:-0.480000pt;}
.ls21_c00362{letter-spacing:-0.469333pt;}
.ls11_c00362{letter-spacing:-0.426667pt;}
.ls13_c00362{letter-spacing:-0.384000pt;}
.ls24_c00362{letter-spacing:-0.373333pt;}
.ls1f_c00362{letter-spacing:-0.341333pt;}
.ls19_c00362{letter-spacing:-0.320000pt;}
.ls10_c00362{letter-spacing:-0.298667pt;}
.ls22_c00362{letter-spacing:-0.266667pt;}
.ls15_c00362{letter-spacing:-0.256000pt;}
.lsc_c00362{letter-spacing:-0.192000pt;}
.lsf_c00362{letter-spacing:-0.170667pt;}
.ls12_c00362{letter-spacing:-0.128000pt;}
.ls16_c00362{letter-spacing:-0.085333pt;}
.lsd_c00362{letter-spacing:0.000000pt;}
.ls14_c00362{letter-spacing:0.042667pt;}
.ls1a_c00362{letter-spacing:0.053333pt;}
.lse_c00362{letter-spacing:0.085333pt;}
.ls1c_c00362{letter-spacing:0.106667pt;}
.ls20_c00362{letter-spacing:0.256000pt;}
.ls1d_c00362{letter-spacing:0.281600pt;}
.ls1e_c00362{letter-spacing:0.346667pt;}
.ls8_c00362{letter-spacing:0.384000pt;}
.ls6_c00362{letter-spacing:0.416000pt;}
.ls18_c00362{letter-spacing:0.426667pt;}
.ls17_c00362{letter-spacing:0.469333pt;}
.ls3_c00362{letter-spacing:0.558933pt;}
.ls1b_c00362{letter-spacing:0.586667pt;}
.lsa_c00362{letter-spacing:0.746667pt;}
.ls2_c00362{letter-spacing:0.768000pt;}
.ls5_c00362{letter-spacing:0.810667pt;}
.ls4_c00362{letter-spacing:0.896000pt;}
.ls7_c00362{letter-spacing:1.024000pt;}
.ls9_c00362{letter-spacing:1.813333pt;}
.lsb_c00362{letter-spacing:2.880000pt;}
.ls1_c00362{letter-spacing:3.157333pt;}
.ls0_c00362{letter-spacing:81.024000pt;}
.ws14_c00362{word-spacing:-16.576000pt;}
.ws0_c00362{word-spacing:-14.272000pt;}
.ws11_c00362{word-spacing:-14.080000pt;}
.ws9_c00362{word-spacing:-12.160000pt;}
.ws8_c00362{word-spacing:-12.106667pt;}
.ws7_c00362{word-spacing:-12.053333pt;}
.ws13_c00362{word-spacing:-11.786667pt;}
.ws12_c00362{word-spacing:-11.573333pt;}
.wse_c00362{word-spacing:-9.898667pt;}
.ws1_c00362{word-spacing:-9.728000pt;}
.ws2_c00362{word-spacing:-9.642667pt;}
.wsc_c00362{word-spacing:-9.557333pt;}
.wsf_c00362{word-spacing:-9.514667pt;}
.wsb_c00362{word-spacing:-9.472000pt;}
.ws5_c00362{word-spacing:-9.386667pt;}
.ws6_c00362{word-spacing:-9.344000pt;}
.wsd_c00362{word-spacing:-9.301333pt;}
.ws4_c00362{word-spacing:-9.258667pt;}
.ws3_c00362{word-spacing:-9.216000pt;}
.ws10_c00362{word-spacing:-9.173333pt;}
.wsa_c00362{word-spacing:-8.236800pt;}
.ws23_c00362{word-spacing:-0.586667pt;}
.ws32_c00362{word-spacing:-0.426667pt;}
.ws33_c00362{word-spacing:-0.373333pt;}
.ws24_c00362{word-spacing:-0.346667pt;}
.ws19_c00362{word-spacing:-0.128000pt;}
.ws31_c00362{word-spacing:-0.053333pt;}
.ws1a_c00362{word-spacing:-0.042667pt;}
.ws16_c00362{word-spacing:0.000000pt;}
.ws20_c00362{word-spacing:0.085333pt;}
.ws17_c00362{word-spacing:0.128000pt;}
.ws26_c00362{word-spacing:0.170667pt;}
.ws18_c00362{word-spacing:0.256000pt;}
.ws2a_c00362{word-spacing:0.266667pt;}
.ws1d_c00362{word-spacing:0.298667pt;}
.ws25_c00362{word-spacing:0.384000pt;}
.ws15_c00362{word-spacing:0.640000pt;}
.ws22_c00362{word-spacing:0.746667pt;}
.ws2b_c00362{word-spacing:1.013333pt;}
.ws2d_c00362{word-spacing:1.120000pt;}
.ws27_c00362{word-spacing:1.408000pt;}
.ws28_c00362{word-spacing:2.080000pt;}
.ws2f_c00362{word-spacing:2.293333pt;}
.ws21_c00362{word-spacing:2.688000pt;}
.ws29_c00362{word-spacing:3.146667pt;}
.ws1f_c00362{word-spacing:3.157333pt;}
.ws1b_c00362{word-spacing:3.285333pt;}
.ws1e_c00362{word-spacing:3.328000pt;}
.ws2e_c00362{word-spacing:3.360000pt;}
.ws1c_c00362{word-spacing:3.456000pt;}
.ws30_c00362{word-spacing:4.213333pt;}
.ws2c_c00362{word-spacing:5.280000pt;}
._7_c00362{margin-left:-2.261333pt;}
._1_c00362{margin-left:-1.024000pt;}
._0_c00362{width:0.921600pt;}
._2_c00362{width:1.885867pt;}
._6_c00362{width:3.558400pt;}
._3_c00362{width:82.304000pt;}
._8_c00362{width:96.768000pt;}
._5_c00362{width:120.234667pt;}
._4_c00362{width:140.757333pt;}
.fs6_c00362{font-size:26.666667pt;}
.fs5_c00362{font-size:35.200000pt;}
.fs1_c00362{font-size:42.666667pt;}
.fs2_c00362{font-size:48.000000pt;}
.fs3_c00362{font-size:53.333333pt;}
.fs0_c00362{font-size:64.000000pt;}
.fs7_c00362{font-size:74.666667pt;}
.fs4_c00362{font-size:106.666667pt;}
.y0_c00362{bottom:0.000000pt;}
.y2_c00362{bottom:13.600000pt;}
.yd_c00362{bottom:60.266667pt;}
.yc_c00362{bottom:76.000000pt;}
.yb_c00362{bottom:89.066667pt;}
.ya_c00362{bottom:102.133333pt;}
.y9_c00362{bottom:118.133333pt;}
.y34_c00362{bottom:157.600000pt;}
.y33_c00362{bottom:177.066667pt;}
.y32_c00362{bottom:196.800000pt;}
.y31_c00362{bottom:216.266667pt;}
.y30_c00362{bottom:235.733333pt;}
.y2f_c00362{bottom:255.200000pt;}
.y2e_c00362{bottom:274.666667pt;}
.y2d_c00362{bottom:302.400000pt;}
.y2c_c00362{bottom:323.466667pt;}
.y2b_c00362{bottom:345.600000pt;}
.y2a_c00362{bottom:372.000000pt;}
.y29_c00362{bottom:390.400000pt;}
.y28_c00362{bottom:409.333333pt;}
.y27_c00362{bottom:428.800000pt;}
.y26_c00362{bottom:448.266667pt;}
.y25_c00362{bottom:468.000000pt;}
.y24_c00362{bottom:487.466667pt;}
.y23_c00362{bottom:506.933333pt;}
.y22_c00362{bottom:526.400000pt;}
.y21_c00362{bottom:546.133333pt;}
.y20_c00362{bottom:565.600000pt;}
.y1f_c00362{bottom:585.066667pt;}
.y1e_c00362{bottom:604.533333pt;}
.y1d_c00362{bottom:624.266667pt;}
.y1c_c00362{bottom:643.733333pt;}
.y1b_c00362{bottom:663.200000pt;}
.y1a_c00362{bottom:689.600000pt;}
.y19_c00362{bottom:707.733333pt;}
.y18_c00362{bottom:727.733333pt;}
.y17_c00362{bottom:743.466667pt;}
.y16_c00362{bottom:756.533333pt;}
.y15_c00362{bottom:769.600000pt;}
.y14_c00362{bottom:782.666667pt;}
.y13_c00362{bottom:795.733333pt;}
.y12_c00362{bottom:808.800000pt;}
.y11_c00362{bottom:821.600000pt;}
.y10_c00362{bottom:838.133333pt;}
.yf_c00362{bottom:848.266667pt;}
.ye_c00362{bottom:894.933333pt;}
.y8_c00362{bottom:943.200000pt;}
.y7_c00362{bottom:956.000000pt;}
.y6_c00362{bottom:969.066667pt;}
.y5_c00362{bottom:982.133333pt;}
.y4_c00362{bottom:995.200000pt;}
.y3_c00362{bottom:1008.266667pt;}
.y1_c00362{bottom:1018.400000pt;}
.h9_c00362{height:19.140625pt;}
.h1_c00362{height:28.800000pt;}
.h3_c00362{height:30.625000pt;}
.h5_c00362{height:30.979167pt;}
.h4_c00362{height:31.992188pt;}
.hb_c00362{height:37.057292pt;}
.ha_c00362{height:38.281250pt;}
.h6_c00362{height:38.723958pt;}
.h8_c00362{height:44.465625pt;}
.h2_c00362{height:46.468750pt;}
.hc_c00362{height:54.213542pt;}
.h7_c00362{height:77.447917pt;}
.h0_c00362{height:1122.666667pt;}
.w2_c00362{width:656.800000pt;}
.w0_c00362{width:793.866667pt;}
.w1_c00362{width:794.000000pt;}
.x0_c00362{left:0.000000pt;}
.x2_c00362{left:6.933333pt;}
.x1_c00362{left:68.533333pt;}
.x3_c00362{left:75.466667pt;}
.x5_c00362{left:88.800000pt;}
.x4_c00362{left:393.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_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_5e8be8b782a97fe2d6ea230c.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00363;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00363;src:url('chunks/assets/font_31483eadac0eb1488921a925.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00363;src:url('chunks/assets/font_766551c2460ec34cdcce0b69.woff2')format("woff");}.ff4_c00363{font-family:ff4_c00363;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls12_c00363{letter-spacing:-1.140000px;}
.ls17_c00363{letter-spacing:-0.672000px;}
.ls15_c00363{letter-spacing:-0.540000px;}
.ls13_c00363{letter-spacing:-0.420000px;}
.lsa_c00363{letter-spacing:-0.360000px;}
.ls14_c00363{letter-spacing:-0.336000px;}
.lsd_c00363{letter-spacing:-0.300000px;}
.ls11_c00363{letter-spacing:-0.252000px;}
.lsc_c00363{letter-spacing:-0.180000px;}
.lsb_c00363{letter-spacing:0.000000px;}
.ls5_c00363{letter-spacing:0.060000px;}
.ls10_c00363{letter-spacing:0.120000px;}
.lsf_c00363{letter-spacing:0.300000px;}
.lse_c00363{letter-spacing:0.360000px;}
.ls7_c00363{letter-spacing:0.420000px;}
.ls6_c00363{letter-spacing:0.480000px;}
.ls16_c00363{letter-spacing:0.504000px;}
.ls3_c00363{letter-spacing:0.648000px;}
.ls18_c00363{letter-spacing:0.660000px;}
.ls2_c00363{letter-spacing:0.840000px;}
.ls1_c00363{letter-spacing:2.040000px;}
.ls4_c00363{letter-spacing:3.240000px;}
.ls0_c00363{letter-spacing:4.440000px;}
.ls8_c00363{letter-spacing:6.840000px;}
.ls9_c00363{letter-spacing:8.040000px;}
.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;}
}
.ws4_c00363{word-spacing:-18.984000px;}
.ws7_c00363{word-spacing:-18.732000px;}
.ws5_c00363{word-spacing:-18.648000px;}
.ws1_c00363{word-spacing:-13.860000px;}
.ws2_c00363{word-spacing:-13.620000px;}
.ws0_c00363{word-spacing:-13.560000px;}
.ws3_c00363{word-spacing:-13.380000px;}
.ws6_c00363{word-spacing:-13.260000px;}
.ws9_c00363{word-spacing:-13.140000px;}
.ws8_c00363{word-spacing:-13.020000px;}
.ws23_c00363{word-spacing:-1.020000px;}
.ws18_c00363{word-spacing:-0.660000px;}
.ws1e_c00363{word-spacing:-0.504000px;}
.ws11_c00363{word-spacing:-0.480000px;}
.ws20_c00363{word-spacing:-0.420000px;}
.ws28_c00363{word-spacing:-0.300000px;}
.wsb_c00363{word-spacing:-0.180000px;}
.wse_c00363{word-spacing:-0.060000px;}
.wsa_c00363{word-spacing:0.000000px;}
.ws1a_c00363{word-spacing:0.060000px;}
.ws29_c00363{word-spacing:0.180000px;}
.ws22_c00363{word-spacing:0.252000px;}
.wsf_c00363{word-spacing:0.300000px;}
.ws26_c00363{word-spacing:0.420000px;}
.ws13_c00363{word-spacing:0.504000px;}
.ws24_c00363{word-spacing:0.540000px;}
.ws21_c00363{word-spacing:0.588000px;}
.ws1f_c00363{word-spacing:0.672000px;}
.ws1d_c00363{word-spacing:0.720000px;}
.ws16_c00363{word-spacing:1.140000px;}
.ws19_c00363{word-spacing:1.560000px;}
.ws2c_c00363{word-spacing:1.980000px;}
.ws15_c00363{word-spacing:2.340000px;}
.ws10_c00363{word-spacing:2.880000px;}
.ws17_c00363{word-spacing:3.120000px;}
.ws14_c00363{word-spacing:3.180000px;}
.wsc_c00363{word-spacing:3.540000px;}
.ws2b_c00363{word-spacing:3.660000px;}
.ws1b_c00363{word-spacing:3.780000px;}
.wsd_c00363{word-spacing:4.740000px;}
.ws12_c00363{word-spacing:5.940000px;}
.ws25_c00363{word-spacing:6.180000px;}
.ws1c_c00363{word-spacing:7.140000px;}
.ws27_c00363{word-spacing:8.340000px;}
.ws2a_c00363{word-spacing:9.540000px;}
._5_c00363{margin-left:-2.166000px;}
._1_c00363{margin-left:-1.080000px;}
._0_c00363{width:1.380000px;}
._2_c00363{width:2.586000px;}
._4_c00363{width:6.540000px;}
._3_c00363{width:108.864000px;}
.fc1_c00363{color:rgb(0,0,0);}
.fc0_c00363{color:rgb(0,0,255);}
.fs1_c00363{font-size:54.000000px;}
.fs0_c00363{font-size:60.000000px;}
.fs2_c00363{font-size:84.000000px;}
.y0_c00363{bottom:0.000000px;}
.y3_c00363{bottom:71.400000px;}
.y2_c00363{bottom:88.800000px;}
.y2f_c00363{bottom:131.700000px;}
.y2e_c00363{bottom:153.900000px;}
.y2d_c00363{bottom:175.800000px;}
.y2c_c00363{bottom:197.700000px;}
.y2b_c00363{bottom:219.600000px;}
.y2a_c00363{bottom:241.800000px;}
.y29_c00363{bottom:263.700000px;}
.y28_c00363{bottom:285.600000px;}
.y27_c00363{bottom:316.800000px;}
.y26_c00363{bottom:344.400000px;}
.y25_c00363{bottom:366.300000px;}
.y24_c00363{bottom:388.200000px;}
.y23_c00363{bottom:410.400000px;}
.y22_c00363{bottom:432.300000px;}
.y21_c00363{bottom:454.200000px;}
.y20_c00363{bottom:476.100000px;}
.y1f_c00363{bottom:498.300000px;}
.y1e_c00363{bottom:529.200000px;}
.y1d_c00363{bottom:556.800000px;}
.y1c_c00363{bottom:579.000000px;}
.y1b_c00363{bottom:600.900000px;}
.y1a_c00363{bottom:622.800000px;}
.y19_c00363{bottom:644.700000px;}
.y18_c00363{bottom:666.900000px;}
.y17_c00363{bottom:688.800000px;}
.y16_c00363{bottom:710.700000px;}
.y15_c00363{bottom:732.600000px;}
.y14_c00363{bottom:754.800000px;}
.y13_c00363{bottom:776.700000px;}
.y12_c00363{bottom:798.600000px;}
.y11_c00363{bottom:820.500000px;}
.y10_c00363{bottom:842.700000px;}
.yf_c00363{bottom:864.600000px;}
.ye_c00363{bottom:886.500000px;}
.yd_c00363{bottom:908.400000px;}
.yc_c00363{bottom:930.600000px;}
.yb_c00363{bottom:961.500000px;}
.ya_c00363{bottom:989.100000px;}
.y9_c00363{bottom:1011.300000px;}
.y8_c00363{bottom:1033.200000px;}
.y7_c00363{bottom:1055.100000px;}
.y6_c00363{bottom:1077.000000px;}
.y5_c00363{bottom:1099.200000px;}
.y4_c00363{bottom:1121.100000px;}
.y1_c00363{bottom:1163.700000px;}
.h2_c00363{height:35.991211px;}
.h3_c00363{height:43.066406px;}
.h1_c00363{height:43.564453px;}
.h4_c00363{height:60.990234px;}
.h0_c00363{height:1263.000000px;}
.w0_c00363{width:893.100000px;}
.w1_c00363{width:893.250000px;}
.x0_c00363{left:0.000000px;}
.x1_c00363{left:84.900000px;}
.x4_c00363{left:99.900000px;}
.x3_c00363{left:442.500000px;}
.x2_c00363{left:446.400000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls12_c00363{letter-spacing:-1.013333pt;}
.ls17_c00363{letter-spacing:-0.597333pt;}
.ls15_c00363{letter-spacing:-0.480000pt;}
.ls13_c00363{letter-spacing:-0.373333pt;}
.lsa_c00363{letter-spacing:-0.320000pt;}
.ls14_c00363{letter-spacing:-0.298667pt;}
.lsd_c00363{letter-spacing:-0.266667pt;}
.ls11_c00363{letter-spacing:-0.224000pt;}
.lsc_c00363{letter-spacing:-0.160000pt;}
.lsb_c00363{letter-spacing:0.000000pt;}
.ls5_c00363{letter-spacing:0.053333pt;}
.ls10_c00363{letter-spacing:0.106667pt;}
.lsf_c00363{letter-spacing:0.266667pt;}
.lse_c00363{letter-spacing:0.320000pt;}
.ls7_c00363{letter-spacing:0.373333pt;}
.ls6_c00363{letter-spacing:0.426667pt;}
.ls16_c00363{letter-spacing:0.448000pt;}
.ls3_c00363{letter-spacing:0.576000pt;}
.ls18_c00363{letter-spacing:0.586667pt;}
.ls2_c00363{letter-spacing:0.746667pt;}
.ls1_c00363{letter-spacing:1.813333pt;}
.ls4_c00363{letter-spacing:2.880000pt;}
.ls0_c00363{letter-spacing:3.946667pt;}
.ls8_c00363{letter-spacing:6.080000pt;}
.ls9_c00363{letter-spacing:7.146667pt;}
.ws4_c00363{word-spacing:-16.874667pt;}
.ws7_c00363{word-spacing:-16.650667pt;}
.ws5_c00363{word-spacing:-16.576000pt;}
.ws1_c00363{word-spacing:-12.320000pt;}
.ws2_c00363{word-spacing:-12.106667pt;}
.ws0_c00363{word-spacing:-12.053333pt;}
.ws3_c00363{word-spacing:-11.893333pt;}
.ws6_c00363{word-spacing:-11.786667pt;}
.ws9_c00363{word-spacing:-11.680000pt;}
.ws8_c00363{word-spacing:-11.573333pt;}
.ws23_c00363{word-spacing:-0.906667pt;}
.ws18_c00363{word-spacing:-0.586667pt;}
.ws1e_c00363{word-spacing:-0.448000pt;}
.ws11_c00363{word-spacing:-0.426667pt;}
.ws20_c00363{word-spacing:-0.373333pt;}
.ws28_c00363{word-spacing:-0.266667pt;}
.wsb_c00363{word-spacing:-0.160000pt;}
.wse_c00363{word-spacing:-0.053333pt;}
.wsa_c00363{word-spacing:0.000000pt;}
.ws1a_c00363{word-spacing:0.053333pt;}
.ws29_c00363{word-spacing:0.160000pt;}
.ws22_c00363{word-spacing:0.224000pt;}
.wsf_c00363{word-spacing:0.266667pt;}
.ws26_c00363{word-spacing:0.373333pt;}
.ws13_c00363{word-spacing:0.448000pt;}
.ws24_c00363{word-spacing:0.480000pt;}
.ws21_c00363{word-spacing:0.522667pt;}
.ws1f_c00363{word-spacing:0.597333pt;}
.ws1d_c00363{word-spacing:0.640000pt;}
.ws16_c00363{word-spacing:1.013333pt;}
.ws19_c00363{word-spacing:1.386667pt;}
.ws2c_c00363{word-spacing:1.760000pt;}
.ws15_c00363{word-spacing:2.080000pt;}
.ws10_c00363{word-spacing:2.560000pt;}
.ws17_c00363{word-spacing:2.773333pt;}
.ws14_c00363{word-spacing:2.826667pt;}
.wsc_c00363{word-spacing:3.146667pt;}
.ws2b_c00363{word-spacing:3.253333pt;}
.ws1b_c00363{word-spacing:3.360000pt;}
.wsd_c00363{word-spacing:4.213333pt;}
.ws12_c00363{word-spacing:5.280000pt;}
.ws25_c00363{word-spacing:5.493333pt;}
.ws1c_c00363{word-spacing:6.346667pt;}
.ws27_c00363{word-spacing:7.413333pt;}
.ws2a_c00363{word-spacing:8.480000pt;}
._5_c00363{margin-left:-1.925333pt;}
._1_c00363{margin-left:-0.960000pt;}
._0_c00363{width:1.226667pt;}
._2_c00363{width:2.298667pt;}
._4_c00363{width:5.813333pt;}
._3_c00363{width:96.768000pt;}
.fs1_c00363{font-size:48.000000pt;}
.fs0_c00363{font-size:53.333333pt;}
.fs2_c00363{font-size:74.666667pt;}
.y0_c00363{bottom:0.000000pt;}
.y3_c00363{bottom:63.466667pt;}
.y2_c00363{bottom:78.933333pt;}
.y2f_c00363{bottom:117.066667pt;}
.y2e_c00363{bottom:136.800000pt;}
.y2d_c00363{bottom:156.266667pt;}
.y2c_c00363{bottom:175.733333pt;}
.y2b_c00363{bottom:195.200000pt;}
.y2a_c00363{bottom:214.933333pt;}
.y29_c00363{bottom:234.400000pt;}
.y28_c00363{bottom:253.866667pt;}
.y27_c00363{bottom:281.600000pt;}
.y26_c00363{bottom:306.133333pt;}
.y25_c00363{bottom:325.600000pt;}
.y24_c00363{bottom:345.066667pt;}
.y23_c00363{bottom:364.800000pt;}
.y22_c00363{bottom:384.266667pt;}
.y21_c00363{bottom:403.733333pt;}
.y20_c00363{bottom:423.200000pt;}
.y1f_c00363{bottom:442.933333pt;}
.y1e_c00363{bottom:470.400000pt;}
.y1d_c00363{bottom:494.933333pt;}
.y1c_c00363{bottom:514.666667pt;}
.y1b_c00363{bottom:534.133333pt;}
.y1a_c00363{bottom:553.600000pt;}
.y19_c00363{bottom:573.066667pt;}
.y18_c00363{bottom:592.800000pt;}
.y17_c00363{bottom:612.266667pt;}
.y16_c00363{bottom:631.733333pt;}
.y15_c00363{bottom:651.200000pt;}
.y14_c00363{bottom:670.933333pt;}
.y13_c00363{bottom:690.400000pt;}
.y12_c00363{bottom:709.866667pt;}
.y11_c00363{bottom:729.333333pt;}
.y10_c00363{bottom:749.066667pt;}
.yf_c00363{bottom:768.533333pt;}
.ye_c00363{bottom:788.000000pt;}
.yd_c00363{bottom:807.466667pt;}
.yc_c00363{bottom:827.200000pt;}
.yb_c00363{bottom:854.666667pt;}
.ya_c00363{bottom:879.200000pt;}
.y9_c00363{bottom:898.933333pt;}
.y8_c00363{bottom:918.400000pt;}
.y7_c00363{bottom:937.866667pt;}
.y6_c00363{bottom:957.333333pt;}
.y5_c00363{bottom:977.066667pt;}
.y4_c00363{bottom:996.533333pt;}
.y1_c00363{bottom:1034.400000pt;}
.h2_c00363{height:31.992188pt;}
.h3_c00363{height:38.281250pt;}
.h1_c00363{height:38.723958pt;}
.h4_c00363{height:54.213542pt;}
.h0_c00363{height:1122.666667pt;}
.w0_c00363{width:793.866667pt;}
.w1_c00363{width:794.000000pt;}
.x0_c00363{left:0.000000pt;}
.x1_c00363{left:75.466667pt;}
.x4_c00363{left:88.800000pt;}
.x3_c00363{left:393.333333pt;}
.x2_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_6c5dd46dd074341e5c153565.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00364;src:url('chunks/assets/font_082899b150e8cb5013b64a67.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls11_c00364{letter-spacing:-1.080000px;}
.lsc_c00364{letter-spacing:-0.540000px;}
.ls8_c00364{letter-spacing:-0.420000px;}
.lsb_c00364{letter-spacing:-0.300000px;}
.ls12_c00364{letter-spacing:-0.180000px;}
.ls9_c00364{letter-spacing:0.000000px;}
.lse_c00364{letter-spacing:0.060000px;}
.lsa_c00364{letter-spacing:0.120000px;}
.lsd_c00364{letter-spacing:0.300000px;}
.ls10_c00364{letter-spacing:0.504000px;}
.lsf_c00364{letter-spacing:0.660000px;}
.ls3_c00364{letter-spacing:0.840000px;}
.ls5_c00364{letter-spacing:2.034000px;}
.ls1_c00364{letter-spacing:2.040000px;}
.ls0_c00364{letter-spacing:3.240000px;}
.ls6_c00364{letter-spacing:4.428000px;}
.ls7_c00364{letter-spacing:4.440000px;}
.ls2_c00364{letter-spacing:5.640000px;}
.ls4_c00364{letter-spacing:6.828000px;}
.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;}
}
.ws3_c00364{word-spacing:-13.680000px;}
.ws0_c00364{word-spacing:-13.560000px;}
.ws2_c00364{word-spacing:-13.260000px;}
.ws1_c00364{word-spacing:-13.020000px;}
.ws12_c00364{word-spacing:-0.660000px;}
.wse_c00364{word-spacing:-0.420000px;}
.ws10_c00364{word-spacing:-0.252000px;}
.ws19_c00364{word-spacing:-0.180000px;}
.wsc_c00364{word-spacing:-0.060000px;}
.ws5_c00364{word-spacing:0.000000px;}
.ws4_c00364{word-spacing:0.060000px;}
.ws1d_c00364{word-spacing:0.720000px;}
.ws17_c00364{word-spacing:1.080000px;}
.ws11_c00364{word-spacing:1.140000px;}
.ws15_c00364{word-spacing:1.260000px;}
.wsf_c00364{word-spacing:1.380000px;}
.wsd_c00364{word-spacing:1.740000px;}
.wsa_c00364{word-spacing:2.340000px;}
.wsb_c00364{word-spacing:2.460000px;}
.ws14_c00364{word-spacing:2.940000px;}
.ws6_c00364{word-spacing:3.120000px;}
.ws7_c00364{word-spacing:3.540000px;}
.ws1f_c00364{word-spacing:4.740000px;}
.ws1e_c00364{word-spacing:5.580000px;}
.ws8_c00364{word-spacing:5.940000px;}
.ws13_c00364{word-spacing:6.060000px;}
.ws1b_c00364{word-spacing:6.720000px;}
.ws1c_c00364{word-spacing:6.780000px;}
.ws16_c00364{word-spacing:7.140000px;}
.ws9_c00364{word-spacing:7.380000px;}
.ws1a_c00364{word-spacing:8.340000px;}
.ws18_c00364{word-spacing:9.540000px;}
._5_c00364{margin-left:-2.350800px;}
._3_c00364{margin-left:-1.020000px;}
._0_c00364{width:1.380000px;}
._1_c00364{width:2.580000px;}
._2_c00364{width:5.640000px;}
._4_c00364{width:108.864000px;}
.fc1_c00364{color:rgb(0,0,0);}
.fc0_c00364{color:rgb(0,0,255);}
.fs1_c00364{font-size:54.000000px;}
.fs0_c00364{font-size:60.000000px;}
.fs2_c00364{font-size:84.000000px;}
.y0_c00364{bottom:0.000000px;}
.y3_c00364{bottom:67.800000px;}
.y2_c00364{bottom:85.800000px;}
.y30_c00364{bottom:139.500000px;}
.y2f_c00364{bottom:161.400000px;}
.y2e_c00364{bottom:183.300000px;}
.y2d_c00364{bottom:205.500000px;}
.y2c_c00364{bottom:227.400000px;}
.y2b_c00364{bottom:249.300000px;}
.y2a_c00364{bottom:271.200000px;}
.y29_c00364{bottom:293.100000px;}
.y28_c00364{bottom:315.300000px;}
.y27_c00364{bottom:337.200000px;}
.y26_c00364{bottom:359.100000px;}
.y25_c00364{bottom:381.000000px;}
.y24_c00364{bottom:403.200000px;}
.y23_c00364{bottom:425.100000px;}
.y22_c00364{bottom:447.000000px;}
.y21_c00364{bottom:468.900000px;}
.y20_c00364{bottom:491.100000px;}
.y1f_c00364{bottom:513.000000px;}
.y1e_c00364{bottom:534.900000px;}
.y1d_c00364{bottom:556.800000px;}
.y1c_c00364{bottom:579.000000px;}
.y1b_c00364{bottom:600.900000px;}
.y1a_c00364{bottom:622.800000px;}
.y19_c00364{bottom:644.700000px;}
.y18_c00364{bottom:666.900000px;}
.y17_c00364{bottom:688.800000px;}
.y16_c00364{bottom:710.700000px;}
.y15_c00364{bottom:732.600000px;}
.y14_c00364{bottom:754.800000px;}
.y13_c00364{bottom:776.700000px;}
.y12_c00364{bottom:798.600000px;}
.y11_c00364{bottom:829.800000px;}
.y10_c00364{bottom:857.400000px;}
.yf_c00364{bottom:879.300000px;}
.ye_c00364{bottom:901.200000px;}
.yd_c00364{bottom:923.400000px;}
.yc_c00364{bottom:945.300000px;}
.yb_c00364{bottom:967.200000px;}
.ya_c00364{bottom:989.100000px;}
.y9_c00364{bottom:1011.300000px;}
.y8_c00364{bottom:1033.200000px;}
.y7_c00364{bottom:1055.100000px;}
.y6_c00364{bottom:1077.000000px;}
.y5_c00364{bottom:1099.200000px;}
.y4_c00364{bottom:1121.100000px;}
.y1_c00364{bottom:1163.700000px;}
.h2_c00364{height:38.759766px;}
.h3_c00364{height:43.066406px;}
.h1_c00364{height:43.564453px;}
.h4_c00364{height:60.990234px;}
.h0_c00364{height:1263.000000px;}
.w0_c00364{width:893.100000px;}
.w1_c00364{width:893.250000px;}
.x0_c00364{left:0.000000px;}
.x1_c00364{left:84.900000px;}
.x4_c00364{left:99.900000px;}
.x3_c00364{left:442.500000px;}
.x2_c00364{left:446.400000px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls11_c00364{letter-spacing:-0.960000pt;}
.lsc_c00364{letter-spacing:-0.480000pt;}
.ls8_c00364{letter-spacing:-0.373333pt;}
.lsb_c00364{letter-spacing:-0.266667pt;}
.ls12_c00364{letter-spacing:-0.160000pt;}
.ls9_c00364{letter-spacing:0.000000pt;}
.lse_c00364{letter-spacing:0.053333pt;}
.lsa_c00364{letter-spacing:0.106667pt;}
.lsd_c00364{letter-spacing:0.266667pt;}
.ls10_c00364{letter-spacing:0.448000pt;}
.lsf_c00364{letter-spacing:0.586667pt;}
.ls3_c00364{letter-spacing:0.746667pt;}
.ls5_c00364{letter-spacing:1.808000pt;}
.ls1_c00364{letter-spacing:1.813333pt;}
.ls0_c00364{letter-spacing:2.880000pt;}
.ls6_c00364{letter-spacing:3.936000pt;}
.ls7_c00364{letter-spacing:3.946667pt;}
.ls2_c00364{letter-spacing:5.013333pt;}
.ls4_c00364{letter-spacing:6.069333pt;}
.ws3_c00364{word-spacing:-12.160000pt;}
.ws0_c00364{word-spacing:-12.053333pt;}
.ws2_c00364{word-spacing:-11.786667pt;}
.ws1_c00364{word-spacing:-11.573333pt;}
.ws12_c00364{word-spacing:-0.586667pt;}
.wse_c00364{word-spacing:-0.373333pt;}
.ws10_c00364{word-spacing:-0.224000pt;}
.ws19_c00364{word-spacing:-0.160000pt;}
.wsc_c00364{word-spacing:-0.053333pt;}
.ws5_c00364{word-spacing:0.000000pt;}
.ws4_c00364{word-spacing:0.053333pt;}
.ws1d_c00364{word-spacing:0.640000pt;}
.ws17_c00364{word-spacing:0.960000pt;}
.ws11_c00364{word-spacing:1.013333pt;}
.ws15_c00364{word-spacing:1.120000pt;}
.wsf_c00364{word-spacing:1.226667pt;}
.wsd_c00364{word-spacing:1.546667pt;}
.wsa_c00364{word-spacing:2.080000pt;}
.wsb_c00364{word-spacing:2.186667pt;}
.ws14_c00364{word-spacing:2.613333pt;}
.ws6_c00364{word-spacing:2.773333pt;}
.ws7_c00364{word-spacing:3.146667pt;}
.ws1f_c00364{word-spacing:4.213333pt;}
.ws1e_c00364{word-spacing:4.960000pt;}
.ws8_c00364{word-spacing:5.280000pt;}
.ws13_c00364{word-spacing:5.386667pt;}
.ws1b_c00364{word-spacing:5.973333pt;}
.ws1c_c00364{word-spacing:6.026667pt;}
.ws16_c00364{word-spacing:6.346667pt;}
.ws9_c00364{word-spacing:6.560000pt;}
.ws1a_c00364{word-spacing:7.413333pt;}
.ws18_c00364{word-spacing:8.480000pt;}
._5_c00364{margin-left:-2.089600pt;}
._3_c00364{margin-left:-0.906667pt;}
._0_c00364{width:1.226667pt;}
._1_c00364{width:2.293333pt;}
._2_c00364{width:5.013333pt;}
._4_c00364{width:96.768000pt;}
.fs1_c00364{font-size:48.000000pt;}
.fs0_c00364{font-size:53.333333pt;}
.fs2_c00364{font-size:74.666667pt;}
.y0_c00364{bottom:0.000000pt;}
.y3_c00364{bottom:60.266667pt;}
.y2_c00364{bottom:76.266667pt;}
.y30_c00364{bottom:124.000000pt;}
.y2f_c00364{bottom:143.466667pt;}
.y2e_c00364{bottom:162.933333pt;}
.y2d_c00364{bottom:182.666667pt;}
.y2c_c00364{bottom:202.133333pt;}
.y2b_c00364{bottom:221.600000pt;}
.y2a_c00364{bottom:241.066667pt;}
.y29_c00364{bottom:260.533333pt;}
.y28_c00364{bottom:280.266667pt;}
.y27_c00364{bottom:299.733333pt;}
.y26_c00364{bottom:319.200000pt;}
.y25_c00364{bottom:338.666667pt;}
.y24_c00364{bottom:358.400000pt;}
.y23_c00364{bottom:377.866667pt;}
.y22_c00364{bottom:397.333333pt;}
.y21_c00364{bottom:416.800000pt;}
.y20_c00364{bottom:436.533333pt;}
.y1f_c00364{bottom:456.000000pt;}
.y1e_c00364{bottom:475.466667pt;}
.y1d_c00364{bottom:494.933333pt;}
.y1c_c00364{bottom:514.666667pt;}
.y1b_c00364{bottom:534.133333pt;}
.y1a_c00364{bottom:553.600000pt;}
.y19_c00364{bottom:573.066667pt;}
.y18_c00364{bottom:592.800000pt;}
.y17_c00364{bottom:612.266667pt;}
.y16_c00364{bottom:631.733333pt;}
.y15_c00364{bottom:651.200000pt;}
.y14_c00364{bottom:670.933333pt;}
.y13_c00364{bottom:690.400000pt;}
.y12_c00364{bottom:709.866667pt;}
.y11_c00364{bottom:737.600000pt;}
.y10_c00364{bottom:762.133333pt;}
.yf_c00364{bottom:781.600000pt;}
.ye_c00364{bottom:801.066667pt;}
.yd_c00364{bottom:820.800000pt;}
.yc_c00364{bottom:840.266667pt;}
.yb_c00364{bottom:859.733333pt;}
.ya_c00364{bottom:879.200000pt;}
.y9_c00364{bottom:898.933333pt;}
.y8_c00364{bottom:918.400000pt;}
.y7_c00364{bottom:937.866667pt;}
.y6_c00364{bottom:957.333333pt;}
.y5_c00364{bottom:977.066667pt;}
.y4_c00364{bottom:996.533333pt;}
.y1_c00364{bottom:1034.400000pt;}
.h2_c00364{height:34.453125pt;}
.h3_c00364{height:38.281250pt;}
.h1_c00364{height:38.723958pt;}
.h4_c00364{height:54.213542pt;}
.h0_c00364{height:1122.666667pt;}
.w0_c00364{width:793.866667pt;}
.w1_c00364{width:794.000000pt;}
.x0_c00364{left:0.000000pt;}
.x1_c00364{left:75.466667pt;}
.x4_c00364{left:88.800000pt;}
.x3_c00364{left:393.333333pt;}
.x2_c00364{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_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_db2fc2e2a6c128d36285d1a2.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00365;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00365;src:url('chunks/assets/font_d32b824920e9d89d0e9aca40.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls14_c00365{letter-spacing:-1.500000px;}
.ls17_c00365{letter-spacing:-0.540000px;}
.ls10_c00365{letter-spacing:-0.504000px;}
.ls13_c00365{letter-spacing:-0.420000px;}
.lsa_c00365{letter-spacing:-0.360000px;}
.lsd_c00365{letter-spacing:-0.300000px;}
.lsf_c00365{letter-spacing:-0.252000px;}
.ls12_c00365{letter-spacing:-0.216000px;}
.lsc_c00365{letter-spacing:-0.180000px;}
.lsb_c00365{letter-spacing:0.000000px;}
.ls16_c00365{letter-spacing:0.060000px;}
.lse_c00365{letter-spacing:0.120000px;}
.ls11_c00365{letter-spacing:0.216000px;}
.ls7_c00365{letter-spacing:0.504000px;}
.ls15_c00365{letter-spacing:0.660000px;}
.ls6_c00365{letter-spacing:0.840000px;}
.ls9_c00365{letter-spacing:2.040000px;}
.ls3_c00365{letter-spacing:3.216000px;}
.ls2_c00365{letter-spacing:3.240000px;}
.ls1_c00365{letter-spacing:4.440000px;}
.ls5_c00365{letter-spacing:5.640000px;}
.ls0_c00365{letter-spacing:8.040000px;}
.ls8_c00365{letter-spacing:33.240000px;}
.ls4_c00365{letter-spacing:61.704000px;}
.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;}
}
.ws2_c00365{word-spacing:-15.768000px;}
.ws1_c00365{word-spacing:-13.680000px;}
.ws0_c00365{word-spacing:-13.560000px;}
.ws3_c00365{word-spacing:-13.140000px;}
.ws4_c00365{word-spacing:-13.020000px;}
.ws15_c00365{word-spacing:-0.660000px;}
.wsf_c00365{word-spacing:-0.432000px;}
.ws17_c00365{word-spacing:-0.420000px;}
.ws6_c00365{word-spacing:-0.180000px;}
.ws9_c00365{word-spacing:-0.060000px;}
.ws5_c00365{word-spacing:0.000000px;}
.ws14_c00365{word-spacing:0.060000px;}
.ws18_c00365{word-spacing:0.180000px;}
.wse_c00365{word-spacing:0.288000px;}
.ws10_c00365{word-spacing:0.420000px;}
.wsc_c00365{word-spacing:0.504000px;}
.ws19_c00365{word-spacing:0.540000px;}
.ws16_c00365{word-spacing:0.720000px;}
.wsd_c00365{word-spacing:1.140000px;}
.ws12_c00365{word-spacing:1.500000px;}
.ws1b_c00365{word-spacing:2.340000px;}
.wsb_c00365{word-spacing:3.120000px;}
.wsa_c00365{word-spacing:3.540000px;}
.ws1a_c00365{word-spacing:3.660000px;}
.ws8_c00365{word-spacing:4.740000px;}
.ws11_c00365{word-spacing:5.940000px;}
.ws13_c00365{word-spacing:7.140000px;}
.ws7_c00365{word-spacing:8.340000px;}
._1_c00365{margin-left:-1.080000px;}
._0_c00365{width:1.380000px;}
._2_c00365{width:2.400000px;}
._4_c00365{width:3.660000px;}
._3_c00365{width:108.864000px;}
.fc1_c00365{color:rgb(0,0,0);}
.fc0_c00365{color:rgb(0,0,255);}
.fs1_c00365{font-size:54.000000px;}
.fs0_c00365{font-size:60.000000px;}
.fs3_c00365{font-size:72.000000px;}
.fs2_c00365{font-size:84.000000px;}
.y0_c00365{bottom:0.000000px;}
.y3_c00365{bottom:71.400000px;}
.y2_c00365{bottom:88.800000px;}
.y2e_c00365{bottom:156.600000px;}
.y2d_c00365{bottom:178.500000px;}
.y2c_c00365{bottom:200.400000px;}
.y2b_c00365{bottom:222.600000px;}
.y2a_c00365{bottom:244.500000px;}
.y29_c00365{bottom:266.400000px;}
.y28_c00365{bottom:294.300000px;}
.y27_c00365{bottom:316.500000px;}
.y26_c00365{bottom:338.400000px;}
.y25_c00365{bottom:368.100000px;}
.y24_c00365{bottom:392.700000px;}
.y23_c00365{bottom:414.600000px;}
.y22_c00365{bottom:436.800000px;}
.y21_c00365{bottom:458.700000px;}
.y20_c00365{bottom:480.600000px;}
.y1f_c00365{bottom:502.500000px;}
.y1e_c00365{bottom:524.700000px;}
.y1d_c00365{bottom:546.600000px;}
.y1c_c00365{bottom:568.500000px;}
.y1b_c00365{bottom:590.400000px;}
.y1a_c00365{bottom:612.300000px;}
.y19_c00365{bottom:634.500000px;}
.y18_c00365{bottom:656.400000px;}
.y17_c00365{bottom:678.300000px;}
.y16_c00365{bottom:700.200000px;}
.y15_c00365{bottom:729.900000px;}
.y14_c00365{bottom:754.800000px;}
.y13_c00365{bottom:776.700000px;}
.y12_c00365{bottom:798.600000px;}
.y11_c00365{bottom:820.500000px;}
.y10_c00365{bottom:842.700000px;}
.yf_c00365{bottom:864.600000px;}
.ye_c00365{bottom:895.500000px;}
.yd_c00365{bottom:923.400000px;}
.yc_c00365{bottom:945.300000px;}
.yb_c00365{bottom:967.200000px;}
.ya_c00365{bottom:989.100000px;}
.y9_c00365{bottom:1011.300000px;}
.y8_c00365{bottom:1033.200000px;}
.y7_c00365{bottom:1055.100000px;}
.y6_c00365{bottom:1077.000000px;}
.y5_c00365{bottom:1099.200000px;}
.y4_c00365{bottom:1121.100000px;}
.y1_c00365{bottom:1163.700000px;}
.h2_c00365{height:35.991211px;}
.h3_c00365{height:43.066406px;}
.h1_c00365{height:43.564453px;}
.h5_c00365{height:52.277344px;}
.h4_c00365{height:60.990234px;}
.h0_c00365{height:1263.000000px;}
.w0_c00365{width:893.100000px;}
.w1_c00365{width:893.250000px;}
.x0_c00365{left:0.000000px;}
.x1_c00365{left:84.900000px;}
.x4_c00365{left:99.900000px;}
.x3_c00365{left:442.500000px;}
.x2_c00365{left:446.400000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls14_c00365{letter-spacing:-1.333333pt;}
.ls17_c00365{letter-spacing:-0.480000pt;}
.ls10_c00365{letter-spacing:-0.448000pt;}
.ls13_c00365{letter-spacing:-0.373333pt;}
.lsa_c00365{letter-spacing:-0.320000pt;}
.lsd_c00365{letter-spacing:-0.266667pt;}
.lsf_c00365{letter-spacing:-0.224000pt;}
.ls12_c00365{letter-spacing:-0.192000pt;}
.lsc_c00365{letter-spacing:-0.160000pt;}
.lsb_c00365{letter-spacing:0.000000pt;}
.ls16_c00365{letter-spacing:0.053333pt;}
.lse_c00365{letter-spacing:0.106667pt;}
.ls11_c00365{letter-spacing:0.192000pt;}
.ls7_c00365{letter-spacing:0.448000pt;}
.ls15_c00365{letter-spacing:0.586667pt;}
.ls6_c00365{letter-spacing:0.746667pt;}
.ls9_c00365{letter-spacing:1.813333pt;}
.ls3_c00365{letter-spacing:2.858667pt;}
.ls2_c00365{letter-spacing:2.880000pt;}
.ls1_c00365{letter-spacing:3.946667pt;}
.ls5_c00365{letter-spacing:5.013333pt;}
.ls0_c00365{letter-spacing:7.146667pt;}
.ls8_c00365{letter-spacing:29.546667pt;}
.ls4_c00365{letter-spacing:54.848000pt;}
.ws2_c00365{word-spacing:-14.016000pt;}
.ws1_c00365{word-spacing:-12.160000pt;}
.ws0_c00365{word-spacing:-12.053333pt;}
.ws3_c00365{word-spacing:-11.680000pt;}
.ws4_c00365{word-spacing:-11.573333pt;}
.ws15_c00365{word-spacing:-0.586667pt;}
.wsf_c00365{word-spacing:-0.384000pt;}
.ws17_c00365{word-spacing:-0.373333pt;}
.ws6_c00365{word-spacing:-0.160000pt;}
.ws9_c00365{word-spacing:-0.053333pt;}
.ws5_c00365{word-spacing:0.000000pt;}
.ws14_c00365{word-spacing:0.053333pt;}
.ws18_c00365{word-spacing:0.160000pt;}
.wse_c00365{word-spacing:0.256000pt;}
.ws10_c00365{word-spacing:0.373333pt;}
.wsc_c00365{word-spacing:0.448000pt;}
.ws19_c00365{word-spacing:0.480000pt;}
.ws16_c00365{word-spacing:0.640000pt;}
.wsd_c00365{word-spacing:1.013333pt;}
.ws12_c00365{word-spacing:1.333333pt;}
.ws1b_c00365{word-spacing:2.080000pt;}
.wsb_c00365{word-spacing:2.773333pt;}
.wsa_c00365{word-spacing:3.146667pt;}
.ws1a_c00365{word-spacing:3.253333pt;}
.ws8_c00365{word-spacing:4.213333pt;}
.ws11_c00365{word-spacing:5.280000pt;}
.ws13_c00365{word-spacing:6.346667pt;}
.ws7_c00365{word-spacing:7.413333pt;}
._1_c00365{margin-left:-0.960000pt;}
._0_c00365{width:1.226667pt;}
._2_c00365{width:2.133333pt;}
._4_c00365{width:3.253333pt;}
._3_c00365{width:96.768000pt;}
.fs1_c00365{font-size:48.000000pt;}
.fs0_c00365{font-size:53.333333pt;}
.fs3_c00365{font-size:64.000000pt;}
.fs2_c00365{font-size:74.666667pt;}
.y0_c00365{bottom:0.000000pt;}
.y3_c00365{bottom:63.466667pt;}
.y2_c00365{bottom:78.933333pt;}
.y2e_c00365{bottom:139.200000pt;}
.y2d_c00365{bottom:158.666667pt;}
.y2c_c00365{bottom:178.133333pt;}
.y2b_c00365{bottom:197.866667pt;}
.y2a_c00365{bottom:217.333333pt;}
.y29_c00365{bottom:236.800000pt;}
.y28_c00365{bottom:261.600000pt;}
.y27_c00365{bottom:281.333333pt;}
.y26_c00365{bottom:300.800000pt;}
.y25_c00365{bottom:327.200000pt;}
.y24_c00365{bottom:349.066667pt;}
.y23_c00365{bottom:368.533333pt;}
.y22_c00365{bottom:388.266667pt;}
.y21_c00365{bottom:407.733333pt;}
.y20_c00365{bottom:427.200000pt;}
.y1f_c00365{bottom:446.666667pt;}
.y1e_c00365{bottom:466.400000pt;}
.y1d_c00365{bottom:485.866667pt;}
.y1c_c00365{bottom:505.333333pt;}
.y1b_c00365{bottom:524.800000pt;}
.y1a_c00365{bottom:544.266667pt;}
.y19_c00365{bottom:564.000000pt;}
.y18_c00365{bottom:583.466667pt;}
.y17_c00365{bottom:602.933333pt;}
.y16_c00365{bottom:622.400000pt;}
.y15_c00365{bottom:648.800000pt;}
.y14_c00365{bottom:670.933333pt;}
.y13_c00365{bottom:690.400000pt;}
.y12_c00365{bottom:709.866667pt;}
.y11_c00365{bottom:729.333333pt;}
.y10_c00365{bottom:749.066667pt;}
.yf_c00365{bottom:768.533333pt;}
.ye_c00365{bottom:796.000000pt;}
.yd_c00365{bottom:820.800000pt;}
.yc_c00365{bottom:840.266667pt;}
.yb_c00365{bottom:859.733333pt;}
.ya_c00365{bottom:879.200000pt;}
.y9_c00365{bottom:898.933333pt;}
.y8_c00365{bottom:918.400000pt;}
.y7_c00365{bottom:937.866667pt;}
.y6_c00365{bottom:957.333333pt;}
.y5_c00365{bottom:977.066667pt;}
.y4_c00365{bottom:996.533333pt;}
.y1_c00365{bottom:1034.400000pt;}
.h2_c00365{height:31.992188pt;}
.h3_c00365{height:38.281250pt;}
.h1_c00365{height:38.723958pt;}
.h5_c00365{height:46.468750pt;}
.h4_c00365{height:54.213542pt;}
.h0_c00365{height:1122.666667pt;}
.w0_c00365{width:793.866667pt;}
.w1_c00365{width:794.000000pt;}
.x0_c00365{left:0.000000pt;}
.x1_c00365{left:75.466667pt;}
.x4_c00365{left:88.800000pt;}
.x3_c00365{left:393.333333pt;}
.x2_c00365{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_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_6aaf01cf309236bee8187954.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00366;src:url('chunks/assets/font_e1a502770c7de8047b0cc19b.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls16_c00366{letter-spacing:-1.080000px;}
.ls14_c00366{letter-spacing:-0.660000px;}
.ls11_c00366{letter-spacing:-0.540000px;}
.lsc_c00366{letter-spacing:-0.420000px;}
.lse_c00366{letter-spacing:-0.300000px;}
.ls10_c00366{letter-spacing:-0.180000px;}
.lsd_c00366{letter-spacing:0.000000px;}
.ls12_c00366{letter-spacing:0.060000px;}
.lsa_c00366{letter-spacing:0.114000px;}
.lsb_c00366{letter-spacing:0.120000px;}
.ls13_c00366{letter-spacing:0.180000px;}
.ls7_c00366{letter-spacing:0.300000px;}
.ls3_c00366{letter-spacing:0.420000px;}
.ls15_c00366{letter-spacing:0.480000px;}
.lsf_c00366{letter-spacing:0.660000px;}
.ls6_c00366{letter-spacing:0.840000px;}
.ls8_c00366{letter-spacing:2.022000px;}
.ls4_c00366{letter-spacing:2.040000px;}
.ls9_c00366{letter-spacing:3.234000px;}
.ls5_c00366{letter-spacing:3.240000px;}
.ls0_c00366{letter-spacing:4.440000px;}
.ls1_c00366{letter-spacing:6.840000px;}
.ls2_c00366{letter-spacing:33.240000px;}
.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;}
}
.ws4_c00366{word-spacing:-14.220000px;}
.ws6_c00366{word-spacing:-14.040000px;}
.ws8_c00366{word-spacing:-13.680000px;}
.ws0_c00366{word-spacing:-13.560000px;}
.ws7_c00366{word-spacing:-13.380000px;}
.ws3_c00366{word-spacing:-13.260000px;}
.ws1_c00366{word-spacing:-13.140000px;}
.ws2_c00366{word-spacing:-13.020000px;}
.ws5_c00366{word-spacing:-12.900000px;}
.ws1a_c00366{word-spacing:-0.660000px;}
.ws16_c00366{word-spacing:-0.540000px;}
.ws28_c00366{word-spacing:-0.300000px;}
.wsd_c00366{word-spacing:-0.120000px;}
.wsf_c00366{word-spacing:-0.060000px;}
.wsa_c00366{word-spacing:0.000000px;}
.ws9_c00366{word-spacing:0.060000px;}
.ws15_c00366{word-spacing:0.180000px;}
.ws18_c00366{word-spacing:0.300000px;}
.ws1b_c00366{word-spacing:0.420000px;}
.ws1f_c00366{word-spacing:0.540000px;}
.ws25_c00366{word-spacing:0.720000px;}
.ws27_c00366{word-spacing:0.780000px;}
.ws26_c00366{word-spacing:1.020000px;}
.ws1e_c00366{word-spacing:1.140000px;}
.wsc_c00366{word-spacing:1.380000px;}
.ws1c_c00366{word-spacing:1.920000px;}
.ws21_c00366{word-spacing:1.980000px;}
.wse_c00366{word-spacing:2.220000px;}
.wsb_c00366{word-spacing:2.340000px;}
.ws22_c00366{word-spacing:2.940000px;}
.ws2a_c00366{word-spacing:3.120000px;}
.ws23_c00366{word-spacing:3.180000px;}
.ws17_c00366{word-spacing:3.540000px;}
.ws24_c00366{word-spacing:3.780000px;}
.ws1d_c00366{word-spacing:4.140000px;}
.ws19_c00366{word-spacing:4.320000px;}
.ws10_c00366{word-spacing:4.740000px;}
.ws11_c00366{word-spacing:4.980000px;}
.ws20_c00366{word-spacing:5.940000px;}
.ws29_c00366{word-spacing:6.180000px;}
.ws14_c00366{word-spacing:7.140000px;}
.ws13_c00366{word-spacing:7.980000px;}
.ws12_c00366{word-spacing:8.340000px;}
._1_c00366{margin-left:-1.548000px;}
._0_c00366{width:1.380000px;}
._2_c00366{width:2.646000px;}
._3_c00366{width:4.500000px;}
._4_c00366{width:6.480000px;}
.fc1_c00366{color:rgb(0,0,0);}
.fc0_c00366{color:rgb(0,0,255);}
.fs1_c00366{font-size:54.000000px;}
.fs0_c00366{font-size:60.000000px;}
.y0_c00366{bottom:0.000000px;}
.y3_c00366{bottom:67.800000px;}
.y2_c00366{bottom:85.800000px;}
.y30_c00366{bottom:148.200000px;}
.y2f_c00366{bottom:170.100000px;}
.y2e_c00366{bottom:192.300000px;}
.y2d_c00366{bottom:214.200000px;}
.y2c_c00366{bottom:236.100000px;}
.y2b_c00366{bottom:258.000000px;}
.y2a_c00366{bottom:280.200000px;}
.y29_c00366{bottom:302.100000px;}
.y28_c00366{bottom:324.000000px;}
.y27_c00366{bottom:345.900000px;}
.y26_c00366{bottom:368.100000px;}
.y25_c00366{bottom:390.000000px;}
.y24_c00366{bottom:411.900000px;}
.y23_c00366{bottom:433.800000px;}
.y22_c00366{bottom:455.700000px;}
.y21_c00366{bottom:477.900000px;}
.y20_c00366{bottom:499.800000px;}
.y1f_c00366{bottom:521.700000px;}
.y1e_c00366{bottom:543.600000px;}
.y1d_c00366{bottom:565.800000px;}
.y1c_c00366{bottom:587.700000px;}
.y1b_c00366{bottom:609.600000px;}
.y1a_c00366{bottom:631.500000px;}
.y19_c00366{bottom:653.700000px;}
.y18_c00366{bottom:675.600000px;}
.y17_c00366{bottom:697.500000px;}
.y16_c00366{bottom:719.400000px;}
.y15_c00366{bottom:741.600000px;}
.y14_c00366{bottom:763.500000px;}
.y13_c00366{bottom:785.400000px;}
.y12_c00366{bottom:807.300000px;}
.y11_c00366{bottom:835.500000px;}
.y10_c00366{bottom:857.400000px;}
.yf_c00366{bottom:879.300000px;}
.ye_c00366{bottom:901.200000px;}
.yd_c00366{bottom:923.400000px;}
.yc_c00366{bottom:945.300000px;}
.yb_c00366{bottom:967.200000px;}
.ya_c00366{bottom:989.100000px;}
.y9_c00366{bottom:1011.300000px;}
.y8_c00366{bottom:1033.200000px;}
.y7_c00366{bottom:1055.100000px;}
.y6_c00366{bottom:1077.000000px;}
.y5_c00366{bottom:1099.200000px;}
.y4_c00366{bottom:1121.100000px;}
.y1_c00366{bottom:1163.700000px;}
.h2_c00366{height:38.759766px;}
.h3_c00366{height:43.066406px;}
.h1_c00366{height:43.564453px;}
.h0_c00366{height:1263.000000px;}
.w0_c00366{width:893.100000px;}
.w1_c00366{width:893.250000px;}
.x0_c00366{left:0.000000px;}
.x1_c00366{left:84.900000px;}
.x4_c00366{left:99.900000px;}
.x3_c00366{left:442.500000px;}
.x2_c00366{left:446.400000px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls16_c00366{letter-spacing:-0.960000pt;}
.ls14_c00366{letter-spacing:-0.586667pt;}
.ls11_c00366{letter-spacing:-0.480000pt;}
.lsc_c00366{letter-spacing:-0.373333pt;}
.lse_c00366{letter-spacing:-0.266667pt;}
.ls10_c00366{letter-spacing:-0.160000pt;}
.lsd_c00366{letter-spacing:0.000000pt;}
.ls12_c00366{letter-spacing:0.053333pt;}
.lsa_c00366{letter-spacing:0.101333pt;}
.lsb_c00366{letter-spacing:0.106667pt;}
.ls13_c00366{letter-spacing:0.160000pt;}
.ls7_c00366{letter-spacing:0.266667pt;}
.ls3_c00366{letter-spacing:0.373333pt;}
.ls15_c00366{letter-spacing:0.426667pt;}
.lsf_c00366{letter-spacing:0.586667pt;}
.ls6_c00366{letter-spacing:0.746667pt;}
.ls8_c00366{letter-spacing:1.797333pt;}
.ls4_c00366{letter-spacing:1.813333pt;}
.ls9_c00366{letter-spacing:2.874667pt;}
.ls5_c00366{letter-spacing:2.880000pt;}
.ls0_c00366{letter-spacing:3.946667pt;}
.ls1_c00366{letter-spacing:6.080000pt;}
.ls2_c00366{letter-spacing:29.546667pt;}
.ws4_c00366{word-spacing:-12.640000pt;}
.ws6_c00366{word-spacing:-12.480000pt;}
.ws8_c00366{word-spacing:-12.160000pt;}
.ws0_c00366{word-spacing:-12.053333pt;}
.ws7_c00366{word-spacing:-11.893333pt;}
.ws3_c00366{word-spacing:-11.786667pt;}
.ws1_c00366{word-spacing:-11.680000pt;}
.ws2_c00366{word-spacing:-11.573333pt;}
.ws5_c00366{word-spacing:-11.466667pt;}
.ws1a_c00366{word-spacing:-0.586667pt;}
.ws16_c00366{word-spacing:-0.480000pt;}
.ws28_c00366{word-spacing:-0.266667pt;}
.wsd_c00366{word-spacing:-0.106667pt;}
.wsf_c00366{word-spacing:-0.053333pt;}
.wsa_c00366{word-spacing:0.000000pt;}
.ws9_c00366{word-spacing:0.053333pt;}
.ws15_c00366{word-spacing:0.160000pt;}
.ws18_c00366{word-spacing:0.266667pt;}
.ws1b_c00366{word-spacing:0.373333pt;}
.ws1f_c00366{word-spacing:0.480000pt;}
.ws25_c00366{word-spacing:0.640000pt;}
.ws27_c00366{word-spacing:0.693333pt;}
.ws26_c00366{word-spacing:0.906667pt;}
.ws1e_c00366{word-spacing:1.013333pt;}
.wsc_c00366{word-spacing:1.226667pt;}
.ws1c_c00366{word-spacing:1.706667pt;}
.ws21_c00366{word-spacing:1.760000pt;}
.wse_c00366{word-spacing:1.973333pt;}
.wsb_c00366{word-spacing:2.080000pt;}
.ws22_c00366{word-spacing:2.613333pt;}
.ws2a_c00366{word-spacing:2.773333pt;}
.ws23_c00366{word-spacing:2.826667pt;}
.ws17_c00366{word-spacing:3.146667pt;}
.ws24_c00366{word-spacing:3.360000pt;}
.ws1d_c00366{word-spacing:3.680000pt;}
.ws19_c00366{word-spacing:3.840000pt;}
.ws10_c00366{word-spacing:4.213333pt;}
.ws11_c00366{word-spacing:4.426667pt;}
.ws20_c00366{word-spacing:5.280000pt;}
.ws29_c00366{word-spacing:5.493333pt;}
.ws14_c00366{word-spacing:6.346667pt;}
.ws13_c00366{word-spacing:7.093333pt;}
.ws12_c00366{word-spacing:7.413333pt;}
._1_c00366{margin-left:-1.376000pt;}
._0_c00366{width:1.226667pt;}
._2_c00366{width:2.352000pt;}
._3_c00366{width:4.000000pt;}
._4_c00366{width:5.760000pt;}
.fs1_c00366{font-size:48.000000pt;}
.fs0_c00366{font-size:53.333333pt;}
.y0_c00366{bottom:0.000000pt;}
.y3_c00366{bottom:60.266667pt;}
.y2_c00366{bottom:76.266667pt;}
.y30_c00366{bottom:131.733333pt;}
.y2f_c00366{bottom:151.200000pt;}
.y2e_c00366{bottom:170.933333pt;}
.y2d_c00366{bottom:190.400000pt;}
.y2c_c00366{bottom:209.866667pt;}
.y2b_c00366{bottom:229.333333pt;}
.y2a_c00366{bottom:249.066667pt;}
.y29_c00366{bottom:268.533333pt;}
.y28_c00366{bottom:288.000000pt;}
.y27_c00366{bottom:307.466667pt;}
.y26_c00366{bottom:327.200000pt;}
.y25_c00366{bottom:346.666667pt;}
.y24_c00366{bottom:366.133333pt;}
.y23_c00366{bottom:385.600000pt;}
.y22_c00366{bottom:405.066667pt;}
.y21_c00366{bottom:424.800000pt;}
.y20_c00366{bottom:444.266667pt;}
.y1f_c00366{bottom:463.733333pt;}
.y1e_c00366{bottom:483.200000pt;}
.y1d_c00366{bottom:502.933333pt;}
.y1c_c00366{bottom:522.400000pt;}
.y1b_c00366{bottom:541.866667pt;}
.y1a_c00366{bottom:561.333333pt;}
.y19_c00366{bottom:581.066667pt;}
.y18_c00366{bottom:600.533333pt;}
.y17_c00366{bottom:620.000000pt;}
.y16_c00366{bottom:639.466667pt;}
.y15_c00366{bottom:659.200000pt;}
.y14_c00366{bottom:678.666667pt;}
.y13_c00366{bottom:698.133333pt;}
.y12_c00366{bottom:717.600000pt;}
.y11_c00366{bottom:742.666667pt;}
.y10_c00366{bottom:762.133333pt;}
.yf_c00366{bottom:781.600000pt;}
.ye_c00366{bottom:801.066667pt;}
.yd_c00366{bottom:820.800000pt;}
.yc_c00366{bottom:840.266667pt;}
.yb_c00366{bottom:859.733333pt;}
.ya_c00366{bottom:879.200000pt;}
.y9_c00366{bottom:898.933333pt;}
.y8_c00366{bottom:918.400000pt;}
.y7_c00366{bottom:937.866667pt;}
.y6_c00366{bottom:957.333333pt;}
.y5_c00366{bottom:977.066667pt;}
.y4_c00366{bottom:996.533333pt;}
.y1_c00366{bottom:1034.400000pt;}
.h2_c00366{height:34.453125pt;}
.h3_c00366{height:38.281250pt;}
.h1_c00366{height:38.723958pt;}
.h0_c00366{height:1122.666667pt;}
.w0_c00366{width:793.866667pt;}
.w1_c00366{width:794.000000pt;}
.x0_c00366{left:0.000000pt;}
.x1_c00366{left:75.466667pt;}
.x4_c00366{left:88.800000pt;}
.x3_c00366{left:393.333333pt;}
.x2_c00366{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_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_f16ae5772e3f2e8f1a4b8d8d.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00367;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00367;src:url('chunks/assets/font_9ae1fb41ac41165d8b63958f.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lse_c00367{letter-spacing:-0.540000px;}
.lsd_c00367{letter-spacing:-0.480000px;}
.ls10_c00367{letter-spacing:-0.420000px;}
.ls8_c00367{letter-spacing:-0.360000px;}
.lsb_c00367{letter-spacing:-0.300000px;}
.lsa_c00367{letter-spacing:-0.180000px;}
.ls9_c00367{letter-spacing:0.000000px;}
.ls2_c00367{letter-spacing:0.060000px;}
.lsf_c00367{letter-spacing:0.120000px;}
.ls13_c00367{letter-spacing:0.180000px;}
.lsc_c00367{letter-spacing:0.300000px;}
.ls1_c00367{letter-spacing:0.480000px;}
.ls12_c00367{letter-spacing:0.540000px;}
.ls11_c00367{letter-spacing:0.720000px;}
.ls4_c00367{letter-spacing:0.834000px;}
.ls0_c00367{letter-spacing:0.840000px;}
.ls5_c00367{letter-spacing:2.040000px;}
.ls3_c00367{letter-spacing:3.240000px;}
.ls6_c00367{letter-spacing:4.440000px;}
.ls7_c00367{letter-spacing:33.240000px;}
.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;}
}
.ws6_c00367{word-spacing:-14.040000px;}
.ws4_c00367{word-spacing:-13.680000px;}
.ws0_c00367{word-spacing:-13.560000px;}
.ws1_c00367{word-spacing:-13.380000px;}
.ws3_c00367{word-spacing:-13.260000px;}
.ws5_c00367{word-spacing:-13.140000px;}
.ws2_c00367{word-spacing:-13.020000px;}
.ws19_c00367{word-spacing:-0.720000px;}
.wse_c00367{word-spacing:-0.660000px;}
.ws1d_c00367{word-spacing:-0.480000px;}
.ws8_c00367{word-spacing:-0.180000px;}
.wsb_c00367{word-spacing:-0.060000px;}
.ws7_c00367{word-spacing:0.000000px;}
.ws1a_c00367{word-spacing:0.300000px;}
.ws12_c00367{word-spacing:0.360000px;}
.ws18_c00367{word-spacing:0.780000px;}
.wsa_c00367{word-spacing:1.140000px;}
.ws15_c00367{word-spacing:1.920000px;}
.ws14_c00367{word-spacing:2.340000px;}
.ws16_c00367{word-spacing:3.120000px;}
.ws10_c00367{word-spacing:3.540000px;}
.ws11_c00367{word-spacing:3.780000px;}
.wsd_c00367{word-spacing:3.960000px;}
.ws1b_c00367{word-spacing:4.320000px;}
.ws17_c00367{word-spacing:4.380000px;}
.wsc_c00367{word-spacing:4.740000px;}
.ws1c_c00367{word-spacing:4.980000px;}
.ws13_c00367{word-spacing:5.940000px;}
.ws9_c00367{word-spacing:8.340000px;}
.wsf_c00367{word-spacing:8.520000px;}
._4_c00367{margin-left:-2.358000px;}
._1_c00367{margin-left:-1.194000px;}
._0_c00367{width:1.380000px;}
._2_c00367{width:2.406000px;}
._3_c00367{width:3.900000px;}
.fc1_c00367{color:rgb(0,0,0);}
.fc0_c00367{color:rgb(0,0,255);}
.fs1_c00367{font-size:54.000000px;}
.fs0_c00367{font-size:60.000000px;}
.y0_c00367{bottom:0.000000px;}
.y3_c00367{bottom:71.400000px;}
.y2_c00367{bottom:88.800000px;}
.y30_c00367{bottom:148.200000px;}
.y2f_c00367{bottom:170.100000px;}
.y2e_c00367{bottom:192.300000px;}
.y2d_c00367{bottom:214.200000px;}
.y2c_c00367{bottom:236.100000px;}
.y2b_c00367{bottom:258.000000px;}
.y2a_c00367{bottom:280.200000px;}
.y29_c00367{bottom:302.100000px;}
.y28_c00367{bottom:324.000000px;}
.y27_c00367{bottom:345.900000px;}
.y26_c00367{bottom:368.100000px;}
.y25_c00367{bottom:396.000000px;}
.y24_c00367{bottom:417.900000px;}
.y23_c00367{bottom:439.800000px;}
.y22_c00367{bottom:461.700000px;}
.y21_c00367{bottom:483.900000px;}
.y20_c00367{bottom:505.800000px;}
.y1f_c00367{bottom:527.700000px;}
.y1e_c00367{bottom:549.600000px;}
.y1d_c00367{bottom:571.800000px;}
.y1c_c00367{bottom:593.700000px;}
.y1b_c00367{bottom:615.600000px;}
.y1a_c00367{bottom:637.500000px;}
.y19_c00367{bottom:659.700000px;}
.y18_c00367{bottom:681.600000px;}
.y17_c00367{bottom:703.500000px;}
.y16_c00367{bottom:725.400000px;}
.y15_c00367{bottom:747.600000px;}
.y14_c00367{bottom:769.500000px;}
.y13_c00367{bottom:791.400000px;}
.y12_c00367{bottom:813.300000px;}
.y11_c00367{bottom:835.500000px;}
.y10_c00367{bottom:857.400000px;}
.yf_c00367{bottom:879.300000px;}
.ye_c00367{bottom:901.200000px;}
.yd_c00367{bottom:923.400000px;}
.yc_c00367{bottom:945.300000px;}
.yb_c00367{bottom:967.200000px;}
.ya_c00367{bottom:989.100000px;}
.y9_c00367{bottom:1011.300000px;}
.y8_c00367{bottom:1033.200000px;}
.y7_c00367{bottom:1055.100000px;}
.y6_c00367{bottom:1077.000000px;}
.y5_c00367{bottom:1099.200000px;}
.y4_c00367{bottom:1121.100000px;}
.y1_c00367{bottom:1163.700000px;}
.h2_c00367{height:35.991211px;}
.h3_c00367{height:43.066406px;}
.h1_c00367{height:43.564453px;}
.h0_c00367{height:1263.000000px;}
.w0_c00367{width:893.100000px;}
.w1_c00367{width:893.250000px;}
.x0_c00367{left:0.000000px;}
.x1_c00367{left:84.900000px;}
.x4_c00367{left:99.900000px;}
.x3_c00367{left:442.500000px;}
.x2_c00367{left:446.400000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.lse_c00367{letter-spacing:-0.480000pt;}
.lsd_c00367{letter-spacing:-0.426667pt;}
.ls10_c00367{letter-spacing:-0.373333pt;}
.ls8_c00367{letter-spacing:-0.320000pt;}
.lsb_c00367{letter-spacing:-0.266667pt;}
.lsa_c00367{letter-spacing:-0.160000pt;}
.ls9_c00367{letter-spacing:0.000000pt;}
.ls2_c00367{letter-spacing:0.053333pt;}
.lsf_c00367{letter-spacing:0.106667pt;}
.ls13_c00367{letter-spacing:0.160000pt;}
.lsc_c00367{letter-spacing:0.266667pt;}
.ls1_c00367{letter-spacing:0.426667pt;}
.ls12_c00367{letter-spacing:0.480000pt;}
.ls11_c00367{letter-spacing:0.640000pt;}
.ls4_c00367{letter-spacing:0.741333pt;}
.ls0_c00367{letter-spacing:0.746667pt;}
.ls5_c00367{letter-spacing:1.813333pt;}
.ls3_c00367{letter-spacing:2.880000pt;}
.ls6_c00367{letter-spacing:3.946667pt;}
.ls7_c00367{letter-spacing:29.546667pt;}
.ws6_c00367{word-spacing:-12.480000pt;}
.ws4_c00367{word-spacing:-12.160000pt;}
.ws0_c00367{word-spacing:-12.053333pt;}
.ws1_c00367{word-spacing:-11.893333pt;}
.ws3_c00367{word-spacing:-11.786667pt;}
.ws5_c00367{word-spacing:-11.680000pt;}
.ws2_c00367{word-spacing:-11.573333pt;}
.ws19_c00367{word-spacing:-0.640000pt;}
.wse_c00367{word-spacing:-0.586667pt;}
.ws1d_c00367{word-spacing:-0.426667pt;}
.ws8_c00367{word-spacing:-0.160000pt;}
.wsb_c00367{word-spacing:-0.053333pt;}
.ws7_c00367{word-spacing:0.000000pt;}
.ws1a_c00367{word-spacing:0.266667pt;}
.ws12_c00367{word-spacing:0.320000pt;}
.ws18_c00367{word-spacing:0.693333pt;}
.wsa_c00367{word-spacing:1.013333pt;}
.ws15_c00367{word-spacing:1.706667pt;}
.ws14_c00367{word-spacing:2.080000pt;}
.ws16_c00367{word-spacing:2.773333pt;}
.ws10_c00367{word-spacing:3.146667pt;}
.ws11_c00367{word-spacing:3.360000pt;}
.wsd_c00367{word-spacing:3.520000pt;}
.ws1b_c00367{word-spacing:3.840000pt;}
.ws17_c00367{word-spacing:3.893333pt;}
.wsc_c00367{word-spacing:4.213333pt;}
.ws1c_c00367{word-spacing:4.426667pt;}
.ws13_c00367{word-spacing:5.280000pt;}
.ws9_c00367{word-spacing:7.413333pt;}
.wsf_c00367{word-spacing:7.573333pt;}
._4_c00367{margin-left:-2.096000pt;}
._1_c00367{margin-left:-1.061333pt;}
._0_c00367{width:1.226667pt;}
._2_c00367{width:2.138667pt;}
._3_c00367{width:3.466667pt;}
.fs1_c00367{font-size:48.000000pt;}
.fs0_c00367{font-size:53.333333pt;}
.y0_c00367{bottom:0.000000pt;}
.y3_c00367{bottom:63.466667pt;}
.y2_c00367{bottom:78.933333pt;}
.y30_c00367{bottom:131.733333pt;}
.y2f_c00367{bottom:151.200000pt;}
.y2e_c00367{bottom:170.933333pt;}
.y2d_c00367{bottom:190.400000pt;}
.y2c_c00367{bottom:209.866667pt;}
.y2b_c00367{bottom:229.333333pt;}
.y2a_c00367{bottom:249.066667pt;}
.y29_c00367{bottom:268.533333pt;}
.y28_c00367{bottom:288.000000pt;}
.y27_c00367{bottom:307.466667pt;}
.y26_c00367{bottom:327.200000pt;}
.y25_c00367{bottom:352.000000pt;}
.y24_c00367{bottom:371.466667pt;}
.y23_c00367{bottom:390.933333pt;}
.y22_c00367{bottom:410.400000pt;}
.y21_c00367{bottom:430.133333pt;}
.y20_c00367{bottom:449.600000pt;}
.y1f_c00367{bottom:469.066667pt;}
.y1e_c00367{bottom:488.533333pt;}
.y1d_c00367{bottom:508.266667pt;}
.y1c_c00367{bottom:527.733333pt;}
.y1b_c00367{bottom:547.200000pt;}
.y1a_c00367{bottom:566.666667pt;}
.y19_c00367{bottom:586.400000pt;}
.y18_c00367{bottom:605.866667pt;}
.y17_c00367{bottom:625.333333pt;}
.y16_c00367{bottom:644.800000pt;}
.y15_c00367{bottom:664.533333pt;}
.y14_c00367{bottom:684.000000pt;}
.y13_c00367{bottom:703.466667pt;}
.y12_c00367{bottom:722.933333pt;}
.y11_c00367{bottom:742.666667pt;}
.y10_c00367{bottom:762.133333pt;}
.yf_c00367{bottom:781.600000pt;}
.ye_c00367{bottom:801.066667pt;}
.yd_c00367{bottom:820.800000pt;}
.yc_c00367{bottom:840.266667pt;}
.yb_c00367{bottom:859.733333pt;}
.ya_c00367{bottom:879.200000pt;}
.y9_c00367{bottom:898.933333pt;}
.y8_c00367{bottom:918.400000pt;}
.y7_c00367{bottom:937.866667pt;}
.y6_c00367{bottom:957.333333pt;}
.y5_c00367{bottom:977.066667pt;}
.y4_c00367{bottom:996.533333pt;}
.y1_c00367{bottom:1034.400000pt;}
.h2_c00367{height:31.992188pt;}
.h3_c00367{height:38.281250pt;}
.h1_c00367{height:38.723958pt;}
.h0_c00367{height:1122.666667pt;}
.w0_c00367{width:793.866667pt;}
.w1_c00367{width:794.000000pt;}
.x0_c00367{left:0.000000pt;}
.x1_c00367{left:75.466667pt;}
.x4_c00367{left:88.800000pt;}
.x3_c00367{left:393.333333pt;}
.x2_c00367{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_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_408f542f4fa0712da6bc772a.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00368;src:url('chunks/assets/font_5990c63278b634890be58eb9.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsf_c00368{letter-spacing:-0.540000px;}
.ls8_c00368{letter-spacing:-0.420000px;}
.lsa_c00368{letter-spacing:-0.360000px;}
.lsb_c00368{letter-spacing:-0.300000px;}
.lsd_c00368{letter-spacing:-0.180000px;}
.ls9_c00368{letter-spacing:0.000000px;}
.ls12_c00368{letter-spacing:0.060000px;}
.lsc_c00368{letter-spacing:0.120000px;}
.ls10_c00368{letter-spacing:0.300000px;}
.ls6_c00368{letter-spacing:0.480000px;}
.lse_c00368{letter-spacing:0.540000px;}
.ls11_c00368{letter-spacing:0.660000px;}
.ls2_c00368{letter-spacing:0.840000px;}
.ls7_c00368{letter-spacing:2.034000px;}
.ls5_c00368{letter-spacing:2.040000px;}
.ls3_c00368{letter-spacing:3.240000px;}
.ls1_c00368{letter-spacing:4.440000px;}
.ls4_c00368{letter-spacing:5.640000px;}
.ls0_c00368{letter-spacing:33.240000px;}
.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;}
}
.ws4_c00368{word-spacing:-14.100000px;}
.ws6_c00368{word-spacing:-14.040000px;}
.ws2_c00368{word-spacing:-13.680000px;}
.ws7_c00368{word-spacing:-13.620000px;}
.ws0_c00368{word-spacing:-13.560000px;}
.ws5_c00368{word-spacing:-13.380000px;}
.ws3_c00368{word-spacing:-13.260000px;}
.ws1_c00368{word-spacing:-13.140000px;}
.ws2a_c00368{word-spacing:-0.840000px;}
.ws17_c00368{word-spacing:-0.660000px;}
.ws20_c00368{word-spacing:-0.480000px;}
.wsc_c00368{word-spacing:-0.120000px;}
.ws16_c00368{word-spacing:-0.060000px;}
.ws9_c00368{word-spacing:0.000000px;}
.ws8_c00368{word-spacing:0.060000px;}
.ws1b_c00368{word-spacing:0.180000px;}
.wsd_c00368{word-spacing:0.420000px;}
.ws28_c00368{word-spacing:0.540000px;}
.ws24_c00368{word-spacing:0.720000px;}
.ws1c_c00368{word-spacing:1.140000px;}
.ws1a_c00368{word-spacing:1.260000px;}
.ws29_c00368{word-spacing:1.740000px;}
.ws21_c00368{word-spacing:2.340000px;}
.ws23_c00368{word-spacing:2.460000px;}
.ws22_c00368{word-spacing:2.580000px;}
.ws1e_c00368{word-spacing:2.940000px;}
.ws10_c00368{word-spacing:3.120000px;}
.ws25_c00368{word-spacing:3.180000px;}
.ws12_c00368{word-spacing:3.420000px;}
.wsf_c00368{word-spacing:3.540000px;}
.ws11_c00368{word-spacing:3.660000px;}
.ws13_c00368{word-spacing:4.620000px;}
.ws14_c00368{word-spacing:4.740000px;}
.wse_c00368{word-spacing:4.860000px;}
.ws15_c00368{word-spacing:4.980000px;}
.ws26_c00368{word-spacing:5.340000px;}
.ws27_c00368{word-spacing:5.580000px;}
.wsa_c00368{word-spacing:5.940000px;}
.wsb_c00368{word-spacing:6.060000px;}
.ws1d_c00368{word-spacing:7.140000px;}
.ws1f_c00368{word-spacing:7.380000px;}
.ws18_c00368{word-spacing:8.940000px;}
.ws19_c00368{word-spacing:9.540000px;}
._4_c00368{margin-left:-2.364000px;}
._3_c00368{margin-left:-1.014000px;}
._0_c00368{width:1.380000px;}
._2_c00368{width:2.412000px;}
._6_c00368{width:3.420000px;}
._1_c00368{width:5.280000px;}
._5_c00368{width:9.534000px;}
.fc1_c00368{color:rgb(0,0,0);}
.fc0_c00368{color:rgb(0,0,255);}
.fs1_c00368{font-size:54.000000px;}
.fs0_c00368{font-size:60.000000px;}
.y0_c00368{bottom:0.000000px;}
.y3_c00368{bottom:67.800000px;}
.y2_c00368{bottom:85.800000px;}
.y30_c00368{bottom:148.200000px;}
.y2f_c00368{bottom:170.100000px;}
.y2e_c00368{bottom:192.300000px;}
.y2d_c00368{bottom:214.200000px;}
.y2c_c00368{bottom:236.100000px;}
.y2b_c00368{bottom:258.000000px;}
.y2a_c00368{bottom:280.200000px;}
.y29_c00368{bottom:302.100000px;}
.y28_c00368{bottom:324.000000px;}
.y27_c00368{bottom:345.900000px;}
.y26_c00368{bottom:368.100000px;}
.y25_c00368{bottom:390.000000px;}
.y24_c00368{bottom:411.900000px;}
.y23_c00368{bottom:433.800000px;}
.y22_c00368{bottom:455.700000px;}
.y21_c00368{bottom:477.900000px;}
.y20_c00368{bottom:499.800000px;}
.y1f_c00368{bottom:521.700000px;}
.y1e_c00368{bottom:543.600000px;}
.y1d_c00368{bottom:565.800000px;}
.y1c_c00368{bottom:587.700000px;}
.y1b_c00368{bottom:609.600000px;}
.y1a_c00368{bottom:631.500000px;}
.y19_c00368{bottom:653.700000px;}
.y18_c00368{bottom:675.600000px;}
.y17_c00368{bottom:697.500000px;}
.y16_c00368{bottom:719.400000px;}
.y15_c00368{bottom:741.600000px;}
.y14_c00368{bottom:763.500000px;}
.y13_c00368{bottom:785.400000px;}
.y12_c00368{bottom:807.300000px;}
.y11_c00368{bottom:829.500000px;}
.y10_c00368{bottom:851.400000px;}
.yf_c00368{bottom:873.300000px;}
.ye_c00368{bottom:895.200000px;}
.yd_c00368{bottom:917.400000px;}
.yc_c00368{bottom:939.300000px;}
.yb_c00368{bottom:961.200000px;}
.ya_c00368{bottom:983.100000px;}
.y9_c00368{bottom:1005.300000px;}
.y8_c00368{bottom:1027.200000px;}
.y7_c00368{bottom:1049.100000px;}
.y6_c00368{bottom:1071.000000px;}
.y5_c00368{bottom:1093.200000px;}
.y4_c00368{bottom:1121.100000px;}
.y1_c00368{bottom:1163.700000px;}
.h2_c00368{height:38.759766px;}
.h3_c00368{height:43.066406px;}
.h1_c00368{height:43.564453px;}
.h0_c00368{height:1263.000000px;}
.w0_c00368{width:893.100000px;}
.w1_c00368{width:893.250000px;}
.x0_c00368{left:0.000000px;}
.x1_c00368{left:84.900000px;}
.x4_c00368{left:99.900000px;}
.x3_c00368{left:442.500000px;}
.x2_c00368{left:446.400000px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.lsf_c00368{letter-spacing:-0.480000pt;}
.ls8_c00368{letter-spacing:-0.373333pt;}
.lsa_c00368{letter-spacing:-0.320000pt;}
.lsb_c00368{letter-spacing:-0.266667pt;}
.lsd_c00368{letter-spacing:-0.160000pt;}
.ls9_c00368{letter-spacing:0.000000pt;}
.ls12_c00368{letter-spacing:0.053333pt;}
.lsc_c00368{letter-spacing:0.106667pt;}
.ls10_c00368{letter-spacing:0.266667pt;}
.ls6_c00368{letter-spacing:0.426667pt;}
.lse_c00368{letter-spacing:0.480000pt;}
.ls11_c00368{letter-spacing:0.586667pt;}
.ls2_c00368{letter-spacing:0.746667pt;}
.ls7_c00368{letter-spacing:1.808000pt;}
.ls5_c00368{letter-spacing:1.813333pt;}
.ls3_c00368{letter-spacing:2.880000pt;}
.ls1_c00368{letter-spacing:3.946667pt;}
.ls4_c00368{letter-spacing:5.013333pt;}
.ls0_c00368{letter-spacing:29.546667pt;}
.ws4_c00368{word-spacing:-12.533333pt;}
.ws6_c00368{word-spacing:-12.480000pt;}
.ws2_c00368{word-spacing:-12.160000pt;}
.ws7_c00368{word-spacing:-12.106667pt;}
.ws0_c00368{word-spacing:-12.053333pt;}
.ws5_c00368{word-spacing:-11.893333pt;}
.ws3_c00368{word-spacing:-11.786667pt;}
.ws1_c00368{word-spacing:-11.680000pt;}
.ws2a_c00368{word-spacing:-0.746667pt;}
.ws17_c00368{word-spacing:-0.586667pt;}
.ws20_c00368{word-spacing:-0.426667pt;}
.wsc_c00368{word-spacing:-0.106667pt;}
.ws16_c00368{word-spacing:-0.053333pt;}
.ws9_c00368{word-spacing:0.000000pt;}
.ws8_c00368{word-spacing:0.053333pt;}
.ws1b_c00368{word-spacing:0.160000pt;}
.wsd_c00368{word-spacing:0.373333pt;}
.ws28_c00368{word-spacing:0.480000pt;}
.ws24_c00368{word-spacing:0.640000pt;}
.ws1c_c00368{word-spacing:1.013333pt;}
.ws1a_c00368{word-spacing:1.120000pt;}
.ws29_c00368{word-spacing:1.546667pt;}
.ws21_c00368{word-spacing:2.080000pt;}
.ws23_c00368{word-spacing:2.186667pt;}
.ws22_c00368{word-spacing:2.293333pt;}
.ws1e_c00368{word-spacing:2.613333pt;}
.ws10_c00368{word-spacing:2.773333pt;}
.ws25_c00368{word-spacing:2.826667pt;}
.ws12_c00368{word-spacing:3.040000pt;}
.wsf_c00368{word-spacing:3.146667pt;}
.ws11_c00368{word-spacing:3.253333pt;}
.ws13_c00368{word-spacing:4.106667pt;}
.ws14_c00368{word-spacing:4.213333pt;}
.wse_c00368{word-spacing:4.320000pt;}
.ws15_c00368{word-spacing:4.426667pt;}
.ws26_c00368{word-spacing:4.746667pt;}
.ws27_c00368{word-spacing:4.960000pt;}
.wsa_c00368{word-spacing:5.280000pt;}
.wsb_c00368{word-spacing:5.386667pt;}
.ws1d_c00368{word-spacing:6.346667pt;}
.ws1f_c00368{word-spacing:6.560000pt;}
.ws18_c00368{word-spacing:7.946667pt;}
.ws19_c00368{word-spacing:8.480000pt;}
._4_c00368{margin-left:-2.101333pt;}
._3_c00368{margin-left:-0.901333pt;}
._0_c00368{width:1.226667pt;}
._2_c00368{width:2.144000pt;}
._6_c00368{width:3.040000pt;}
._1_c00368{width:4.693333pt;}
._5_c00368{width:8.474667pt;}
.fs1_c00368{font-size:48.000000pt;}
.fs0_c00368{font-size:53.333333pt;}
.y0_c00368{bottom:0.000000pt;}
.y3_c00368{bottom:60.266667pt;}
.y2_c00368{bottom:76.266667pt;}
.y30_c00368{bottom:131.733333pt;}
.y2f_c00368{bottom:151.200000pt;}
.y2e_c00368{bottom:170.933333pt;}
.y2d_c00368{bottom:190.400000pt;}
.y2c_c00368{bottom:209.866667pt;}
.y2b_c00368{bottom:229.333333pt;}
.y2a_c00368{bottom:249.066667pt;}
.y29_c00368{bottom:268.533333pt;}
.y28_c00368{bottom:288.000000pt;}
.y27_c00368{bottom:307.466667pt;}
.y26_c00368{bottom:327.200000pt;}
.y25_c00368{bottom:346.666667pt;}
.y24_c00368{bottom:366.133333pt;}
.y23_c00368{bottom:385.600000pt;}
.y22_c00368{bottom:405.066667pt;}
.y21_c00368{bottom:424.800000pt;}
.y20_c00368{bottom:444.266667pt;}
.y1f_c00368{bottom:463.733333pt;}
.y1e_c00368{bottom:483.200000pt;}
.y1d_c00368{bottom:502.933333pt;}
.y1c_c00368{bottom:522.400000pt;}
.y1b_c00368{bottom:541.866667pt;}
.y1a_c00368{bottom:561.333333pt;}
.y19_c00368{bottom:581.066667pt;}
.y18_c00368{bottom:600.533333pt;}
.y17_c00368{bottom:620.000000pt;}
.y16_c00368{bottom:639.466667pt;}
.y15_c00368{bottom:659.200000pt;}
.y14_c00368{bottom:678.666667pt;}
.y13_c00368{bottom:698.133333pt;}
.y12_c00368{bottom:717.600000pt;}
.y11_c00368{bottom:737.333333pt;}
.y10_c00368{bottom:756.800000pt;}
.yf_c00368{bottom:776.266667pt;}
.ye_c00368{bottom:795.733333pt;}
.yd_c00368{bottom:815.466667pt;}
.yc_c00368{bottom:834.933333pt;}
.yb_c00368{bottom:854.400000pt;}
.ya_c00368{bottom:873.866667pt;}
.y9_c00368{bottom:893.600000pt;}
.y8_c00368{bottom:913.066667pt;}
.y7_c00368{bottom:932.533333pt;}
.y6_c00368{bottom:952.000000pt;}
.y5_c00368{bottom:971.733333pt;}
.y4_c00368{bottom:996.533333pt;}
.y1_c00368{bottom:1034.400000pt;}
.h2_c00368{height:34.453125pt;}
.h3_c00368{height:38.281250pt;}
.h1_c00368{height:38.723958pt;}
.h0_c00368{height:1122.666667pt;}
.w0_c00368{width:793.866667pt;}
.w1_c00368{width:794.000000pt;}
.x0_c00368{left:0.000000pt;}
.x1_c00368{left:75.466667pt;}
.x4_c00368{left:88.800000pt;}
.x3_c00368{left:393.333333pt;}
.x2_c00368{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_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_8346ba304ec6d97e2a8c7d23.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00369;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00369;src:url('chunks/assets/font_67d751dc3d998e0b38e10de8.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00369;src:url('chunks/assets/font_81061b10d99d5cbfd7ec05ad.woff2')format("woff");}.ff4_c00369{font-family:ff4_c00369;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00369;src:url('chunks/assets/font_4988024c6b3964cf0533a838.woff2')format("woff");}.ff5_c00369{font-family:ff5_c00369;line-height:0.938965;font-style: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;}
.ls12_c00369{letter-spacing:-0.540000px;}
.lsc_c00369{letter-spacing:-0.504000px;}
.lse_c00369{letter-spacing:-0.420000px;}
.ls9_c00369{letter-spacing:-0.360000px;}
.lsf_c00369{letter-spacing:-0.300000px;}
.ls16_c00369{letter-spacing:-0.252000px;}
.lsd_c00369{letter-spacing:-0.216000px;}
.lsb_c00369{letter-spacing:-0.180000px;}
.lsa_c00369{letter-spacing:0.000000px;}
.ls3_c00369{letter-spacing:0.060000px;}
.ls10_c00369{letter-spacing:0.120000px;}
.ls13_c00369{letter-spacing:0.288000px;}
.ls14_c00369{letter-spacing:0.300000px;}
.ls15_c00369{letter-spacing:0.360000px;}
.ls1_c00369{letter-spacing:0.504000px;}
.ls17_c00369{letter-spacing:0.540000px;}
.ls11_c00369{letter-spacing:0.660000px;}
.ls6_c00369{letter-spacing:0.840000px;}
.ls2_c00369{letter-spacing:3.240000px;}
.ls5_c00369{letter-spacing:4.440000px;}
.ls4_c00369{letter-spacing:5.640000px;}
.ls7_c00369{letter-spacing:6.828000px;}
.ls8_c00369{letter-spacing:45.720000px;}
.ls0_c00369{letter-spacing:61.704000px;}
.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:-15.768000px;}
.ws0_c00369{word-spacing:-13.560000px;}
.ws2_c00369{word-spacing:-13.260000px;}
.ws3_c00369{word-spacing:-13.140000px;}
.ws4_c00369{word-spacing:-13.020000px;}
.ws1e_c00369{word-spacing:-1.020000px;}
.ws1f_c00369{word-spacing:-0.900000px;}
.ws1c_c00369{word-spacing:-0.720000px;}
.ws19_c00369{word-spacing:-0.660000px;}
.wsd_c00369{word-spacing:-0.480000px;}
.ws6_c00369{word-spacing:-0.180000px;}
.ws9_c00369{word-spacing:-0.060000px;}
.ws5_c00369{word-spacing:0.000000px;}
.ws16_c00369{word-spacing:0.180000px;}
.ws12_c00369{word-spacing:0.216000px;}
.ws11_c00369{word-spacing:0.300000px;}
.ws8_c00369{word-spacing:0.420000px;}
.ws20_c00369{word-spacing:0.480000px;}
.ws1d_c00369{word-spacing:0.504000px;}
.ws7_c00369{word-spacing:0.720000px;}
.wsb_c00369{word-spacing:1.140000px;}
.ws22_c00369{word-spacing:1.740000px;}
.ws23_c00369{word-spacing:1.920000px;}
.ws17_c00369{word-spacing:2.340000px;}
.ws1a_c00369{word-spacing:2.460000px;}
.ws18_c00369{word-spacing:2.580000px;}
.wsa_c00369{word-spacing:3.540000px;}
.ws10_c00369{word-spacing:3.780000px;}
.ws13_c00369{word-spacing:4.140000px;}
.wsc_c00369{word-spacing:4.740000px;}
.ws21_c00369{word-spacing:4.860000px;}
.wse_c00369{word-spacing:4.980000px;}
.ws1b_c00369{word-spacing:5.340000px;}
.wsf_c00369{word-spacing:5.940000px;}
.ws15_c00369{word-spacing:6.180000px;}
.ws14_c00369{word-spacing:7.140000px;}
._3_c00369{margin-left:-2.294400px;}
._1_c00369{margin-left:-1.281600px;}
._0_c00369{width:1.380000px;}
._2_c00369{width:2.784000px;}
._4_c00369{width:6.000000px;}
._5_c00369{width:108.864000px;}
.fc1_c00369{color:rgb(0,0,0);}
.fc0_c00369{color:rgb(0,0,255);}
.fs1_c00369{font-size:54.000000px;}
.fs0_c00369{font-size:60.000000px;}
.fs2_c00369{font-size:72.000000px;}
.fs3_c00369{font-size:84.000000px;}
.y0_c00369{bottom:0.000000px;}
.y3_c00369{bottom:71.400000px;}
.y2_c00369{bottom:88.800000px;}
.y2e_c00369{bottom:162.600000px;}
.y2d_c00369{bottom:184.500000px;}
.y2c_c00369{bottom:206.400000px;}
.y2b_c00369{bottom:228.600000px;}
.y2a_c00369{bottom:250.500000px;}
.y29_c00369{bottom:272.400000px;}
.y28_c00369{bottom:294.300000px;}
.y27_c00369{bottom:316.500000px;}
.y26_c00369{bottom:338.400000px;}
.y25_c00369{bottom:360.300000px;}
.y24_c00369{bottom:391.500000px;}
.y23_c00369{bottom:419.100000px;}
.y22_c00369{bottom:441.000000px;}
.y21_c00369{bottom:462.900000px;}
.y20_c00369{bottom:485.100000px;}
.y1f_c00369{bottom:507.000000px;}
.y1e_c00369{bottom:528.900000px;}
.y1d_c00369{bottom:550.800000px;}
.y1c_c00369{bottom:573.000000px;}
.y1b_c00369{bottom:594.900000px;}
.y1a_c00369{bottom:616.800000px;}
.y19_c00369{bottom:638.700000px;}
.y18_c00369{bottom:660.900000px;}
.y17_c00369{bottom:682.800000px;}
.y16_c00369{bottom:704.700000px;}
.y15_c00369{bottom:726.600000px;}
.y14_c00369{bottom:748.800000px;}
.y13_c00369{bottom:770.700000px;}
.y12_c00369{bottom:800.400000px;}
.y11_c00369{bottom:825.000000px;}
.y10_c00369{bottom:846.900000px;}
.yf_c00369{bottom:868.800000px;}
.ye_c00369{bottom:891.000000px;}
.yd_c00369{bottom:912.900000px;}
.yc_c00369{bottom:934.800000px;}
.yb_c00369{bottom:956.700000px;}
.ya_c00369{bottom:978.900000px;}
.y9_c00369{bottom:1000.800000px;}
.y8_c00369{bottom:1022.700000px;}
.y7_c00369{bottom:1044.600000px;}
.y6_c00369{bottom:1066.800000px;}
.y5_c00369{bottom:1088.700000px;}
.y4_c00369{bottom:1118.400000px;}
.y1_c00369{bottom:1163.700000px;}
.h2_c00369{height:35.991211px;}
.h4_c00369{height:43.066406px;}
.h1_c00369{height:43.564453px;}
.h6_c00369{height:43.710938px;}
.h3_c00369{height:52.277344px;}
.h5_c00369{height:60.990234px;}
.h0_c00369{height:1263.000000px;}
.w0_c00369{width:893.100000px;}
.w1_c00369{width:893.250000px;}
.x0_c00369{left:0.000000px;}
.x1_c00369{left:84.900000px;}
.x4_c00369{left:99.900000px;}
.x5_c00369{left:111.900000px;}
.x3_c00369{left:442.500000px;}
.x2_c00369{left:446.400000px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls12_c00369{letter-spacing:-0.480000pt;}
.lsc_c00369{letter-spacing:-0.448000pt;}
.lse_c00369{letter-spacing:-0.373333pt;}
.ls9_c00369{letter-spacing:-0.320000pt;}
.lsf_c00369{letter-spacing:-0.266667pt;}
.ls16_c00369{letter-spacing:-0.224000pt;}
.lsd_c00369{letter-spacing:-0.192000pt;}
.lsb_c00369{letter-spacing:-0.160000pt;}
.lsa_c00369{letter-spacing:0.000000pt;}
.ls3_c00369{letter-spacing:0.053333pt;}
.ls10_c00369{letter-spacing:0.106667pt;}
.ls13_c00369{letter-spacing:0.256000pt;}
.ls14_c00369{letter-spacing:0.266667pt;}
.ls15_c00369{letter-spacing:0.320000pt;}
.ls1_c00369{letter-spacing:0.448000pt;}
.ls17_c00369{letter-spacing:0.480000pt;}
.ls11_c00369{letter-spacing:0.586667pt;}
.ls6_c00369{letter-spacing:0.746667pt;}
.ls2_c00369{letter-spacing:2.880000pt;}
.ls5_c00369{letter-spacing:3.946667pt;}
.ls4_c00369{letter-spacing:5.013333pt;}
.ls7_c00369{letter-spacing:6.069333pt;}
.ls8_c00369{letter-spacing:40.640000pt;}
.ls0_c00369{letter-spacing:54.848000pt;}
.ws1_c00369{word-spacing:-14.016000pt;}
.ws0_c00369{word-spacing:-12.053333pt;}
.ws2_c00369{word-spacing:-11.786667pt;}
.ws3_c00369{word-spacing:-11.680000pt;}
.ws4_c00369{word-spacing:-11.573333pt;}
.ws1e_c00369{word-spacing:-0.906667pt;}
.ws1f_c00369{word-spacing:-0.800000pt;}
.ws1c_c00369{word-spacing:-0.640000pt;}
.ws19_c00369{word-spacing:-0.586667pt;}
.wsd_c00369{word-spacing:-0.426667pt;}
.ws6_c00369{word-spacing:-0.160000pt;}
.ws9_c00369{word-spacing:-0.053333pt;}
.ws5_c00369{word-spacing:0.000000pt;}
.ws16_c00369{word-spacing:0.160000pt;}
.ws12_c00369{word-spacing:0.192000pt;}
.ws11_c00369{word-spacing:0.266667pt;}
.ws8_c00369{word-spacing:0.373333pt;}
.ws20_c00369{word-spacing:0.426667pt;}
.ws1d_c00369{word-spacing:0.448000pt;}
.ws7_c00369{word-spacing:0.640000pt;}
.wsb_c00369{word-spacing:1.013333pt;}
.ws22_c00369{word-spacing:1.546667pt;}
.ws23_c00369{word-spacing:1.706667pt;}
.ws17_c00369{word-spacing:2.080000pt;}
.ws1a_c00369{word-spacing:2.186667pt;}
.ws18_c00369{word-spacing:2.293333pt;}
.wsa_c00369{word-spacing:3.146667pt;}
.ws10_c00369{word-spacing:3.360000pt;}
.ws13_c00369{word-spacing:3.680000pt;}
.wsc_c00369{word-spacing:4.213333pt;}
.ws21_c00369{word-spacing:4.320000pt;}
.wse_c00369{word-spacing:4.426667pt;}
.ws1b_c00369{word-spacing:4.746667pt;}
.wsf_c00369{word-spacing:5.280000pt;}
.ws15_c00369{word-spacing:5.493333pt;}
.ws14_c00369{word-spacing:6.346667pt;}
._3_c00369{margin-left:-2.039467pt;}
._1_c00369{margin-left:-1.139200pt;}
._0_c00369{width:1.226667pt;}
._2_c00369{width:2.474667pt;}
._4_c00369{width:5.333333pt;}
._5_c00369{width:96.768000pt;}
.fs1_c00369{font-size:48.000000pt;}
.fs0_c00369{font-size:53.333333pt;}
.fs2_c00369{font-size:64.000000pt;}
.fs3_c00369{font-size:74.666667pt;}
.y0_c00369{bottom:0.000000pt;}
.y3_c00369{bottom:63.466667pt;}
.y2_c00369{bottom:78.933333pt;}
.y2e_c00369{bottom:144.533333pt;}
.y2d_c00369{bottom:164.000000pt;}
.y2c_c00369{bottom:183.466667pt;}
.y2b_c00369{bottom:203.200000pt;}
.y2a_c00369{bottom:222.666667pt;}
.y29_c00369{bottom:242.133333pt;}
.y28_c00369{bottom:261.600000pt;}
.y27_c00369{bottom:281.333333pt;}
.y26_c00369{bottom:300.800000pt;}
.y25_c00369{bottom:320.266667pt;}
.y24_c00369{bottom:348.000000pt;}
.y23_c00369{bottom:372.533333pt;}
.y22_c00369{bottom:392.000000pt;}
.y21_c00369{bottom:411.466667pt;}
.y20_c00369{bottom:431.200000pt;}
.y1f_c00369{bottom:450.666667pt;}
.y1e_c00369{bottom:470.133333pt;}
.y1d_c00369{bottom:489.600000pt;}
.y1c_c00369{bottom:509.333333pt;}
.y1b_c00369{bottom:528.800000pt;}
.y1a_c00369{bottom:548.266667pt;}
.y19_c00369{bottom:567.733333pt;}
.y18_c00369{bottom:587.466667pt;}
.y17_c00369{bottom:606.933333pt;}
.y16_c00369{bottom:626.400000pt;}
.y15_c00369{bottom:645.866667pt;}
.y14_c00369{bottom:665.600000pt;}
.y13_c00369{bottom:685.066667pt;}
.y12_c00369{bottom:711.466667pt;}
.y11_c00369{bottom:733.333333pt;}
.y10_c00369{bottom:752.800000pt;}
.yf_c00369{bottom:772.266667pt;}
.ye_c00369{bottom:792.000000pt;}
.yd_c00369{bottom:811.466667pt;}
.yc_c00369{bottom:830.933333pt;}
.yb_c00369{bottom:850.400000pt;}
.ya_c00369{bottom:870.133333pt;}
.y9_c00369{bottom:889.600000pt;}
.y8_c00369{bottom:909.066667pt;}
.y7_c00369{bottom:928.533333pt;}
.y6_c00369{bottom:948.266667pt;}
.y5_c00369{bottom:967.733333pt;}
.y4_c00369{bottom:994.133333pt;}
.y1_c00369{bottom:1034.400000pt;}
.h2_c00369{height:31.992188pt;}
.h4_c00369{height:38.281250pt;}
.h1_c00369{height:38.723958pt;}
.h6_c00369{height:38.854167pt;}
.h3_c00369{height:46.468750pt;}
.h5_c00369{height:54.213542pt;}
.h0_c00369{height:1122.666667pt;}
.w0_c00369{width:793.866667pt;}
.w1_c00369{width:794.000000pt;}
.x0_c00369{left:0.000000pt;}
.x1_c00369{left:75.466667pt;}
.x4_c00369{left:88.800000pt;}
.x5_c00369{left:99.466667pt;}
.x3_c00369{left:393.333333pt;}
.x2_c00369{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_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_4b8fcca4fa952f7b7e5eae65.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00370;src:url('chunks/assets/font_ba3a311cfb8127821f0323c0.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00370;src:url('chunks/assets/font_4988024c6b3964cf0533a838.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:0.938965;font-style:normal;font-weight:normal;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_4eb3d6bf1513c84bad3406e8.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsf_c00370{letter-spacing:-1.140000px;}
.ls11_c00370{letter-spacing:-0.720000px;}
.lse_c00370{letter-spacing:-0.540000px;}
.ls8_c00370{letter-spacing:-0.420000px;}
.lsa_c00370{letter-spacing:-0.300000px;}
.ls14_c00370{letter-spacing:-0.180000px;}
.ls9_c00370{letter-spacing:0.000000px;}
.ls13_c00370{letter-spacing:0.060000px;}
.lsd_c00370{letter-spacing:0.120000px;}
.lsc_c00370{letter-spacing:0.300000px;}
.ls10_c00370{letter-spacing:0.360000px;}
.ls12_c00370{letter-spacing:0.420000px;}
.ls2_c00370{letter-spacing:0.540000px;}
.lsb_c00370{letter-spacing:0.660000px;}
.ls5_c00370{letter-spacing:0.840000px;}
.ls7_c00370{letter-spacing:2.040000px;}
.ls0_c00370{letter-spacing:3.240000px;}
.ls4_c00370{letter-spacing:3.246000px;}
.ls3_c00370{letter-spacing:4.440000px;}
.ls6_c00370{letter-spacing:5.640000px;}
.ls1_c00370{letter-spacing:45.720000px;}
.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:-13.560000px;}
.ws4_c00370{word-spacing:-13.380000px;}
.ws3_c00370{word-spacing:-13.260000px;}
.ws1_c00370{word-spacing:-13.140000px;}
.ws2_c00370{word-spacing:-13.020000px;}
.ws11_c00370{word-spacing:-0.720000px;}
.ws13_c00370{word-spacing:-0.660000px;}
.ws21_c00370{word-spacing:-0.480000px;}
.ws9_c00370{word-spacing:-0.060000px;}
.ws6_c00370{word-spacing:0.000000px;}
.ws5_c00370{word-spacing:0.060000px;}
.ws1c_c00370{word-spacing:0.420000px;}
.ws1a_c00370{word-spacing:0.540000px;}
.ws15_c00370{word-spacing:0.720000px;}
.ws10_c00370{word-spacing:1.140000px;}
.ws1e_c00370{word-spacing:1.740000px;}
.ws19_c00370{word-spacing:1.980000px;}
.ws1d_c00370{word-spacing:2.340000px;}
.ws8_c00370{word-spacing:2.580000px;}
.wsa_c00370{word-spacing:2.940000px;}
.wsc_c00370{word-spacing:3.120000px;}
.ws7_c00370{word-spacing:3.540000px;}
.ws18_c00370{word-spacing:3.660000px;}
.wsf_c00370{word-spacing:3.780000px;}
.ws17_c00370{word-spacing:4.020000px;}
.ws16_c00370{word-spacing:4.080000px;}
.wse_c00370{word-spacing:4.140000px;}
.wsd_c00370{word-spacing:4.740000px;}
.ws1b_c00370{word-spacing:4.860000px;}
.ws20_c00370{word-spacing:4.980000px;}
.wsb_c00370{word-spacing:5.940000px;}
.ws14_c00370{word-spacing:6.060000px;}
.ws12_c00370{word-spacing:7.140000px;}
.ws1f_c00370{word-spacing:8.340000px;}
._1_c00370{margin-left:-1.620000px;}
._0_c00370{width:1.380000px;}
._3_c00370{width:2.478000px;}
._2_c00370{width:6.120000px;}
.fc1_c00370{color:rgb(0,0,0);}
.fc0_c00370{color:rgb(0,0,255);}
.fs1_c00370{font-size:54.000000px;}
.fs0_c00370{font-size:60.000000px;}
.y0_c00370{bottom:0.000000px;}
.y3_c00370{bottom:67.800000px;}
.y2_c00370{bottom:85.800000px;}
.y22_c00370{bottom:461.700000px;}
.y21_c00370{bottom:483.900000px;}
.y20_c00370{bottom:505.800000px;}
.y1f_c00370{bottom:527.700000px;}
.y1e_c00370{bottom:549.600000px;}
.y1d_c00370{bottom:571.800000px;}
.y1c_c00370{bottom:593.700000px;}
.y1b_c00370{bottom:615.600000px;}
.y1a_c00370{bottom:637.500000px;}
.y19_c00370{bottom:659.700000px;}
.y18_c00370{bottom:681.600000px;}
.y17_c00370{bottom:703.500000px;}
.y16_c00370{bottom:725.400000px;}
.y15_c00370{bottom:747.600000px;}
.y14_c00370{bottom:769.500000px;}
.y13_c00370{bottom:791.400000px;}
.y12_c00370{bottom:813.300000px;}
.y11_c00370{bottom:835.500000px;}
.y10_c00370{bottom:857.400000px;}
.yf_c00370{bottom:879.300000px;}
.ye_c00370{bottom:901.200000px;}
.yd_c00370{bottom:923.400000px;}
.yc_c00370{bottom:945.300000px;}
.yb_c00370{bottom:967.200000px;}
.ya_c00370{bottom:989.100000px;}
.y9_c00370{bottom:1011.300000px;}
.y8_c00370{bottom:1033.200000px;}
.y7_c00370{bottom:1055.100000px;}
.y6_c00370{bottom:1077.000000px;}
.y5_c00370{bottom:1099.200000px;}
.y4_c00370{bottom:1121.100000px;}
.y1_c00370{bottom:1163.700000px;}
.h2_c00370{height:38.759766px;}
.h3_c00370{height:43.066406px;}
.h1_c00370{height:43.564453px;}
.h4_c00370{height:43.710938px;}
.h0_c00370{height:1263.000000px;}
.w0_c00370{width:893.100000px;}
.w1_c00370{width:893.250000px;}
.x0_c00370{left:0.000000px;}
.x1_c00370{left:84.900000px;}
.x5_c00370{left:99.900000px;}
.x4_c00370{left:111.900000px;}
.x3_c00370{left:442.500000px;}
.x2_c00370{left:446.400000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.lsf_c00370{letter-spacing:-1.013333pt;}
.ls11_c00370{letter-spacing:-0.640000pt;}
.lse_c00370{letter-spacing:-0.480000pt;}
.ls8_c00370{letter-spacing:-0.373333pt;}
.lsa_c00370{letter-spacing:-0.266667pt;}
.ls14_c00370{letter-spacing:-0.160000pt;}
.ls9_c00370{letter-spacing:0.000000pt;}
.ls13_c00370{letter-spacing:0.053333pt;}
.lsd_c00370{letter-spacing:0.106667pt;}
.lsc_c00370{letter-spacing:0.266667pt;}
.ls10_c00370{letter-spacing:0.320000pt;}
.ls12_c00370{letter-spacing:0.373333pt;}
.ls2_c00370{letter-spacing:0.480000pt;}
.lsb_c00370{letter-spacing:0.586667pt;}
.ls5_c00370{letter-spacing:0.746667pt;}
.ls7_c00370{letter-spacing:1.813333pt;}
.ls0_c00370{letter-spacing:2.880000pt;}
.ls4_c00370{letter-spacing:2.885333pt;}
.ls3_c00370{letter-spacing:3.946667pt;}
.ls6_c00370{letter-spacing:5.013333pt;}
.ls1_c00370{letter-spacing:40.640000pt;}
.ws0_c00370{word-spacing:-12.053333pt;}
.ws4_c00370{word-spacing:-11.893333pt;}
.ws3_c00370{word-spacing:-11.786667pt;}
.ws1_c00370{word-spacing:-11.680000pt;}
.ws2_c00370{word-spacing:-11.573333pt;}
.ws11_c00370{word-spacing:-0.640000pt;}
.ws13_c00370{word-spacing:-0.586667pt;}
.ws21_c00370{word-spacing:-0.426667pt;}
.ws9_c00370{word-spacing:-0.053333pt;}
.ws6_c00370{word-spacing:0.000000pt;}
.ws5_c00370{word-spacing:0.053333pt;}
.ws1c_c00370{word-spacing:0.373333pt;}
.ws1a_c00370{word-spacing:0.480000pt;}
.ws15_c00370{word-spacing:0.640000pt;}
.ws10_c00370{word-spacing:1.013333pt;}
.ws1e_c00370{word-spacing:1.546667pt;}
.ws19_c00370{word-spacing:1.760000pt;}
.ws1d_c00370{word-spacing:2.080000pt;}
.ws8_c00370{word-spacing:2.293333pt;}
.wsa_c00370{word-spacing:2.613333pt;}
.wsc_c00370{word-spacing:2.773333pt;}
.ws7_c00370{word-spacing:3.146667pt;}
.ws18_c00370{word-spacing:3.253333pt;}
.wsf_c00370{word-spacing:3.360000pt;}
.ws17_c00370{word-spacing:3.573333pt;}
.ws16_c00370{word-spacing:3.626667pt;}
.wse_c00370{word-spacing:3.680000pt;}
.wsd_c00370{word-spacing:4.213333pt;}
.ws1b_c00370{word-spacing:4.320000pt;}
.ws20_c00370{word-spacing:4.426667pt;}
.wsb_c00370{word-spacing:5.280000pt;}
.ws14_c00370{word-spacing:5.386667pt;}
.ws12_c00370{word-spacing:6.346667pt;}
.ws1f_c00370{word-spacing:7.413333pt;}
._1_c00370{margin-left:-1.440000pt;}
._0_c00370{width:1.226667pt;}
._3_c00370{width:2.202667pt;}
._2_c00370{width:5.440000pt;}
.fs1_c00370{font-size:48.000000pt;}
.fs0_c00370{font-size:53.333333pt;}
.y0_c00370{bottom:0.000000pt;}
.y3_c00370{bottom:60.266667pt;}
.y2_c00370{bottom:76.266667pt;}
.y22_c00370{bottom:410.400000pt;}
.y21_c00370{bottom:430.133333pt;}
.y20_c00370{bottom:449.600000pt;}
.y1f_c00370{bottom:469.066667pt;}
.y1e_c00370{bottom:488.533333pt;}
.y1d_c00370{bottom:508.266667pt;}
.y1c_c00370{bottom:527.733333pt;}
.y1b_c00370{bottom:547.200000pt;}
.y1a_c00370{bottom:566.666667pt;}
.y19_c00370{bottom:586.400000pt;}
.y18_c00370{bottom:605.866667pt;}
.y17_c00370{bottom:625.333333pt;}
.y16_c00370{bottom:644.800000pt;}
.y15_c00370{bottom:664.533333pt;}
.y14_c00370{bottom:684.000000pt;}
.y13_c00370{bottom:703.466667pt;}
.y12_c00370{bottom:722.933333pt;}
.y11_c00370{bottom:742.666667pt;}
.y10_c00370{bottom:762.133333pt;}
.yf_c00370{bottom:781.600000pt;}
.ye_c00370{bottom:801.066667pt;}
.yd_c00370{bottom:820.800000pt;}
.yc_c00370{bottom:840.266667pt;}
.yb_c00370{bottom:859.733333pt;}
.ya_c00370{bottom:879.200000pt;}
.y9_c00370{bottom:898.933333pt;}
.y8_c00370{bottom:918.400000pt;}
.y7_c00370{bottom:937.866667pt;}
.y6_c00370{bottom:957.333333pt;}
.y5_c00370{bottom:977.066667pt;}
.y4_c00370{bottom:996.533333pt;}
.y1_c00370{bottom:1034.400000pt;}
.h2_c00370{height:34.453125pt;}
.h3_c00370{height:38.281250pt;}
.h1_c00370{height:38.723958pt;}
.h4_c00370{height:38.854167pt;}
.h0_c00370{height:1122.666667pt;}
.w0_c00370{width:793.866667pt;}
.w1_c00370{width:794.000000pt;}
.x0_c00370{left:0.000000pt;}
.x1_c00370{left:75.466667pt;}
.x5_c00370{left:88.800000pt;}
.x4_c00370{left:99.466667pt;}
.x3_c00370{left:393.333333pt;}
.x2_c00370{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_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_4214796f429a7dee77dd54ec.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:0.938965;font-style:normal;font-weight:normal;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_dcc122900384988f1fbf7126.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:0.938965;font-style:normal;font-weight:normal;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_cefd64896a42a621998cc6f0.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:0.938965;font-style: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;}
.ls3_c00371{letter-spacing:-12.534000px;}
.ls0_c00371{letter-spacing:-0.168000px;}
.ls4_c00371{letter-spacing:-0.144000px;}
.ls1_c00371{letter-spacing:0.000000px;}
.ls2_c00371{letter-spacing:0.336000px;}
.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:-46.637280px;}
.ws1_c00371{word-spacing:-39.888000px;}
.ws9_c00371{word-spacing:-6.048000px;}
.ws6_c00371{word-spacing:-1.008000px;}
.ws7_c00371{word-spacing:-0.618000px;}
.wse_c00371{word-spacing:0.144000px;}
.wsa_c00371{word-spacing:0.156000px;}
.wsc_c00371{word-spacing:0.432000px;}
.ws5_c00371{word-spacing:0.756000px;}
.wsb_c00371{word-spacing:0.876000px;}
.wsd_c00371{word-spacing:0.882000px;}
.ws4_c00371{word-spacing:1.344000px;}
.ws8_c00371{word-spacing:1.476000px;}
.ws2_c00371{word-spacing:1.680000px;}
.ws3_c00371{word-spacing:1.848000px;}
.fc0_c00371{color:rgb(0,74,150);}
.fs1_c00371{font-size:144.000000px;}
.fs0_c00371{font-size:167.760000px;}
.y0_c00371{bottom:0.000000px;}
.y5_c00371{bottom:304.911000px;}
.y4_c00371{bottom:357.111000px;}
.y3_c00371{bottom:411.748500px;}
.y2_c00371{bottom:471.135000px;}
.y1_c00371{bottom:530.521500px;}
.h2_c00371{height:104.906250px;}
.h3_c00371{height:104.908050px;}
.h1_c00371{height:122.215781px;}
.h0_c00371{height:810.000000px;}
.w0_c00371{width:1440.000000px;}
.x0_c00371{left:0.000000px;}
.x1_c00371{left:51.024000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls3_c00371{letter-spacing:-11.141333pt;}
.ls0_c00371{letter-spacing:-0.149333pt;}
.ls4_c00371{letter-spacing:-0.128000pt;}
.ls1_c00371{letter-spacing:0.000000pt;}
.ls2_c00371{letter-spacing:0.298667pt;}
.ws0_c00371{word-spacing:-41.455360pt;}
.ws1_c00371{word-spacing:-35.456000pt;}
.ws9_c00371{word-spacing:-5.376000pt;}
.ws6_c00371{word-spacing:-0.896000pt;}
.ws7_c00371{word-spacing:-0.549333pt;}
.wse_c00371{word-spacing:0.128000pt;}
.wsa_c00371{word-spacing:0.138667pt;}
.wsc_c00371{word-spacing:0.384000pt;}
.ws5_c00371{word-spacing:0.672000pt;}
.wsb_c00371{word-spacing:0.778667pt;}
.wsd_c00371{word-spacing:0.784000pt;}
.ws4_c00371{word-spacing:1.194667pt;}
.ws8_c00371{word-spacing:1.312000pt;}
.ws2_c00371{word-spacing:1.493333pt;}
.ws3_c00371{word-spacing:1.642667pt;}
.fs1_c00371{font-size:128.000000pt;}
.fs0_c00371{font-size:149.120000pt;}
.y0_c00371{bottom:0.000000pt;}
.y5_c00371{bottom:271.032000pt;}
.y4_c00371{bottom:317.432000pt;}
.y3_c00371{bottom:365.998667pt;}
.y2_c00371{bottom:418.786667pt;}
.y1_c00371{bottom:471.574667pt;}
.h2_c00371{height:93.250000pt;}
.h3_c00371{height:93.251600pt;}
.h1_c00371{height:108.636250pt;}
.h0_c00371{height:720.000000pt;}
.w0_c00371{width:1280.000000pt;}
.x0_c00371{left:0.000000pt;}
.x1_c00371{left:45.354667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e771c49a204b1737507c7cd4.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:0.938965;font-style:normal;font-weight:normal;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_02ace9c6559f287f0a1bee3b.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:0.938965;font-style:normal;font-weight:normal;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_fb5853468984a5cd44d24cd1.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00372{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.ls7_c00372{letter-spacing:-0.324000px;}
.ls8_c00372{letter-spacing:-0.287280px;}
.ls5_c00372{letter-spacing:-0.269280px;}
.ls4_c00372{letter-spacing:-0.167760px;}
.ls6_c00372{letter-spacing:-0.134640px;}
.ls9_c00372{letter-spacing:-0.084240px;}
.ls2_c00372{letter-spacing:0.000000px;}
.ls3_c00372{letter-spacing:0.269280px;}
.ls0_c00372{letter-spacing:0.336960px;}
.ls1_c00372{letter-spacing:99.360000px;}
.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:-46.637280px;}
.ws2_c00372{word-spacing:-37.699200px;}
.ws6_c00372{word-spacing:-37.295280px;}
.ws8_c00372{word-spacing:-26.621280px;}
.ws9_c00372{word-spacing:-26.334000px;}
.ws11_c00372{word-spacing:-1.432080px;}
.ws12_c00372{word-spacing:-1.010880px;}
.wsc_c00372{word-spacing:-0.670320px;}
.wsa_c00372{word-spacing:-0.335520px;}
.wsb_c00372{word-spacing:0.000000px;}
.ws10_c00372{word-spacing:0.084240px;}
.wse_c00372{word-spacing:0.216000px;}
.wsf_c00372{word-spacing:0.540000px;}
.ws13_c00372{word-spacing:1.296000px;}
.wsd_c00372{word-spacing:2.202480px;}
.ws1_c00372{word-spacing:6.233832px;}
.ws3_c00372{word-spacing:6.556968px;}
.ws5_c00372{word-spacing:8.616960px;}
.ws4_c00372{word-spacing:8.630424px;}
.ws7_c00372{word-spacing:540.399600px;}
._2_c00372{margin-left:-10.629864px;}
._4_c00372{margin-left:-1.792800px;}
._1_c00372{width:1.130976px;}
._0_c00372{width:46.692000px;}
._3_c00372{width:205.614864px;}
.fc4_c00372{color:rgb(255,0,0);}
.fc2_c00372{color:rgb(0,40,117);}
.fc3_c00372{color:rgb(166,166,166);}
.fc1_c00372{color:rgb(0,0,0);}
.fc0_c00372{color:rgb(0,74,150);}
.fs2_c00372{font-size:54.000000px;}
.fs5_c00372{font-size:84.240000px;}
.fs4_c00372{font-size:95.760000px;}
.fs3_c00372{font-size:108.000000px;}
.fs1_c00372{font-size:134.640000px;}
.fs0_c00372{font-size:167.760000px;}
.fs6_c00372{font-size:216.000000px;}
.y0_c00372{bottom:0.000000px;}
.y2_c00372{bottom:27.253800px;}
.y3_c00372{bottom:184.476900px;}
.y10_c00372{bottom:186.717240px;}
.yc_c00372{bottom:211.614720px;}
.yf_c00372{bottom:211.926060px;}
.y17_c00372{bottom:233.973450px;}
.ye_c00372{bottom:237.134880px;}
.yb_c00372{bottom:240.414540px;}
.y5_c00372{bottom:241.450800px;}
.yd_c00372{bottom:262.343700px;}
.y16_c00372{bottom:298.773450px;}
.y15_c00372{bottom:363.573450px;}
.ya_c00372{bottom:379.075020px;}
.y9_c00372{bottom:407.874840px;}
.y11_c00372{bottom:423.309900px;}
.y14_c00372{bottom:428.373450px;}
.y13_c00372{bottom:460.773450px;}
.y8_c00372{bottom:465.474480px;}
.y12_c00372{bottom:493.173450px;}
.y7_c00372{bottom:494.274300px;}
.y4_c00372{bottom:573.262950px;}
.y6_c00372{bottom:623.097900px;}
.y1_c00372{bottom:718.116450px;}
.h2_c00372{height:39.339844px;}
.h5_c00372{height:61.329023px;}
.h4_c00372{height:69.762656px;}
.h3_c00372{height:78.679688px;}
.h1_c00372{height:122.215781px;}
.h6_c00372{height:157.253906px;}
.h0_c00372{height:810.000000px;}
.w0_c00372{width:1440.000000px;}
.x0_c00372{left:0.000000px;}
.x1_c00372{left:25.936950px;}
.x4_c00372{left:165.734400px;}
.x2_c00372{left:220.353450px;}
.x3_c00372{left:241.842150px;}
.xd_c00372{left:301.779810px;}
.x8_c00372{left:302.973330px;}
.xc_c00372{left:307.002690px;}
.xb_c00372{left:308.813850px;}
.x7_c00372{left:315.565770px;}
.x6_c00372{left:332.850450px;}
.x5_c00372{left:378.760500px;}
.x9_c00372{left:517.954530px;}
.xa_c00372{left:530.546970px;}
.xe_c00372{left:568.015350px;}
.xf_c00372{left:891.000000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls7_c00372{letter-spacing:-0.288000pt;}
.ls8_c00372{letter-spacing:-0.255360pt;}
.ls5_c00372{letter-spacing:-0.239360pt;}
.ls4_c00372{letter-spacing:-0.149120pt;}
.ls6_c00372{letter-spacing:-0.119680pt;}
.ls9_c00372{letter-spacing:-0.074880pt;}
.ls2_c00372{letter-spacing:0.000000pt;}
.ls3_c00372{letter-spacing:0.239360pt;}
.ls0_c00372{letter-spacing:0.299520pt;}
.ls1_c00372{letter-spacing:88.320000pt;}
.ws0_c00372{word-spacing:-41.455360pt;}
.ws2_c00372{word-spacing:-33.510400pt;}
.ws6_c00372{word-spacing:-33.151360pt;}
.ws8_c00372{word-spacing:-23.663360pt;}
.ws9_c00372{word-spacing:-23.408000pt;}
.ws11_c00372{word-spacing:-1.272960pt;}
.ws12_c00372{word-spacing:-0.898560pt;}
.wsc_c00372{word-spacing:-0.595840pt;}
.wsa_c00372{word-spacing:-0.298240pt;}
.wsb_c00372{word-spacing:0.000000pt;}
.ws10_c00372{word-spacing:0.074880pt;}
.wse_c00372{word-spacing:0.192000pt;}
.wsf_c00372{word-spacing:0.480000pt;}
.ws13_c00372{word-spacing:1.152000pt;}
.wsd_c00372{word-spacing:1.957760pt;}
.ws1_c00372{word-spacing:5.541184pt;}
.ws3_c00372{word-spacing:5.828416pt;}
.ws5_c00372{word-spacing:7.659520pt;}
.ws4_c00372{word-spacing:7.671488pt;}
.ws7_c00372{word-spacing:480.355200pt;}
._2_c00372{margin-left:-9.448768pt;}
._4_c00372{margin-left:-1.593600pt;}
._1_c00372{width:1.005312pt;}
._0_c00372{width:41.504000pt;}
._3_c00372{width:182.768768pt;}
.fs2_c00372{font-size:48.000000pt;}
.fs5_c00372{font-size:74.880000pt;}
.fs4_c00372{font-size:85.120000pt;}
.fs3_c00372{font-size:96.000000pt;}
.fs1_c00372{font-size:119.680000pt;}
.fs0_c00372{font-size:149.120000pt;}
.fs6_c00372{font-size:192.000000pt;}
.y0_c00372{bottom:0.000000pt;}
.y2_c00372{bottom:24.225600pt;}
.y3_c00372{bottom:163.979467pt;}
.y10_c00372{bottom:165.970880pt;}
.yc_c00372{bottom:188.101973pt;}
.yf_c00372{bottom:188.378720pt;}
.y17_c00372{bottom:207.976400pt;}
.ye_c00372{bottom:210.786560pt;}
.yb_c00372{bottom:213.701813pt;}
.y5_c00372{bottom:214.622933pt;}
.yd_c00372{bottom:233.194400pt;}
.y16_c00372{bottom:265.576400pt;}
.y15_c00372{bottom:323.176400pt;}
.ya_c00372{bottom:336.955573pt;}
.y9_c00372{bottom:362.555413pt;}
.y11_c00372{bottom:376.275467pt;}
.y14_c00372{bottom:380.776400pt;}
.y13_c00372{bottom:409.576400pt;}
.y8_c00372{bottom:413.755093pt;}
.y12_c00372{bottom:438.376400pt;}
.y7_c00372{bottom:439.354933pt;}
.y4_c00372{bottom:509.567067pt;}
.y6_c00372{bottom:553.864800pt;}
.y1_c00372{bottom:638.325733pt;}
.h2_c00372{height:34.968750pt;}
.h5_c00372{height:54.514687pt;}
.h4_c00372{height:62.011250pt;}
.h3_c00372{height:69.937500pt;}
.h1_c00372{height:108.636250pt;}
.h6_c00372{height:139.781250pt;}
.h0_c00372{height:720.000000pt;}
.w0_c00372{width:1280.000000pt;}
.x0_c00372{left:0.000000pt;}
.x1_c00372{left:23.055067pt;}
.x4_c00372{left:147.319467pt;}
.x2_c00372{left:195.869733pt;}
.x3_c00372{left:214.970800pt;}
.xd_c00372{left:268.248720pt;}
.x8_c00372{left:269.309627pt;}
.xc_c00372{left:272.891280pt;}
.xb_c00372{left:274.501200pt;}
.x7_c00372{left:280.502907pt;}
.x6_c00372{left:295.867067pt;}
.x5_c00372{left:336.676000pt;}
.x9_c00372{left:460.404027pt;}
.xa_c00372{left:471.597307pt;}
.xe_c00372{left:504.902533pt;}
.xf_c00372{left:792.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_86f597985924a5e46925e928.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:0.938965;font-style:normal;font-weight:normal;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_43a6174f1e8f88ab10af041f.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:0.938965;font-style: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;}
.ls8_c00373{letter-spacing:-9.828720px;}
.lsa_c00373{letter-spacing:-6.990480px;}
.ls5_c00373{letter-spacing:-0.384480px;}
.ls9_c00373{letter-spacing:-0.288000px;}
.lsf_c00373{letter-spacing:-0.287280px;}
.lsd_c00373{letter-spacing:-0.240480px;}
.lse_c00373{letter-spacing:-0.191520px;}
.ls6_c00373{letter-spacing:-0.144000px;}
.ls7_c00373{letter-spacing:0.000000px;}
.ls2_c00373{letter-spacing:0.144000px;}
.lsc_c00373{letter-spacing:0.191520px;}
.ls0_c00373{letter-spacing:0.197280px;}
.ls3_c00373{letter-spacing:0.345600px;}
.lsb_c00373{letter-spacing:0.383040px;}
.ls4_c00373{letter-spacing:40.176000px;}
.ls1_c00373{letter-spacing:111.600000px;}
.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:-46.637280px;}
.ws9_c00373{word-spacing:-33.426720px;}
.wsd_c00373{word-spacing:-33.186240px;}
.ws1_c00373{word-spacing:-27.601200px;}
.ws8_c00373{word-spacing:-27.004320px;}
.ws10_c00373{word-spacing:-26.621280px;}
.wsb_c00373{word-spacing:-1.474704px;}
.ws15_c00373{word-spacing:-1.008000px;}
.ws14_c00373{word-spacing:-0.384480px;}
.ws16_c00373{word-spacing:0.000000px;}
.ws17_c00373{word-spacing:0.288000px;}
.ws4_c00373{word-spacing:1.958400px;}
.wse_c00373{word-spacing:4.309200px;}
.wsc_c00373{word-spacing:4.530312px;}
.ws13_c00373{word-spacing:4.979520px;}
.ws12_c00373{word-spacing:5.180616px;}
.wsa_c00373{word-spacing:5.649840px;}
.ws3_c00373{word-spacing:5.760000px;}
.ws5_c00373{word-spacing:6.451200px;}
.wsf_c00373{word-spacing:7.105392px;}
.ws11_c00373{word-spacing:7.727832px;}
.ws2_c00373{word-spacing:8.886240px;}
.ws7_c00373{word-spacing:17.447472px;}
.ws6_c00373{word-spacing:86.452560px;}
._5_c00373{margin-left:-7.794864px;}
._2_c00373{margin-left:-3.141360px;}
._0_c00373{width:1.211112px;}
._1_c00373{width:2.448000px;}
._4_c00373{width:7.261488px;}
._3_c00373{width:9.478656px;}
.fc2_c00373{color:transparent;}
.fc1_c00373{color:rgb(255,255,255);}
.fc0_c00373{color:rgb(0,74,150);}
.fs6_c00373{font-size:95.760000px;}
.fs4_c00373{font-size:115.200000px;}
.fs5_c00373{font-size:120.240000px;}
.fs3_c00373{font-size:134.640000px;}
.fs1_c00373{font-size:144.000000px;}
.fs2_c00373{font-size:167.760000px;}
.fs0_c00373{font-size:192.240000px;}
.y0_c00373{bottom:0.000000px;}
.y8_c00373{bottom:68.831100px;}
.y7_c00373{bottom:113.838300px;}
.y6_c00373{bottom:158.831100px;}
.y5_c00373{bottom:203.838300px;}
.y4_c00373{bottom:250.098300px;}
.y2_c00373{bottom:444.678000px;}
.y1_c00373{bottom:499.758000px;}
.y3_c00373{bottom:724.176300px;}
.h5_c00373{height:69.762656px;}
.h4_c00373{height:87.596719px;}
.h2_c00373{height:104.906250px;}
.h3_c00373{height:122.215781px;}
.h1_c00373{height:140.049844px;}
.h0_c00373{height:810.000000px;}
.w0_c00373{width:1440.000000px;}
.x0_c00373{left:0.000000px;}
.x1_c00373{left:51.117450px;}
.x2_c00373{left:80.673450px;}
.x3_c00373{left:781.061100px;}
.x4_c00373{left:822.272640px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls8_c00373{letter-spacing:-8.736640pt;}
.lsa_c00373{letter-spacing:-6.213760pt;}
.ls5_c00373{letter-spacing:-0.341760pt;}
.ls9_c00373{letter-spacing:-0.256000pt;}
.lsf_c00373{letter-spacing:-0.255360pt;}
.lsd_c00373{letter-spacing:-0.213760pt;}
.lse_c00373{letter-spacing:-0.170240pt;}
.ls6_c00373{letter-spacing:-0.128000pt;}
.ls7_c00373{letter-spacing:0.000000pt;}
.ls2_c00373{letter-spacing:0.128000pt;}
.lsc_c00373{letter-spacing:0.170240pt;}
.ls0_c00373{letter-spacing:0.175360pt;}
.ls3_c00373{letter-spacing:0.307200pt;}
.lsb_c00373{letter-spacing:0.340480pt;}
.ls4_c00373{letter-spacing:35.712000pt;}
.ls1_c00373{letter-spacing:99.200000pt;}
.ws0_c00373{word-spacing:-41.455360pt;}
.ws9_c00373{word-spacing:-29.712640pt;}
.wsd_c00373{word-spacing:-29.498880pt;}
.ws1_c00373{word-spacing:-24.534400pt;}
.ws8_c00373{word-spacing:-24.003840pt;}
.ws10_c00373{word-spacing:-23.663360pt;}
.wsb_c00373{word-spacing:-1.310848pt;}
.ws15_c00373{word-spacing:-0.896000pt;}
.ws14_c00373{word-spacing:-0.341760pt;}
.ws16_c00373{word-spacing:0.000000pt;}
.ws17_c00373{word-spacing:0.256000pt;}
.ws4_c00373{word-spacing:1.740800pt;}
.wse_c00373{word-spacing:3.830400pt;}
.wsc_c00373{word-spacing:4.026944pt;}
.ws13_c00373{word-spacing:4.426240pt;}
.ws12_c00373{word-spacing:4.604992pt;}
.wsa_c00373{word-spacing:5.022080pt;}
.ws3_c00373{word-spacing:5.120000pt;}
.ws5_c00373{word-spacing:5.734400pt;}
.wsf_c00373{word-spacing:6.315904pt;}
.ws11_c00373{word-spacing:6.869184pt;}
.ws2_c00373{word-spacing:7.898880pt;}
.ws7_c00373{word-spacing:15.508864pt;}
.ws6_c00373{word-spacing:76.846720pt;}
._5_c00373{margin-left:-6.928768pt;}
._2_c00373{margin-left:-2.792320pt;}
._0_c00373{width:1.076544pt;}
._1_c00373{width:2.176000pt;}
._4_c00373{width:6.454656pt;}
._3_c00373{width:8.425472pt;}
.fs6_c00373{font-size:85.120000pt;}
.fs4_c00373{font-size:102.400000pt;}
.fs5_c00373{font-size:106.880000pt;}
.fs3_c00373{font-size:119.680000pt;}
.fs1_c00373{font-size:128.000000pt;}
.fs2_c00373{font-size:149.120000pt;}
.fs0_c00373{font-size:170.880000pt;}
.y0_c00373{bottom:0.000000pt;}
.y8_c00373{bottom:61.183200pt;}
.y7_c00373{bottom:101.189600pt;}
.y6_c00373{bottom:141.183200pt;}
.y5_c00373{bottom:181.189600pt;}
.y4_c00373{bottom:222.309600pt;}
.y2_c00373{bottom:395.269333pt;}
.y1_c00373{bottom:444.229333pt;}
.y3_c00373{bottom:643.712267pt;}
.h5_c00373{height:62.011250pt;}
.h4_c00373{height:77.863750pt;}
.h2_c00373{height:93.250000pt;}
.h3_c00373{height:108.636250pt;}
.h1_c00373{height:124.488750pt;}
.h0_c00373{height:720.000000pt;}
.w0_c00373{width:1280.000000pt;}
.x0_c00373{left:0.000000pt;}
.x1_c00373{left:45.437733pt;}
.x2_c00373{left:71.709733pt;}
.x3_c00373{left:694.276533pt;}
.x4_c00373{left:730.909013pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f1ce829b9c23380aed98182.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:0.938965;font-style:normal;font-weight:normal;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_68605b54eee53713d842333a.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:0.817871;font-style:normal;font-weight:normal;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_d38216c1d9e35afe92885d07.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;line-height:0.938965;font-style: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;}
.ls5_c00374{letter-spacing:-0.324000px;}
.ls2_c00374{letter-spacing:-0.167760px;}
.ls6_c00374{letter-spacing:0.000000px;}
.ls4_c00374{letter-spacing:0.120240px;}
.ls3_c00374{letter-spacing:0.269280px;}
.ls0_c00374{letter-spacing:72.144000px;}
.ls1_c00374{letter-spacing:81.324000px;}
.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:-37.699200px;}
.ws1_c00374{word-spacing:-29.700000px;}
.ws4_c00374{word-spacing:-2.525040px;}
.ws3_c00374{word-spacing:0.000000px;}
.ws8_c00374{word-spacing:0.324000px;}
.ws5_c00374{word-spacing:0.540000px;}
.ws6_c00374{word-spacing:1.296000px;}
.ws2_c00374{word-spacing:1.845360px;}
.ws7_c00374{word-spacing:2.700000px;}
._5_c00374{margin-left:-8.874864px;}
._6_c00374{margin-left:-5.248800px;}
._0_c00374{margin-left:-2.901168px;}
._2_c00374{margin-left:-1.034064px;}
._4_c00374{width:1.098864px;}
._1_c00374{width:2.251872px;}
._3_c00374{width:3.610584px;}
._7_c00374{width:31.492800px;}
.fc2_c00374{color:rgb(0,0,0);}
.fc1_c00374{color:rgb(0,40,117);}
.fc0_c00374{color:rgb(0,74,150);}
.fs4_c00374{font-size:54.000000px;}
.fs3_c00374{font-size:108.000000px;}
.fs2_c00374{font-size:120.240000px;}
.fs1_c00374{font-size:134.640000px;}
.fs0_c00374{font-size:167.760000px;}
.y0_c00374{bottom:0.000000px;}
.y8_c00374{bottom:27.253800px;}
.y7_c00374{bottom:98.196900px;}
.y6_c00374{bottom:155.976900px;}
.y5_c00374{bottom:213.756900px;}
.y4_c00374{bottom:271.536900px;}
.y3_c00374{bottom:302.316900px;}
.y2_c00374{bottom:649.716900px;}
.y1_c00374{bottom:718.116450px;}
.h5_c00374{height:39.339844px;}
.h4_c00374{height:78.679688px;}
.h3_c00374{height:83.214844px;}
.h2_c00374{height:92.645859px;}
.h1_c00374{height:122.215781px;}
.h0_c00374{height:810.000000px;}
.w0_c00374{width:1440.000000px;}
.x0_c00374{left:0.000000px;}
.x1_c00374{left:25.936950px;}
.x2_c00374{left:66.436950px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls5_c00374{letter-spacing:-0.288000pt;}
.ls2_c00374{letter-spacing:-0.149120pt;}
.ls6_c00374{letter-spacing:0.000000pt;}
.ls4_c00374{letter-spacing:0.106880pt;}
.ls3_c00374{letter-spacing:0.239360pt;}
.ls0_c00374{letter-spacing:64.128000pt;}
.ls1_c00374{letter-spacing:72.288000pt;}
.ws0_c00374{word-spacing:-33.510400pt;}
.ws1_c00374{word-spacing:-26.400000pt;}
.ws4_c00374{word-spacing:-2.244480pt;}
.ws3_c00374{word-spacing:0.000000pt;}
.ws8_c00374{word-spacing:0.288000pt;}
.ws5_c00374{word-spacing:0.480000pt;}
.ws6_c00374{word-spacing:1.152000pt;}
.ws2_c00374{word-spacing:1.640320pt;}
.ws7_c00374{word-spacing:2.400000pt;}
._5_c00374{margin-left:-7.888768pt;}
._6_c00374{margin-left:-4.665600pt;}
._0_c00374{margin-left:-2.578816pt;}
._2_c00374{margin-left:-0.919168pt;}
._4_c00374{width:0.976768pt;}
._1_c00374{width:2.001664pt;}
._3_c00374{width:3.209408pt;}
._7_c00374{width:27.993600pt;}
.fs4_c00374{font-size:48.000000pt;}
.fs3_c00374{font-size:96.000000pt;}
.fs2_c00374{font-size:106.880000pt;}
.fs1_c00374{font-size:119.680000pt;}
.fs0_c00374{font-size:149.120000pt;}
.y0_c00374{bottom:0.000000pt;}
.y8_c00374{bottom:24.225600pt;}
.y7_c00374{bottom:87.286133pt;}
.y6_c00374{bottom:138.646133pt;}
.y5_c00374{bottom:190.006133pt;}
.y4_c00374{bottom:241.366133pt;}
.y3_c00374{bottom:268.726133pt;}
.y2_c00374{bottom:577.526133pt;}
.y1_c00374{bottom:638.325733pt;}
.h5_c00374{height:34.968750pt;}
.h4_c00374{height:69.937500pt;}
.h3_c00374{height:73.968750pt;}
.h2_c00374{height:82.351875pt;}
.h1_c00374{height:108.636250pt;}
.h0_c00374{height:720.000000pt;}
.w0_c00374{width:1280.000000pt;}
.x0_c00374{left:0.000000pt;}
.x1_c00374{left:23.055067pt;}
.x2_c00374{left:59.055067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_225c6b9cddc9bd2f665bde17.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:0.938965;font-style:normal;font-weight:normal;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_0f7a0ac48958f1faecad867a.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:0.938965;font-style: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:-10.098000px;}
.ls2_c00375{letter-spacing:-2.288880px;}
.ls8_c00375{letter-spacing:-0.950400px;}
.ls9_c00375{letter-spacing:-0.336960px;}
.ls6_c00375{letter-spacing:-0.324000px;}
.ls5_c00375{letter-spacing:-0.269280px;}
.ls7_c00375{letter-spacing:-0.259200px;}
.ls4_c00375{letter-spacing:-0.167760px;}
.ls1_c00375{letter-spacing:-0.134640px;}
.lsa_c00375{letter-spacing:-0.077760px;}
.ls0_c00375{letter-spacing:0.000000px;}
.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:-46.637280px;}
.ws8_c00375{word-spacing:-37.429920px;}
.ws9_c00375{word-spacing:-30.024000px;}
.wsc_c00375{word-spacing:-29.700000px;}
.wsb_c00375{word-spacing:-24.019200px;}
.wsd_c00375{word-spacing:-23.760000px;}
.wsf_c00375{word-spacing:-23.068800px;}
.ws12_c00375{word-spacing:-0.864000px;}
.ws17_c00375{word-spacing:-0.758160px;}
.ws11_c00375{word-spacing:0.000000px;}
.ws10_c00375{word-spacing:0.167760px;}
.ws16_c00375{word-spacing:0.216000px;}
.ws14_c00375{word-spacing:0.540000px;}
.ws19_c00375{word-spacing:0.699840px;}
.ws13_c00375{word-spacing:1.296000px;}
.ws1a_c00375{word-spacing:1.477440px;}
.ws1b_c00375{word-spacing:1.555200px;}
.ws15_c00375{word-spacing:2.052000px;}
.ws1_c00375{word-spacing:2.375424px;}
.ws18_c00375{word-spacing:2.954880px;}
.ws2_c00375{word-spacing:3.096720px;}
.ws4_c00375{word-spacing:5.937624px;}
.wsa_c00375{word-spacing:6.105600px;}
.ws3_c00375{word-spacing:7.337880px;}
.ws6_c00375{word-spacing:8.482320px;}
.ws7_c00375{word-spacing:9.007416px;}
.wse_c00375{word-spacing:11.257920px;}
.ws5_c00375{word-spacing:28.616400px;}
._3_c00375{margin-left:-10.187400px;}
._1_c00375{margin-left:-8.953560px;}
._6_c00375{margin-left:-2.091744px;}
._4_c00375{margin-left:-1.090584px;}
._5_c00375{width:1.198800px;}
._2_c00375{width:2.208096px;}
._0_c00375{width:46.987056px;}
.fc3_c00375{color:rgb(0,40,117);}
.fc2_c00375{color:rgb(255,255,255);}
.fc1_c00375{color:rgb(0,0,0);}
.fc0_c00375{color:rgb(0,74,150);}
.fs2_c00375{font-size:54.000000px;}
.fs6_c00375{font-size:77.760000px;}
.fs5_c00375{font-size:84.240000px;}
.fs4_c00375{font-size:86.400000px;}
.fs3_c00375{font-size:108.000000px;}
.fs1_c00375{font-size:134.640000px;}
.fs0_c00375{font-size:167.760000px;}
.y0_c00375{bottom:0.000000px;}
.y2_c00375{bottom:27.253800px;}
.y11_c00375{bottom:131.391600px;}
.y9_c00375{bottom:131.397300px;}
.y10_c00375{bottom:185.391600px;}
.y8_c00375{bottom:185.397300px;}
.yf_c00375{bottom:239.391600px;}
.y7_c00375{bottom:239.397300px;}
.y6_c00375{bottom:292.992300px;}
.y18_c00375{bottom:294.900900px;}
.y5_c00375{bottom:347.397300px;}
.y17_c00375{bottom:364.731210px;}
.y16_c00375{bottom:388.136970px;}
.y15_c00375{bottom:411.542730px;}
.y14_c00375{bottom:434.948490px;}
.y13_c00375{bottom:458.354250px;}
.yc_c00375{bottom:497.399700px;}
.y12_c00375{bottom:498.521400px;}
.ye_c00375{bottom:561.933600px;}
.yb_c00375{bottom:562.766700px;}
.y4_c00375{bottom:563.208300px;}
.ya_c00375{bottom:631.518300px;}
.y3_c00375{bottom:631.924650px;}
.yd_c00375{bottom:631.940700px;}
.y1_c00375{bottom:718.116450px;}
.h2_c00375{height:39.339844px;}
.h6_c00375{height:56.649375px;}
.h5_c00375{height:61.370156px;}
.h3_c00375{height:78.679688px;}
.h4_c00375{height:78.725287px;}
.h1_c00375{height:122.215781px;}
.h0_c00375{height:810.000000px;}
.w0_c00375{width:1440.000000px;}
.x0_c00375{left:0.000000px;}
.x1_c00375{left:25.936950px;}
.x2_c00375{left:69.307050px;}
.x3_c00375{left:97.287750px;}
.x4_c00375{left:462.921750px;}
.x5_c00375{left:501.695400px;}
.x6_c00375{left:790.892400px;}
.x7_c00375{left:825.557700px;}
.x9_c00375{left:891.505350px;}
.xa_c00375{left:893.488230px;}
.xb_c00375{left:898.348230px;}
.xd_c00375{left:906.542700px;}
.xc_c00375{left:920.840310px;}
.x8_c00375{left:940.746900px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls3_c00375{letter-spacing:-8.976000pt;}
.ls2_c00375{letter-spacing:-2.034560pt;}
.ls8_c00375{letter-spacing:-0.844800pt;}
.ls9_c00375{letter-spacing:-0.299520pt;}
.ls6_c00375{letter-spacing:-0.288000pt;}
.ls5_c00375{letter-spacing:-0.239360pt;}
.ls7_c00375{letter-spacing:-0.230400pt;}
.ls4_c00375{letter-spacing:-0.149120pt;}
.ls1_c00375{letter-spacing:-0.119680pt;}
.lsa_c00375{letter-spacing:-0.069120pt;}
.ls0_c00375{letter-spacing:0.000000pt;}
.ws0_c00375{word-spacing:-41.455360pt;}
.ws8_c00375{word-spacing:-33.271040pt;}
.ws9_c00375{word-spacing:-26.688000pt;}
.wsc_c00375{word-spacing:-26.400000pt;}
.wsb_c00375{word-spacing:-21.350400pt;}
.wsd_c00375{word-spacing:-21.120000pt;}
.wsf_c00375{word-spacing:-20.505600pt;}
.ws12_c00375{word-spacing:-0.768000pt;}
.ws17_c00375{word-spacing:-0.673920pt;}
.ws11_c00375{word-spacing:0.000000pt;}
.ws10_c00375{word-spacing:0.149120pt;}
.ws16_c00375{word-spacing:0.192000pt;}
.ws14_c00375{word-spacing:0.480000pt;}
.ws19_c00375{word-spacing:0.622080pt;}
.ws13_c00375{word-spacing:1.152000pt;}
.ws1a_c00375{word-spacing:1.313280pt;}
.ws1b_c00375{word-spacing:1.382400pt;}
.ws15_c00375{word-spacing:1.824000pt;}
.ws1_c00375{word-spacing:2.111488pt;}
.ws18_c00375{word-spacing:2.626560pt;}
.ws2_c00375{word-spacing:2.752640pt;}
.ws4_c00375{word-spacing:5.277888pt;}
.wsa_c00375{word-spacing:5.427200pt;}
.ws3_c00375{word-spacing:6.522560pt;}
.ws6_c00375{word-spacing:7.539840pt;}
.ws7_c00375{word-spacing:8.006592pt;}
.wse_c00375{word-spacing:10.007040pt;}
.ws5_c00375{word-spacing:25.436800pt;}
._3_c00375{margin-left:-9.055467pt;}
._1_c00375{margin-left:-7.958720pt;}
._6_c00375{margin-left:-1.859328pt;}
._4_c00375{margin-left:-0.969408pt;}
._5_c00375{width:1.065600pt;}
._2_c00375{width:1.962752pt;}
._0_c00375{width:41.766272pt;}
.fs2_c00375{font-size:48.000000pt;}
.fs6_c00375{font-size:69.120000pt;}
.fs5_c00375{font-size:74.880000pt;}
.fs4_c00375{font-size:76.800000pt;}
.fs3_c00375{font-size:96.000000pt;}
.fs1_c00375{font-size:119.680000pt;}
.fs0_c00375{font-size:149.120000pt;}
.y0_c00375{bottom:0.000000pt;}
.y2_c00375{bottom:24.225600pt;}
.y11_c00375{bottom:116.792533pt;}
.y9_c00375{bottom:116.797600pt;}
.y10_c00375{bottom:164.792533pt;}
.y8_c00375{bottom:164.797600pt;}
.yf_c00375{bottom:212.792533pt;}
.y7_c00375{bottom:212.797600pt;}
.y6_c00375{bottom:260.437600pt;}
.y18_c00375{bottom:262.134133pt;}
.y5_c00375{bottom:308.797600pt;}
.y17_c00375{bottom:324.205520pt;}
.y16_c00375{bottom:345.010640pt;}
.y15_c00375{bottom:365.815760pt;}
.y14_c00375{bottom:386.620880pt;}
.y13_c00375{bottom:407.426000pt;}
.yc_c00375{bottom:442.133067pt;}
.y12_c00375{bottom:443.130133pt;}
.ye_c00375{bottom:499.496533pt;}
.yb_c00375{bottom:500.237067pt;}
.y4_c00375{bottom:500.629600pt;}
.ya_c00375{bottom:561.349600pt;}
.y3_c00375{bottom:561.710800pt;}
.yd_c00375{bottom:561.725067pt;}
.y1_c00375{bottom:638.325733pt;}
.h2_c00375{height:34.968750pt;}
.h6_c00375{height:50.355000pt;}
.h5_c00375{height:54.551250pt;}
.h3_c00375{height:69.937500pt;}
.h4_c00375{height:69.978033pt;}
.h1_c00375{height:108.636250pt;}
.h0_c00375{height:720.000000pt;}
.w0_c00375{width:1280.000000pt;}
.x0_c00375{left:0.000000pt;}
.x1_c00375{left:23.055067pt;}
.x2_c00375{left:61.606267pt;}
.x3_c00375{left:86.478000pt;}
.x4_c00375{left:411.486000pt;}
.x5_c00375{left:445.951467pt;}
.x6_c00375{left:703.015467pt;}
.x7_c00375{left:733.829067pt;}
.x9_c00375{left:792.449200pt;}
.xa_c00375{left:794.211760pt;}
.xb_c00375{left:798.531760pt;}
.xd_c00375{left:805.815733pt;}
.xc_c00375{left:818.524720pt;}
.x8_c00375{left:836.219467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc923217a4dea0a636b6a219.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:0.938965;font-style:normal;font-weight:normal;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_2f017e27d8d119003c932536.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:0.938965;font-style: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;}
.ls6_c00376{letter-spacing:-0.378000px;}
.lsb_c00376{letter-spacing:-0.324000px;}
.lsa_c00376{letter-spacing:-0.269280px;}
.ls8_c00376{letter-spacing:-0.167760px;}
.ls9_c00376{letter-spacing:-0.134640px;}
.ls5_c00376{letter-spacing:-0.108000px;}
.ls2_c00376{letter-spacing:0.000000px;}
.ls3_c00376{letter-spacing:0.108000px;}
.ls1_c00376{letter-spacing:0.120240px;}
.ls4_c00376{letter-spacing:0.162000px;}
.ls0_c00376{letter-spacing:0.216000px;}
.ls7_c00376{letter-spacing:0.378000px;}
.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:-15.228000px;}
.ws1_c00376{word-spacing:-15.174000px;}
.ws3_c00376{word-spacing:-15.120000px;}
.ws2_c00376{word-spacing:-15.012000px;}
.ws6_c00376{word-spacing:-14.634000px;}
.ws1c_c00376{word-spacing:-2.525040px;}
.ws11_c00376{word-spacing:-2.268000px;}
.ws4_c00376{word-spacing:-2.143800px;}
.ws1b_c00376{word-spacing:-1.803600px;}
.ws15_c00376{word-spacing:-1.674000px;}
.ws5_c00376{word-spacing:-1.566000px;}
.ws12_c00376{word-spacing:-1.512000px;}
.ws13_c00376{word-spacing:-1.296000px;}
.ws19_c00376{word-spacing:-1.082160px;}
.ws17_c00376{word-spacing:-0.961920px;}
.wse_c00376{word-spacing:-0.810000px;}
.ws18_c00376{word-spacing:-0.432000px;}
.wsc_c00376{word-spacing:-0.216000px;}
.wsf_c00376{word-spacing:-0.108000px;}
.wsb_c00376{word-spacing:0.000000px;}
.ws14_c00376{word-spacing:0.108000px;}
.ws16_c00376{word-spacing:0.167760px;}
.ws1a_c00376{word-spacing:0.540000px;}
.wsa_c00376{word-spacing:0.612000px;}
.wsd_c00376{word-spacing:0.756000px;}
.ws10_c00376{word-spacing:1.566000px;}
.ws8_c00376{word-spacing:2.504304px;}
.ws7_c00376{word-spacing:6.960888px;}
.ws9_c00376{word-spacing:7.418664px;}
._4_c00376{margin-left:-9.582696px;}
._0_c00376{margin-left:-1.279800px;}
._1_c00376{width:1.225800px;}
._5_c00376{width:3.478680px;}
._3_c00376{width:13.500000px;}
._2_c00376{width:158.666400px;}
.fc3_c00376{color:rgb(0,74,150);}
.fc1_c00376{color:rgb(0,40,117);}
.fc2_c00376{color:rgb(255,255,255);}
.fc0_c00376{color:rgb(0,0,0);}
.fs0_c00376{font-size:54.000000px;}
.fs4_c00376{font-size:108.000000px;}
.fs3_c00376{font-size:120.240000px;}
.fs2_c00376{font-size:134.640000px;}
.fs1_c00376{font-size:167.760000px;}
.y0_c00376{bottom:0.000000px;}
.y1_c00376{bottom:27.253800px;}
.y2b_c00376{bottom:189.743250px;}
.y2a_c00376{bottom:225.743250px;}
.y19_c00376{bottom:422.461800px;}
.y18_c00376{bottom:438.661800px;}
.y17_c00376{bottom:454.861800px;}
.y22_c00376{bottom:454.861950px;}
.y27_c00376{bottom:471.061800px;}
.y21_c00376{bottom:471.061950px;}
.y16_c00376{bottom:487.261800px;}
.y20_c00376{bottom:487.261950px;}
.y15_c00376{bottom:503.461800px;}
.y23_c00376{bottom:519.661800px;}
.y1f_c00376{bottom:519.661950px;}
.y14_c00376{bottom:535.861800px;}
.y1e_c00376{bottom:535.861950px;}
.y13_c00376{bottom:552.061800px;}
.y25_c00376{bottom:552.061950px;}
.y12_c00376{bottom:568.261800px;}
.y1d_c00376{bottom:568.261950px;}
.y10_c00376{bottom:584.461800px;}
.y1c_c00376{bottom:584.461950px;}
.y11_c00376{bottom:600.661800px;}
.y24_c00376{bottom:600.661950px;}
.yf_c00376{bottom:616.861800px;}
.y1b_c00376{bottom:616.861950px;}
.ye_c00376{bottom:633.061800px;}
.y1a_c00376{bottom:633.061950px;}
.y26_c00376{bottom:649.261800px;}
.y28_c00376{bottom:649.262250px;}
.y3_c00376{bottom:671.823750px;}
.y5_c00376{bottom:671.823900px;}
.y7_c00376{bottom:671.824050px;}
.y9_c00376{bottom:673.988250px;}
.yb_c00376{bottom:673.988400px;}
.yd_c00376{bottom:673.988550px;}
.y2_c00376{bottom:688.023750px;}
.y4_c00376{bottom:688.023900px;}
.y6_c00376{bottom:688.024050px;}
.y8_c00376{bottom:690.188250px;}
.ya_c00376{bottom:690.188400px;}
.yc_c00376{bottom:690.188550px;}
.y29_c00376{bottom:738.459150px;}
.h1_c00376{height:39.339844px;}
.h3_c00376{height:87.596719px;}
.h2_c00376{height:122.215781px;}
.h0_c00376{height:810.000000px;}
.w0_c00376{width:1440.000000px;}
.x0_c00376{left:0.000000px;}
.x1_c00376{left:26.787450px;}
.x35_c00376{left:36.736950px;}
.x36_c00376{left:160.722150px;}
.x10_c00376{left:178.604700px;}
.x3_c00376{left:181.622250px;}
.x13_c00376{left:185.975700px;}
.x15_c00376{left:193.711200px;}
.x11_c00376{left:194.980200px;}
.x12_c00376{left:199.124700px;}
.x2_c00376{left:200.346750px;}
.x14_c00376{left:201.811200px;}
.xe_c00376{left:297.152550px;}
.x4_c00376{left:305.950050px;}
.x5_c00376{left:309.014550px;}
.xf_c00376{left:311.908050px;}
.x16_c00376{left:404.000400px;}
.x1a_c00376{left:406.335900px;}
.x18_c00376{left:409.575900px;}
.x19_c00376{left:419.295900px;}
.x1b_c00376{left:431.540400px;}
.x17_c00376{left:434.955900px;}
.x6_c00376{left:466.557000px;}
.x7_c00376{left:481.312500px;}
.x1f_c00376{left:518.307600px;}
.x1e_c00376{left:525.503100px;}
.x20_c00376{left:532.172100px;}
.x1c_c00376{left:534.318600px;}
.x1d_c00376{left:540.623100px;}
.x21_c00376{left:633.786300px;}
.x25_c00376{left:749.183850px;}
.x23_c00376{left:763.048350px;}
.x22_c00376{left:764.303850px;}
.x24_c00376{left:779.963850px;}
.x9_c00376{left:822.856200px;}
.x8_c00376{left:824.111700px;}
.x26_c00376{left:867.420450px;}
.x29_c00376{left:875.884950px;}
.x27_c00376{left:880.204950px;}
.x28_c00376{left:883.620450px;}
.x2e_c00376{left:974.763450px;}
.x2c_c00376{left:981.418950px;}
.x2f_c00376{left:983.403450px;}
.x2b_c00376{left:988.614450px;}
.xb_c00376{left:990.743100px;}
.x30_c00376{left:992.583450px;}
.x2d_c00376{left:1000.683450px;}
.x2a_c00376{left:1002.829950px;}
.xa_c00376{left:1009.643100px;}
.xc_c00376{left:1084.808550px;}
.x32_c00376{left:1089.261000px;}
.xd_c00376{left:1106.044050px;}
.x33_c00376{left:1107.621000px;}
.x31_c00376{left:1110.132000px;}
.x34_c00376{left:1205.649600px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls6_c00376{letter-spacing:-0.336000pt;}
.lsb_c00376{letter-spacing:-0.288000pt;}
.lsa_c00376{letter-spacing:-0.239360pt;}
.ls8_c00376{letter-spacing:-0.149120pt;}
.ls9_c00376{letter-spacing:-0.119680pt;}
.ls5_c00376{letter-spacing:-0.096000pt;}
.ls2_c00376{letter-spacing:0.000000pt;}
.ls3_c00376{letter-spacing:0.096000pt;}
.ls1_c00376{letter-spacing:0.106880pt;}
.ls4_c00376{letter-spacing:0.144000pt;}
.ls0_c00376{letter-spacing:0.192000pt;}
.ls7_c00376{letter-spacing:0.336000pt;}
.ws0_c00376{word-spacing:-13.536000pt;}
.ws1_c00376{word-spacing:-13.488000pt;}
.ws3_c00376{word-spacing:-13.440000pt;}
.ws2_c00376{word-spacing:-13.344000pt;}
.ws6_c00376{word-spacing:-13.008000pt;}
.ws1c_c00376{word-spacing:-2.244480pt;}
.ws11_c00376{word-spacing:-2.016000pt;}
.ws4_c00376{word-spacing:-1.905600pt;}
.ws1b_c00376{word-spacing:-1.603200pt;}
.ws15_c00376{word-spacing:-1.488000pt;}
.ws5_c00376{word-spacing:-1.392000pt;}
.ws12_c00376{word-spacing:-1.344000pt;}
.ws13_c00376{word-spacing:-1.152000pt;}
.ws19_c00376{word-spacing:-0.961920pt;}
.ws17_c00376{word-spacing:-0.855040pt;}
.wse_c00376{word-spacing:-0.720000pt;}
.ws18_c00376{word-spacing:-0.384000pt;}
.wsc_c00376{word-spacing:-0.192000pt;}
.wsf_c00376{word-spacing:-0.096000pt;}
.wsb_c00376{word-spacing:0.000000pt;}
.ws14_c00376{word-spacing:0.096000pt;}
.ws16_c00376{word-spacing:0.149120pt;}
.ws1a_c00376{word-spacing:0.480000pt;}
.wsa_c00376{word-spacing:0.544000pt;}
.wsd_c00376{word-spacing:0.672000pt;}
.ws10_c00376{word-spacing:1.392000pt;}
.ws8_c00376{word-spacing:2.226048pt;}
.ws7_c00376{word-spacing:6.187456pt;}
.ws9_c00376{word-spacing:6.594368pt;}
._4_c00376{margin-left:-8.517952pt;}
._0_c00376{margin-left:-1.137600pt;}
._1_c00376{width:1.089600pt;}
._5_c00376{width:3.092160pt;}
._3_c00376{width:12.000000pt;}
._2_c00376{width:141.036800pt;}
.fs0_c00376{font-size:48.000000pt;}
.fs4_c00376{font-size:96.000000pt;}
.fs3_c00376{font-size:106.880000pt;}
.fs2_c00376{font-size:119.680000pt;}
.fs1_c00376{font-size:149.120000pt;}
.y0_c00376{bottom:0.000000pt;}
.y1_c00376{bottom:24.225600pt;}
.y2b_c00376{bottom:168.660667pt;}
.y2a_c00376{bottom:200.660667pt;}
.y19_c00376{bottom:375.521600pt;}
.y18_c00376{bottom:389.921600pt;}
.y17_c00376{bottom:404.321600pt;}
.y22_c00376{bottom:404.321733pt;}
.y27_c00376{bottom:418.721600pt;}
.y21_c00376{bottom:418.721733pt;}
.y16_c00376{bottom:433.121600pt;}
.y20_c00376{bottom:433.121733pt;}
.y15_c00376{bottom:447.521600pt;}
.y23_c00376{bottom:461.921600pt;}
.y1f_c00376{bottom:461.921733pt;}
.y14_c00376{bottom:476.321600pt;}
.y1e_c00376{bottom:476.321733pt;}
.y13_c00376{bottom:490.721600pt;}
.y25_c00376{bottom:490.721733pt;}
.y12_c00376{bottom:505.121600pt;}
.y1d_c00376{bottom:505.121733pt;}
.y10_c00376{bottom:519.521600pt;}
.y1c_c00376{bottom:519.521733pt;}
.y11_c00376{bottom:533.921600pt;}
.y24_c00376{bottom:533.921733pt;}
.yf_c00376{bottom:548.321600pt;}
.y1b_c00376{bottom:548.321733pt;}
.ye_c00376{bottom:562.721600pt;}
.y1a_c00376{bottom:562.721733pt;}
.y26_c00376{bottom:577.121600pt;}
.y28_c00376{bottom:577.122000pt;}
.y3_c00376{bottom:597.176667pt;}
.y5_c00376{bottom:597.176800pt;}
.y7_c00376{bottom:597.176933pt;}
.y9_c00376{bottom:599.100667pt;}
.yb_c00376{bottom:599.100800pt;}
.yd_c00376{bottom:599.100933pt;}
.y2_c00376{bottom:611.576667pt;}
.y4_c00376{bottom:611.576800pt;}
.y6_c00376{bottom:611.576933pt;}
.y8_c00376{bottom:613.500667pt;}
.ya_c00376{bottom:613.500800pt;}
.yc_c00376{bottom:613.500933pt;}
.y29_c00376{bottom:656.408133pt;}
.h1_c00376{height:34.968750pt;}
.h3_c00376{height:77.863750pt;}
.h2_c00376{height:108.636250pt;}
.h0_c00376{height:720.000000pt;}
.w0_c00376{width:1280.000000pt;}
.x0_c00376{left:0.000000pt;}
.x1_c00376{left:23.811067pt;}
.x35_c00376{left:32.655067pt;}
.x36_c00376{left:142.864133pt;}
.x10_c00376{left:158.759733pt;}
.x3_c00376{left:161.442000pt;}
.x13_c00376{left:165.311733pt;}
.x15_c00376{left:172.187733pt;}
.x11_c00376{left:173.315733pt;}
.x12_c00376{left:176.999733pt;}
.x2_c00376{left:178.086000pt;}
.x14_c00376{left:179.387733pt;}
.xe_c00376{left:264.135600pt;}
.x4_c00376{left:271.955600pt;}
.x5_c00376{left:274.679600pt;}
.xf_c00376{left:277.251600pt;}
.x16_c00376{left:359.111467pt;}
.x1a_c00376{left:361.187467pt;}
.x18_c00376{left:364.067467pt;}
.x19_c00376{left:372.707467pt;}
.x1b_c00376{left:383.591467pt;}
.x17_c00376{left:386.627467pt;}
.x6_c00376{left:414.717333pt;}
.x7_c00376{left:427.833333pt;}
.x1f_c00376{left:460.717867pt;}
.x1e_c00376{left:467.113867pt;}
.x20_c00376{left:473.041867pt;}
.x1c_c00376{left:474.949867pt;}
.x1d_c00376{left:480.553867pt;}
.x21_c00376{left:563.365600pt;}
.x25_c00376{left:665.941200pt;}
.x23_c00376{left:678.265200pt;}
.x22_c00376{left:679.381200pt;}
.x24_c00376{left:693.301200pt;}
.x9_c00376{left:731.427733pt;}
.x8_c00376{left:732.543733pt;}
.x26_c00376{left:771.040400pt;}
.x29_c00376{left:778.564400pt;}
.x27_c00376{left:782.404400pt;}
.x28_c00376{left:785.440400pt;}
.x2e_c00376{left:866.456400pt;}
.x2c_c00376{left:872.372400pt;}
.x2f_c00376{left:874.136400pt;}
.x2b_c00376{left:878.768400pt;}
.xb_c00376{left:880.660533pt;}
.x30_c00376{left:882.296400pt;}
.x2d_c00376{left:889.496400pt;}
.x2a_c00376{left:891.404400pt;}
.xa_c00376{left:897.460533pt;}
.xc_c00376{left:964.274267pt;}
.x32_c00376{left:968.232000pt;}
.xd_c00376{left:983.150267pt;}
.x33_c00376{left:984.552000pt;}
.x31_c00376{left:986.784000pt;}
.x34_c00376{left:1071.688533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_958943253ea8ff5f14d6b31b.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:0.938965;font-style:normal;font-weight:normal;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_219c6aeb0aaed59149d76ce3.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00377;src:url('chunks/assets/font_cd8a6d835b9301f29b30cf98.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00377{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.ls3_c00377{letter-spacing:-0.766080px;}
.ls1_c00377{letter-spacing:-0.324000px;}
.ls2_c00377{letter-spacing:-0.084240px;}
.ls0_c00377{letter-spacing:0.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;}
}
.ws2_c00377{word-spacing:-26.621280px;}
.ws1_c00377{word-spacing:-25.855200px;}
.ws0_c00377{word-spacing:-23.334480px;}
.ws8_c00377{word-spacing:-2.106720px;}
.wsc_c00377{word-spacing:-1.436400px;}
.wsb_c00377{word-spacing:-0.670320px;}
.ws9_c00377{word-spacing:-0.336960px;}
.ws3_c00377{word-spacing:0.000000px;}
.ws4_c00377{word-spacing:0.540000px;}
.wsa_c00377{word-spacing:0.766080px;}
.ws7_c00377{word-spacing:2.202480px;}
.ws6_c00377{word-spacing:2.872800px;}
.ws5_c00377{word-spacing:3.456000px;}
._3_c00377{margin-left:-2.732400px;}
._1_c00377{margin-left:-1.728000px;}
._0_c00377{width:1.080000px;}
._2_c00377{width:2.484000px;}
.fc0_c00377{color:rgb(0,0,0);}
.fs0_c00377{font-size:54.000000px;}
.fs2_c00377{font-size:84.240000px;}
.fs3_c00377{font-size:95.760000px;}
.fs1_c00377{font-size:108.000000px;}
.y0_c00377{bottom:0.000000px;}
.y1_c00377{bottom:27.253800px;}
.y11_c00377{bottom:118.219350px;}
.y4_c00377{bottom:143.764950px;}
.y15_c00377{bottom:145.877940px;}
.y14_c00377{bottom:174.677760px;}
.y3_c00377{bottom:176.164950px;}
.y13_c00377{bottom:203.477580px;}
.y12_c00377{bottom:232.277400px;}
.y2_c00377{bottom:240.964950px;}
.yd_c00377{bottom:273.704250px;}
.y10_c00377{bottom:320.607360px;}
.yf_c00377{bottom:349.407180px;}
.ye_c00377{bottom:378.207000px;}
.ya_c00377{bottom:438.293100px;}
.yc_c00377{bottom:498.666630px;}
.yb_c00377{bottom:527.466450px;}
.y5_c00377{bottom:602.475750px;}
.y9_c00377{bottom:629.186970px;}
.y8_c00377{bottom:657.986790px;}
.y7_c00377{bottom:691.287330px;}
.y6_c00377{bottom:720.087150px;}
.h1_c00377{height:39.339844px;}
.h3_c00377{height:61.370156px;}
.h4_c00377{height:69.762656px;}
.h2_c00377{height:78.626953px;}
.h0_c00377{height:810.000000px;}
.w0_c00377{width:1440.000000px;}
.x0_c00377{left:0.000000px;}
.x1_c00377{left:26.787450px;}
.x3_c00377{left:119.990850px;}
.x2_c00377{left:126.659850px;}
.x4_c00377{left:213.221850px;}
.x5_c00377{left:988.129800px;}
.x8_c00377{left:995.606100px;}
.x7_c00377{left:1000.240650px;}
.x6_c00377{left:1150.553550px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls3_c00377{letter-spacing:-0.680960pt;}
.ls1_c00377{letter-spacing:-0.288000pt;}
.ls2_c00377{letter-spacing:-0.074880pt;}
.ls0_c00377{letter-spacing:0.000000pt;}
.ws2_c00377{word-spacing:-23.663360pt;}
.ws1_c00377{word-spacing:-22.982400pt;}
.ws0_c00377{word-spacing:-20.741760pt;}
.ws8_c00377{word-spacing:-1.872640pt;}
.wsc_c00377{word-spacing:-1.276800pt;}
.wsb_c00377{word-spacing:-0.595840pt;}
.ws9_c00377{word-spacing:-0.299520pt;}
.ws3_c00377{word-spacing:0.000000pt;}
.ws4_c00377{word-spacing:0.480000pt;}
.wsa_c00377{word-spacing:0.680960pt;}
.ws7_c00377{word-spacing:1.957760pt;}
.ws6_c00377{word-spacing:2.553600pt;}
.ws5_c00377{word-spacing:3.072000pt;}
._3_c00377{margin-left:-2.428800pt;}
._1_c00377{margin-left:-1.536000pt;}
._0_c00377{width:0.960000pt;}
._2_c00377{width:2.208000pt;}
.fs0_c00377{font-size:48.000000pt;}
.fs2_c00377{font-size:74.880000pt;}
.fs3_c00377{font-size:85.120000pt;}
.fs1_c00377{font-size:96.000000pt;}
.y0_c00377{bottom:0.000000pt;}
.y1_c00377{bottom:24.225600pt;}
.y11_c00377{bottom:105.083867pt;}
.y4_c00377{bottom:127.791067pt;}
.y15_c00377{bottom:129.669280pt;}
.y14_c00377{bottom:155.269120pt;}
.y3_c00377{bottom:156.591067pt;}
.y13_c00377{bottom:180.868960pt;}
.y12_c00377{bottom:206.468800pt;}
.y2_c00377{bottom:214.191067pt;}
.yd_c00377{bottom:243.292667pt;}
.y10_c00377{bottom:284.984320pt;}
.yf_c00377{bottom:310.584160pt;}
.ye_c00377{bottom:336.184000pt;}
.ya_c00377{bottom:389.593867pt;}
.yc_c00377{bottom:443.259227pt;}
.yb_c00377{bottom:468.859067pt;}
.y5_c00377{bottom:535.534000pt;}
.y9_c00377{bottom:559.277307pt;}
.y8_c00377{bottom:584.877147pt;}
.y7_c00377{bottom:614.477627pt;}
.y6_c00377{bottom:640.077467pt;}
.h1_c00377{height:34.968750pt;}
.h3_c00377{height:54.551250pt;}
.h4_c00377{height:62.011250pt;}
.h2_c00377{height:69.890625pt;}
.h0_c00377{height:720.000000pt;}
.w0_c00377{width:1280.000000pt;}
.x0_c00377{left:0.000000pt;}
.x1_c00377{left:23.811067pt;}
.x3_c00377{left:106.658533pt;}
.x2_c00377{left:112.586533pt;}
.x4_c00377{left:189.530533pt;}
.x5_c00377{left:878.337600pt;}
.x8_c00377{left:884.983200pt;}
.x7_c00377{left:889.102800pt;}
.x6_c00377{left:1022.714267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_791d9b8dff4c874a8c1f067c.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:0.938965;font-style:normal;font-weight:normal;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_5254d26ef9d48781ed2a8dd1.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:0.938965;font-style:normal;font-weight:normal;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_4c01be6ffb78ba51eede62ef.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:0.817871;font-style: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;}
.lsa_c00378{letter-spacing:-6.486480px;}
.ls7_c00378{letter-spacing:-2.288880px;}
.ls8_c00378{letter-spacing:-0.403920px;}
.lsb_c00378{letter-spacing:-0.336960px;}
.ls4_c00378{letter-spacing:-0.269280px;}
.ls5_c00378{letter-spacing:-0.167760px;}
.ls9_c00378{letter-spacing:-0.144000px;}
.ls6_c00378{letter-spacing:-0.134640px;}
.ls3_c00378{letter-spacing:0.000000px;}
.ls1_c00378{letter-spacing:0.216000px;}
.ls0_c00378{letter-spacing:0.335520px;}
.ls2_c00378{letter-spacing:59.371200px;}
.sc__c00378{text-shadow:none;}
.sc0_c00378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00378{-webkit-text-stroke:0px transparent;}
.sc0_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00378{word-spacing:-46.637280px;}
.ws6_c00378{word-spacing:-37.429920px;}
.ws3_c00378{word-spacing:-37.160640px;}
.ws10_c00378{word-spacing:-26.621280px;}
.wsf_c00378{word-spacing:-23.081760px;}
.wsd_c00378{word-spacing:-20.232000px;}
.wsc_c00378{word-spacing:-19.872000px;}
.wse_c00378{word-spacing:-16.932240px;}
.ws18_c00378{word-spacing:-5.391360px;}
.ws16_c00378{word-spacing:-2.106720px;}
.ws17_c00378{word-spacing:-1.436400px;}
.ws19_c00378{word-spacing:-1.432080px;}
.ws13_c00378{word-spacing:-0.792000px;}
.ws15_c00378{word-spacing:-0.670320px;}
.ws14_c00378{word-spacing:-0.336960px;}
.ws12_c00378{word-spacing:-0.335520px;}
.ws11_c00378{word-spacing:0.000000px;}
.wsa_c00378{word-spacing:1.481040px;}
.ws4_c00378{word-spacing:2.383128px;}
.ws1_c00378{word-spacing:2.975544px;}
.ws7_c00378{word-spacing:6.328080px;}
.ws8_c00378{word-spacing:7.216704px;}
.ws2_c00378{word-spacing:7.835040px;}
.ws5_c00378{word-spacing:8.280360px;}
.wsb_c00378{word-spacing:8.697744px;}
.ws9_c00378{word-spacing:8.791992px;}
._2_c00378{margin-left:-10.084536px;}
._4_c00378{margin-left:-5.328000px;}
._3_c00378{margin-left:-1.292544px;}
._1_c00378{width:1.279080px;}
._6_c00378{width:2.612664px;}
._5_c00378{width:6.141096px;}
._0_c00378{width:45.895968px;}
.fc1_c00378{color:rgb(0,0,0);}
.fc0_c00378{color:rgb(0,74,150);}
.fs2_c00378{font-size:54.000000px;}
.fs3_c00378{font-size:72.000000px;}
.fs4_c00378{font-size:84.240000px;}
.fs5_c00378{font-size:95.760000px;}
.fs1_c00378{font-size:134.640000px;}
.fs0_c00378{font-size:167.760000px;}
.y0_c00378{bottom:0.000000px;}
.y3_c00378{bottom:27.253800px;}
.y15_c00378{bottom:61.416900px;}
.y17_c00378{bottom:82.731930px;}
.y14_c00378{bottom:91.111500px;}
.y16_c00378{bottom:107.940750px;}
.ya_c00378{bottom:122.509950px;}
.y12_c00378{bottom:138.232560px;}
.y11_c00378{bottom:167.032380px;}
.y6_c00378{bottom:173.977500px;}
.y10_c00378{bottom:195.832200px;}
.yf_c00378{bottom:224.632020px;}
.ye_c00378{bottom:253.431840px;}
.y7_c00378{bottom:309.515850px;}
.yd_c00378{bottom:329.034360px;}
.yc_c00378{bottom:357.834180px;}
.y9_c00378{bottom:361.772130px;}
.y13_c00378{bottom:382.495050px;}
.yb_c00378{bottom:386.634000px;}
.y8_c00378{bottom:386.980950px;}
.y5_c00378{bottom:440.765700px;}
.y4_c00378{bottom:462.365700px;}
.y2_c00378{bottom:667.727430px;}
.y1_c00378{bottom:718.116450px;}
.h3_c00378{height:39.339844px;}
.h4_c00378{height:52.453125px;}
.h5_c00378{height:61.370156px;}
.h7_c00378{height:69.762656px;}
.h6_c00378{height:73.783828px;}
.h2_c00378{height:98.087344px;}
.h1_c00378{height:122.215781px;}
.h0_c00378{height:810.000000px;}
.w0_c00378{width:1440.000000px;}
.x0_c00378{left:0.000000px;}
.x2_c00378{left:26.787450px;}
.x4_c00378{left:83.333700px;}
.x5_c00378{left:87.991650px;}
.x6_c00378{left:91.906350px;}
.x3_c00378{left:109.253700px;}
.x1_c00378{left:193.500450px;}
.x10_c00378{left:356.333400px;}
.x8_c00378{left:366.318060px;}
.x11_c00378{left:368.211240px;}
.x7_c00378{left:380.723100px;}
.xf_c00378{left:602.928990px;}
.x9_c00378{left:640.936650px;}
.xe_c00378{left:646.123050px;}
.xd_c00378{left:653.830050px;}
.xa_c00378{left:1051.848450px;}
.xb_c00378{left:1085.699610px;}
.xc_c00378{left:1105.845930px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.lsa_c00378{letter-spacing:-5.765760pt;}
.ls7_c00378{letter-spacing:-2.034560pt;}
.ls8_c00378{letter-spacing:-0.359040pt;}
.lsb_c00378{letter-spacing:-0.299520pt;}
.ls4_c00378{letter-spacing:-0.239360pt;}
.ls5_c00378{letter-spacing:-0.149120pt;}
.ls9_c00378{letter-spacing:-0.128000pt;}
.ls6_c00378{letter-spacing:-0.119680pt;}
.ls3_c00378{letter-spacing:0.000000pt;}
.ls1_c00378{letter-spacing:0.192000pt;}
.ls0_c00378{letter-spacing:0.298240pt;}
.ls2_c00378{letter-spacing:52.774400pt;}
.ws0_c00378{word-spacing:-41.455360pt;}
.ws6_c00378{word-spacing:-33.271040pt;}
.ws3_c00378{word-spacing:-33.031680pt;}
.ws10_c00378{word-spacing:-23.663360pt;}
.wsf_c00378{word-spacing:-20.517120pt;}
.wsd_c00378{word-spacing:-17.984000pt;}
.wsc_c00378{word-spacing:-17.664000pt;}
.wse_c00378{word-spacing:-15.050880pt;}
.ws18_c00378{word-spacing:-4.792320pt;}
.ws16_c00378{word-spacing:-1.872640pt;}
.ws17_c00378{word-spacing:-1.276800pt;}
.ws19_c00378{word-spacing:-1.272960pt;}
.ws13_c00378{word-spacing:-0.704000pt;}
.ws15_c00378{word-spacing:-0.595840pt;}
.ws14_c00378{word-spacing:-0.299520pt;}
.ws12_c00378{word-spacing:-0.298240pt;}
.ws11_c00378{word-spacing:0.000000pt;}
.wsa_c00378{word-spacing:1.316480pt;}
.ws4_c00378{word-spacing:2.118336pt;}
.ws1_c00378{word-spacing:2.644928pt;}
.ws7_c00378{word-spacing:5.624960pt;}
.ws8_c00378{word-spacing:6.414848pt;}
.ws2_c00378{word-spacing:6.964480pt;}
.ws5_c00378{word-spacing:7.360320pt;}
.wsb_c00378{word-spacing:7.731328pt;}
.ws9_c00378{word-spacing:7.815104pt;}
._2_c00378{margin-left:-8.964032pt;}
._4_c00378{margin-left:-4.736000pt;}
._3_c00378{margin-left:-1.148928pt;}
._1_c00378{width:1.136960pt;}
._6_c00378{width:2.322368pt;}
._5_c00378{width:5.458752pt;}
._0_c00378{width:40.796416pt;}
.fs2_c00378{font-size:48.000000pt;}
.fs3_c00378{font-size:64.000000pt;}
.fs4_c00378{font-size:74.880000pt;}
.fs5_c00378{font-size:85.120000pt;}
.fs1_c00378{font-size:119.680000pt;}
.fs0_c00378{font-size:149.120000pt;}
.y0_c00378{bottom:0.000000pt;}
.y3_c00378{bottom:24.225600pt;}
.y15_c00378{bottom:54.592800pt;}
.y17_c00378{bottom:73.539493pt;}
.y14_c00378{bottom:80.988000pt;}
.y16_c00378{bottom:95.947333pt;}
.ya_c00378{bottom:108.897733pt;}
.y12_c00378{bottom:122.873387pt;}
.y11_c00378{bottom:148.473227pt;}
.y6_c00378{bottom:154.646667pt;}
.y10_c00378{bottom:174.073067pt;}
.yf_c00378{bottom:199.672907pt;}
.ye_c00378{bottom:225.272747pt;}
.y7_c00378{bottom:275.125200pt;}
.yd_c00378{bottom:292.474987pt;}
.yc_c00378{bottom:318.074827pt;}
.y9_c00378{bottom:321.575227pt;}
.y13_c00378{bottom:339.995600pt;}
.yb_c00378{bottom:343.674667pt;}
.y8_c00378{bottom:343.983067pt;}
.y5_c00378{bottom:391.791733pt;}
.y4_c00378{bottom:410.991733pt;}
.y2_c00378{bottom:593.535493pt;}
.y1_c00378{bottom:638.325733pt;}
.h3_c00378{height:34.968750pt;}
.h4_c00378{height:46.625000pt;}
.h5_c00378{height:54.551250pt;}
.h7_c00378{height:62.011250pt;}
.h6_c00378{height:65.585625pt;}
.h2_c00378{height:87.188750pt;}
.h1_c00378{height:108.636250pt;}
.h0_c00378{height:720.000000pt;}
.w0_c00378{width:1280.000000pt;}
.x0_c00378{left:0.000000pt;}
.x2_c00378{left:23.811067pt;}
.x4_c00378{left:74.074400pt;}
.x5_c00378{left:78.214800pt;}
.x6_c00378{left:81.694533pt;}
.x3_c00378{left:97.114400pt;}
.x1_c00378{left:172.000400pt;}
.x10_c00378{left:316.740800pt;}
.x8_c00378{left:325.616053pt;}
.x11_c00378{left:327.298880pt;}
.x7_c00378{left:338.420533pt;}
.xf_c00378{left:535.936880pt;}
.x9_c00378{left:569.721467pt;}
.xe_c00378{left:574.331600pt;}
.xd_c00378{left:581.182267pt;}
.xa_c00378{left:934.976400pt;}
.xb_c00378{left:965.066320pt;}
.xc_c00378{left:982.974160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2a52922d6756cf229b12f321.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:0.938965;font-style:normal;font-weight:normal;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_d5e421c87834fdf928d38657.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:0.684082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00379;src:url('chunks/assets/font_b56d52c68d0bd744f086acf3.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;line-height:0.809082;font-style:normal;font-weight:normal;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_f31c8739ffb7af639e7574e1.woff2')format("woff");}.ff4_c00379{font-family:ff4_c00379;line-height:0.938965;font-style:normal;font-weight:normal;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_93707c76614ac520497dd348.woff2')format("woff");}.ff5_c00379{font-family:ff5_c00379;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00379{transform:matrix(0.000000,-0.249647,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249647,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249647,0.250000,0.000000,0,0);}
.m0_c00379{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00379{transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);}
.v0_c00379{vertical-align:0.000000px;}
.ls9_c00379{letter-spacing:-10.098000px;}
.lsd_c00379{letter-spacing:-1.653555px;}
.ls12_c00379{letter-spacing:-0.324000px;}
.ls7_c00379{letter-spacing:-0.269280px;}
.ls8_c00379{letter-spacing:-0.167760px;}
.ls11_c00379{letter-spacing:-0.144000px;}
.lsb_c00379{letter-spacing:-0.134640px;}
.ls10_c00379{letter-spacing:-0.119520px;}
.ls6_c00379{letter-spacing:0.000000px;}
.ls4_c00379{letter-spacing:0.144000px;}
.ls5_c00379{letter-spacing:0.216000px;}
.lsa_c00379{letter-spacing:0.269280px;}
.ls2_c00379{letter-spacing:0.288000px;}
.lsf_c00379{letter-spacing:0.293966px;}
.lse_c00379{letter-spacing:0.294382px;}
.ls1_c00379{letter-spacing:0.295920px;}
.ls0_c00379{letter-spacing:0.335520px;}
.lsc_c00379{letter-spacing:0.793706px;}
.ls3_c00379{letter-spacing:16.434000px;}
.sc__c00379{text-shadow:none;}
.sc0_c00379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00379{-webkit-text-stroke:0px transparent;}
.sc0_c00379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00379{word-spacing:-46.637280px;}
.ws5_c00379{word-spacing:-37.429920px;}
.ws6_c00379{word-spacing:-37.295280px;}
.ws1_c00379{word-spacing:-37.160640px;}
.ws13_c00379{word-spacing:-30.240000px;}
.ws14_c00379{word-spacing:-29.700000px;}
.ws15_c00379{word-spacing:-26.621280px;}
.ws10_c00379{word-spacing:-20.304000px;}
.ws12_c00379{word-spacing:-20.016000px;}
.ws11_c00379{word-spacing:-19.872000px;}
.wsd_c00379{word-spacing:-15.741844px;}
.wse_c00379{word-spacing:-13.294582px;}
.ws19_c00379{word-spacing:-4.636510px;}
.ws1a_c00379{word-spacing:-4.629971px;}
.ws1e_c00379{word-spacing:-2.091600px;}
.ws1d_c00379{word-spacing:-0.657360px;}
.ws18_c00379{word-spacing:-0.335520px;}
.ws1b_c00379{word-spacing:-0.288000px;}
.ws1c_c00379{word-spacing:-0.144000px;}
.ws20_c00379{word-spacing:-0.108000px;}
.ws16_c00379{word-spacing:0.000000px;}
.ws1f_c00379{word-spacing:0.059760px;}
.ws17_c00379{word-spacing:0.335520px;}
.ws21_c00379{word-spacing:0.540000px;}
.ws23_c00379{word-spacing:0.766080px;}
.ws22_c00379{word-spacing:1.296000px;}
.ws24_c00379{word-spacing:2.052000px;}
.ws7_c00379{word-spacing:6.408864px;}
.wsb_c00379{word-spacing:7.135920px;}
.ws4_c00379{word-spacing:7.432128px;}
.ws2_c00379{word-spacing:8.038008px;}
.ws9_c00379{word-spacing:8.616960px;}
.wsc_c00379{word-spacing:8.632920px;}
.ws8_c00379{word-spacing:8.657352px;}
.wsa_c00379{word-spacing:9.020880px;}
.ws3_c00379{word-spacing:28.368648px;}
.wsf_c00379{word-spacing:471.503708px;}
._1_c00379{margin-left:-11.068488px;}
._a_c00379{margin-left:-7.635600px;}
._7_c00379{margin-left:-5.416331px;}
._3_c00379{margin-left:-2.626032px;}
._5_c00379{margin-left:-1.206965px;}
._8_c00379{width:1.374293px;}
._4_c00379{width:2.414190px;}
._9_c00379{width:3.523180px;}
._6_c00379{width:5.035877px;}
._0_c00379{width:10.462608px;}
._2_c00379{width:44.891856px;}
.fc4_c00379{color:rgb(112,48,160);}
.fc3_c00379{color:rgb(192,0,0);}
.fc2_c00379{color:rgb(0,32,96);}
.fc5_c00379{color:rgb(255,255,255);}
.fc1_c00379{color:rgb(0,0,0);}
.fc0_c00379{color:rgb(0,74,150);}
.fs2_c00379{font-size:54.000000px;}
.fs7_c00379{font-size:59.760000px;}
.fs3_c00379{font-size:66.142200px;}
.fs6_c00379{font-size:72.000000px;}
.fs5_c00379{font-size:73.491600px;}
.fs4_c00379{font-size:73.595400px;}
.fs9_c00379{font-size:95.760000px;}
.fs8_c00379{font-size:108.000000px;}
.fs1_c00379{font-size:134.640000px;}
.fs0_c00379{font-size:167.760000px;}
.y0_c00379{bottom:0.000000px;}
.yd_c00379{bottom:16.987800px;}
.y3_c00379{bottom:27.253800px;}
.yb_c00379{bottom:42.434250px;}
.y13_c00379{bottom:52.920750px;}
.y5_c00379{bottom:63.669450px;}
.y12_c00379{bottom:70.923450px;}
.y4_c00379{bottom:105.019500px;}
.y6_c00379{bottom:147.960900px;}
.yc_c00379{bottom:153.976950px;}
.y19_c00379{bottom:211.053000px;}
.y7_c00379{bottom:232.252500px;}
.yf_c00379{bottom:270.498900px;}
.ye_c00379{bottom:292.098900px;}
.y8_c00379{bottom:316.543950px;}
.y1f_c00379{bottom:365.941050px;}
.y18_c00379{bottom:372.225000px;}
.y1e_c00379{bottom:398.341050px;}
.y9_c00379{bottom:400.835550px;}
.y17_c00379{bottom:443.973000px;}
.y16_c00379{bottom:473.349000px;}
.ya_c00379{bottom:485.127000px;}
.y15_c00379{bottom:503.661000px;}
.y1d_c00379{bottom:505.865580px;}
.y14_c00379{bottom:525.261000px;}
.y1c_c00379{bottom:535.383600px;}
.y11_c00379{bottom:549.228900px;}
.y1b_c00379{bottom:567.783600px;}
.y10_c00379{bottom:570.828900px;}
.y1a_c00379{bottom:600.183600px;}
.y2_c00379{bottom:667.727430px;}
.y1_c00379{bottom:718.116450px;}
.h3_c00379{height:39.339844px;}
.h9_c00379{height:43.536094px;}
.h5_c00379{height:44.084035px;}
.h7_c00379{height:48.982438px;}
.h6_c00379{height:49.051622px;}
.h8_c00379{height:52.453125px;}
.hc_c00379{height:69.762656px;}
.hb_c00379{height:78.626953px;}
.ha_c00379{height:78.679688px;}
.h2_c00379{height:122.171861px;}
.h1_c00379{height:122.215781px;}
.h4_c00379{height:504.640500px;}
.h0_c00379{height:810.000000px;}
.w1_c00379{width:697.317000px;}
.w0_c00379{width:1440.000000px;}
.x0_c00379{left:0.000000px;}
.x2_c00379{left:26.787450px;}
.x8_c00379{left:30.562650px;}
.x6_c00379{left:38.305500px;}
.x5_c00379{left:46.595100px;}
.x4_c00379{left:54.884850px;}
.x3_c00379{left:69.300000px;}
.x7_c00379{left:77.605800px;}
.xb_c00379{left:162.047700px;}
.xd_c00379{left:174.167400px;}
.xc_c00379{left:175.787400px;}
.xf_c00379{left:191.807400px;}
.x1_c00379{left:193.500450px;}
.xe_c00379{left:196.847400px;}
.x9_c00379{left:215.765250px;}
.x14_c00379{left:517.513800px;}
.xa_c00379{left:649.674300px;}
.x10_c00379{left:902.844600px;}
.x11_c00379{left:939.753600px;}
.x12_c00379{left:1024.884600px;}
.x13_c00379{left:1052.779200px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls9_c00379{letter-spacing:-8.976000pt;}
.lsd_c00379{letter-spacing:-1.469827pt;}
.ls12_c00379{letter-spacing:-0.288000pt;}
.ls7_c00379{letter-spacing:-0.239360pt;}
.ls8_c00379{letter-spacing:-0.149120pt;}
.ls11_c00379{letter-spacing:-0.128000pt;}
.lsb_c00379{letter-spacing:-0.119680pt;}
.ls10_c00379{letter-spacing:-0.106240pt;}
.ls6_c00379{letter-spacing:0.000000pt;}
.ls4_c00379{letter-spacing:0.128000pt;}
.ls5_c00379{letter-spacing:0.192000pt;}
.lsa_c00379{letter-spacing:0.239360pt;}
.ls2_c00379{letter-spacing:0.256000pt;}
.lsf_c00379{letter-spacing:0.261303pt;}
.lse_c00379{letter-spacing:0.261673pt;}
.ls1_c00379{letter-spacing:0.263040pt;}
.ls0_c00379{letter-spacing:0.298240pt;}
.lsc_c00379{letter-spacing:0.705517pt;}
.ls3_c00379{letter-spacing:14.608000pt;}
.ws0_c00379{word-spacing:-41.455360pt;}
.ws5_c00379{word-spacing:-33.271040pt;}
.ws6_c00379{word-spacing:-33.151360pt;}
.ws1_c00379{word-spacing:-33.031680pt;}
.ws13_c00379{word-spacing:-26.880000pt;}
.ws14_c00379{word-spacing:-26.400000pt;}
.ws15_c00379{word-spacing:-23.663360pt;}
.ws10_c00379{word-spacing:-18.048000pt;}
.ws12_c00379{word-spacing:-17.792000pt;}
.ws11_c00379{word-spacing:-17.664000pt;}
.wsd_c00379{word-spacing:-13.992750pt;}
.wse_c00379{word-spacing:-11.817406pt;}
.ws19_c00379{word-spacing:-4.121342pt;}
.ws1a_c00379{word-spacing:-4.115530pt;}
.ws1e_c00379{word-spacing:-1.859200pt;}
.ws1d_c00379{word-spacing:-0.584320pt;}
.ws18_c00379{word-spacing:-0.298240pt;}
.ws1b_c00379{word-spacing:-0.256000pt;}
.ws1c_c00379{word-spacing:-0.128000pt;}
.ws20_c00379{word-spacing:-0.096000pt;}
.ws16_c00379{word-spacing:0.000000pt;}
.ws1f_c00379{word-spacing:0.053120pt;}
.ws17_c00379{word-spacing:0.298240pt;}
.ws21_c00379{word-spacing:0.480000pt;}
.ws23_c00379{word-spacing:0.680960pt;}
.ws22_c00379{word-spacing:1.152000pt;}
.ws24_c00379{word-spacing:1.824000pt;}
.ws7_c00379{word-spacing:5.696768pt;}
.wsb_c00379{word-spacing:6.343040pt;}
.ws4_c00379{word-spacing:6.606336pt;}
.ws2_c00379{word-spacing:7.144896pt;}
.ws9_c00379{word-spacing:7.659520pt;}
.wsc_c00379{word-spacing:7.673707pt;}
.ws8_c00379{word-spacing:7.695424pt;}
.wsa_c00379{word-spacing:8.018560pt;}
.ws3_c00379{word-spacing:25.216576pt;}
.wsf_c00379{word-spacing:419.114407pt;}
._1_c00379{margin-left:-9.838656pt;}
._a_c00379{margin-left:-6.787200pt;}
._7_c00379{margin-left:-4.814516pt;}
._3_c00379{margin-left:-2.334251pt;}
._5_c00379{margin-left:-1.072857pt;}
._8_c00379{width:1.221594pt;}
._4_c00379{width:2.145947pt;}
._9_c00379{width:3.131716pt;}
._6_c00379{width:4.476335pt;}
._0_c00379{width:9.300096pt;}
._2_c00379{width:39.903872pt;}
.fs2_c00379{font-size:48.000000pt;}
.fs7_c00379{font-size:53.120000pt;}
.fs3_c00379{font-size:58.793067pt;}
.fs6_c00379{font-size:64.000000pt;}
.fs5_c00379{font-size:65.325867pt;}
.fs4_c00379{font-size:65.418133pt;}
.fs9_c00379{font-size:85.120000pt;}
.fs8_c00379{font-size:96.000000pt;}
.fs1_c00379{font-size:119.680000pt;}
.fs0_c00379{font-size:149.120000pt;}
.y0_c00379{bottom:0.000000pt;}
.yd_c00379{bottom:15.100267pt;}
.y3_c00379{bottom:24.225600pt;}
.yb_c00379{bottom:37.719333pt;}
.y13_c00379{bottom:47.040667pt;}
.y5_c00379{bottom:56.595067pt;}
.y12_c00379{bottom:63.043067pt;}
.y4_c00379{bottom:93.350667pt;}
.y6_c00379{bottom:131.520800pt;}
.yc_c00379{bottom:136.868400pt;}
.y19_c00379{bottom:187.602667pt;}
.y7_c00379{bottom:206.446667pt;}
.yf_c00379{bottom:240.443467pt;}
.ye_c00379{bottom:259.643467pt;}
.y8_c00379{bottom:281.372400pt;}
.y1f_c00379{bottom:325.280933pt;}
.y18_c00379{bottom:330.866667pt;}
.y1e_c00379{bottom:354.080933pt;}
.y9_c00379{bottom:356.298267pt;}
.y17_c00379{bottom:394.642667pt;}
.y16_c00379{bottom:420.754667pt;}
.ya_c00379{bottom:431.224000pt;}
.y15_c00379{bottom:447.698667pt;}
.y1d_c00379{bottom:449.658293pt;}
.y14_c00379{bottom:466.898667pt;}
.y1c_c00379{bottom:475.896533pt;}
.y11_c00379{bottom:488.203467pt;}
.y1b_c00379{bottom:504.696533pt;}
.y10_c00379{bottom:507.403467pt;}
.y1a_c00379{bottom:533.496533pt;}
.y2_c00379{bottom:593.535493pt;}
.y1_c00379{bottom:638.325733pt;}
.h3_c00379{height:34.968750pt;}
.h9_c00379{height:38.698750pt;}
.h5_c00379{height:39.185809pt;}
.h7_c00379{height:43.539945pt;}
.h6_c00379{height:43.601441pt;}
.h8_c00379{height:46.625000pt;}
.hc_c00379{height:62.011250pt;}
.hb_c00379{height:69.890625pt;}
.ha_c00379{height:69.937500pt;}
.h2_c00379{height:108.597210pt;}
.h1_c00379{height:108.636250pt;}
.h4_c00379{height:448.569333pt;}
.h0_c00379{height:720.000000pt;}
.w1_c00379{width:619.837333pt;}
.w0_c00379{width:1280.000000pt;}
.x0_c00379{left:0.000000pt;}
.x2_c00379{left:23.811067pt;}
.x8_c00379{left:27.166800pt;}
.x6_c00379{left:34.049333pt;}
.x5_c00379{left:41.417867pt;}
.x4_c00379{left:48.786533pt;}
.x3_c00379{left:61.600000pt;}
.x7_c00379{left:68.982933pt;}
.xb_c00379{left:144.042400pt;}
.xd_c00379{left:154.815467pt;}
.xc_c00379{left:156.255467pt;}
.xf_c00379{left:170.495467pt;}
.x1_c00379{left:172.000400pt;}
.xe_c00379{left:174.975467pt;}
.x9_c00379{left:191.791333pt;}
.x14_c00379{left:460.012267pt;}
.xa_c00379{left:577.488267pt;}
.x10_c00379{left:802.528533pt;}
.x11_c00379{left:835.336533pt;}
.x12_c00379{left:911.008533pt;}
.x13_c00379{left:935.803733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c75fbc0040e1c9abe244113.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:0.938965;font-style:normal;font-weight:normal;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_9c359590a3a4f15e84322ef7.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:0.938965;font-style:normal;font-weight:normal;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_17336cbcd070688f7160fbc2.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:0.817871;font-style: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;}
.lsb_c00380{letter-spacing:-9.828720px;}
.lse_c00380{letter-spacing:-8.294400px;}
.ls8_c00380{letter-spacing:-0.384480px;}
.ls11_c00380{letter-spacing:-0.345600px;}
.ls10_c00380{letter-spacing:-0.288000px;}
.ls12_c00380{letter-spacing:-0.287280px;}
.lsd_c00380{letter-spacing:-0.240480px;}
.ls9_c00380{letter-spacing:-0.144000px;}
.lsa_c00380{letter-spacing:0.000000px;}
.ls5_c00380{letter-spacing:0.144000px;}
.ls13_c00380{letter-spacing:0.191520px;}
.ls0_c00380{letter-spacing:0.197280px;}
.lsf_c00380{letter-spacing:0.230400px;}
.ls6_c00380{letter-spacing:0.288000px;}
.ls2_c00380{letter-spacing:0.290160px;}
.ls7_c00380{letter-spacing:0.345600px;}
.lsc_c00380{letter-spacing:0.383040px;}
.ls3_c00380{letter-spacing:33.186240px;}
.ls1_c00380{letter-spacing:67.454640px;}
.ls4_c00380{letter-spacing:111.600000px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00380{word-spacing:-46.637280px;}
.wsa_c00380{word-spacing:-39.744000px;}
.wsd_c00380{word-spacing:-32.371200px;}
.ws7_c00380{word-spacing:-32.025600px;}
.ws1_c00380{word-spacing:-27.601200px;}
.ws12_c00380{word-spacing:-26.621280px;}
.ws4_c00380{word-spacing:-1.283184px;}
.ws14_c00380{word-spacing:-1.008000px;}
.ws13_c00380{word-spacing:-0.384480px;}
.ws15_c00380{word-spacing:0.000000px;}
.ws8_c00380{word-spacing:0.161280px;}
.ws16_c00380{word-spacing:0.240480px;}
.ws11_c00380{word-spacing:4.979520px;}
.ws10_c00380{word-spacing:5.180616px;}
.ws5_c00380{word-spacing:5.996448px;}
.ws3_c00380{word-spacing:6.128640px;}
.ws9_c00380{word-spacing:6.307200px;}
.wsc_c00380{word-spacing:6.624000px;}
.wsf_c00380{word-spacing:7.727832px;}
.ws2_c00380{word-spacing:8.886240px;}
.wsb_c00380{word-spacing:9.331200px;}
.ws6_c00380{word-spacing:23.616000px;}
.wse_c00380{word-spacing:86.452560px;}
._5_c00380{margin-left:-7.794864px;}
._2_c00380{margin-left:-3.141360px;}
._0_c00380{width:1.211112px;}
._1_c00380{width:2.448000px;}
._3_c00380{width:9.478656px;}
._4_c00380{width:36.774144px;}
.fc2_c00380{color:transparent;}
.fc1_c00380{color:rgb(255,255,255);}
.fc0_c00380{color:rgb(0,74,150);}
.fs5_c00380{font-size:95.760000px;}
.fs6_c00380{font-size:115.200000px;}
.fs4_c00380{font-size:120.240000px;}
.fs3_c00380{font-size:134.640000px;}
.fs1_c00380{font-size:144.000000px;}
.fs2_c00380{font-size:167.760000px;}
.fs0_c00380{font-size:192.240000px;}
.y0_c00380{bottom:0.000000px;}
.y8_c00380{bottom:61.631100px;}
.y7_c00380{bottom:106.638300px;}
.y6_c00380{bottom:152.912700px;}
.y5_c00380{bottom:205.098300px;}
.y4_c00380{bottom:256.038300px;}
.y2_c00380{bottom:444.678000px;}
.y1_c00380{bottom:499.758000px;}
.y3_c00380{bottom:724.176300px;}
.h7_c00380{height:69.762656px;}
.h5_c00380{height:83.925000px;}
.h6_c00380{height:87.596719px;}
.h4_c00380{height:92.645859px;}
.h2_c00380{height:104.906250px;}
.h3_c00380{height:122.215781px;}
.h1_c00380{height:140.049844px;}
.h0_c00380{height:810.000000px;}
.w0_c00380{width:1440.000000px;}
.x0_c00380{left:0.000000px;}
.x1_c00380{left:51.117450px;}
.x2_c00380{left:80.673450px;}
.x3_c00380{left:781.061100px;}
.x5_c00380{left:822.273900px;}
.x4_c00380{left:830.741100px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.lsb_c00380{letter-spacing:-8.736640pt;}
.lse_c00380{letter-spacing:-7.372800pt;}
.ls8_c00380{letter-spacing:-0.341760pt;}
.ls11_c00380{letter-spacing:-0.307200pt;}
.ls10_c00380{letter-spacing:-0.256000pt;}
.ls12_c00380{letter-spacing:-0.255360pt;}
.lsd_c00380{letter-spacing:-0.213760pt;}
.ls9_c00380{letter-spacing:-0.128000pt;}
.lsa_c00380{letter-spacing:0.000000pt;}
.ls5_c00380{letter-spacing:0.128000pt;}
.ls13_c00380{letter-spacing:0.170240pt;}
.ls0_c00380{letter-spacing:0.175360pt;}
.lsf_c00380{letter-spacing:0.204800pt;}
.ls6_c00380{letter-spacing:0.256000pt;}
.ls2_c00380{letter-spacing:0.257920pt;}
.ls7_c00380{letter-spacing:0.307200pt;}
.lsc_c00380{letter-spacing:0.340480pt;}
.ls3_c00380{letter-spacing:29.498880pt;}
.ls1_c00380{letter-spacing:59.959680pt;}
.ls4_c00380{letter-spacing:99.200000pt;}
.ws0_c00380{word-spacing:-41.455360pt;}
.wsa_c00380{word-spacing:-35.328000pt;}
.wsd_c00380{word-spacing:-28.774400pt;}
.ws7_c00380{word-spacing:-28.467200pt;}
.ws1_c00380{word-spacing:-24.534400pt;}
.ws12_c00380{word-spacing:-23.663360pt;}
.ws4_c00380{word-spacing:-1.140608pt;}
.ws14_c00380{word-spacing:-0.896000pt;}
.ws13_c00380{word-spacing:-0.341760pt;}
.ws15_c00380{word-spacing:0.000000pt;}
.ws8_c00380{word-spacing:0.143360pt;}
.ws16_c00380{word-spacing:0.213760pt;}
.ws11_c00380{word-spacing:4.426240pt;}
.ws10_c00380{word-spacing:4.604992pt;}
.ws5_c00380{word-spacing:5.330176pt;}
.ws3_c00380{word-spacing:5.447680pt;}
.ws9_c00380{word-spacing:5.606400pt;}
.wsc_c00380{word-spacing:5.888000pt;}
.wsf_c00380{word-spacing:6.869184pt;}
.ws2_c00380{word-spacing:7.898880pt;}
.wsb_c00380{word-spacing:8.294400pt;}
.ws6_c00380{word-spacing:20.992000pt;}
.wse_c00380{word-spacing:76.846720pt;}
._5_c00380{margin-left:-6.928768pt;}
._2_c00380{margin-left:-2.792320pt;}
._0_c00380{width:1.076544pt;}
._1_c00380{width:2.176000pt;}
._3_c00380{width:8.425472pt;}
._4_c00380{width:32.688128pt;}
.fs5_c00380{font-size:85.120000pt;}
.fs6_c00380{font-size:102.400000pt;}
.fs4_c00380{font-size:106.880000pt;}
.fs3_c00380{font-size:119.680000pt;}
.fs1_c00380{font-size:128.000000pt;}
.fs2_c00380{font-size:149.120000pt;}
.fs0_c00380{font-size:170.880000pt;}
.y0_c00380{bottom:0.000000pt;}
.y8_c00380{bottom:54.783200pt;}
.y7_c00380{bottom:94.789600pt;}
.y6_c00380{bottom:135.922400pt;}
.y5_c00380{bottom:182.309600pt;}
.y4_c00380{bottom:227.589600pt;}
.y2_c00380{bottom:395.269333pt;}
.y1_c00380{bottom:444.229333pt;}
.y3_c00380{bottom:643.712267pt;}
.h7_c00380{height:62.011250pt;}
.h5_c00380{height:74.600000pt;}
.h6_c00380{height:77.863750pt;}
.h4_c00380{height:82.351875pt;}
.h2_c00380{height:93.250000pt;}
.h3_c00380{height:108.636250pt;}
.h1_c00380{height:124.488750pt;}
.h0_c00380{height:720.000000pt;}
.w0_c00380{width:1280.000000pt;}
.x0_c00380{left:0.000000pt;}
.x1_c00380{left:45.437733pt;}
.x2_c00380{left:71.709733pt;}
.x3_c00380{left:694.276533pt;}
.x5_c00380{left:730.910133pt;}
.x4_c00380{left:738.436533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3702c33b63979fa52fdd4732.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:0.938965;font-style:normal;font-weight:normal;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_02ace9c6559f287f0a1bee3b.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:0.938965;font-style:normal;font-weight:normal;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_fb5853468984a5cd44d24cd1.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00381{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.ls8_c00381{letter-spacing:-0.324000px;}
.ls9_c00381{letter-spacing:-0.287280px;}
.ls5_c00381{letter-spacing:-0.269280px;}
.ls4_c00381{letter-spacing:-0.167760px;}
.ls6_c00381{letter-spacing:-0.134640px;}
.lsa_c00381{letter-spacing:-0.084240px;}
.ls2_c00381{letter-spacing:0.000000px;}
.ls7_c00381{letter-spacing:0.216000px;}
.ls3_c00381{letter-spacing:0.269280px;}
.ls0_c00381{letter-spacing:0.336960px;}
.ls1_c00381{letter-spacing:99.360000px;}
.sc__c00381{text-shadow:none;}
.sc0_c00381{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00381{-webkit-text-stroke:0px transparent;}
.sc0_c00381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00381{word-spacing:-46.637280px;}
.ws2_c00381{word-spacing:-37.699200px;}
.ws6_c00381{word-spacing:-37.295280px;}
.ws8_c00381{word-spacing:-26.621280px;}
.ws9_c00381{word-spacing:-26.334000px;}
.ws12_c00381{word-spacing:-1.432080px;}
.ws13_c00381{word-spacing:-1.010880px;}
.wsc_c00381{word-spacing:-0.670320px;}
.wsa_c00381{word-spacing:-0.335520px;}
.wsb_c00381{word-spacing:-0.216000px;}
.ws10_c00381{word-spacing:0.000000px;}
.ws11_c00381{word-spacing:0.084240px;}
.wse_c00381{word-spacing:0.216000px;}
.wsf_c00381{word-spacing:0.540000px;}
.ws14_c00381{word-spacing:1.296000px;}
.wsd_c00381{word-spacing:2.202480px;}
.ws1_c00381{word-spacing:6.233832px;}
.ws3_c00381{word-spacing:6.556968px;}
.ws5_c00381{word-spacing:8.616960px;}
.ws4_c00381{word-spacing:8.630424px;}
.ws7_c00381{word-spacing:540.399600px;}
._2_c00381{margin-left:-10.629864px;}
._4_c00381{margin-left:-1.792800px;}
._1_c00381{width:1.130976px;}
._0_c00381{width:46.692000px;}
._3_c00381{width:205.614864px;}
.fc4_c00381{color:rgb(255,0,0);}
.fc2_c00381{color:rgb(0,40,117);}
.fc3_c00381{color:rgb(166,166,166);}
.fc1_c00381{color:rgb(0,0,0);}
.fc0_c00381{color:rgb(0,74,150);}
.fs2_c00381{font-size:54.000000px;}
.fs5_c00381{font-size:84.240000px;}
.fs4_c00381{font-size:95.760000px;}
.fs3_c00381{font-size:108.000000px;}
.fs1_c00381{font-size:134.640000px;}
.fs0_c00381{font-size:167.760000px;}
.fs6_c00381{font-size:216.000000px;}
.y0_c00381{bottom:0.000000px;}
.y2_c00381{bottom:27.253800px;}
.y3_c00381{bottom:184.476900px;}
.y10_c00381{bottom:186.717240px;}
.yc_c00381{bottom:211.614720px;}
.yf_c00381{bottom:211.926060px;}
.y17_c00381{bottom:233.973450px;}
.ye_c00381{bottom:237.134880px;}
.yb_c00381{bottom:240.414540px;}
.y5_c00381{bottom:241.450800px;}
.yd_c00381{bottom:262.343700px;}
.y16_c00381{bottom:298.773450px;}
.y15_c00381{bottom:363.573450px;}
.ya_c00381{bottom:379.075020px;}
.y9_c00381{bottom:407.874840px;}
.y11_c00381{bottom:423.309900px;}
.y14_c00381{bottom:428.373450px;}
.y13_c00381{bottom:460.773450px;}
.y8_c00381{bottom:465.474480px;}
.y12_c00381{bottom:493.173450px;}
.y7_c00381{bottom:494.274300px;}
.y4_c00381{bottom:573.262950px;}
.y6_c00381{bottom:623.097900px;}
.y1_c00381{bottom:718.116450px;}
.h2_c00381{height:39.339844px;}
.h5_c00381{height:61.329023px;}
.h4_c00381{height:69.762656px;}
.h3_c00381{height:78.679688px;}
.h1_c00381{height:122.215781px;}
.h6_c00381{height:157.253906px;}
.h0_c00381{height:810.000000px;}
.w0_c00381{width:1440.000000px;}
.x0_c00381{left:0.000000px;}
.x2_c00381{left:26.787450px;}
.x5_c00381{left:165.734400px;}
.x1_c00381{left:193.320000px;}
.x3_c00381{left:220.353450px;}
.x4_c00381{left:241.842150px;}
.xe_c00381{left:301.779810px;}
.x9_c00381{left:302.973330px;}
.xd_c00381{left:307.002690px;}
.xc_c00381{left:308.813850px;}
.x8_c00381{left:315.565770px;}
.x7_c00381{left:332.850450px;}
.x6_c00381{left:378.760500px;}
.xa_c00381{left:517.954530px;}
.xb_c00381{left:530.546970px;}
.xf_c00381{left:568.015350px;}
.x10_c00381{left:891.000000px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls8_c00381{letter-spacing:-0.288000pt;}
.ls9_c00381{letter-spacing:-0.255360pt;}
.ls5_c00381{letter-spacing:-0.239360pt;}
.ls4_c00381{letter-spacing:-0.149120pt;}
.ls6_c00381{letter-spacing:-0.119680pt;}
.lsa_c00381{letter-spacing:-0.074880pt;}
.ls2_c00381{letter-spacing:0.000000pt;}
.ls7_c00381{letter-spacing:0.192000pt;}
.ls3_c00381{letter-spacing:0.239360pt;}
.ls0_c00381{letter-spacing:0.299520pt;}
.ls1_c00381{letter-spacing:88.320000pt;}
.ws0_c00381{word-spacing:-41.455360pt;}
.ws2_c00381{word-spacing:-33.510400pt;}
.ws6_c00381{word-spacing:-33.151360pt;}
.ws8_c00381{word-spacing:-23.663360pt;}
.ws9_c00381{word-spacing:-23.408000pt;}
.ws12_c00381{word-spacing:-1.272960pt;}
.ws13_c00381{word-spacing:-0.898560pt;}
.wsc_c00381{word-spacing:-0.595840pt;}
.wsa_c00381{word-spacing:-0.298240pt;}
.wsb_c00381{word-spacing:-0.192000pt;}
.ws10_c00381{word-spacing:0.000000pt;}
.ws11_c00381{word-spacing:0.074880pt;}
.wse_c00381{word-spacing:0.192000pt;}
.wsf_c00381{word-spacing:0.480000pt;}
.ws14_c00381{word-spacing:1.152000pt;}
.wsd_c00381{word-spacing:1.957760pt;}
.ws1_c00381{word-spacing:5.541184pt;}
.ws3_c00381{word-spacing:5.828416pt;}
.ws5_c00381{word-spacing:7.659520pt;}
.ws4_c00381{word-spacing:7.671488pt;}
.ws7_c00381{word-spacing:480.355200pt;}
._2_c00381{margin-left:-9.448768pt;}
._4_c00381{margin-left:-1.593600pt;}
._1_c00381{width:1.005312pt;}
._0_c00381{width:41.504000pt;}
._3_c00381{width:182.768768pt;}
.fs2_c00381{font-size:48.000000pt;}
.fs5_c00381{font-size:74.880000pt;}
.fs4_c00381{font-size:85.120000pt;}
.fs3_c00381{font-size:96.000000pt;}
.fs1_c00381{font-size:119.680000pt;}
.fs0_c00381{font-size:149.120000pt;}
.fs6_c00381{font-size:192.000000pt;}
.y0_c00381{bottom:0.000000pt;}
.y2_c00381{bottom:24.225600pt;}
.y3_c00381{bottom:163.979467pt;}
.y10_c00381{bottom:165.970880pt;}
.yc_c00381{bottom:188.101973pt;}
.yf_c00381{bottom:188.378720pt;}
.y17_c00381{bottom:207.976400pt;}
.ye_c00381{bottom:210.786560pt;}
.yb_c00381{bottom:213.701813pt;}
.y5_c00381{bottom:214.622933pt;}
.yd_c00381{bottom:233.194400pt;}
.y16_c00381{bottom:265.576400pt;}
.y15_c00381{bottom:323.176400pt;}
.ya_c00381{bottom:336.955573pt;}
.y9_c00381{bottom:362.555413pt;}
.y11_c00381{bottom:376.275467pt;}
.y14_c00381{bottom:380.776400pt;}
.y13_c00381{bottom:409.576400pt;}
.y8_c00381{bottom:413.755093pt;}
.y12_c00381{bottom:438.376400pt;}
.y7_c00381{bottom:439.354933pt;}
.y4_c00381{bottom:509.567067pt;}
.y6_c00381{bottom:553.864800pt;}
.y1_c00381{bottom:638.325733pt;}
.h2_c00381{height:34.968750pt;}
.h5_c00381{height:54.514687pt;}
.h4_c00381{height:62.011250pt;}
.h3_c00381{height:69.937500pt;}
.h1_c00381{height:108.636250pt;}
.h6_c00381{height:139.781250pt;}
.h0_c00381{height:720.000000pt;}
.w0_c00381{width:1280.000000pt;}
.x0_c00381{left:0.000000pt;}
.x2_c00381{left:23.811067pt;}
.x5_c00381{left:147.319467pt;}
.x1_c00381{left:171.840000pt;}
.x3_c00381{left:195.869733pt;}
.x4_c00381{left:214.970800pt;}
.xe_c00381{left:268.248720pt;}
.x9_c00381{left:269.309627pt;}
.xd_c00381{left:272.891280pt;}
.xc_c00381{left:274.501200pt;}
.x8_c00381{left:280.502907pt;}
.x7_c00381{left:295.867067pt;}
.x6_c00381{left:336.676000pt;}
.xa_c00381{left:460.404027pt;}
.xb_c00381{left:471.597307pt;}
.xf_c00381{left:504.902533pt;}
.x10_c00381{left:792.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_a8fb6392d21fa7b41f2e3886.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:0.938965;font-style:normal;font-weight:normal;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_68605b54eee53713d842333a.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:0.817871;font-style:normal;font-weight:normal;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_7014d2adcf495c4fff80356a.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:0.938965;font-style:normal;font-weight:normal;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_23eff6cbdfb66660f2264067.woff2')format("woff");}.ff4_c00382{font-family:ff4_c00382;line-height:0.834473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00382{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00382{vertical-align:0.000000px;}
.ls5_c00382{letter-spacing:-12.252240px;}
.lsd_c00382{letter-spacing:-0.331200px;}
.ls8_c00382{letter-spacing:-0.269280px;}
.ls6_c00382{letter-spacing:-0.134640px;}
.lsc_c00382{letter-spacing:-0.120240px;}
.ls4_c00382{letter-spacing:0.000000px;}
.lsb_c00382{letter-spacing:0.120240px;}
.lsa_c00382{letter-spacing:0.216000px;}
.ls7_c00382{letter-spacing:0.269280px;}
.ls9_c00382{letter-spacing:0.335520px;}
.ls2_c00382{letter-spacing:20.320560px;}
.ls3_c00382{letter-spacing:32.464800px;}
.ls0_c00382{letter-spacing:72.144000px;}
.ls1_c00382{letter-spacing:103.165920px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00382{word-spacing:-46.637280px;}
.ws7_c00382{word-spacing:-37.699200px;}
.ws9_c00382{word-spacing:-37.429920px;}
.wsa_c00382{word-spacing:-18.083520px;}
.ws11_c00382{word-spacing:-9.018000px;}
.wse_c00382{word-spacing:-1.803600px;}
.wsf_c00382{word-spacing:-1.082160px;}
.ws10_c00382{word-spacing:-0.841680px;}
.wsb_c00382{word-spacing:-0.335520px;}
.wsc_c00382{word-spacing:-0.216000px;}
.wsd_c00382{word-spacing:0.000000px;}
.ws5_c00382{word-spacing:0.888624px;}
.ws1_c00382{word-spacing:4.887432px;}
.ws6_c00382{word-spacing:7.943760px;}
.ws3_c00382{word-spacing:8.064936px;}
.ws8_c00382{word-spacing:8.482320px;}
.ws4_c00382{word-spacing:9.020880px;}
.ws2_c00382{word-spacing:30.536352px;}
._4_c00382{margin-left:-12.973104px;}
._2_c00382{margin-left:-10.259568px;}
._6_c00382{margin-left:-6.445800px;}
._9_c00382{margin-left:-3.823632px;}
._3_c00382{margin-left:-1.063656px;}
._5_c00382{width:1.941408px;}
._7_c00382{width:8.674848px;}
._1_c00382{width:12.413808px;}
._0_c00382{width:43.958808px;}
._8_c00382{width:669.856560px;}
.fc2_c00382{color:rgb(255,0,0);}
.fc1_c00382{color:rgb(0,0,0);}
.fc0_c00382{color:rgb(0,74,150);}
.fs2_c00382{font-size:54.000000px;}
.fs4_c00382{font-size:66.240000px;}
.fs3_c00382{font-size:120.240000px;}
.fs1_c00382{font-size:134.640000px;}
.fs0_c00382{font-size:167.760000px;}
.y0_c00382{bottom:0.000000px;}
.y3_c00382{bottom:27.253800px;}
.y9_c00382{bottom:213.615990px;}
.y8_c00382{bottom:256.812210px;}
.y7_c00382{bottom:318.014370px;}
.y6_c00382{bottom:352.222650px;}
.y5_c00382{bottom:395.418870px;}
.yc_c00382{bottom:471.103110px;}
.ya_c00382{bottom:498.945510px;}
.yb_c00382{bottom:515.218950px;}
.y4_c00382{bottom:579.025350px;}
.y2_c00382{bottom:667.727430px;}
.y1_c00382{bottom:718.116450px;}
.h3_c00382{height:39.339844px;}
.h7_c00382{height:48.256875px;}
.h6_c00382{height:87.596719px;}
.h4_c00382{height:92.645859px;}
.h5_c00382{height:93.643945px;}
.h2_c00382{height:122.171861px;}
.h1_c00382{height:122.215781px;}
.h0_c00382{height:810.000000px;}
.w0_c00382{width:1440.000000px;}
.x0_c00382{left:0.000000px;}
.x2_c00382{left:26.787450px;}
.x3_c00382{left:51.644100px;}
.x4_c00382{left:93.758160px;}
.x6_c00382{left:99.890400px;}
.x5_c00382{left:125.261040px;}
.x1_c00382{left:193.500450px;}
.x7_c00382{left:438.816900px;}
.x8_c00382{left:457.181940px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls5_c00382{letter-spacing:-10.890880pt;}
.lsd_c00382{letter-spacing:-0.294400pt;}
.ls8_c00382{letter-spacing:-0.239360pt;}
.ls6_c00382{letter-spacing:-0.119680pt;}
.lsc_c00382{letter-spacing:-0.106880pt;}
.ls4_c00382{letter-spacing:0.000000pt;}
.lsb_c00382{letter-spacing:0.106880pt;}
.lsa_c00382{letter-spacing:0.192000pt;}
.ls7_c00382{letter-spacing:0.239360pt;}
.ls9_c00382{letter-spacing:0.298240pt;}
.ls2_c00382{letter-spacing:18.062720pt;}
.ls3_c00382{letter-spacing:28.857600pt;}
.ls0_c00382{letter-spacing:64.128000pt;}
.ls1_c00382{letter-spacing:91.703040pt;}
.ws0_c00382{word-spacing:-41.455360pt;}
.ws7_c00382{word-spacing:-33.510400pt;}
.ws9_c00382{word-spacing:-33.271040pt;}
.wsa_c00382{word-spacing:-16.074240pt;}
.ws11_c00382{word-spacing:-8.016000pt;}
.wse_c00382{word-spacing:-1.603200pt;}
.wsf_c00382{word-spacing:-0.961920pt;}
.ws10_c00382{word-spacing:-0.748160pt;}
.wsb_c00382{word-spacing:-0.298240pt;}
.wsc_c00382{word-spacing:-0.192000pt;}
.wsd_c00382{word-spacing:0.000000pt;}
.ws5_c00382{word-spacing:0.789888pt;}
.ws1_c00382{word-spacing:4.344384pt;}
.ws6_c00382{word-spacing:7.061120pt;}
.ws3_c00382{word-spacing:7.168832pt;}
.ws8_c00382{word-spacing:7.539840pt;}
.ws4_c00382{word-spacing:8.018560pt;}
.ws2_c00382{word-spacing:27.143424pt;}
._4_c00382{margin-left:-11.531648pt;}
._2_c00382{margin-left:-9.119616pt;}
._6_c00382{margin-left:-5.729600pt;}
._9_c00382{margin-left:-3.398784pt;}
._3_c00382{margin-left:-0.945472pt;}
._5_c00382{width:1.725696pt;}
._7_c00382{width:7.710976pt;}
._1_c00382{width:11.034496pt;}
._0_c00382{width:39.074496pt;}
._8_c00382{width:595.428053pt;}
.fs2_c00382{font-size:48.000000pt;}
.fs4_c00382{font-size:58.880000pt;}
.fs3_c00382{font-size:106.880000pt;}
.fs1_c00382{font-size:119.680000pt;}
.fs0_c00382{font-size:149.120000pt;}
.y0_c00382{bottom:0.000000pt;}
.y3_c00382{bottom:24.225600pt;}
.y9_c00382{bottom:189.880880pt;}
.y8_c00382{bottom:228.277520pt;}
.y7_c00382{bottom:282.679440pt;}
.y6_c00382{bottom:313.086800pt;}
.y5_c00382{bottom:351.483440pt;}
.yc_c00382{bottom:418.758320pt;}
.ya_c00382{bottom:443.507120pt;}
.yb_c00382{bottom:457.972400pt;}
.y4_c00382{bottom:514.689200pt;}
.y2_c00382{bottom:593.535493pt;}
.y1_c00382{bottom:638.325733pt;}
.h3_c00382{height:34.968750pt;}
.h7_c00382{height:42.895000pt;}
.h6_c00382{height:77.863750pt;}
.h4_c00382{height:82.351875pt;}
.h5_c00382{height:83.239062pt;}
.h2_c00382{height:108.597210pt;}
.h1_c00382{height:108.636250pt;}
.h0_c00382{height:720.000000pt;}
.w0_c00382{width:1280.000000pt;}
.x0_c00382{left:0.000000pt;}
.x2_c00382{left:23.811067pt;}
.x3_c00382{left:45.905867pt;}
.x4_c00382{left:83.340587pt;}
.x6_c00382{left:88.791467pt;}
.x5_c00382{left:111.343147pt;}
.x1_c00382{left:172.000400pt;}
.x7_c00382{left:390.059467pt;}
.x8_c00382{left:406.383947pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c8799f642428fdb4c231d7b.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:0.938965;font-style:normal;font-weight:normal;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_cfe907ece546cb26b167a85a.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:0.938965;font-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_c00383{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.ls7_c00383{letter-spacing:-10.098000px;}
.ls8_c00383{letter-spacing:-0.335520px;}
.lsa_c00383{letter-spacing:-0.324000px;}
.ls6_c00383{letter-spacing:-0.269280px;}
.lsb_c00383{letter-spacing:-0.216000px;}
.ls2_c00383{letter-spacing:-0.167760px;}
.ls4_c00383{letter-spacing:-0.134640px;}
.ls3_c00383{letter-spacing:0.000000px;}
.ls9_c00383{letter-spacing:0.216000px;}
.ls5_c00383{letter-spacing:0.269280px;}
.ls0_c00383{letter-spacing:0.335520px;}
.ls1_c00383{letter-spacing:97.524000px;}
.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;}
}
.ws6_c00383{word-spacing:-46.637280px;}
.wsb_c00383{word-spacing:-46.301760px;}
.ws5_c00383{word-spacing:-37.429920px;}
.ws4_c00383{word-spacing:-37.160640px;}
.wse_c00383{word-spacing:-30.024000px;}
.wsd_c00383{word-spacing:-29.700000px;}
.ws11_c00383{word-spacing:-0.216000px;}
.ws10_c00383{word-spacing:0.000000px;}
.wsf_c00383{word-spacing:0.167760px;}
.ws15_c00383{word-spacing:0.216000px;}
.ws14_c00383{word-spacing:0.324000px;}
.ws13_c00383{word-spacing:0.540000px;}
.ws16_c00383{word-spacing:0.972000px;}
.ws12_c00383{word-spacing:1.296000px;}
.ws17_c00383{word-spacing:2.052000px;}
.ws0_c00383{word-spacing:7.149384px;}
.ws8_c00383{word-spacing:7.364808px;}
.ws9_c00383{word-spacing:7.405200px;}
.ws2_c00383{word-spacing:7.647552px;}
.wsa_c00383{word-spacing:8.304024px;}
.ws3_c00383{word-spacing:8.967024px;}
.ws1_c00383{word-spacing:9.020880px;}
.ws7_c00383{word-spacing:28.018584px;}
.wsc_c00383{word-spacing:723.678600px;}
._1_c00383{margin-left:-9.492120px;}
._2_c00383{margin-left:-1.056384px;}
._0_c00383{width:1.391040px;}
._3_c00383{width:10.080216px;}
._4_c00383{width:46.106928px;}
._5_c00383{width:663.024960px;}
.fc3_c00383{color:rgb(0,40,117);}
.fc2_c00383{color:rgb(255,255,255);}
.fc1_c00383{color:rgb(0,0,0);}
.fc0_c00383{color:rgb(0,74,150);}
.fs2_c00383{font-size:54.000000px;}
.fs3_c00383{font-size:108.000000px;}
.fs1_c00383{font-size:134.640000px;}
.fs0_c00383{font-size:167.760000px;}
.y0_c00383{bottom:0.000000px;}
.y3_c00383{bottom:27.253800px;}
.y19_c00383{bottom:151.920000px;}
.ya_c00383{bottom:172.185600px;}
.y18_c00383{bottom:184.320000px;}
.y17_c00383{bottom:216.720000px;}
.y9_c00383{bottom:219.984450px;}
.y12_c00383{bottom:224.485500px;}
.y11_c00383{bottom:227.122650px;}
.y16_c00383{bottom:249.120000px;}
.y10_c00383{bottom:259.522650px;}
.y8_c00383{bottom:267.603900px;}
.yf_c00383{bottom:291.922650px;}
.y15_c00383{bottom:313.920000px;}
.y7_c00383{bottom:315.223500px;}
.ye_c00383{bottom:337.263750px;}
.y14_c00383{bottom:346.320000px;}
.y6_c00383{bottom:362.843100px;}
.yd_c00383{bottom:369.663750px;}
.y13_c00383{bottom:378.720000px;}
.yc_c00383{bottom:402.063750px;}
.y5_c00383{bottom:413.044350px;}
.y4_c00383{bottom:525.038550px;}
.yb_c00383{bottom:583.903500px;}
.y2_c00383{bottom:667.704570px;}
.y1_c00383{bottom:718.116450px;}
.h3_c00383{height:39.339844px;}
.h5_c00383{height:78.679688px;}
.h4_c00383{height:78.680288px;}
.h1_c00383{height:122.215781px;}
.h2_c00383{height:122.263301px;}
.h0_c00383{height:810.000000px;}
.w0_c00383{width:1440.000000px;}
.x0_c00383{left:0.000000px;}
.x2_c00383{left:26.787450px;}
.xf_c00383{left:139.407450px;}
.x1_c00383{left:193.500450px;}
.x9_c00383{left:210.426750px;}
.xa_c00383{left:251.162100px;}
.xc_c00383{left:253.322100px;}
.x3_c00383{left:276.426750px;}
.xb_c00383{left:279.431100px;}
.x4_c00383{left:516.215250px;}
.xe_c00383{left:519.927000px;}
.xd_c00383{left:546.036000px;}
.x8_c00383{left:784.657950px;}
.x6_c00383{left:802.786800px;}
.x7_c00383{left:814.486800px;}
.x5_c00383{left:817.546800px;}
.x10_c00383{left:1022.625000px;}
.x11_c00383{left:1056.456000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls7_c00383{letter-spacing:-8.976000pt;}
.ls8_c00383{letter-spacing:-0.298240pt;}
.lsa_c00383{letter-spacing:-0.288000pt;}
.ls6_c00383{letter-spacing:-0.239360pt;}
.lsb_c00383{letter-spacing:-0.192000pt;}
.ls2_c00383{letter-spacing:-0.149120pt;}
.ls4_c00383{letter-spacing:-0.119680pt;}
.ls3_c00383{letter-spacing:0.000000pt;}
.ls9_c00383{letter-spacing:0.192000pt;}
.ls5_c00383{letter-spacing:0.239360pt;}
.ls0_c00383{letter-spacing:0.298240pt;}
.ls1_c00383{letter-spacing:86.688000pt;}
.ws6_c00383{word-spacing:-41.455360pt;}
.wsb_c00383{word-spacing:-41.157120pt;}
.ws5_c00383{word-spacing:-33.271040pt;}
.ws4_c00383{word-spacing:-33.031680pt;}
.wse_c00383{word-spacing:-26.688000pt;}
.wsd_c00383{word-spacing:-26.400000pt;}
.ws11_c00383{word-spacing:-0.192000pt;}
.ws10_c00383{word-spacing:0.000000pt;}
.wsf_c00383{word-spacing:0.149120pt;}
.ws15_c00383{word-spacing:0.192000pt;}
.ws14_c00383{word-spacing:0.288000pt;}
.ws13_c00383{word-spacing:0.480000pt;}
.ws16_c00383{word-spacing:0.864000pt;}
.ws12_c00383{word-spacing:1.152000pt;}
.ws17_c00383{word-spacing:1.824000pt;}
.ws0_c00383{word-spacing:6.355008pt;}
.ws8_c00383{word-spacing:6.546496pt;}
.ws9_c00383{word-spacing:6.582400pt;}
.ws2_c00383{word-spacing:6.797824pt;}
.wsa_c00383{word-spacing:7.381355pt;}
.ws3_c00383{word-spacing:7.970688pt;}
.ws1_c00383{word-spacing:8.018560pt;}
.ws7_c00383{word-spacing:24.905408pt;}
.wsc_c00383{word-spacing:643.269867pt;}
._1_c00383{margin-left:-8.437440pt;}
._2_c00383{margin-left:-0.939008pt;}
._0_c00383{width:1.236480pt;}
._3_c00383{width:8.960192pt;}
._4_c00383{width:40.983936pt;}
._5_c00383{width:589.355520pt;}
.fs2_c00383{font-size:48.000000pt;}
.fs3_c00383{font-size:96.000000pt;}
.fs1_c00383{font-size:119.680000pt;}
.fs0_c00383{font-size:149.120000pt;}
.y0_c00383{bottom:0.000000pt;}
.y3_c00383{bottom:24.225600pt;}
.y19_c00383{bottom:135.040000pt;}
.ya_c00383{bottom:153.053867pt;}
.y18_c00383{bottom:163.840000pt;}
.y17_c00383{bottom:192.640000pt;}
.y9_c00383{bottom:195.541733pt;}
.y12_c00383{bottom:199.542667pt;}
.y11_c00383{bottom:201.886800pt;}
.y16_c00383{bottom:221.440000pt;}
.y10_c00383{bottom:230.686800pt;}
.y8_c00383{bottom:237.870133pt;}
.yf_c00383{bottom:259.486800pt;}
.y15_c00383{bottom:279.040000pt;}
.y7_c00383{bottom:280.198667pt;}
.ye_c00383{bottom:299.790000pt;}
.y14_c00383{bottom:307.840000pt;}
.y6_c00383{bottom:322.527200pt;}
.yd_c00383{bottom:328.590000pt;}
.y13_c00383{bottom:336.640000pt;}
.yc_c00383{bottom:357.390000pt;}
.y5_c00383{bottom:367.150533pt;}
.y4_c00383{bottom:466.700933pt;}
.yb_c00383{bottom:519.025333pt;}
.y2_c00383{bottom:593.515173pt;}
.y1_c00383{bottom:638.325733pt;}
.h3_c00383{height:34.968750pt;}
.h5_c00383{height:69.937500pt;}
.h4_c00383{height:69.938033pt;}
.h1_c00383{height:108.636250pt;}
.h2_c00383{height:108.678490pt;}
.h0_c00383{height:720.000000pt;}
.w0_c00383{width:1280.000000pt;}
.x0_c00383{left:0.000000pt;}
.x2_c00383{left:23.811067pt;}
.xf_c00383{left:123.917733pt;}
.x1_c00383{left:172.000400pt;}
.x9_c00383{left:187.046000pt;}
.xa_c00383{left:223.255200pt;}
.xc_c00383{left:225.175200pt;}
.x3_c00383{left:245.712667pt;}
.xb_c00383{left:248.383200pt;}
.x4_c00383{left:458.858000pt;}
.xe_c00383{left:462.157333pt;}
.xd_c00383{left:485.365333pt;}
.x8_c00383{left:697.473733pt;}
.x6_c00383{left:713.588267pt;}
.x7_c00383{left:723.988267pt;}
.x5_c00383{left:726.708267pt;}
.x10_c00383{left:909.000000pt;}
.x11_c00383{left:939.072000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_08163102a1204756177cb4c9.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:0.938965;font-style:normal;font-weight:normal;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_eec98f7d6b1195da15608145.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:0.938965;font-style:normal;font-weight:normal;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_a757b4838d74e2c6ede1e228.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00384{letter-spacing:-2.288880px;}
.ls9_c00384{letter-spacing:-0.432000px;}
.ls2_c00384{letter-spacing:-0.269280px;}
.ls0_c00384{letter-spacing:-0.167760px;}
.ls4_c00384{letter-spacing:-0.134640px;}
.lsa_c00384{letter-spacing:-0.132480px;}
.ls5_c00384{letter-spacing:0.000000px;}
.ls7_c00384{letter-spacing:0.216000px;}
.ls1_c00384{letter-spacing:0.269280px;}
.ls8_c00384{letter-spacing:0.288000px;}
.ls3_c00384{letter-spacing:0.335520px;}
.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;}
}
.ws8_c00384{word-spacing:-37.429920px;}
.ws1_c00384{word-spacing:-37.160640px;}
.ws9_c00384{word-spacing:-26.621280px;}
.wsa_c00384{word-spacing:-19.584000px;}
.ws11_c00384{word-spacing:-2.304000px;}
.ws13_c00384{word-spacing:-1.722240px;}
.ws10_c00384{word-spacing:-1.584000px;}
.wsf_c00384{word-spacing:-1.436400px;}
.ws14_c00384{word-spacing:-0.993600px;}
.wse_c00384{word-spacing:-0.670320px;}
.wsc_c00384{word-spacing:-0.335520px;}
.wsd_c00384{word-spacing:-0.216000px;}
.ws12_c00384{word-spacing:0.000000px;}
.wsb_c00384{word-spacing:0.167760px;}
.ws15_c00384{word-spacing:0.463680px;}
.ws16_c00384{word-spacing:2.202480px;}
.ws6_c00384{word-spacing:5.789520px;}
.ws7_c00384{word-spacing:5.910696px;}
.ws0_c00384{word-spacing:6.489648px;}
.ws2_c00384{word-spacing:7.957224px;}
.ws3_c00384{word-spacing:8.078400px;}
.ws4_c00384{word-spacing:9.020880px;}
.ws5_c00384{word-spacing:12.117600px;}
._3_c00384{margin-left:-9.598608px;}
._0_c00384{margin-left:-5.088960px;}
._1_c00384{margin-left:-1.104048px;}
._2_c00384{width:1.238688px;}
._5_c00384{width:3.420864px;}
._4_c00384{width:212.580192px;}
.fc1_c00384{color:rgb(0,0,0);}
.fc0_c00384{color:rgb(0,74,150);}
.fs2_c00384{font-size:54.000000px;}
.fs5_c00384{font-size:66.240000px;}
.fs4_c00384{font-size:72.000000px;}
.fs3_c00384{font-size:95.760000px;}
.fs1_c00384{font-size:134.640000px;}
.fs0_c00384{font-size:167.760000px;}
.y0_c00384{bottom:0.000000px;}
.y3_c00384{bottom:27.253800px;}
.yc_c00384{bottom:105.706380px;}
.ye_c00384{bottom:105.706530px;}
.yb_c00384{bottom:134.506200px;}
.yd_c00384{bottom:134.506350px;}
.y15_c00384{bottom:195.802590px;}
.y11_c00384{bottom:213.179970px;}
.y14_c00384{bottom:224.602410px;}
.y10_c00384{bottom:246.068130px;}
.y13_c00384{bottom:253.402230px;}
.yf_c00384{bottom:277.979250px;}
.y12_c00384{bottom:282.202050px;}
.y8_c00384{bottom:374.328300px;}
.y7_c00384{bottom:395.928300px;}
.ya_c00384{bottom:413.388660px;}
.y6_c00384{bottom:417.528300px;}
.y5_c00384{bottom:439.128300px;}
.y9_c00384{bottom:442.188480px;}
.y4_c00384{bottom:470.988300px;}
.y2_c00384{bottom:667.716450px;}
.y1_c00384{bottom:718.116450px;}
.h3_c00384{height:39.339844px;}
.h6_c00384{height:48.224531px;}
.h5_c00384{height:52.453125px;}
.h4_c00384{height:69.762656px;}
.h2_c00384{height:98.087344px;}
.h1_c00384{height:122.215781px;}
.h0_c00384{height:810.000000px;}
.w0_c00384{width:1440.000000px;}
.x0_c00384{left:0.000000px;}
.x2_c00384{left:26.787450px;}
.x3_c00384{left:105.227100px;}
.x1_c00384{left:193.500450px;}
.xd_c00384{left:234.256170px;}
.xc_c00384{left:281.585550px;}
.x5_c00384{left:370.796700px;}
.x6_c00384{left:372.056700px;}
.x4_c00384{left:377.816700px;}
.x7_c00384{left:417.416700px;}
.xe_c00384{left:443.395650px;}
.xf_c00384{left:451.940610px;}
.x10_c00384{left:455.467890px;}
.x9_c00384{left:661.523790px;}
.xa_c00384{left:664.588110px;}
.x8_c00384{left:672.153150px;}
.xb_c00384{left:696.102510px;}
.x11_c00384{left:1136.124600px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls6_c00384{letter-spacing:-2.034560pt;}
.ls9_c00384{letter-spacing:-0.384000pt;}
.ls2_c00384{letter-spacing:-0.239360pt;}
.ls0_c00384{letter-spacing:-0.149120pt;}
.ls4_c00384{letter-spacing:-0.119680pt;}
.lsa_c00384{letter-spacing:-0.117760pt;}
.ls5_c00384{letter-spacing:0.000000pt;}
.ls7_c00384{letter-spacing:0.192000pt;}
.ls1_c00384{letter-spacing:0.239360pt;}
.ls8_c00384{letter-spacing:0.256000pt;}
.ls3_c00384{letter-spacing:0.298240pt;}
.ws8_c00384{word-spacing:-33.271040pt;}
.ws1_c00384{word-spacing:-33.031680pt;}
.ws9_c00384{word-spacing:-23.663360pt;}
.wsa_c00384{word-spacing:-17.408000pt;}
.ws11_c00384{word-spacing:-2.048000pt;}
.ws13_c00384{word-spacing:-1.530880pt;}
.ws10_c00384{word-spacing:-1.408000pt;}
.wsf_c00384{word-spacing:-1.276800pt;}
.ws14_c00384{word-spacing:-0.883200pt;}
.wse_c00384{word-spacing:-0.595840pt;}
.wsc_c00384{word-spacing:-0.298240pt;}
.wsd_c00384{word-spacing:-0.192000pt;}
.ws12_c00384{word-spacing:0.000000pt;}
.wsb_c00384{word-spacing:0.149120pt;}
.ws15_c00384{word-spacing:0.412160pt;}
.ws16_c00384{word-spacing:1.957760pt;}
.ws6_c00384{word-spacing:5.146240pt;}
.ws7_c00384{word-spacing:5.253952pt;}
.ws0_c00384{word-spacing:5.768576pt;}
.ws2_c00384{word-spacing:7.073088pt;}
.ws3_c00384{word-spacing:7.180800pt;}
.ws4_c00384{word-spacing:8.018560pt;}
.ws5_c00384{word-spacing:10.771200pt;}
._3_c00384{margin-left:-8.532096pt;}
._0_c00384{margin-left:-4.523520pt;}
._1_c00384{margin-left:-0.981376pt;}
._2_c00384{width:1.101056pt;}
._5_c00384{width:3.040768pt;}
._4_c00384{width:188.960171pt;}
.fs2_c00384{font-size:48.000000pt;}
.fs5_c00384{font-size:58.880000pt;}
.fs4_c00384{font-size:64.000000pt;}
.fs3_c00384{font-size:85.120000pt;}
.fs1_c00384{font-size:119.680000pt;}
.fs0_c00384{font-size:149.120000pt;}
.y0_c00384{bottom:0.000000pt;}
.y3_c00384{bottom:24.225600pt;}
.yc_c00384{bottom:93.961227pt;}
.ye_c00384{bottom:93.961360pt;}
.yb_c00384{bottom:119.561067pt;}
.yd_c00384{bottom:119.561200pt;}
.y15_c00384{bottom:174.046747pt;}
.y11_c00384{bottom:189.493307pt;}
.y14_c00384{bottom:199.646587pt;}
.y10_c00384{bottom:218.727227pt;}
.y13_c00384{bottom:225.246427pt;}
.yf_c00384{bottom:247.092667pt;}
.y12_c00384{bottom:250.846267pt;}
.y8_c00384{bottom:332.736267pt;}
.y7_c00384{bottom:351.936267pt;}
.ya_c00384{bottom:367.456587pt;}
.y6_c00384{bottom:371.136267pt;}
.y5_c00384{bottom:390.336267pt;}
.y9_c00384{bottom:393.056427pt;}
.y4_c00384{bottom:418.656267pt;}
.y2_c00384{bottom:593.525733pt;}
.y1_c00384{bottom:638.325733pt;}
.h3_c00384{height:34.968750pt;}
.h6_c00384{height:42.866250pt;}
.h5_c00384{height:46.625000pt;}
.h4_c00384{height:62.011250pt;}
.h2_c00384{height:87.188750pt;}
.h1_c00384{height:108.636250pt;}
.h0_c00384{height:720.000000pt;}
.w0_c00384{width:1280.000000pt;}
.x0_c00384{left:0.000000pt;}
.x2_c00384{left:23.811067pt;}
.x3_c00384{left:93.535200pt;}
.x1_c00384{left:172.000400pt;}
.xd_c00384{left:208.227707pt;}
.xc_c00384{left:250.298267pt;}
.x5_c00384{left:329.597067pt;}
.x6_c00384{left:330.717067pt;}
.x4_c00384{left:335.837067pt;}
.x7_c00384{left:371.037067pt;}
.xe_c00384{left:394.129467pt;}
.xf_c00384{left:401.724987pt;}
.x10_c00384{left:404.860347pt;}
.x9_c00384{left:588.021147pt;}
.xa_c00384{left:590.744987pt;}
.x8_c00384{left:597.469467pt;}
.xb_c00384{left:618.757787pt;}
.x11_c00384{left:1009.888533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_beb6ca19479cc67c44865fbb.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:0.938965;font-style:normal;font-weight:normal;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_93904723551005594ac83bcd.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:0.684082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00385;src:url('chunks/assets/font_e24dc71c450ae2b178838364.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;line-height:0.938965;font-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_c00385{transform:matrix(0.000000,-0.249993,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249993,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249993,0.250000,0.000000,0,0);}
.m3_c00385{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_c00385{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00385{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.v0_c00385{vertical-align:0.000000px;}
.ls7_c00385{letter-spacing:-0.336958px;}
.ls9_c00385{letter-spacing:-0.336948px;}
.ls6_c00385{letter-spacing:-0.252711px;}
.lsa_c00385{letter-spacing:-0.144000px;}
.ls8_c00385{letter-spacing:-0.084239px;}
.ls5_c00385{letter-spacing:0.000000px;}
.lsb_c00385{letter-spacing:0.063360px;}
.ls1_c00385{letter-spacing:0.168479px;}
.ls4_c00385{letter-spacing:0.216000px;}
.ls2_c00385{letter-spacing:0.288000px;}
.ls0_c00385{letter-spacing:18.862815px;}
.ls3_c00385{letter-spacing:19.728000px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00385{word-spacing:-26.621280px;}
.ws0_c00385{word-spacing:-23.418720px;}
.ws1_c00385{word-spacing:-23.334480px;}
.ws3_c00385{word-spacing:-17.614080px;}
.wsb_c00385{word-spacing:-1.684800px;}
.ws8_c00385{word-spacing:-1.684788px;}
.ws11_c00385{word-spacing:-1.584000px;}
.ws7_c00385{word-spacing:-1.432070px;}
.ws10_c00385{word-spacing:-1.152000px;}
.ws12_c00385{word-spacing:-1.077120px;}
.wsc_c00385{word-spacing:-0.864000px;}
.wsf_c00385{word-spacing:-0.792000px;}
.wse_c00385{word-spacing:-0.670320px;}
.ws13_c00385{word-spacing:-0.380160px;}
.ws4_c00385{word-spacing:-0.216000px;}
.ws9_c00385{word-spacing:-0.168479px;}
.ws5_c00385{word-spacing:0.000000px;}
.ws6_c00385{word-spacing:0.252711px;}
.wsa_c00385{word-spacing:0.758133px;}
.wsd_c00385{word-spacing:0.766080px;}
._3_c00385{margin-left:-2.220293px;}
._1_c00385{margin-left:-1.171194px;}
._0_c00385{width:1.314135px;}
._2_c00385{width:206.772879px;}
.fc3_c00385{color:transparent;}
.fc2_c00385{color:rgb(0,74,150);}
.fc1_c00385{color:rgb(255,255,255);}
.fc0_c00385{color:rgb(0,0,0);}
.fs0_c00385{font-size:54.000000px;}
.fs6_c00385{font-size:63.360000px;}
.fs4_c00385{font-size:72.000000px;}
.fs1_c00385{font-size:84.237000px;}
.fs2_c00385{font-size:84.239400px;}
.fs3_c00385{font-size:84.240000px;}
.fs5_c00385{font-size:95.760000px;}
.y0_c00385{bottom:0.000000px;}
.y1d_c00385{bottom:27.136800px;}
.y1_c00385{bottom:27.253800px;}
.y2_c00385{bottom:46.105500px;}
.y3_c00385{bottom:123.482700px;}
.ya_c00385{bottom:155.427000px;}
.y19_c00385{bottom:193.322100px;}
.y4_c00385{bottom:215.151900px;}
.y18_c00385{bottom:265.893270px;}
.y17_c00385{bottom:294.693090px;}
.y5_c00385{bottom:306.820800px;}
.y16_c00385{bottom:323.492910px;}
.y1a_c00385{bottom:340.839900px;}
.y15_c00385{bottom:352.292730px;}
.y14_c00385{bottom:381.092550px;}
.y6_c00385{bottom:398.490000px;}
.y1c_c00385{bottom:402.195150px;}
.y13_c00385{bottom:438.692190px;}
.y12_c00385{bottom:467.492010px;}
.y1b_c00385{bottom:473.389500px;}
.yf_c00385{bottom:475.021950px;}
.y7_c00385{bottom:490.159050px;}
.y11_c00385{bottom:496.291830px;}
.y10_c00385{bottom:525.091650px;}
.y8_c00385{bottom:581.828100px;}
.yc_c00385{bottom:640.609200px;}
.ye_c00385{bottom:661.847130px;}
.y9_c00385{bottom:673.497150px;}
.yd_c00385{bottom:687.055950px;}
.yb_c00385{bottom:711.002550px;}
.h1_c00385{height:39.339844px;}
.h8_c00385{height:46.158750px;}
.h6_c00385{height:52.453125px;}
.h3_c00385{height:56.144290px;}
.h4_c00385{height:56.145889px;}
.h5_c00385{height:61.370156px;}
.h7_c00385{height:69.762656px;}
.h2_c00385{height:743.196000px;}
.h0_c00385{height:810.000000px;}
.w1_c00385{width:1024.911000px;}
.w0_c00385{width:1440.000000px;}
.x0_c00385{left:0.000000px;}
.x1_c00385{left:26.787450px;}
.x5_c00385{left:38.729700px;}
.x4_c00385{left:48.884550px;}
.x3_c00385{left:59.527050px;}
.x2_c00385{left:69.300000px;}
.xc_c00385{left:106.145400px;}
.xd_c00385{left:186.297150px;}
.x8_c00385{left:189.696300px;}
.x9_c00385{left:208.229100px;}
.x6_c00385{left:306.663300px;}
.x10_c00385{left:351.850650px;}
.xe_c00385{left:523.223100px;}
.xf_c00385{left:865.922250px;}
.xa_c00385{left:980.543550px;}
.x7_c00385{left:1142.595000px;}
.xb_c00385{left:1170.223500px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls7_c00385{letter-spacing:-0.299518pt;}
.ls9_c00385{letter-spacing:-0.299509pt;}
.ls6_c00385{letter-spacing:-0.224632pt;}
.lsa_c00385{letter-spacing:-0.128000pt;}
.ls8_c00385{letter-spacing:-0.074879pt;}
.ls5_c00385{letter-spacing:0.000000pt;}
.lsb_c00385{letter-spacing:0.056320pt;}
.ls1_c00385{letter-spacing:0.149759pt;}
.ls4_c00385{letter-spacing:0.192000pt;}
.ls2_c00385{letter-spacing:0.256000pt;}
.ls0_c00385{letter-spacing:16.766947pt;}
.ls3_c00385{letter-spacing:17.536000pt;}
.ws2_c00385{word-spacing:-23.663360pt;}
.ws0_c00385{word-spacing:-20.816640pt;}
.ws1_c00385{word-spacing:-20.741760pt;}
.ws3_c00385{word-spacing:-15.656960pt;}
.wsb_c00385{word-spacing:-1.497600pt;}
.ws8_c00385{word-spacing:-1.497589pt;}
.ws11_c00385{word-spacing:-1.408000pt;}
.ws7_c00385{word-spacing:-1.272951pt;}
.ws10_c00385{word-spacing:-1.024000pt;}
.ws12_c00385{word-spacing:-0.957440pt;}
.wsc_c00385{word-spacing:-0.768000pt;}
.wsf_c00385{word-spacing:-0.704000pt;}
.wse_c00385{word-spacing:-0.595840pt;}
.ws13_c00385{word-spacing:-0.337920pt;}
.ws4_c00385{word-spacing:-0.192000pt;}
.ws9_c00385{word-spacing:-0.149759pt;}
.ws5_c00385{word-spacing:0.000000pt;}
.ws6_c00385{word-spacing:0.224632pt;}
.wsa_c00385{word-spacing:0.673896pt;}
.wsd_c00385{word-spacing:0.680960pt;}
._3_c00385{margin-left:-1.973594pt;}
._1_c00385{margin-left:-1.041061pt;}
._0_c00385{width:1.168120pt;}
._2_c00385{width:183.798115pt;}
.fs0_c00385{font-size:48.000000pt;}
.fs6_c00385{font-size:56.320000pt;}
.fs4_c00385{font-size:64.000000pt;}
.fs1_c00385{font-size:74.877333pt;}
.fs2_c00385{font-size:74.879467pt;}
.fs3_c00385{font-size:74.880000pt;}
.fs5_c00385{font-size:85.120000pt;}
.y0_c00385{bottom:0.000000pt;}
.y1d_c00385{bottom:24.121600pt;}
.y1_c00385{bottom:24.225600pt;}
.y2_c00385{bottom:40.982667pt;}
.y3_c00385{bottom:109.762400pt;}
.ya_c00385{bottom:138.157333pt;}
.y19_c00385{bottom:171.841867pt;}
.y4_c00385{bottom:191.246133pt;}
.y18_c00385{bottom:236.349573pt;}
.y17_c00385{bottom:261.949413pt;}
.y5_c00385{bottom:272.729600pt;}
.y16_c00385{bottom:287.549253pt;}
.y1a_c00385{bottom:302.968800pt;}
.y15_c00385{bottom:313.149093pt;}
.y14_c00385{bottom:338.748933pt;}
.y6_c00385{bottom:354.213333pt;}
.y1c_c00385{bottom:357.506800pt;}
.y13_c00385{bottom:389.948613pt;}
.y12_c00385{bottom:415.548453pt;}
.y1b_c00385{bottom:420.790667pt;}
.yf_c00385{bottom:422.241733pt;}
.y7_c00385{bottom:435.696933pt;}
.y11_c00385{bottom:441.148293pt;}
.y10_c00385{bottom:466.748133pt;}
.y8_c00385{bottom:517.180533pt;}
.yc_c00385{bottom:569.430400pt;}
.ye_c00385{bottom:588.308560pt;}
.y9_c00385{bottom:598.664133pt;}
.yd_c00385{bottom:610.716400pt;}
.yb_c00385{bottom:632.002267pt;}
.h1_c00385{height:34.968750pt;}
.h8_c00385{height:41.030000pt;}
.h6_c00385{height:46.625000pt;}
.h3_c00385{height:49.906035pt;}
.h4_c00385{height:49.907457pt;}
.h5_c00385{height:54.551250pt;}
.h7_c00385{height:62.011250pt;}
.h2_c00385{height:660.618667pt;}
.h0_c00385{height:720.000000pt;}
.w1_c00385{width:911.032000pt;}
.w0_c00385{width:1280.000000pt;}
.x0_c00385{left:0.000000pt;}
.x1_c00385{left:23.811067pt;}
.x5_c00385{left:34.426400pt;}
.x4_c00385{left:43.452933pt;}
.x3_c00385{left:52.912933pt;}
.x2_c00385{left:61.600000pt;}
.xc_c00385{left:94.351467pt;}
.xd_c00385{left:165.597467pt;}
.x8_c00385{left:168.618933pt;}
.x9_c00385{left:185.092533pt;}
.x6_c00385{left:272.589600pt;}
.x10_c00385{left:312.756133pt;}
.xe_c00385{left:465.087200pt;}
.xf_c00385{left:769.708667pt;}
.xa_c00385{left:871.594267pt;}
.x7_c00385{left:1015.640000pt;}
.xb_c00385{left:1040.198667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f902af8758f9ca358fab05c.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:0.938965;font-style:normal;font-weight:normal;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_4fbadddfdc5283b1e90c9473.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:0.684082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00386;src:url('chunks/assets/font_6cac6202f1e9e1a38465e5fb.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:0.938965;font-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_c00386{transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);}
.m3_c00386{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_c00386{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00386{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.v0_c00386{vertical-align:0.000000px;}
.ls7_c00386{letter-spacing:-0.336955px;}
.ls9_c00386{letter-spacing:-0.336943px;}
.lsb_c00386{letter-spacing:-0.287280px;}
.ls6_c00386{letter-spacing:-0.252707px;}
.lsc_c00386{letter-spacing:-0.191520px;}
.lsd_c00386{letter-spacing:-0.144000px;}
.lsa_c00386{letter-spacing:-0.084240px;}
.ls8_c00386{letter-spacing:-0.084239px;}
.ls5_c00386{letter-spacing:0.000000px;}
.lse_c00386{letter-spacing:0.063360px;}
.ls1_c00386{letter-spacing:0.168478px;}
.ls4_c00386{letter-spacing:0.216000px;}
.ls3_c00386{letter-spacing:0.288000px;}
.ls0_c00386{letter-spacing:18.862717px;}
.ls2_c00386{letter-spacing:19.728000px;}
.sc__c00386{text-shadow:none;}
.sc0_c00386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00386{-webkit-text-stroke:0px transparent;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00386{word-spacing:-26.621280px;}
.ws0_c00386{word-spacing:-23.334480px;}
.ws2_c00386{word-spacing:-17.614080px;}
.wsa_c00386{word-spacing:-1.684800px;}
.ws7_c00386{word-spacing:-1.684776px;}
.ws13_c00386{word-spacing:-1.584000px;}
.ws6_c00386{word-spacing:-1.432060px;}
.ws10_c00386{word-spacing:-1.152000px;}
.ws11_c00386{word-spacing:-1.077120px;}
.wsf_c00386{word-spacing:-0.792000px;}
.wsd_c00386{word-spacing:-0.670320px;}
.ws12_c00386{word-spacing:-0.380160px;}
.ws3_c00386{word-spacing:-0.216000px;}
.ws8_c00386{word-spacing:-0.168478px;}
.ws4_c00386{word-spacing:0.000000px;}
.wse_c00386{word-spacing:0.191520px;}
.ws5_c00386{word-spacing:0.252707px;}
.wsb_c00386{word-spacing:0.287280px;}
.ws9_c00386{word-spacing:0.758122px;}
.wsc_c00386{word-spacing:0.766080px;}
._3_c00386{margin-left:-2.225046px;}
._1_c00386{margin-left:-1.170001px;}
._0_c00386{width:1.314125px;}
._2_c00386{width:206.774441px;}
.fc3_c00386{color:transparent;}
.fc2_c00386{color:rgb(0,74,150);}
.fc1_c00386{color:rgb(255,255,255);}
.fc0_c00386{color:rgb(0,0,0);}
.fs0_c00386{font-size:54.000000px;}
.fs6_c00386{font-size:63.360000px;}
.fs5_c00386{font-size:72.000000px;}
.fs1_c00386{font-size:84.235800px;}
.fs2_c00386{font-size:84.238800px;}
.fs3_c00386{font-size:84.240000px;}
.fs4_c00386{font-size:95.760000px;}
.y0_c00386{bottom:0.000000px;}
.y1d_c00386{bottom:27.136800px;}
.y1_c00386{bottom:27.253800px;}
.y2_c00386{bottom:46.474500px;}
.y3_c00386{bottom:123.392700px;}
.ya_c00386{bottom:155.126100px;}
.y1c_c00386{bottom:193.322100px;}
.y1b_c00386{bottom:211.391190px;}
.y4_c00386{bottom:215.015400px;}
.y1a_c00386{bottom:240.191010px;}
.y19_c00386{bottom:268.990830px;}
.y18_c00386{bottom:297.790650px;}
.y5_c00386{bottom:306.638250px;}
.y17_c00386{bottom:326.590470px;}
.y1e_c00386{bottom:340.839900px;}
.y16_c00386{bottom:355.390290px;}
.y1f_c00386{bottom:394.125750px;}
.y6_c00386{bottom:398.260950px;}
.y15_c00386{bottom:412.989930px;}
.y21_c00386{bottom:414.167250px;}
.y20_c00386{bottom:427.097400px;}
.y14_c00386{bottom:441.789750px;}
.y13_c00386{bottom:470.589570px;}
.y7_c00386{bottom:489.883650px;}
.y12_c00386{bottom:499.389390px;}
.y11_c00386{bottom:528.189210px;}
.y10_c00386{bottom:556.989030px;}
.y8_c00386{bottom:581.506350px;}
.yf_c00386{bottom:585.788850px;}
.yc_c00386{bottom:640.609200px;}
.ye_c00386{bottom:661.847130px;}
.y9_c00386{bottom:673.129050px;}
.yd_c00386{bottom:687.055950px;}
.yb_c00386{bottom:710.634000px;}
.h1_c00386{height:39.339844px;}
.h8_c00386{height:46.158750px;}
.h7_c00386{height:52.453125px;}
.h3_c00386{height:56.143490px;}
.h4_c00386{height:56.145489px;}
.h5_c00386{height:61.370156px;}
.h6_c00386{height:69.762656px;}
.h2_c00386{height:742.825500px;}
.h0_c00386{height:810.000000px;}
.w1_c00386{width:1025.448000px;}
.w0_c00386{width:1440.000000px;}
.x0_c00386{left:0.000000px;}
.x1_c00386{left:26.787450px;}
.x5_c00386{left:38.729550px;}
.x4_c00386{left:48.884400px;}
.x3_c00386{left:59.526900px;}
.x2_c00386{left:69.300000px;}
.xb_c00386{left:106.145400px;}
.x8_c00386{left:189.696300px;}
.x9_c00386{left:208.229100px;}
.xd_c00386{left:275.631000px;}
.x6_c00386{left:306.982500px;}
.xc_c00386{left:351.850650px;}
.xe_c00386{left:616.005750px;}
.x10_c00386{left:958.599600px;}
.xf_c00386{left:1073.900850px;}
.x7_c00386{left:1142.595000px;}
.xa_c00386{left:1170.223500px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls7_c00386{letter-spacing:-0.299516pt;}
.ls9_c00386{letter-spacing:-0.299505pt;}
.lsb_c00386{letter-spacing:-0.255360pt;}
.ls6_c00386{letter-spacing:-0.224629pt;}
.lsc_c00386{letter-spacing:-0.170240pt;}
.lsd_c00386{letter-spacing:-0.128000pt;}
.lsa_c00386{letter-spacing:-0.074880pt;}
.ls8_c00386{letter-spacing:-0.074879pt;}
.ls5_c00386{letter-spacing:0.000000pt;}
.lse_c00386{letter-spacing:0.056320pt;}
.ls1_c00386{letter-spacing:0.149758pt;}
.ls4_c00386{letter-spacing:0.192000pt;}
.ls3_c00386{letter-spacing:0.256000pt;}
.ls0_c00386{letter-spacing:16.766860pt;}
.ls2_c00386{letter-spacing:17.536000pt;}
.ws1_c00386{word-spacing:-23.663360pt;}
.ws0_c00386{word-spacing:-20.741760pt;}
.ws2_c00386{word-spacing:-15.656960pt;}
.wsa_c00386{word-spacing:-1.497600pt;}
.ws7_c00386{word-spacing:-1.497579pt;}
.ws13_c00386{word-spacing:-1.408000pt;}
.ws6_c00386{word-spacing:-1.272942pt;}
.ws10_c00386{word-spacing:-1.024000pt;}
.ws11_c00386{word-spacing:-0.957440pt;}
.wsf_c00386{word-spacing:-0.704000pt;}
.wsd_c00386{word-spacing:-0.595840pt;}
.ws12_c00386{word-spacing:-0.337920pt;}
.ws3_c00386{word-spacing:-0.192000pt;}
.ws8_c00386{word-spacing:-0.149758pt;}
.ws4_c00386{word-spacing:0.000000pt;}
.wse_c00386{word-spacing:0.170240pt;}
.ws5_c00386{word-spacing:0.224629pt;}
.wsb_c00386{word-spacing:0.255360pt;}
.ws9_c00386{word-spacing:0.673886pt;}
.wsc_c00386{word-spacing:0.680960pt;}
._3_c00386{margin-left:-1.977819pt;}
._1_c00386{margin-left:-1.040001pt;}
._0_c00386{width:1.168111pt;}
._2_c00386{width:183.799503pt;}
.fs0_c00386{font-size:48.000000pt;}
.fs6_c00386{font-size:56.320000pt;}
.fs5_c00386{font-size:64.000000pt;}
.fs1_c00386{font-size:74.876267pt;}
.fs2_c00386{font-size:74.878933pt;}
.fs3_c00386{font-size:74.880000pt;}
.fs4_c00386{font-size:85.120000pt;}
.y0_c00386{bottom:0.000000pt;}
.y1d_c00386{bottom:24.121600pt;}
.y1_c00386{bottom:24.225600pt;}
.y2_c00386{bottom:41.310667pt;}
.y3_c00386{bottom:109.682400pt;}
.ya_c00386{bottom:137.889867pt;}
.y1c_c00386{bottom:171.841867pt;}
.y1b_c00386{bottom:187.903280pt;}
.y4_c00386{bottom:191.124800pt;}
.y1a_c00386{bottom:213.503120pt;}
.y19_c00386{bottom:239.102960pt;}
.y18_c00386{bottom:264.702800pt;}
.y5_c00386{bottom:272.567333pt;}
.y17_c00386{bottom:290.302640pt;}
.y1e_c00386{bottom:302.968800pt;}
.y16_c00386{bottom:315.902480pt;}
.y1f_c00386{bottom:350.334000pt;}
.y6_c00386{bottom:354.009733pt;}
.y15_c00386{bottom:367.102160pt;}
.y21_c00386{bottom:368.148667pt;}
.y20_c00386{bottom:379.642133pt;}
.y14_c00386{bottom:392.702000pt;}
.y13_c00386{bottom:418.301840pt;}
.y7_c00386{bottom:435.452133pt;}
.y12_c00386{bottom:443.901680pt;}
.y11_c00386{bottom:469.501520pt;}
.y10_c00386{bottom:495.101360pt;}
.y8_c00386{bottom:516.894533pt;}
.yf_c00386{bottom:520.701200pt;}
.yc_c00386{bottom:569.430400pt;}
.ye_c00386{bottom:588.308560pt;}
.y9_c00386{bottom:598.336933pt;}
.yd_c00386{bottom:610.716400pt;}
.yb_c00386{bottom:631.674667pt;}
.h1_c00386{height:34.968750pt;}
.h8_c00386{height:41.030000pt;}
.h7_c00386{height:46.625000pt;}
.h3_c00386{height:49.905324pt;}
.h4_c00386{height:49.907102pt;}
.h5_c00386{height:54.551250pt;}
.h6_c00386{height:62.011250pt;}
.h2_c00386{height:660.289333pt;}
.h0_c00386{height:720.000000pt;}
.w1_c00386{width:911.509333pt;}
.w0_c00386{width:1280.000000pt;}
.x0_c00386{left:0.000000pt;}
.x1_c00386{left:23.811067pt;}
.x5_c00386{left:34.426267pt;}
.x4_c00386{left:43.452800pt;}
.x3_c00386{left:52.912800pt;}
.x2_c00386{left:61.600000pt;}
.xb_c00386{left:94.351467pt;}
.x8_c00386{left:168.618933pt;}
.x9_c00386{left:185.092533pt;}
.xd_c00386{left:245.005333pt;}
.x6_c00386{left:272.873333pt;}
.xc_c00386{left:312.756133pt;}
.xe_c00386{left:547.560667pt;}
.x10_c00386{left:852.088533pt;}
.xf_c00386{left:954.578533pt;}
.x7_c00386{left:1015.640000pt;}
.xa_c00386{left:1040.198667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e30e4b7c824a23674c1495b0.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:0.938965;font-style:normal;font-weight:normal;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_68605b54eee53713d842333a.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:0.817871;font-style:normal;font-weight:normal;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_0557c4517716805ec358365f.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:0.938965;font-style:normal;font-weight:normal;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_0bdc5bca270013e264e7fa3d.woff2')format("woff");}.ff4_c00387{font-family:ff4_c00387;line-height:0.834473;font-style: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;}
.lsb_c00387{letter-spacing:-2.288880px;}
.ls8_c00387{letter-spacing:-0.269280px;}
.ls9_c00387{letter-spacing:-0.167760px;}
.lsa_c00387{letter-spacing:-0.134640px;}
.ls7_c00387{letter-spacing:0.000000px;}
.ls4_c00387{letter-spacing:0.120240px;}
.ls5_c00387{letter-spacing:0.192384px;}
.lsd_c00387{letter-spacing:0.216000px;}
.lsc_c00387{letter-spacing:0.269280px;}
.ls0_c00387{letter-spacing:0.335520px;}
.ls2_c00387{letter-spacing:0.360000px;}
.ls6_c00387{letter-spacing:20.320560px;}
.ls1_c00387{letter-spacing:41.136480px;}
.ls3_c00387{letter-spacing:72.144000px;}
.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:-46.637280px;}
.ws1_c00387{word-spacing:-37.160640px;}
.wsb_c00387{word-spacing:-33.546960px;}
.wsf_c00387{word-spacing:-2.525040px;}
.ws10_c00387{word-spacing:-1.803600px;}
.ws11_c00387{word-spacing:-1.082160px;}
.wse_c00387{word-spacing:-0.335520px;}
.ws12_c00387{word-spacing:-0.216000px;}
.wsc_c00387{word-spacing:0.000000px;}
.wsd_c00387{word-spacing:0.167760px;}
.ws9_c00387{word-spacing:4.550832px;}
.ws2_c00387{word-spacing:6.422328px;}
.ws4_c00387{word-spacing:6.489648px;}
.ws7_c00387{word-spacing:7.257096px;}
.ws3_c00387{word-spacing:8.239968px;}
.ws5_c00387{word-spacing:8.495784px;}
.ws8_c00387{word-spacing:9.020880px;}
.wsa_c00387{word-spacing:9.021624px;}
.ws6_c00387{word-spacing:12.790800px;}
._2_c00387{margin-left:-5.307048px;}
._1_c00387{margin-left:-1.185120px;}
._0_c00387{width:1.160136px;}
._4_c00387{width:2.214000px;}
._3_c00387{width:44.673840px;}
.fc1_c00387{color:rgb(0,0,0);}
.fc0_c00387{color:rgb(0,74,150);}
.fs3_c00387{font-size:54.000000px;}
.fs2_c00387{font-size:120.240000px;}
.fs1_c00387{font-size:134.640000px;}
.fs0_c00387{font-size:167.760000px;}
.y0_c00387{bottom:0.000000px;}
.yb_c00387{bottom:27.253800px;}
.ya_c00387{bottom:212.090400px;}
.y9_c00387{bottom:273.292560px;}
.y8_c00387{bottom:316.497960px;}
.y7_c00387{bottom:359.694180px;}
.y6_c00387{bottom:420.896340px;}
.y5_c00387{bottom:464.092560px;}
.y4_c00387{bottom:507.288780px;}
.y3_c00387{bottom:550.485000px;}
.y2_c00387{bottom:667.727430px;}
.y1_c00387{bottom:718.116450px;}
.h5_c00387{height:39.339844px;}
.h3_c00387{height:92.645859px;}
.h4_c00387{height:93.643945px;}
.h2_c00387{height:122.171861px;}
.h1_c00387{height:122.215781px;}
.h0_c00387{height:810.000000px;}
.w0_c00387{width:1440.000000px;}
.x0_c00387{left:0.000000px;}
.x1_c00387{left:25.936950px;}
.x2_c00387{left:67.194210px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.lsb_c00387{letter-spacing:-2.034560pt;}
.ls8_c00387{letter-spacing:-0.239360pt;}
.ls9_c00387{letter-spacing:-0.149120pt;}
.lsa_c00387{letter-spacing:-0.119680pt;}
.ls7_c00387{letter-spacing:0.000000pt;}
.ls4_c00387{letter-spacing:0.106880pt;}
.ls5_c00387{letter-spacing:0.171008pt;}
.lsd_c00387{letter-spacing:0.192000pt;}
.lsc_c00387{letter-spacing:0.239360pt;}
.ls0_c00387{letter-spacing:0.298240pt;}
.ls2_c00387{letter-spacing:0.320000pt;}
.ls6_c00387{letter-spacing:18.062720pt;}
.ls1_c00387{letter-spacing:36.565760pt;}
.ls3_c00387{letter-spacing:64.128000pt;}
.ws0_c00387{word-spacing:-41.455360pt;}
.ws1_c00387{word-spacing:-33.031680pt;}
.wsb_c00387{word-spacing:-29.819520pt;}
.wsf_c00387{word-spacing:-2.244480pt;}
.ws10_c00387{word-spacing:-1.603200pt;}
.ws11_c00387{word-spacing:-0.961920pt;}
.wse_c00387{word-spacing:-0.298240pt;}
.ws12_c00387{word-spacing:-0.192000pt;}
.wsc_c00387{word-spacing:0.000000pt;}
.wsd_c00387{word-spacing:0.149120pt;}
.ws9_c00387{word-spacing:4.045184pt;}
.ws2_c00387{word-spacing:5.708736pt;}
.ws4_c00387{word-spacing:5.768576pt;}
.ws7_c00387{word-spacing:6.450752pt;}
.ws3_c00387{word-spacing:7.324416pt;}
.ws5_c00387{word-spacing:7.551808pt;}
.ws8_c00387{word-spacing:8.018560pt;}
.wsa_c00387{word-spacing:8.019221pt;}
.ws6_c00387{word-spacing:11.369600pt;}
._2_c00387{margin-left:-4.717376pt;}
._1_c00387{margin-left:-1.053440pt;}
._0_c00387{width:1.031232pt;}
._4_c00387{width:1.968000pt;}
._3_c00387{width:39.710080pt;}
.fs3_c00387{font-size:48.000000pt;}
.fs2_c00387{font-size:106.880000pt;}
.fs1_c00387{font-size:119.680000pt;}
.fs0_c00387{font-size:149.120000pt;}
.y0_c00387{bottom:0.000000pt;}
.yb_c00387{bottom:24.225600pt;}
.ya_c00387{bottom:188.524800pt;}
.y9_c00387{bottom:242.926720pt;}
.y8_c00387{bottom:281.331520pt;}
.y7_c00387{bottom:319.728160pt;}
.y6_c00387{bottom:374.130080pt;}
.y5_c00387{bottom:412.526720pt;}
.y4_c00387{bottom:450.923360pt;}
.y3_c00387{bottom:489.320000pt;}
.y2_c00387{bottom:593.535493pt;}
.y1_c00387{bottom:638.325733pt;}
.h5_c00387{height:34.968750pt;}
.h3_c00387{height:82.351875pt;}
.h4_c00387{height:83.239062pt;}
.h2_c00387{height:108.597210pt;}
.h1_c00387{height:108.636250pt;}
.h0_c00387{height:720.000000pt;}
.w0_c00387{width:1280.000000pt;}
.x0_c00387{left:0.000000pt;}
.x1_c00387{left:23.055067pt;}
.x2_c00387{left:59.728187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2c1375d198d2dfb93c20e5f.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:0.938965;font-style:normal;font-weight:normal;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_5612c20b94d930b596274142.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:0.938965;font-style:normal;font-weight:normal;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_fb683784c25b7112709e0bf3.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-2.288880px;}
.ls9_c00388{letter-spacing:-0.336960px;}
.ls7_c00388{letter-spacing:-0.324000px;}
.ls4_c00388{letter-spacing:-0.269280px;}
.ls0_c00388{letter-spacing:-0.167760px;}
.ls5_c00388{letter-spacing:-0.134640px;}
.ls8_c00388{letter-spacing:-0.084240px;}
.ls1_c00388{letter-spacing:0.000000px;}
.ls6_c00388{letter-spacing:0.216000px;}
.ls3_c00388{letter-spacing:0.269280px;}
.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;}
}
.ws4_c00388{word-spacing:-37.160640px;}
.wsc_c00388{word-spacing:-29.700000px;}
.wsd_c00388{word-spacing:-23.334480px;}
.ws15_c00388{word-spacing:-1.684800px;}
.ws16_c00388{word-spacing:-1.432080px;}
.ws17_c00388{word-spacing:-1.010880px;}
.wsf_c00388{word-spacing:-0.216000px;}
.ws12_c00388{word-spacing:0.000000px;}
.wse_c00388{word-spacing:0.167760px;}
.ws14_c00388{word-spacing:0.324000px;}
.ws11_c00388{word-spacing:0.540000px;}
.wsb_c00388{word-spacing:0.673200px;}
.ws10_c00388{word-spacing:1.296000px;}
.ws2_c00388{word-spacing:1.817640px;}
.ws13_c00388{word-spacing:2.052000px;}
.ws3_c00388{word-spacing:6.247296px;}
.ws6_c00388{word-spacing:6.651216px;}
.ws8_c00388{word-spacing:6.853176px;}
.ws0_c00388{word-spacing:7.351344px;}
.ws9_c00388{word-spacing:7.378272px;}
.ws7_c00388{word-spacing:8.684280px;}
.wsa_c00388{word-spacing:9.020880px;}
.ws1_c00388{word-spacing:12.117600px;}
.ws5_c00388{word-spacing:12.790800px;}
._3_c00388{margin-left:-11.781000px;}
._2_c00388{margin-left:-10.528848px;}
._1_c00388{margin-left:-1.117512px;}
._0_c00388{width:1.391040px;}
._4_c00388{width:44.767800px;}
._5_c00388{width:45.952632px;}
.fc2_c00388{color:rgb(0,40,117);}
.fc1_c00388{color:rgb(0,0,0);}
.fc0_c00388{color:rgb(0,74,150);}
.fs2_c00388{font-size:54.000000px;}
.fs4_c00388{font-size:84.240000px;}
.fs3_c00388{font-size:108.000000px;}
.fs1_c00388{font-size:134.640000px;}
.fs0_c00388{font-size:167.760000px;}
.y0_c00388{bottom:0.000000px;}
.y3_c00388{bottom:27.253800px;}
.y6_c00388{bottom:131.052750px;}
.y9_c00388{bottom:133.104750px;}
.y5_c00388{bottom:163.452750px;}
.y8_c00388{bottom:165.504750px;}
.y4_c00388{bottom:195.852750px;}
.y7_c00388{bottom:197.904750px;}
.yb_c00388{bottom:272.594400px;}
.y13_c00388{bottom:274.326450px;}
.yc_c00388{bottom:335.058360px;}
.y14_c00388{bottom:336.790410px;}
.y11_c00388{bottom:377.377680px;}
.y10_c00388{bottom:402.586500px;}
.ya_c00388{bottom:407.693400px;}
.y12_c00388{bottom:409.425600px;}
.yd_c00388{bottom:485.679480px;}
.yf_c00388{bottom:486.184920px;}
.y15_c00388{bottom:487.411530px;}
.y17_c00388{bottom:487.916970px;}
.ye_c00388{bottom:549.954600px;}
.y16_c00388{bottom:551.686650px;}
.y2_c00388{bottom:667.727430px;}
.y1_c00388{bottom:718.116450px;}
.h3_c00388{height:39.339844px;}
.h6_c00388{height:61.329023px;}
.h5_c00388{height:61.370156px;}
.h4_c00388{height:78.679688px;}
.h2_c00388{height:98.087344px;}
.h1_c00388{height:122.215781px;}
.h0_c00388{height:810.000000px;}
.w0_c00388{width:1440.000000px;}
.x0_c00388{left:0.000000px;}
.x1_c00388{left:25.936950px;}
.xe_c00388{left:56.402100px;}
.xd_c00388{left:107.620020px;}
.x4_c00388{left:139.444200px;}
.x2_c00388{left:154.915200px;}
.x3_c00388{left:177.244200px;}
.x8_c00388{left:354.060150px;}
.x9_c00388{left:358.823700px;}
.xc_c00388{left:365.415480px;}
.xb_c00388{left:479.560680px;}
.xa_c00388{left:480.592620px;}
.x10_c00388{left:612.518400px;}
.xf_c00388{left:615.045600px;}
.x17_c00388{left:822.686850px;}
.x16_c00388{left:873.904770px;}
.x7_c00388{left:904.651200px;}
.x6_c00388{left:915.802200px;}
.x5_c00388{left:924.793200px;}
.x11_c00388{left:1120.344900px;}
.x12_c00388{left:1125.108450px;}
.x15_c00388{left:1131.700230px;}
.x14_c00388{left:1245.845430px;}
.x13_c00388{left:1246.877370px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls2_c00388{letter-spacing:-2.034560pt;}
.ls9_c00388{letter-spacing:-0.299520pt;}
.ls7_c00388{letter-spacing:-0.288000pt;}
.ls4_c00388{letter-spacing:-0.239360pt;}
.ls0_c00388{letter-spacing:-0.149120pt;}
.ls5_c00388{letter-spacing:-0.119680pt;}
.ls8_c00388{letter-spacing:-0.074880pt;}
.ls1_c00388{letter-spacing:0.000000pt;}
.ls6_c00388{letter-spacing:0.192000pt;}
.ls3_c00388{letter-spacing:0.239360pt;}
.ws4_c00388{word-spacing:-33.031680pt;}
.wsc_c00388{word-spacing:-26.400000pt;}
.wsd_c00388{word-spacing:-20.741760pt;}
.ws15_c00388{word-spacing:-1.497600pt;}
.ws16_c00388{word-spacing:-1.272960pt;}
.ws17_c00388{word-spacing:-0.898560pt;}
.wsf_c00388{word-spacing:-0.192000pt;}
.ws12_c00388{word-spacing:0.000000pt;}
.wse_c00388{word-spacing:0.149120pt;}
.ws14_c00388{word-spacing:0.288000pt;}
.ws11_c00388{word-spacing:0.480000pt;}
.wsb_c00388{word-spacing:0.598400pt;}
.ws10_c00388{word-spacing:1.152000pt;}
.ws2_c00388{word-spacing:1.615680pt;}
.ws13_c00388{word-spacing:1.824000pt;}
.ws3_c00388{word-spacing:5.553152pt;}
.ws6_c00388{word-spacing:5.912192pt;}
.ws8_c00388{word-spacing:6.091712pt;}
.ws0_c00388{word-spacing:6.534528pt;}
.ws9_c00388{word-spacing:6.558464pt;}
.ws7_c00388{word-spacing:7.719360pt;}
.wsa_c00388{word-spacing:8.018560pt;}
.ws1_c00388{word-spacing:10.771200pt;}
.ws5_c00388{word-spacing:11.369600pt;}
._3_c00388{margin-left:-10.472000pt;}
._2_c00388{margin-left:-9.358976pt;}
._1_c00388{margin-left:-0.993344pt;}
._0_c00388{width:1.236480pt;}
._4_c00388{width:39.793600pt;}
._5_c00388{width:40.846784pt;}
.fs2_c00388{font-size:48.000000pt;}
.fs4_c00388{font-size:74.880000pt;}
.fs3_c00388{font-size:96.000000pt;}
.fs1_c00388{font-size:119.680000pt;}
.fs0_c00388{font-size:149.120000pt;}
.y0_c00388{bottom:0.000000pt;}
.y3_c00388{bottom:24.225600pt;}
.y6_c00388{bottom:116.491333pt;}
.y9_c00388{bottom:118.315333pt;}
.y5_c00388{bottom:145.291333pt;}
.y8_c00388{bottom:147.115333pt;}
.y4_c00388{bottom:174.091333pt;}
.y7_c00388{bottom:175.915333pt;}
.yb_c00388{bottom:242.306133pt;}
.y13_c00388{bottom:243.845733pt;}
.yc_c00388{bottom:297.829653pt;}
.y14_c00388{bottom:299.369253pt;}
.y11_c00388{bottom:335.446827pt;}
.y10_c00388{bottom:357.854667pt;}
.ya_c00388{bottom:362.394133pt;}
.y12_c00388{bottom:363.933867pt;}
.yd_c00388{bottom:431.715093pt;}
.yf_c00388{bottom:432.164373pt;}
.y15_c00388{bottom:433.254693pt;}
.y17_c00388{bottom:433.703973pt;}
.ye_c00388{bottom:488.848533pt;}
.y16_c00388{bottom:490.388133pt;}
.y2_c00388{bottom:593.535493pt;}
.y1_c00388{bottom:638.325733pt;}
.h3_c00388{height:34.968750pt;}
.h6_c00388{height:54.514687pt;}
.h5_c00388{height:54.551250pt;}
.h4_c00388{height:69.937500pt;}
.h2_c00388{height:87.188750pt;}
.h1_c00388{height:108.636250pt;}
.h0_c00388{height:720.000000pt;}
.w0_c00388{width:1280.000000pt;}
.x0_c00388{left:0.000000pt;}
.x1_c00388{left:23.055067pt;}
.xe_c00388{left:50.135200pt;}
.xd_c00388{left:95.662240pt;}
.x4_c00388{left:123.950400pt;}
.x2_c00388{left:137.702400pt;}
.x3_c00388{left:157.550400pt;}
.x8_c00388{left:314.720133pt;}
.x9_c00388{left:318.954400pt;}
.xc_c00388{left:324.813760pt;}
.xb_c00388{left:426.276160pt;}
.xa_c00388{left:427.193440pt;}
.x10_c00388{left:544.460800pt;}
.xf_c00388{left:546.707200pt;}
.x17_c00388{left:731.277200pt;}
.x16_c00388{left:776.804240pt;}
.x7_c00388{left:804.134400pt;}
.x6_c00388{left:814.046400pt;}
.x5_c00388{left:822.038400pt;}
.x11_c00388{left:995.862133pt;}
.x12_c00388{left:1000.096400pt;}
.x15_c00388{left:1005.955760pt;}
.x14_c00388{left:1107.418160pt;}
.x13_c00388{left:1108.335440pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_880fa8564fe64dcfd78147d3.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:0.938965;font-style:normal;font-weight:normal;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_f5323a4a5e30cd662c8bf2f4.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:0.938965;font-style:normal;font-weight:normal;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_17336cbcd070688f7160fbc2.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:0.817871;font-style: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;}
.ls9_c00389{letter-spacing:-9.828720px;}
.lsc_c00389{letter-spacing:-6.990480px;}
.ls6_c00389{letter-spacing:-0.384480px;}
.lsf_c00389{letter-spacing:-0.345600px;}
.lsb_c00389{letter-spacing:-0.240480px;}
.lse_c00389{letter-spacing:-0.191520px;}
.ls7_c00389{letter-spacing:-0.144000px;}
.ls8_c00389{letter-spacing:0.000000px;}
.lsd_c00389{letter-spacing:0.191520px;}
.ls0_c00389{letter-spacing:0.197280px;}
.ls10_c00389{letter-spacing:0.230400px;}
.ls2_c00389{letter-spacing:0.290160px;}
.ls4_c00389{letter-spacing:0.331920px;}
.ls11_c00389{letter-spacing:0.345600px;}
.lsa_c00389{letter-spacing:0.383040px;}
.ls3_c00389{letter-spacing:33.186240px;}
.ls1_c00389{letter-spacing:67.454640px;}
.ls5_c00389{letter-spacing:111.600000px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00389{word-spacing:-46.637280px;}
.ws10_c00389{word-spacing:-40.032000px;}
.ws8_c00389{word-spacing:-33.426720px;}
.wsc_c00389{word-spacing:-33.186240px;}
.ws1_c00389{word-spacing:-27.601200px;}
.ws7_c00389{word-spacing:-27.004320px;}
.wsf_c00389{word-spacing:-26.621280px;}
.wsa_c00389{word-spacing:-1.474704px;}
.ws4_c00389{word-spacing:-1.283184px;}
.ws15_c00389{word-spacing:-1.008000px;}
.ws14_c00389{word-spacing:-0.384480px;}
.ws16_c00389{word-spacing:0.000000px;}
.ws17_c00389{word-spacing:0.240480px;}
.wsd_c00389{word-spacing:4.309200px;}
.ws12_c00389{word-spacing:4.320000px;}
.wsb_c00389{word-spacing:4.530312px;}
.ws13_c00389{word-spacing:4.896000px;}
.ws9_c00389{word-spacing:5.649840px;}
.ws5_c00389{word-spacing:5.996448px;}
.ws3_c00389{word-spacing:6.128640px;}
.wse_c00389{word-spacing:7.105392px;}
.ws11_c00389{word-spacing:7.948800px;}
.ws2_c00389{word-spacing:8.886240px;}
.ws6_c00389{word-spacing:17.447472px;}
._5_c00389{margin-left:-9.100800px;}
._2_c00389{margin-left:-3.141360px;}
._6_c00389{margin-left:-1.025280px;}
._0_c00389{width:1.211112px;}
._1_c00389{width:2.448000px;}
._4_c00389{width:6.971328px;}
._3_c00389{width:9.478656px;}
.fc2_c00389{color:transparent;}
.fc1_c00389{color:rgb(255,255,255);}
.fc0_c00389{color:rgb(0,74,150);}
.fs5_c00389{font-size:95.760000px;}
.fs6_c00389{font-size:115.200000px;}
.fs4_c00389{font-size:120.240000px;}
.fs3_c00389{font-size:134.640000px;}
.fs1_c00389{font-size:144.000000px;}
.fs2_c00389{font-size:167.760000px;}
.fs0_c00389{font-size:192.240000px;}
.y0_c00389{bottom:0.000000px;}
.y8_c00389{bottom:62.912700px;}
.y7_c00389{bottom:115.098300px;}
.y6_c00389{bottom:166.031100px;}
.y5_c00389{bottom:211.038480px;}
.y4_c00389{bottom:256.038300px;}
.y2_c00389{bottom:444.678000px;}
.y1_c00389{bottom:499.758000px;}
.y3_c00389{bottom:724.176300px;}
.h5_c00389{height:69.762656px;}
.h6_c00389{height:83.925000px;}
.h4_c00389{height:92.645859px;}
.h2_c00389{height:104.906250px;}
.h3_c00389{height:122.215781px;}
.h1_c00389{height:140.049844px;}
.h0_c00389{height:810.000000px;}
.w0_c00389{width:1440.000000px;}
.x0_c00389{left:0.000000px;}
.x1_c00389{left:51.117450px;}
.x2_c00389{left:80.673450px;}
.x3_c00389{left:781.061100px;}
.x4_c00389{left:822.272640px;}
.x5_c00389{left:830.748300px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls9_c00389{letter-spacing:-8.736640pt;}
.lsc_c00389{letter-spacing:-6.213760pt;}
.ls6_c00389{letter-spacing:-0.341760pt;}
.lsf_c00389{letter-spacing:-0.307200pt;}
.lsb_c00389{letter-spacing:-0.213760pt;}
.lse_c00389{letter-spacing:-0.170240pt;}
.ls7_c00389{letter-spacing:-0.128000pt;}
.ls8_c00389{letter-spacing:0.000000pt;}
.lsd_c00389{letter-spacing:0.170240pt;}
.ls0_c00389{letter-spacing:0.175360pt;}
.ls10_c00389{letter-spacing:0.204800pt;}
.ls2_c00389{letter-spacing:0.257920pt;}
.ls4_c00389{letter-spacing:0.295040pt;}
.ls11_c00389{letter-spacing:0.307200pt;}
.lsa_c00389{letter-spacing:0.340480pt;}
.ls3_c00389{letter-spacing:29.498880pt;}
.ls1_c00389{letter-spacing:59.959680pt;}
.ls5_c00389{letter-spacing:99.200000pt;}
.ws0_c00389{word-spacing:-41.455360pt;}
.ws10_c00389{word-spacing:-35.584000pt;}
.ws8_c00389{word-spacing:-29.712640pt;}
.wsc_c00389{word-spacing:-29.498880pt;}
.ws1_c00389{word-spacing:-24.534400pt;}
.ws7_c00389{word-spacing:-24.003840pt;}
.wsf_c00389{word-spacing:-23.663360pt;}
.wsa_c00389{word-spacing:-1.310848pt;}
.ws4_c00389{word-spacing:-1.140608pt;}
.ws15_c00389{word-spacing:-0.896000pt;}
.ws14_c00389{word-spacing:-0.341760pt;}
.ws16_c00389{word-spacing:0.000000pt;}
.ws17_c00389{word-spacing:0.213760pt;}
.wsd_c00389{word-spacing:3.830400pt;}
.ws12_c00389{word-spacing:3.840000pt;}
.wsb_c00389{word-spacing:4.026944pt;}
.ws13_c00389{word-spacing:4.352000pt;}
.ws9_c00389{word-spacing:5.022080pt;}
.ws5_c00389{word-spacing:5.330176pt;}
.ws3_c00389{word-spacing:5.447680pt;}
.wse_c00389{word-spacing:6.315904pt;}
.ws11_c00389{word-spacing:7.065600pt;}
.ws2_c00389{word-spacing:7.898880pt;}
.ws6_c00389{word-spacing:15.508864pt;}
._5_c00389{margin-left:-8.089600pt;}
._2_c00389{margin-left:-2.792320pt;}
._6_c00389{margin-left:-0.911360pt;}
._0_c00389{width:1.076544pt;}
._1_c00389{width:2.176000pt;}
._4_c00389{width:6.196736pt;}
._3_c00389{width:8.425472pt;}
.fs5_c00389{font-size:85.120000pt;}
.fs6_c00389{font-size:102.400000pt;}
.fs4_c00389{font-size:106.880000pt;}
.fs3_c00389{font-size:119.680000pt;}
.fs1_c00389{font-size:128.000000pt;}
.fs2_c00389{font-size:149.120000pt;}
.fs0_c00389{font-size:170.880000pt;}
.y0_c00389{bottom:0.000000pt;}
.y8_c00389{bottom:55.922400pt;}
.y7_c00389{bottom:102.309600pt;}
.y6_c00389{bottom:147.583200pt;}
.y5_c00389{bottom:187.589760pt;}
.y4_c00389{bottom:227.589600pt;}
.y2_c00389{bottom:395.269333pt;}
.y1_c00389{bottom:444.229333pt;}
.y3_c00389{bottom:643.712267pt;}
.h5_c00389{height:62.011250pt;}
.h6_c00389{height:74.600000pt;}
.h4_c00389{height:82.351875pt;}
.h2_c00389{height:93.250000pt;}
.h3_c00389{height:108.636250pt;}
.h1_c00389{height:124.488750pt;}
.h0_c00389{height:720.000000pt;}
.w0_c00389{width:1280.000000pt;}
.x0_c00389{left:0.000000pt;}
.x1_c00389{left:45.437733pt;}
.x2_c00389{left:71.709733pt;}
.x3_c00389{left:694.276533pt;}
.x4_c00389{left:730.909013pt;}
.x5_c00389{left:738.442933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c1f7910bebc8e393a5d0c881.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:0.938965;font-style:normal;font-weight:normal;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_68605b54eee53713d842333a.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:0.817871;font-style:normal;font-weight:normal;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_b3d4fefc2deb7c027b4c5b88.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:0.938965;font-style:normal;font-weight:normal;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_cc409593025e7bcf507f7248.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7_c00390{letter-spacing:-12.386880px;}
.lsa_c00390{letter-spacing:-0.336960px;}
.lsb_c00390{letter-spacing:-0.287280px;}
.ls8_c00390{letter-spacing:-0.269280px;}
.ls5_c00390{letter-spacing:-0.134640px;}
.ls6_c00390{letter-spacing:0.000000px;}
.ls2_c00390{letter-spacing:0.120240px;}
.ls0_c00390{letter-spacing:0.162720px;}
.ls3_c00390{letter-spacing:0.168336px;}
.ls4_c00390{letter-spacing:0.216000px;}
.ls9_c00390{letter-spacing:0.269280px;}
.ls1_c00390{letter-spacing:72.144000px;}
.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;}
}
.ws9_c00390{word-spacing:-37.699200px;}
.wsa_c00390{word-spacing:-33.546960px;}
.wsc_c00390{word-spacing:-26.621280px;}
.wsb_c00390{word-spacing:-26.334000px;}
.ws10_c00390{word-spacing:-3.246480px;}
.wsf_c00390{word-spacing:-2.525040px;}
.ws12_c00390{word-spacing:-1.803600px;}
.ws11_c00390{word-spacing:-1.082160px;}
.wsd_c00390{word-spacing:-0.216000px;}
.wse_c00390{word-spacing:0.000000px;}
.ws13_c00390{word-spacing:0.336960px;}
.ws1_c00390{word-spacing:0.902088px;}
.ws0_c00390{word-spacing:6.651216px;}
.ws7_c00390{word-spacing:7.310952px;}
.ws8_c00390{word-spacing:7.378272px;}
.ws3_c00390{word-spacing:7.728336px;}
.ws6_c00390{word-spacing:7.812384px;}
.ws5_c00390{word-spacing:8.347680px;}
.ws4_c00390{word-spacing:8.967024px;}
.ws2_c00390{word-spacing:30.657528px;}
._0_c00390{margin-left:-9.667152px;}
._7_c00390{margin-left:-7.177248px;}
._8_c00390{margin-left:-4.346784px;}
._6_c00390{margin-left:-2.585160px;}
._4_c00390{margin-left:-1.050192px;}
._3_c00390{width:1.023264px;}
._5_c00390{width:2.359008px;}
._2_c00390{width:12.036816px;}
._1_c00390{width:46.006488px;}
.fc1_c00390{color:rgb(0,74,150);}
.fc0_c00390{color:rgb(0,0,0);}
.fs0_c00390{font-size:54.000000px;}
.fs4_c00390{font-size:84.240000px;}
.fs5_c00390{font-size:95.760000px;}
.fs3_c00390{font-size:120.240000px;}
.fs2_c00390{font-size:134.640000px;}
.fs1_c00390{font-size:167.760000px;}
.y0_c00390{bottom:0.000000px;}
.y1_c00390{bottom:27.253800px;}
.ye_c00390{bottom:149.014440px;}
.yd_c00390{bottom:183.222720px;}
.y12_c00390{bottom:192.969990px;}
.yc_c00390{bottom:217.431000px;}
.y11_c00390{bottom:218.178810px;}
.y14_c00390{bottom:221.250900px;}
.y10_c00390{bottom:243.387630px;}
.yb_c00390{bottom:251.639280px;}
.yf_c00390{bottom:268.596450px;}
.ya_c00390{bottom:285.847560px;}
.y9_c00390{bottom:347.049720px;}
.y8_c00390{bottom:381.258000px;}
.y13_c00390{bottom:403.673700px;}
.y7_c00390{bottom:442.460160px;}
.y6_c00390{bottom:476.668440px;}
.y5_c00390{bottom:510.876720px;}
.y4_c00390{bottom:545.085000px;}
.y3_c00390{bottom:662.316450px;}
.y2_c00390{bottom:712.716450px;}
.h1_c00390{height:39.339844px;}
.h6_c00390{height:61.329023px;}
.h7_c00390{height:69.762656px;}
.h5_c00390{height:87.596719px;}
.h4_c00390{height:92.645859px;}
.h3_c00390{height:98.087344px;}
.h2_c00390{height:122.215781px;}
.h0_c00390{height:810.000000px;}
.w0_c00390{width:1440.000000px;}
.x0_c00390{left:0.000000px;}
.x1_c00390{left:26.787450px;}
.x2_c00390{left:36.736950px;}
.x3_c00390{left:76.380150px;}
.x7_c00390{left:839.799360px;}
.x5_c00390{left:904.242960px;}
.x6_c00390{left:952.849440px;}
.x4_c00390{left:968.139000px;}
.x8_c00390{left:972.618000px;}
.x9_c00390{left:1200.359220px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls7_c00390{letter-spacing:-11.010560pt;}
.lsa_c00390{letter-spacing:-0.299520pt;}
.lsb_c00390{letter-spacing:-0.255360pt;}
.ls8_c00390{letter-spacing:-0.239360pt;}
.ls5_c00390{letter-spacing:-0.119680pt;}
.ls6_c00390{letter-spacing:0.000000pt;}
.ls2_c00390{letter-spacing:0.106880pt;}
.ls0_c00390{letter-spacing:0.144640pt;}
.ls3_c00390{letter-spacing:0.149632pt;}
.ls4_c00390{letter-spacing:0.192000pt;}
.ls9_c00390{letter-spacing:0.239360pt;}
.ls1_c00390{letter-spacing:64.128000pt;}
.ws9_c00390{word-spacing:-33.510400pt;}
.wsa_c00390{word-spacing:-29.819520pt;}
.wsc_c00390{word-spacing:-23.663360pt;}
.wsb_c00390{word-spacing:-23.408000pt;}
.ws10_c00390{word-spacing:-2.885760pt;}
.wsf_c00390{word-spacing:-2.244480pt;}
.ws12_c00390{word-spacing:-1.603200pt;}
.ws11_c00390{word-spacing:-0.961920pt;}
.wsd_c00390{word-spacing:-0.192000pt;}
.wse_c00390{word-spacing:0.000000pt;}
.ws13_c00390{word-spacing:0.299520pt;}
.ws1_c00390{word-spacing:0.801856pt;}
.ws0_c00390{word-spacing:5.912192pt;}
.ws7_c00390{word-spacing:6.498624pt;}
.ws8_c00390{word-spacing:6.558464pt;}
.ws3_c00390{word-spacing:6.869632pt;}
.ws6_c00390{word-spacing:6.944341pt;}
.ws5_c00390{word-spacing:7.420160pt;}
.ws4_c00390{word-spacing:7.970688pt;}
.ws2_c00390{word-spacing:27.251136pt;}
._0_c00390{margin-left:-8.593024pt;}
._7_c00390{margin-left:-6.379776pt;}
._8_c00390{margin-left:-3.863808pt;}
._6_c00390{margin-left:-2.297920pt;}
._4_c00390{margin-left:-0.933504pt;}
._3_c00390{width:0.909568pt;}
._5_c00390{width:2.096896pt;}
._2_c00390{width:10.699392pt;}
._1_c00390{width:40.894656pt;}
.fs0_c00390{font-size:48.000000pt;}
.fs4_c00390{font-size:74.880000pt;}
.fs5_c00390{font-size:85.120000pt;}
.fs3_c00390{font-size:106.880000pt;}
.fs2_c00390{font-size:119.680000pt;}
.fs1_c00390{font-size:149.120000pt;}
.y0_c00390{bottom:0.000000pt;}
.y1_c00390{bottom:24.225600pt;}
.ye_c00390{bottom:132.457280pt;}
.yd_c00390{bottom:162.864640pt;}
.y12_c00390{bottom:171.528880pt;}
.yc_c00390{bottom:193.272000pt;}
.y11_c00390{bottom:193.936720pt;}
.y14_c00390{bottom:196.667467pt;}
.y10_c00390{bottom:216.344560pt;}
.yb_c00390{bottom:223.679360pt;}
.yf_c00390{bottom:238.752400pt;}
.ya_c00390{bottom:254.086720pt;}
.y9_c00390{bottom:308.488640pt;}
.y8_c00390{bottom:338.896000pt;}
.y13_c00390{bottom:358.821067pt;}
.y7_c00390{bottom:393.297920pt;}
.y6_c00390{bottom:423.705280pt;}
.y5_c00390{bottom:454.112640pt;}
.y4_c00390{bottom:484.520000pt;}
.y3_c00390{bottom:588.725733pt;}
.y2_c00390{bottom:633.525733pt;}
.h1_c00390{height:34.968750pt;}
.h6_c00390{height:54.514687pt;}
.h7_c00390{height:62.011250pt;}
.h5_c00390{height:77.863750pt;}
.h4_c00390{height:82.351875pt;}
.h3_c00390{height:87.188750pt;}
.h2_c00390{height:108.636250pt;}
.h0_c00390{height:720.000000pt;}
.w0_c00390{width:1280.000000pt;}
.x0_c00390{left:0.000000pt;}
.x1_c00390{left:23.811067pt;}
.x2_c00390{left:32.655067pt;}
.x3_c00390{left:67.893467pt;}
.x7_c00390{left:746.488320pt;}
.x5_c00390{left:803.771520pt;}
.x6_c00390{left:846.977280pt;}
.x4_c00390{left:860.568000pt;}
.x8_c00390{left:864.549333pt;}
.x9_c00390{left:1066.985973pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ac6faa4797fca7ecebc71b5f.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:0.938965;font-style:normal;font-weight:normal;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_38d324caf7395356622f48d6.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:0.938965;font-style:normal;font-weight:normal;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_17336cbcd070688f7160fbc2.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:0.817871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00391{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.ls7_c00391{letter-spacing:-6.710400px;}
.ls4_c00391{letter-spacing:-0.335520px;}
.ls9_c00391{letter-spacing:-0.324000px;}
.ls8_c00391{letter-spacing:-0.269280px;}
.ls6_c00391{letter-spacing:-0.167760px;}
.ls3_c00391{letter-spacing:0.000000px;}
.ls2_c00391{letter-spacing:0.216000px;}
.ls5_c00391{letter-spacing:0.269280px;}
.ls1_c00391{letter-spacing:86.758560px;}
.ls0_c00391{letter-spacing:97.524000px;}
.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:-46.637280px;}
.ws3_c00391{word-spacing:-37.429920px;}
.ws10_c00391{word-spacing:-1.436400px;}
.ws11_c00391{word-spacing:-0.670320px;}
.wsf_c00391{word-spacing:-0.432000px;}
.ws7_c00391{word-spacing:-0.216000px;}
.wsd_c00391{word-spacing:-0.108000px;}
.wsc_c00391{word-spacing:0.000000px;}
.ws9_c00391{word-spacing:0.335520px;}
.wsb_c00391{word-spacing:0.540000px;}
.ws8_c00391{word-spacing:1.174320px;}
.wse_c00391{word-spacing:1.728000px;}
.ws6_c00391{word-spacing:2.154240px;}
.ws4_c00391{word-spacing:6.624288px;}
.wsa_c00391{word-spacing:6.710400px;}
.ws1_c00391{word-spacing:7.731648px;}
.ws5_c00391{word-spacing:8.415000px;}
.ws2_c00391{word-spacing:8.817984px;}
._2_c00391{margin-left:-10.414728px;}
._1_c00391{margin-left:-2.142552px;}
._3_c00391{margin-left:-1.024056px;}
._0_c00391{width:1.482552px;}
._4_c00391{width:3.107808px;}
.fc1_c00391{color:rgb(0,74,150);}
.fc0_c00391{color:rgb(0,0,0);}
.fs0_c00391{font-size:54.000000px;}
.fs4_c00391{font-size:95.760000px;}
.fs3_c00391{font-size:108.000000px;}
.fs2_c00391{font-size:134.640000px;}
.fs1_c00391{font-size:167.760000px;}
.y0_c00391{bottom:0.000000px;}
.y1_c00391{bottom:27.253800px;}
.yc_c00391{bottom:156.464790px;}
.yb_c00391{bottom:185.264610px;}
.ya_c00391{bottom:223.065870px;}
.y9_c00391{bottom:260.867130px;}
.y8_c00391{bottom:289.666950px;}
.y7_c00391{bottom:351.586950px;}
.y6_c00391{bottom:416.386950px;}
.y5_c00391{bottom:481.186950px;}
.y4_c00391{bottom:545.986950px;}
.y3_c00391{bottom:659.256450px;}
.y2_c00391{bottom:712.716450px;}
.h1_c00391{height:39.339844px;}
.h5_c00391{height:69.762656px;}
.h4_c00391{height:73.783828px;}
.h3_c00391{height:78.679688px;}
.h2_c00391{height:122.215781px;}
.h0_c00391{height:810.000000px;}
.w0_c00391{width:1440.000000px;}
.x0_c00391{left:0.000000px;}
.x1_c00391{left:26.787450px;}
.x2_c00391{left:36.736950px;}
.x3_c00391{left:839.721150px;}
.x4_c00391{left:893.721150px;}
.x5_c00391{left:934.227630px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls7_c00391{letter-spacing:-5.964800pt;}
.ls4_c00391{letter-spacing:-0.298240pt;}
.ls9_c00391{letter-spacing:-0.288000pt;}
.ls8_c00391{letter-spacing:-0.239360pt;}
.ls6_c00391{letter-spacing:-0.149120pt;}
.ls3_c00391{letter-spacing:0.000000pt;}
.ls2_c00391{letter-spacing:0.192000pt;}
.ls5_c00391{letter-spacing:0.239360pt;}
.ls1_c00391{letter-spacing:77.118720pt;}
.ls0_c00391{letter-spacing:86.688000pt;}
.ws0_c00391{word-spacing:-41.455360pt;}
.ws3_c00391{word-spacing:-33.271040pt;}
.ws10_c00391{word-spacing:-1.276800pt;}
.ws11_c00391{word-spacing:-0.595840pt;}
.wsf_c00391{word-spacing:-0.384000pt;}
.ws7_c00391{word-spacing:-0.192000pt;}
.wsd_c00391{word-spacing:-0.096000pt;}
.wsc_c00391{word-spacing:0.000000pt;}
.ws9_c00391{word-spacing:0.298240pt;}
.wsb_c00391{word-spacing:0.480000pt;}
.ws8_c00391{word-spacing:1.043840pt;}
.wse_c00391{word-spacing:1.536000pt;}
.ws6_c00391{word-spacing:1.914880pt;}
.ws4_c00391{word-spacing:5.888256pt;}
.wsa_c00391{word-spacing:5.964800pt;}
.ws1_c00391{word-spacing:6.872576pt;}
.ws5_c00391{word-spacing:7.480000pt;}
.ws2_c00391{word-spacing:7.838208pt;}
._2_c00391{margin-left:-9.257536pt;}
._1_c00391{margin-left:-1.904491pt;}
._3_c00391{margin-left:-0.910272pt;}
._0_c00391{width:1.317824pt;}
._4_c00391{width:2.762496pt;}
.fs0_c00391{font-size:48.000000pt;}
.fs4_c00391{font-size:85.120000pt;}
.fs3_c00391{font-size:96.000000pt;}
.fs2_c00391{font-size:119.680000pt;}
.fs1_c00391{font-size:149.120000pt;}
.y0_c00391{bottom:0.000000pt;}
.y1_c00391{bottom:24.225600pt;}
.yc_c00391{bottom:139.079813pt;}
.yb_c00391{bottom:164.679653pt;}
.ya_c00391{bottom:198.280773pt;}
.y9_c00391{bottom:231.881893pt;}
.y8_c00391{bottom:257.481733pt;}
.y7_c00391{bottom:312.521733pt;}
.y6_c00391{bottom:370.121733pt;}
.y5_c00391{bottom:427.721733pt;}
.y4_c00391{bottom:485.321733pt;}
.y3_c00391{bottom:586.005733pt;}
.y2_c00391{bottom:633.525733pt;}
.h1_c00391{height:34.968750pt;}
.h5_c00391{height:62.011250pt;}
.h4_c00391{height:65.585625pt;}
.h3_c00391{height:69.937500pt;}
.h2_c00391{height:108.636250pt;}
.h0_c00391{height:720.000000pt;}
.w0_c00391{width:1280.000000pt;}
.x0_c00391{left:0.000000pt;}
.x1_c00391{left:23.811067pt;}
.x2_c00391{left:32.655067pt;}
.x3_c00391{left:746.418800pt;}
.x4_c00391{left:794.418800pt;}
.x5_c00391{left:830.424560pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f17b79753e91131efa00fc6c.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:0.938965;font-style:normal;font-weight:normal;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_a607d5aad5ec51b2b3dea91a.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:0.875977;font-style:normal;font-weight:normal;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_4e0342bae538ce808f13208e.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:0.938965;font-style:normal;font-weight:normal;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_21715bc89afaee497e004384.woff2')format("woff");}.ff4_c00392{font-family:ff4_c00392;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00392{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v1_c00392{vertical-align:-4.329000px;}
.v0_c00392{vertical-align:0.000000px;}
.ls8_c00392{letter-spacing:-10.150560px;}
.lsd_c00392{letter-spacing:-2.527200px;}
.lse_c00392{letter-spacing:-0.336960px;}
.ls5_c00392{letter-spacing:-0.269280px;}
.lsa_c00392{letter-spacing:-0.267840px;}
.lsb_c00392{letter-spacing:-0.133920px;}
.lsc_c00392{letter-spacing:-0.084240px;}
.ls4_c00392{letter-spacing:0.000000px;}
.ls1_c00392{letter-spacing:0.053880px;}
.ls7_c00392{letter-spacing:0.115200px;}
.ls2_c00392{letter-spacing:0.133920px;}
.ls9_c00392{letter-spacing:0.191520px;}
.ls3_c00392{letter-spacing:0.216000px;}
.ls6_c00392{letter-spacing:0.269280px;}
.ls0_c00392{letter-spacing:0.306720px;}
.sc__c00392{text-shadow:none;}
.sc1_c00392{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.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;}
.sc1_c00392{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc0_c00392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00392{word-spacing:-46.637280px;}
.ws5_c00392{word-spacing:-37.429920px;}
.ws7_c00392{word-spacing:-23.418720px;}
.ws12_c00392{word-spacing:-23.334480px;}
.ws14_c00392{word-spacing:-23.081760px;}
.ws13_c00392{word-spacing:-20.891520px;}
.wsf_c00392{word-spacing:-18.748800px;}
.wsd_c00392{word-spacing:-18.480960px;}
.ws17_c00392{word-spacing:-1.436400px;}
.ws1a_c00392{word-spacing:-1.010880px;}
.ws18_c00392{word-spacing:-0.670320px;}
.ws6_c00392{word-spacing:-0.230400px;}
.ws15_c00392{word-spacing:-0.216000px;}
.ws16_c00392{word-spacing:0.000000px;}
.ws19_c00392{word-spacing:0.766080px;}
.ws10_c00392{word-spacing:1.363128px;}
.wsa_c00392{word-spacing:2.151792px;}
.ws8_c00392{word-spacing:4.101696px;}
.wse_c00392{word-spacing:4.123728px;}
.wsb_c00392{word-spacing:4.358160px;}
.wsc_c00392{word-spacing:7.113456px;}
.ws1_c00392{word-spacing:7.122456px;}
.ws3_c00392{word-spacing:7.230168px;}
.ws4_c00392{word-spacing:7.647552px;}
.ws11_c00392{word-spacing:7.994976px;}
.ws2_c00392{word-spacing:8.967024px;}
.ws9_c00392{word-spacing:803.609160px;}
._0_c00392{margin-left:-10.233792px;}
._6_c00392{margin-left:-4.158888px;}
._1_c00392{margin-left:-2.773584px;}
._4_c00392{margin-left:-1.026576px;}
._2_c00392{width:1.059840px;}
._7_c00392{width:2.173752px;}
._5_c00392{width:3.813984px;}
._3_c00392{width:10.405296px;}
.fc4_c00392{color:rgb(0,40,117);}
.fc2_c00392{color:rgb(255,0,0);}
.fc1_c00392{color:rgb(0,74,150);}
.fc3_c00392{color:rgb(255,255,255);}
.fc0_c00392{color:rgb(0,0,0);}
.fs0_c00392{font-size:54.000000px;}
.fs5_c00392{font-size:66.960000px;}
.fs4_c00392{font-size:84.240000px;}
.fs7_c00392{font-size:95.760000px;}
.fs3_c00392{font-size:115.200000px;}
.fs6_c00392{font-size:120.240000px;}
.fs2_c00392{font-size:134.640000px;}
.fs1_c00392{font-size:167.760000px;}
.y0_c00392{bottom:0.000000px;}
.y1_c00392{bottom:27.253800px;}
.y19_c00392{bottom:32.680200px;}
.y18_c00392{bottom:57.889020px;}
.yc_c00392{bottom:105.433740px;}
.yf_c00392{bottom:134.233410px;}
.yb_c00392{bottom:134.233560px;}
.ye_c00392{bottom:163.033230px;}
.ya_c00392{bottom:163.033380px;}
.yd_c00392{bottom:191.833050px;}
.y9_c00392{bottom:191.833200px;}
.y17_c00392{bottom:241.237380px;}
.y16_c00392{bottom:266.446200px;}
.y8_c00392{bottom:300.442800px;}
.y5_c00392{bottom:324.981750px;}
.y7_c00392{bottom:325.642800px;}
.y6_c00392{bottom:352.822800px;}
.y4_c00392{bottom:353.244000px;}
.y12_c00392{bottom:422.209800px;}
.y10_c00392{bottom:423.807750px;}
.y11_c00392{bottom:425.556900px;}
.y15_c00392{bottom:537.934500px;}
.y14_c00392{bottom:547.980120px;}
.y13_c00392{bottom:548.401320px;}
.y2_c00392{bottom:712.716450px;}
.y3_c00392{bottom:748.567350px;}
.h1_c00392{height:39.339844px;}
.h7_c00392{height:61.329023px;}
.h5_c00392{height:61.370156px;}
.h6_c00392{height:69.762656px;}
.h4_c00392{height:87.596719px;}
.h3_c00392{height:94.331250px;}
.h2_c00392{height:122.215781px;}
.h0_c00392{height:810.000000px;}
.w0_c00392{width:1440.000000px;}
.x0_c00392{left:0.000000px;}
.x1_c00392{left:26.787450px;}
.x2_c00392{left:36.736950px;}
.x17_c00392{left:175.503030px;}
.x4_c00392{left:269.269650px;}
.xa_c00392{left:270.550230px;}
.x9_c00392{left:274.691850px;}
.xb_c00392{left:317.352930px;}
.x3_c00392{left:355.665300px;}
.x11_c00392{left:496.132500px;}
.x15_c00392{left:568.208850px;}
.x16_c00392{left:571.810110px;}
.x5_c00392{left:614.360400px;}
.xc_c00392{left:620.146050px;}
.xd_c00392{left:632.930010px;}
.x12_c00392{left:843.217650px;}
.xe_c00392{left:947.781600px;}
.x8_c00392{left:958.491600px;}
.x10_c00392{left:975.863220px;}
.x6_c00392{left:982.431450px;}
.x7_c00392{left:994.311600px;}
.xf_c00392{left:1011.677460px;}
.x14_c00392{left:1206.688560px;}
.x13_c00392{left:1208.141700px;}
@media print{
.v1_c00392{vertical-align:-3.848000pt;}
.v0_c00392{vertical-align:0.000000pt;}
.ls8_c00392{letter-spacing:-9.022720pt;}
.lsd_c00392{letter-spacing:-2.246400pt;}
.lse_c00392{letter-spacing:-0.299520pt;}
.ls5_c00392{letter-spacing:-0.239360pt;}
.lsa_c00392{letter-spacing:-0.238080pt;}
.lsb_c00392{letter-spacing:-0.119040pt;}
.lsc_c00392{letter-spacing:-0.074880pt;}
.ls4_c00392{letter-spacing:0.000000pt;}
.ls1_c00392{letter-spacing:0.047893pt;}
.ls7_c00392{letter-spacing:0.102400pt;}
.ls2_c00392{letter-spacing:0.119040pt;}
.ls9_c00392{letter-spacing:0.170240pt;}
.ls3_c00392{letter-spacing:0.192000pt;}
.ls6_c00392{letter-spacing:0.239360pt;}
.ls0_c00392{letter-spacing:0.272640pt;}
.ws0_c00392{word-spacing:-41.455360pt;}
.ws5_c00392{word-spacing:-33.271040pt;}
.ws7_c00392{word-spacing:-20.816640pt;}
.ws12_c00392{word-spacing:-20.741760pt;}
.ws14_c00392{word-spacing:-20.517120pt;}
.ws13_c00392{word-spacing:-18.570240pt;}
.wsf_c00392{word-spacing:-16.665600pt;}
.wsd_c00392{word-spacing:-16.427520pt;}
.ws17_c00392{word-spacing:-1.276800pt;}
.ws1a_c00392{word-spacing:-0.898560pt;}
.ws18_c00392{word-spacing:-0.595840pt;}
.ws6_c00392{word-spacing:-0.204800pt;}
.ws15_c00392{word-spacing:-0.192000pt;}
.ws16_c00392{word-spacing:0.000000pt;}
.ws19_c00392{word-spacing:0.680960pt;}
.ws10_c00392{word-spacing:1.211669pt;}
.wsa_c00392{word-spacing:1.912704pt;}
.ws8_c00392{word-spacing:3.645952pt;}
.wse_c00392{word-spacing:3.665536pt;}
.wsb_c00392{word-spacing:3.873920pt;}
.wsc_c00392{word-spacing:6.323072pt;}
.ws1_c00392{word-spacing:6.331072pt;}
.ws3_c00392{word-spacing:6.426816pt;}
.ws4_c00392{word-spacing:6.797824pt;}
.ws11_c00392{word-spacing:7.106645pt;}
.ws2_c00392{word-spacing:7.970688pt;}
.ws9_c00392{word-spacing:714.319253pt;}
._0_c00392{margin-left:-9.096704pt;}
._6_c00392{margin-left:-3.696789pt;}
._1_c00392{margin-left:-2.465408pt;}
._4_c00392{margin-left:-0.912512pt;}
._2_c00392{width:0.942080pt;}
._7_c00392{width:1.932224pt;}
._5_c00392{width:3.390208pt;}
._3_c00392{width:9.249152pt;}
.fs0_c00392{font-size:48.000000pt;}
.fs5_c00392{font-size:59.520000pt;}
.fs4_c00392{font-size:74.880000pt;}
.fs7_c00392{font-size:85.120000pt;}
.fs3_c00392{font-size:102.400000pt;}
.fs6_c00392{font-size:106.880000pt;}
.fs2_c00392{font-size:119.680000pt;}
.fs1_c00392{font-size:149.120000pt;}
.y0_c00392{bottom:0.000000pt;}
.y1_c00392{bottom:24.225600pt;}
.y19_c00392{bottom:29.049067pt;}
.y18_c00392{bottom:51.456907pt;}
.yc_c00392{bottom:93.718880pt;}
.yf_c00392{bottom:119.318587pt;}
.yb_c00392{bottom:119.318720pt;}
.ye_c00392{bottom:144.918427pt;}
.ya_c00392{bottom:144.918560pt;}
.yd_c00392{bottom:170.518267pt;}
.y9_c00392{bottom:170.518400pt;}
.y17_c00392{bottom:214.433227pt;}
.y16_c00392{bottom:236.841067pt;}
.y8_c00392{bottom:267.060267pt;}
.y5_c00392{bottom:288.872667pt;}
.y7_c00392{bottom:289.460267pt;}
.y6_c00392{bottom:313.620267pt;}
.y4_c00392{bottom:313.994667pt;}
.y12_c00392{bottom:375.297600pt;}
.y10_c00392{bottom:376.718000pt;}
.y11_c00392{bottom:378.272800pt;}
.y15_c00392{bottom:478.164000pt;}
.y14_c00392{bottom:487.093440pt;}
.y13_c00392{bottom:487.467840pt;}
.y2_c00392{bottom:633.525733pt;}
.y3_c00392{bottom:665.393200pt;}
.h1_c00392{height:34.968750pt;}
.h7_c00392{height:54.514687pt;}
.h5_c00392{height:54.551250pt;}
.h6_c00392{height:62.011250pt;}
.h4_c00392{height:77.863750pt;}
.h3_c00392{height:83.850000pt;}
.h2_c00392{height:108.636250pt;}
.h0_c00392{height:720.000000pt;}
.w0_c00392{width:1280.000000pt;}
.x0_c00392{left:0.000000pt;}
.x1_c00392{left:23.811067pt;}
.x2_c00392{left:32.655067pt;}
.x17_c00392{left:156.002693pt;}
.x4_c00392{left:239.350800pt;}
.xa_c00392{left:240.489093pt;}
.x9_c00392{left:244.170533pt;}
.xb_c00392{left:282.091493pt;}
.x3_c00392{left:316.146933pt;}
.x11_c00392{left:441.006667pt;}
.x15_c00392{left:505.074533pt;}
.x16_c00392{left:508.275653pt;}
.x5_c00392{left:546.098133pt;}
.xc_c00392{left:551.240933pt;}
.xd_c00392{left:562.604453pt;}
.x12_c00392{left:749.526800pt;}
.xe_c00392{left:842.472533pt;}
.x8_c00392{left:851.992533pt;}
.x10_c00392{left:867.433973pt;}
.x6_c00392{left:873.272400pt;}
.x7_c00392{left:883.832533pt;}
.xf_c00392{left:899.268853pt;}
.x14_c00392{left:1072.612053pt;}
.x13_c00392{left:1073.903733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45cdd3e6f5d9ca61a123afd4.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:0.938965;font-style:normal;font-weight:normal;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_68605b54eee53713d842333a.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:0.817871;font-style:normal;font-weight:normal;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_7facbdde36cc8cc2d8d18a19.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:0.938965;font-style:normal;font-weight:normal;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_34a84b2d38209ca4b9c2f2d8.woff2')format("woff");}.ff4_c00393{font-family:ff4_c00393;line-height:0.834473;font-style: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;}
.ls6_c00393{letter-spacing:-2.288880px;}
.ls9_c00393{letter-spacing:-0.324000px;}
.ls7_c00393{letter-spacing:-0.269280px;}
.ls4_c00393{letter-spacing:-0.167760px;}
.lsa_c00393{letter-spacing:-0.108000px;}
.ls5_c00393{letter-spacing:0.000000px;}
.lsb_c00393{letter-spacing:0.216000px;}
.ls8_c00393{letter-spacing:0.269280px;}
.ls1_c00393{letter-spacing:0.335520px;}
.ls3_c00393{letter-spacing:31.104000px;}
.ls0_c00393{letter-spacing:49.143600px;}
.ls2_c00393{letter-spacing:81.324000px;}
.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;}
}
.ws6_c00393{word-spacing:-46.637280px;}
.ws1_c00393{word-spacing:-46.469520px;}
.wsa_c00393{word-spacing:-37.429920px;}
.ws4_c00393{word-spacing:-37.160640px;}
.wsb_c00393{word-spacing:-29.700000px;}
.wsc_c00393{word-spacing:-14.904000px;}
.ws13_c00393{word-spacing:-0.216000px;}
.wse_c00393{word-spacing:0.000000px;}
.wsd_c00393{word-spacing:0.167760px;}
.ws12_c00393{word-spacing:0.324000px;}
.wsf_c00393{word-spacing:0.335520px;}
.ws10_c00393{word-spacing:0.540000px;}
.ws0_c00393{word-spacing:0.724176px;}
.ws11_c00393{word-spacing:1.296000px;}
.ws7_c00393{word-spacing:2.975544px;}
.ws3_c00393{word-spacing:6.503112px;}
.ws9_c00393{word-spacing:6.705072px;}
.ws5_c00393{word-spacing:7.249752px;}
.ws8_c00393{word-spacing:7.835040px;}
.ws2_c00393{word-spacing:12.790800px;}
._6_c00393{margin-left:-933.876000px;}
._2_c00393{margin-left:-9.882576px;}
._4_c00393{margin-left:-5.138640px;}
._3_c00393{margin-left:-1.050192px;}
._0_c00393{width:1.391040px;}
._5_c00393{width:2.432160px;}
._1_c00393{width:45.508320px;}
.fc1_c00393{color:rgb(0,0,0);}
.fc0_c00393{color:rgb(0,74,150);}
.fs3_c00393{font-size:54.000000px;}
.fs2_c00393{font-size:108.000000px;}
.fs1_c00393{font-size:134.640000px;}
.fs0_c00393{font-size:167.760000px;}
.y0_c00393{bottom:0.000000px;}
.yd_c00393{bottom:27.253800px;}
.yc_c00393{bottom:190.915050px;}
.yb_c00393{bottom:248.695050px;}
.ya_c00393{bottom:288.466050px;}
.y9_c00393{bottom:328.237050px;}
.y8_c00393{bottom:386.017050px;}
.y7_c00393{bottom:416.815050px;}
.y6_c00393{bottom:447.595050px;}
.y5_c00393{bottom:505.375050px;}
.y4_c00393{bottom:545.146050px;}
.y3_c00393{bottom:584.917050px;}
.y2_c00393{bottom:667.727430px;}
.y1_c00393{bottom:718.116450px;}
.h6_c00393{height:39.339844px;}
.h5_c00393{height:78.679688px;}
.h3_c00393{height:83.214844px;}
.h4_c00393{height:84.111328px;}
.h2_c00393{height:122.171861px;}
.h1_c00393{height:122.215781px;}
.h0_c00393{height:810.000000px;}
.w0_c00393{width:1440.000000px;}
.x0_c00393{left:0.000000px;}
.x1_c00393{left:25.936950px;}
.x3_c00393{left:65.580300px;}
.x2_c00393{left:67.200300px;}
.x4_c00393{left:161.574750px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls6_c00393{letter-spacing:-2.034560pt;}
.ls9_c00393{letter-spacing:-0.288000pt;}
.ls7_c00393{letter-spacing:-0.239360pt;}
.ls4_c00393{letter-spacing:-0.149120pt;}
.lsa_c00393{letter-spacing:-0.096000pt;}
.ls5_c00393{letter-spacing:0.000000pt;}
.lsb_c00393{letter-spacing:0.192000pt;}
.ls8_c00393{letter-spacing:0.239360pt;}
.ls1_c00393{letter-spacing:0.298240pt;}
.ls3_c00393{letter-spacing:27.648000pt;}
.ls0_c00393{letter-spacing:43.683200pt;}
.ls2_c00393{letter-spacing:72.288000pt;}
.ws6_c00393{word-spacing:-41.455360pt;}
.ws1_c00393{word-spacing:-41.306240pt;}
.wsa_c00393{word-spacing:-33.271040pt;}
.ws4_c00393{word-spacing:-33.031680pt;}
.wsb_c00393{word-spacing:-26.400000pt;}
.wsc_c00393{word-spacing:-13.248000pt;}
.ws13_c00393{word-spacing:-0.192000pt;}
.wse_c00393{word-spacing:0.000000pt;}
.wsd_c00393{word-spacing:0.149120pt;}
.ws12_c00393{word-spacing:0.288000pt;}
.wsf_c00393{word-spacing:0.298240pt;}
.ws10_c00393{word-spacing:0.480000pt;}
.ws0_c00393{word-spacing:0.643712pt;}
.ws11_c00393{word-spacing:1.152000pt;}
.ws7_c00393{word-spacing:2.644928pt;}
.ws3_c00393{word-spacing:5.780544pt;}
.ws9_c00393{word-spacing:5.960064pt;}
.ws5_c00393{word-spacing:6.444224pt;}
.ws8_c00393{word-spacing:6.964480pt;}
.ws2_c00393{word-spacing:11.369600pt;}
._6_c00393{margin-left:-830.112000pt;}
._2_c00393{margin-left:-8.784512pt;}
._4_c00393{margin-left:-4.567680pt;}
._3_c00393{margin-left:-0.933504pt;}
._0_c00393{width:1.236480pt;}
._5_c00393{width:2.161920pt;}
._1_c00393{width:40.451840pt;}
.fs3_c00393{font-size:48.000000pt;}
.fs2_c00393{font-size:96.000000pt;}
.fs1_c00393{font-size:119.680000pt;}
.fs0_c00393{font-size:149.120000pt;}
.y0_c00393{bottom:0.000000pt;}
.yd_c00393{bottom:24.225600pt;}
.yc_c00393{bottom:169.702267pt;}
.yb_c00393{bottom:221.062267pt;}
.ya_c00393{bottom:256.414267pt;}
.y9_c00393{bottom:291.766267pt;}
.y8_c00393{bottom:343.126267pt;}
.y7_c00393{bottom:370.502267pt;}
.y6_c00393{bottom:397.862267pt;}
.y5_c00393{bottom:449.222267pt;}
.y4_c00393{bottom:484.574267pt;}
.y3_c00393{bottom:519.926267pt;}
.y2_c00393{bottom:593.535493pt;}
.y1_c00393{bottom:638.325733pt;}
.h6_c00393{height:34.968750pt;}
.h5_c00393{height:69.937500pt;}
.h3_c00393{height:73.968750pt;}
.h4_c00393{height:74.765625pt;}
.h2_c00393{height:108.597210pt;}
.h1_c00393{height:108.636250pt;}
.h0_c00393{height:720.000000pt;}
.w0_c00393{width:1280.000000pt;}
.x0_c00393{left:0.000000pt;}
.x1_c00393{left:23.055067pt;}
.x3_c00393{left:58.293600pt;}
.x2_c00393{left:59.733600pt;}
.x4_c00393{left:143.622000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_602ca6968414520ee419db35.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:0.938965;font-style:normal;font-weight:normal;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_f2310f2fd2f98503d74275d3.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:0.938965;font-style: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;}
.ls5_c00394{letter-spacing:-10.098000px;}
.ls8_c00394{letter-spacing:-0.324000px;}
.ls7_c00394{letter-spacing:-0.269280px;}
.ls6_c00394{letter-spacing:-0.134640px;}
.ls2_c00394{letter-spacing:0.000000px;}
.ls4_c00394{letter-spacing:0.167760px;}
.ls1_c00394{letter-spacing:0.216000px;}
.ls3_c00394{letter-spacing:0.269280px;}
.ls0_c00394{letter-spacing:124.200000px;}
.sc__c00394{text-shadow:none;}
.sc0_c00394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00394{-webkit-text-stroke:0px transparent;}
.sc0_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00394{word-spacing:-46.637280px;}
.ws2_c00394{word-spacing:-37.699200px;}
.wsb_c00394{word-spacing:-37.429920px;}
.wsd_c00394{word-spacing:-30.024000px;}
.wse_c00394{word-spacing:-29.700000px;}
.ws11_c00394{word-spacing:-0.432000px;}
.wsf_c00394{word-spacing:-0.216000px;}
.ws10_c00394{word-spacing:-0.167760px;}
.ws16_c00394{word-spacing:-0.108000px;}
.ws12_c00394{word-spacing:0.000000px;}
.ws15_c00394{word-spacing:0.324000px;}
.ws14_c00394{word-spacing:0.540000px;}
.wsc_c00394{word-spacing:0.680400px;}
.ws3_c00394{word-spacing:0.902088px;}
.ws13_c00394{word-spacing:1.296000px;}
.ws4_c00394{word-spacing:1.467576px;}
.wsa_c00394{word-spacing:2.558160px;}
.ws1_c00394{word-spacing:5.250960px;}
.ws6_c00394{word-spacing:7.378272px;}
.ws7_c00394{word-spacing:8.038008px;}
.ws8_c00394{word-spacing:8.347680px;}
.ws9_c00394{word-spacing:8.967024px;}
.ws5_c00394{word-spacing:27.937800px;}
._0_c00394{margin-left:-12.682800px;}
._6_c00394{margin-left:-10.582704px;}
._9_c00394{margin-left:-5.475600px;}
._1_c00394{margin-left:-2.585088px;}
._4_c00394{margin-left:-1.211760px;}
._7_c00394{width:1.198800px;}
._8_c00394{width:3.060288px;}
._5_c00394{width:10.596168px;}
._2_c00394{width:39.349368px;}
._3_c00394{width:45.373680px;}
.fc1_c00394{color:rgb(0,74,150);}
.fc0_c00394{color:rgb(0,0,0);}
.fs0_c00394{font-size:54.000000px;}
.fs3_c00394{font-size:108.000000px;}
.fs2_c00394{font-size:134.640000px;}
.fs1_c00394{font-size:167.760000px;}
.y0_c00394{bottom:0.000000px;}
.y1_c00394{bottom:27.253800px;}
.yd_c00394{bottom:140.575650px;}
.yc_c00394{bottom:172.975650px;}
.yb_c00394{bottom:237.775650px;}
.ya_c00394{bottom:270.175650px;}
.y9_c00394{bottom:302.575650px;}
.y8_c00394{bottom:367.375650px;}
.y7_c00394{bottom:399.775650px;}
.y6_c00394{bottom:432.175650px;}
.y5_c00394{bottom:496.975650px;}
.y4_c00394{bottom:561.775650px;}
.y3_c00394{bottom:659.264370px;}
.y2_c00394{bottom:712.716450px;}
.h1_c00394{height:39.339844px;}
.h4_c00394{height:78.679688px;}
.h3_c00394{height:98.087344px;}
.h2_c00394{height:122.215781px;}
.h0_c00394{height:810.000000px;}
.w0_c00394{width:1440.000000px;}
.x0_c00394{left:0.000000px;}
.x1_c00394{left:26.787450px;}
.x2_c00394{left:36.736950px;}
.x3_c00394{left:925.391400px;}
.x4_c00394{left:965.891400px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls5_c00394{letter-spacing:-8.976000pt;}
.ls8_c00394{letter-spacing:-0.288000pt;}
.ls7_c00394{letter-spacing:-0.239360pt;}
.ls6_c00394{letter-spacing:-0.119680pt;}
.ls2_c00394{letter-spacing:0.000000pt;}
.ls4_c00394{letter-spacing:0.149120pt;}
.ls1_c00394{letter-spacing:0.192000pt;}
.ls3_c00394{letter-spacing:0.239360pt;}
.ls0_c00394{letter-spacing:110.400000pt;}
.ws0_c00394{word-spacing:-41.455360pt;}
.ws2_c00394{word-spacing:-33.510400pt;}
.wsb_c00394{word-spacing:-33.271040pt;}
.wsd_c00394{word-spacing:-26.688000pt;}
.wse_c00394{word-spacing:-26.400000pt;}
.ws11_c00394{word-spacing:-0.384000pt;}
.wsf_c00394{word-spacing:-0.192000pt;}
.ws10_c00394{word-spacing:-0.149120pt;}
.ws16_c00394{word-spacing:-0.096000pt;}
.ws12_c00394{word-spacing:0.000000pt;}
.ws15_c00394{word-spacing:0.288000pt;}
.ws14_c00394{word-spacing:0.480000pt;}
.wsc_c00394{word-spacing:0.604800pt;}
.ws3_c00394{word-spacing:0.801856pt;}
.ws13_c00394{word-spacing:1.152000pt;}
.ws4_c00394{word-spacing:1.304512pt;}
.wsa_c00394{word-spacing:2.273920pt;}
.ws1_c00394{word-spacing:4.667520pt;}
.ws6_c00394{word-spacing:6.558464pt;}
.ws7_c00394{word-spacing:7.144896pt;}
.ws8_c00394{word-spacing:7.420160pt;}
.ws9_c00394{word-spacing:7.970688pt;}
.ws5_c00394{word-spacing:24.833600pt;}
._0_c00394{margin-left:-11.273600pt;}
._6_c00394{margin-left:-9.406848pt;}
._9_c00394{margin-left:-4.867200pt;}
._1_c00394{margin-left:-2.297856pt;}
._4_c00394{margin-left:-1.077120pt;}
._7_c00394{width:1.065600pt;}
._8_c00394{width:2.720256pt;}
._5_c00394{width:9.418816pt;}
._2_c00394{width:34.977216pt;}
._3_c00394{width:40.332160pt;}
.fs0_c00394{font-size:48.000000pt;}
.fs3_c00394{font-size:96.000000pt;}
.fs2_c00394{font-size:119.680000pt;}
.fs1_c00394{font-size:149.120000pt;}
.y0_c00394{bottom:0.000000pt;}
.y1_c00394{bottom:24.225600pt;}
.yd_c00394{bottom:124.956133pt;}
.yc_c00394{bottom:153.756133pt;}
.yb_c00394{bottom:211.356133pt;}
.ya_c00394{bottom:240.156133pt;}
.y9_c00394{bottom:268.956133pt;}
.y8_c00394{bottom:326.556133pt;}
.y7_c00394{bottom:355.356133pt;}
.y6_c00394{bottom:384.156133pt;}
.y5_c00394{bottom:441.756133pt;}
.y4_c00394{bottom:499.356133pt;}
.y3_c00394{bottom:586.012773pt;}
.y2_c00394{bottom:633.525733pt;}
.h1_c00394{height:34.968750pt;}
.h4_c00394{height:69.937500pt;}
.h3_c00394{height:87.188750pt;}
.h2_c00394{height:108.636250pt;}
.h0_c00394{height:720.000000pt;}
.w0_c00394{width:1280.000000pt;}
.x0_c00394{left:0.000000pt;}
.x1_c00394{left:23.811067pt;}
.x2_c00394{left:32.655067pt;}
.x3_c00394{left:822.570133pt;}
.x4_c00394{left:858.570133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_29f95d38fb0aa0da7d8a178b.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:0.938965;font-style: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;}
.ls2_c00395{letter-spacing:-0.269280px;}
.ls1_c00395{letter-spacing:0.000000px;}
.ls0_c00395{letter-spacing:0.216000px;}
.ls3_c00395{letter-spacing:0.269280px;}
.sc__c00395{text-shadow:none;}
.sc0_c00395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00395{-webkit-text-stroke:0px transparent;}
.sc0_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00395{word-spacing:-46.637280px;}
.ws7_c00395{word-spacing:-0.216000px;}
.ws6_c00395{word-spacing:0.673200px;}
.ws3_c00395{word-spacing:1.656072px;}
.ws1_c00395{word-spacing:3.096720px;}
.ws5_c00395{word-spacing:7.593696px;}
.ws2_c00395{word-spacing:8.509248px;}
.ws4_c00395{word-spacing:9.168984px;}
._1_c00395{margin-left:-9.634680px;}
._3_c00395{margin-left:-2.544696px;}
._2_c00395{width:41.738400px;}
._0_c00395{width:43.227360px;}
.fc1_c00395{color:rgb(0,74,150);}
.fc0_c00395{color:rgb(0,0,0);}
.fs0_c00395{font-size:54.000000px;}
.fs2_c00395{font-size:134.640000px;}
.fs1_c00395{font-size:167.760000px;}
.y0_c00395{bottom:0.000000px;}
.y1_c00395{bottom:27.253800px;}
.y2_c00395{bottom:712.716450px;}
.h1_c00395{height:39.339844px;}
.h2_c00395{height:122.215781px;}
.h0_c00395{height:810.000000px;}
.w0_c00395{width:1440.000000px;}
.x0_c00395{left:0.000000px;}
.x1_c00395{left:26.787450px;}
.x2_c00395{left:36.736950px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls2_c00395{letter-spacing:-0.239360pt;}
.ls1_c00395{letter-spacing:0.000000pt;}
.ls0_c00395{letter-spacing:0.192000pt;}
.ls3_c00395{letter-spacing:0.239360pt;}
.ws0_c00395{word-spacing:-41.455360pt;}
.ws7_c00395{word-spacing:-0.192000pt;}
.ws6_c00395{word-spacing:0.598400pt;}
.ws3_c00395{word-spacing:1.472064pt;}
.ws1_c00395{word-spacing:2.752640pt;}
.ws5_c00395{word-spacing:6.749952pt;}
.ws2_c00395{word-spacing:7.563776pt;}
.ws4_c00395{word-spacing:8.150208pt;}
._1_c00395{margin-left:-8.564160pt;}
._3_c00395{margin-left:-2.261952pt;}
._2_c00395{width:37.100800pt;}
._0_c00395{width:38.424320pt;}
.fs0_c00395{font-size:48.000000pt;}
.fs2_c00395{font-size:119.680000pt;}
.fs1_c00395{font-size:149.120000pt;}
.y0_c00395{bottom:0.000000pt;}
.y1_c00395{bottom:24.225600pt;}
.y2_c00395{bottom:633.525733pt;}
.h1_c00395{height:34.968750pt;}
.h2_c00395{height:108.636250pt;}
.h0_c00395{height:720.000000pt;}
.w0_c00395{width:1280.000000pt;}
.x0_c00395{left:0.000000pt;}
.x1_c00395{left:23.811067pt;}
.x2_c00395{left:32.655067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9bb8ee388121429b63bdfc30.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:0.938965;font-style:normal;font-weight:normal;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_93e049a53fda47c033cefd40.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00396;src:url('chunks/assets/font_8caeaba29040c0ef60bf7ea5.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:0.717285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00396;src:url('chunks/assets/font_890996da6ce8a207c976b2ad.woff2')format("woff");}.ff4_c00396{font-family:ff4_c00396;line-height:0.686035;font-style:normal;font-weight:normal;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_316c15be6150a17d0f488457.woff2')format("woff");}.ff5_c00396{font-family:ff5_c00396;line-height:0.938965;font-style: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);}
.v3_c00396{vertical-align:-381.340800px;}
.v0_c00396{vertical-align:0.000000px;}
.v1_c00396{vertical-align:4.830600px;}
.v2_c00396{vertical-align:398.212200px;}
.ls2_c00396{letter-spacing:-0.324000px;}
.ls4_c00396{letter-spacing:-0.216000px;}
.ls3_c00396{letter-spacing:0.000000px;}
.ls1_c00396{letter-spacing:0.216000px;}
.ls0_c00396{letter-spacing:113.262000px;}
.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:-29.700000px;}
.ws7_c00396{word-spacing:-0.432000px;}
.ws1_c00396{word-spacing:-0.216000px;}
.ws6_c00396{word-spacing:0.000000px;}
.ws5_c00396{word-spacing:0.216000px;}
.ws2_c00396{word-spacing:0.540000px;}
.ws3_c00396{word-spacing:1.296000px;}
.ws4_c00396{word-spacing:2.376000px;}
._6_c00396{margin-left:-8.348400px;}
._0_c00396{margin-left:-4.104000px;}
._4_c00396{margin-left:-2.916000px;}
._3_c00396{margin-left:-1.652400px;}
._1_c00396{width:1.080000px;}
._7_c00396{width:2.700000px;}
._5_c00396{width:456.673200px;}
._2_c00396{width:2296.319400px;}
.fc1_c00396{color:rgb(0,74,150);}
.fc0_c00396{color:rgb(0,0,0);}
.fs0_c00396{font-size:54.000000px;}
.fs1_c00396{font-size:108.000000px;}
.fs2_c00396{font-size:576.000000px;}
.y0_c00396{bottom:0.000000px;}
.y1_c00396{bottom:27.253800px;}
.ye_c00396{bottom:64.374300px;}
.yd_c00396{bottom:105.765300px;}
.y11_c00396{bottom:230.262300px;}
.y10_c00396{bottom:262.662300px;}
.yf_c00396{bottom:295.062300px;}
.yc_c00396{bottom:315.989850px;}
.y9_c00396{bottom:322.627800px;}
.yb_c00396{bottom:348.389850px;}
.ya_c00396{bottom:389.780850px;}
.y8_c00396{bottom:466.380900px;}
.y7_c00396{bottom:498.780900px;}
.y6_c00396{bottom:531.180900px;}
.y5_c00396{bottom:562.373250px;}
.y4_c00396{bottom:594.773250px;}
.y3_c00396{bottom:627.173250px;}
.y2_c00396{bottom:659.573250px;}
.h1_c00396{height:39.339844px;}
.h2_c00396{height:78.626953px;}
.h5_c00396{height:78.679688px;}
.h3_c00396{height:83.457553px;}
.h4_c00396{height:476.839153px;}
.h0_c00396{height:810.000000px;}
.w0_c00396{width:1440.000000px;}
.x0_c00396{left:0.000000px;}
.x1_c00396{left:26.787450px;}
.x5_c00396{left:163.267050px;}
.x6_c00396{left:292.327050px;}
.x2_c00396{left:381.356250px;}
.x4_c00396{left:484.119750px;}
.x7_c00396{left:950.560050px;}
.x3_c00396{left:1097.564100px;}
@media print{
.v3_c00396{vertical-align:-338.969600pt;}
.v0_c00396{vertical-align:0.000000pt;}
.v1_c00396{vertical-align:4.293867pt;}
.v2_c00396{vertical-align:353.966400pt;}
.ls2_c00396{letter-spacing:-0.288000pt;}
.ls4_c00396{letter-spacing:-0.192000pt;}
.ls3_c00396{letter-spacing:0.000000pt;}
.ls1_c00396{letter-spacing:0.192000pt;}
.ls0_c00396{letter-spacing:100.677333pt;}
.ws0_c00396{word-spacing:-26.400000pt;}
.ws7_c00396{word-spacing:-0.384000pt;}
.ws1_c00396{word-spacing:-0.192000pt;}
.ws6_c00396{word-spacing:0.000000pt;}
.ws5_c00396{word-spacing:0.192000pt;}
.ws2_c00396{word-spacing:0.480000pt;}
.ws3_c00396{word-spacing:1.152000pt;}
.ws4_c00396{word-spacing:2.112000pt;}
._6_c00396{margin-left:-7.420800pt;}
._0_c00396{margin-left:-3.648000pt;}
._4_c00396{margin-left:-2.592000pt;}
._3_c00396{margin-left:-1.468800pt;}
._1_c00396{width:0.960000pt;}
._7_c00396{width:2.400000pt;}
._5_c00396{width:405.931733pt;}
._2_c00396{width:2041.172800pt;}
.fs0_c00396{font-size:48.000000pt;}
.fs1_c00396{font-size:96.000000pt;}
.fs2_c00396{font-size:512.000000pt;}
.y0_c00396{bottom:0.000000pt;}
.y1_c00396{bottom:24.225600pt;}
.ye_c00396{bottom:57.221600pt;}
.yd_c00396{bottom:94.013600pt;}
.y11_c00396{bottom:204.677600pt;}
.y10_c00396{bottom:233.477600pt;}
.yf_c00396{bottom:262.277600pt;}
.yc_c00396{bottom:280.879867pt;}
.y9_c00396{bottom:286.780267pt;}
.yb_c00396{bottom:309.679867pt;}
.ya_c00396{bottom:346.471867pt;}
.y8_c00396{bottom:414.560800pt;}
.y7_c00396{bottom:443.360800pt;}
.y6_c00396{bottom:472.160800pt;}
.y5_c00396{bottom:499.887333pt;}
.y4_c00396{bottom:528.687333pt;}
.y3_c00396{bottom:557.487333pt;}
.y2_c00396{bottom:586.287333pt;}
.h1_c00396{height:34.968750pt;}
.h2_c00396{height:69.890625pt;}
.h5_c00396{height:69.937500pt;}
.h3_c00396{height:74.184492pt;}
.h4_c00396{height:423.857025pt;}
.h0_c00396{height:720.000000pt;}
.w0_c00396{width:1280.000000pt;}
.x0_c00396{left:0.000000pt;}
.x1_c00396{left:23.811067pt;}
.x5_c00396{left:145.126267pt;}
.x6_c00396{left:259.846267pt;}
.x2_c00396{left:338.983333pt;}
.x4_c00396{left:430.328667pt;}
.x7_c00396{left:844.942267pt;}
.x3_c00396{left:975.612533pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_00309e5ee8f075702477274b.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00398;src:url('chunks/assets/font_353382032b098ab676a90740.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00398{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00398{vertical-align:0.000000px;}
.ls2_c00398{letter-spacing:-0.311760px;}
.ls1_c00398{letter-spacing:2.490000px;}
.ls0_c00398{letter-spacing:2.494080px;}
.ls3_c00398{letter-spacing:2.805840px;}
.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:-70.146000px;}
.ws2_c00398{word-spacing:-2.805840px;}
.ws3_c00398{word-spacing:-2.494080px;}
.ws4_c00398{word-spacing:0.000000px;}
.ws1_c00398{word-spacing:1.247040px;}
._1_c00398{margin-left:-26.811360px;}
._2_c00398{margin-left:-6.359904px;}
._4_c00398{margin-left:-4.333464px;}
._5_c00398{margin-left:-2.400552px;}
._3_c00398{width:1.371744px;}
._0_c00398{width:3.367008px;}
.fc1_c00398{color:transparent;}
.fc0_c00398{color:rgb(255,255,255);}
.fs1_c00398{font-size:132.000000px;}
.fs0_c00398{font-size:311.760000px;}
.fs2_c00398{font-size:348.000000px;}
.y0_c00398{bottom:0.000000px;}
.y5_c00398{bottom:100.038000px;}
.y2_c00398{bottom:121.845150px;}
.y4_c00398{bottom:193.638150px;}
.y1_c00398{bottom:215.445150px;}
.y3_c00398{bottom:287.238150px;}
.y8_c00398{bottom:499.995000px;}
.y7_c00398{bottom:692.782500px;}
.y6_c00398{bottom:732.382500px;}
.h2_c00398{height:94.746094px;}
.h1_c00398{height:226.360898px;}
.h3_c00398{height:249.785156px;}
.h0_c00398{height:810.000000px;}
.w0_c00398{width:1440.000000px;}
.x0_c00398{left:0.000000px;}
.x6_c00398{left:32.418000px;}
.x5_c00398{left:41.760000px;}
.x4_c00398{left:45.720000px;}
.x3_c00398{left:114.480000px;}
.x7_c00398{left:177.711000px;}
.x1_c00398{left:755.491650px;}
.x2_c00398{left:782.851650px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls2_c00398{letter-spacing:-0.277120pt;}
.ls1_c00398{letter-spacing:2.213333pt;}
.ls0_c00398{letter-spacing:2.216960pt;}
.ls3_c00398{letter-spacing:2.494080pt;}
.ws0_c00398{word-spacing:-62.352000pt;}
.ws2_c00398{word-spacing:-2.494080pt;}
.ws3_c00398{word-spacing:-2.216960pt;}
.ws4_c00398{word-spacing:0.000000pt;}
.ws1_c00398{word-spacing:1.108480pt;}
._1_c00398{margin-left:-23.832320pt;}
._2_c00398{margin-left:-5.653248pt;}
._4_c00398{margin-left:-3.851968pt;}
._5_c00398{margin-left:-2.133824pt;}
._3_c00398{width:1.219328pt;}
._0_c00398{width:2.992896pt;}
.fs1_c00398{font-size:117.333333pt;}
.fs0_c00398{font-size:277.120000pt;}
.fs2_c00398{font-size:309.333333pt;}
.y0_c00398{bottom:0.000000pt;}
.y5_c00398{bottom:88.922667pt;}
.y2_c00398{bottom:108.306800pt;}
.y4_c00398{bottom:172.122800pt;}
.y1_c00398{bottom:191.506800pt;}
.y3_c00398{bottom:255.322800pt;}
.y8_c00398{bottom:444.440000pt;}
.y7_c00398{bottom:615.806667pt;}
.y6_c00398{bottom:651.006667pt;}
.h2_c00398{height:84.218750pt;}
.h1_c00398{height:201.209687pt;}
.h3_c00398{height:222.031250pt;}
.h0_c00398{height:720.000000pt;}
.w0_c00398{width:1280.000000pt;}
.x0_c00398{left:0.000000pt;}
.x6_c00398{left:28.816000pt;}
.x5_c00398{left:37.120000pt;}
.x4_c00398{left:40.640000pt;}
.x3_c00398{left:101.760000pt;}
.x7_c00398{left:157.965333pt;}
.x1_c00398{left:671.548133pt;}
.x2_c00398{left:695.868133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_594b95e989d389e5dc482a4f.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00399;src:url('chunks/assets/font_4f467486083629f8434dd809.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls1_c00399{letter-spacing:-1.728000px;}
.ls2_c00399{letter-spacing:0.144000px;}
.ls3_c00399{letter-spacing:0.239760px;}
.ls0_c00399{letter-spacing:0.288000px;}
.sc__c00399{text-shadow:none;}
.sc0_c00399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00399{-webkit-text-stroke:0px transparent;}
.sc0_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00399{word-spacing:-32.832000px;}
.ws3_c00399{word-spacing:-0.479520px;}
.ws2_c00399{word-spacing:-0.144000px;}
.ws1_c00399{word-spacing:1.728000px;}
._2_c00399{margin-left:-3.980016px;}
._1_c00399{margin-left:-1.872000px;}
._0_c00399{width:1.872000px;}
.fc0_c00399{color:rgb(0,0,0);}
.fs0_c00399{font-size:144.000000px;}
.fs1_c00399{font-size:239.760000px;}
.y0_c00399{bottom:0.000000px;}
.y3_c00399{bottom:244.949250px;}
.y2_c00399{bottom:325.269750px;}
.y1_c00399{bottom:368.469750px;}
.h1_c00399{height:104.554688px;}
.h2_c00399{height:174.083555px;}
.h0_c00399{height:810.000000px;}
.w0_c00399{width:1440.000000px;}
.x0_c00399{left:0.000000px;}
.x2_c00399{left:119.881350px;}
.x1_c00399{left:149.401350px;}
.x5_c00399{left:562.930200px;}
.x3_c00399{left:1203.265350px;}
.x4_c00399{left:1208.485350px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls1_c00399{letter-spacing:-1.536000pt;}
.ls2_c00399{letter-spacing:0.128000pt;}
.ls3_c00399{letter-spacing:0.213120pt;}
.ls0_c00399{letter-spacing:0.256000pt;}
.ws0_c00399{word-spacing:-29.184000pt;}
.ws3_c00399{word-spacing:-0.426240pt;}
.ws2_c00399{word-spacing:-0.128000pt;}
.ws1_c00399{word-spacing:1.536000pt;}
._2_c00399{margin-left:-3.537792pt;}
._1_c00399{margin-left:-1.664000pt;}
._0_c00399{width:1.664000pt;}
.fs0_c00399{font-size:128.000000pt;}
.fs1_c00399{font-size:213.120000pt;}
.y0_c00399{bottom:0.000000pt;}
.y3_c00399{bottom:217.732667pt;}
.y2_c00399{bottom:289.128667pt;}
.y1_c00399{bottom:327.528667pt;}
.h1_c00399{height:92.937500pt;}
.h2_c00399{height:154.740938pt;}
.h0_c00399{height:720.000000pt;}
.w0_c00399{width:1280.000000pt;}
.x0_c00399{left:0.000000pt;}
.x2_c00399{left:106.561200pt;}
.x1_c00399{left:132.801200pt;}
.x5_c00399{left:500.382400pt;}
.x3_c00399{left:1069.569200pt;}
.x4_c00399{left:1074.209200pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8832999e7d99e68e8f8e2c6d.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00401{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.ls0_c00401{letter-spacing:-2.499120px;}
.ls1_c00401{letter-spacing:-0.192240px;}
.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;}
}
.ws1_c00401{word-spacing:-43.254000px;}
.ws0_c00401{word-spacing:-40.947120px;}
.ws2_c00401{word-spacing:0.192240px;}
._1_c00401{margin-left:-1.211112px;}
._0_c00401{width:2.326104px;}
.fc0_c00401{color:rgb(255,255,255);}
.fs0_c00401{font-size:192.240000px;}
.y0_c00401{bottom:0.000000px;}
.y3_c00401{bottom:271.327170px;}
.y2_c00401{bottom:328.903050px;}
.y4_c00401{bottom:526.017750px;}
.y1_c00401{bottom:564.340350px;}
.h1_c00401{height:137.984766px;}
.h0_c00401{height:810.000000px;}
.w0_c00401{width:1440.000000px;}
.x0_c00401{left:0.000000px;}
.x3_c00401{left:79.225410px;}
.x2_c00401{left:100.083450px;}
.x4_c00401{left:748.637850px;}
.x1_c00401{left:1222.968600px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls0_c00401{letter-spacing:-2.221440pt;}
.ls1_c00401{letter-spacing:-0.170880pt;}
.ws1_c00401{word-spacing:-38.448000pt;}
.ws0_c00401{word-spacing:-36.397440pt;}
.ws2_c00401{word-spacing:0.170880pt;}
._1_c00401{margin-left:-1.076544pt;}
._0_c00401{width:2.067648pt;}
.fs0_c00401{font-size:170.880000pt;}
.y0_c00401{bottom:0.000000pt;}
.y3_c00401{bottom:241.179707pt;}
.y2_c00401{bottom:292.358267pt;}
.y4_c00401{bottom:467.571333pt;}
.y1_c00401{bottom:501.635867pt;}
.h1_c00401{height:122.653125pt;}
.h0_c00401{height:720.000000pt;}
.w0_c00401{width:1280.000000pt;}
.x0_c00401{left:0.000000pt;}
.x3_c00401{left:70.422587pt;}
.x2_c00401{left:88.963067pt;}
.x4_c00401{left:665.455867pt;}
.x1_c00401{left:1087.083200pt;}
}





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





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ca6b2fa0b98992486475bc78.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls1_c00404{letter-spacing:0.000000px;}
.ls0_c00404{letter-spacing:0.270000px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00404{word-spacing:-0.810000px;}
.ws1_c00404{word-spacing:0.270000px;}
._1_c00404{margin-left:-3.780000px;}
._0_c00404{margin-left:-1.539000px;}
.fc0_c00404{color:rgb(0,0,0);}
.fs0_c00404{font-size:270.000000px;}
.y0_c00404{bottom:0.000000px;}
.y2_c00404{bottom:243.275400px;}
.y1_c00404{bottom:324.275400px;}
.h1_c00404{height:196.040039px;}
.h0_c00404{height:810.000000px;}
.w0_c00404{width:1440.000000px;}
.x0_c00404{left:0.000000px;}
.x1_c00404{left:241.261800px;}
.x2_c00404{left:397.861800px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls1_c00404{letter-spacing:0.000000pt;}
.ls0_c00404{letter-spacing:0.240000pt;}
.ws0_c00404{word-spacing:-0.720000pt;}
.ws1_c00404{word-spacing:0.240000pt;}
._1_c00404{margin-left:-3.360000pt;}
._0_c00404{margin-left:-1.368000pt;}
.fs0_c00404{font-size:240.000000pt;}
.y0_c00404{bottom:0.000000pt;}
.y2_c00404{bottom:216.244800pt;}
.y1_c00404{bottom:288.244800pt;}
.h1_c00404{height:174.257812pt;}
.h0_c00404{height:720.000000pt;}
.w0_c00404{width:1280.000000pt;}
.x0_c00404{left:0.000000pt;}
.x1_c00404{left:214.454933pt;}
.x2_c00404{left:353.654933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_606b215784b97e1b77943f2f.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00405{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.ls0_c00405{letter-spacing:0.000000px;}
.sc__c00405{text-shadow:none;}
.sc0_c00405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00405{-webkit-text-stroke:0px transparent;}
.sc0_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00405{word-spacing:0.900000px;}
.fc0_c00405{color:rgb(255,255,255);}
.fs0_c00405{font-size:900.000000px;}
.y0_c00405{bottom:0.000000px;}
.y1_c00405{bottom:375.726450px;}
.h1_c00405{height:653.466797px;}
.h0_c00405{height:810.000000px;}
.w0_c00405{width:1440.000000px;}
.x0_c00405{left:0.000000px;}
.x1_c00405{left:264.291150px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls0_c00405{letter-spacing:0.000000pt;}
.ws0_c00405{word-spacing:0.800000pt;}
.fs0_c00405{font-size:800.000000pt;}
.y0_c00405{bottom:0.000000pt;}
.y1_c00405{bottom:333.979067pt;}
.h1_c00405{height:580.859375pt;}
.h0_c00405{height:720.000000pt;}
.w0_c00405{width:1280.000000pt;}
.x0_c00405{left:0.000000pt;}
.x1_c00405{left:234.925467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d06e5cdda7da865a0b33755.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00406{letter-spacing:0.329760px;}
.sc__c00406{text-shadow:none;}
.sc0_c00406{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00406{-webkit-text-stroke:0px transparent;}
.sc0_c00406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00406{word-spacing:0.000000px;}
._0_c00406{margin-left:-3.990096px;}
._1_c00406{margin-left:-1.022256px;}
.fc0_c00406{color:rgb(255,255,255);}
.fs0_c00406{font-size:329.760000px;}
.y0_c00406{bottom:0.000000px;}
.y1_c00406{bottom:727.380000px;}
.h1_c00406{height:239.430234px;}
.h0_c00406{height:810.000000px;}
.w0_c00406{width:1440.000000px;}
.x0_c00406{left:0.000000px;}
.x1_c00406{left:41.261400px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls0_c00406{letter-spacing:0.293120pt;}
.ws0_c00406{word-spacing:0.000000pt;}
._0_c00406{margin-left:-3.546752pt;}
._1_c00406{margin-left:-0.908672pt;}
.fs0_c00406{font-size:293.120000pt;}
.y0_c00406{bottom:0.000000pt;}
.y1_c00406{bottom:646.560000pt;}
.h1_c00406{height:212.826875pt;}
.h0_c00406{height:720.000000pt;}
.w0_c00406{width:1280.000000pt;}
.x0_c00406{left:0.000000pt;}
.x1_c00406{left:36.676800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fccb0eab17230473adcdb3af.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00407{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.ls1_c00407{letter-spacing:0.000000px;}
.ls0_c00407{letter-spacing:0.329760px;}
.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:-108.534240px;}
.ws2_c00407{word-spacing:-1.920960px;}
.ws1_c00407{word-spacing:0.000000px;}
._3_c00407{margin-left:-6.627312px;}
._2_c00407{margin-left:-5.138568px;}
._0_c00407{margin-left:-3.990096px;}
._1_c00407{margin-left:-1.022256px;}
._4_c00407{width:1.300752px;}
.fc0_c00407{color:rgb(255,255,255);}
.fs0_c00407{font-size:329.760000px;}
.fs1_c00407{font-size:480.240000px;}
.y0_c00407{bottom:0.000000px;}
.y4_c00407{bottom:187.613550px;}
.y3_c00407{bottom:331.613550px;}
.y2_c00407{bottom:475.613550px;}
.y1_c00407{bottom:727.380000px;}
.h1_c00407{height:239.430234px;}
.h2_c00407{height:348.689883px;}
.h0_c00407{height:810.000000px;}
.w0_c00407{width:1440.000000px;}
.x0_c00407{left:0.000000px;}
.x3_c00407{left:37.229100px;}
.x1_c00407{left:41.261400px;}
.x2_c00407{left:132.809100px;}
.x4_c00407{left:194.189100px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls1_c00407{letter-spacing:0.000000pt;}
.ls0_c00407{letter-spacing:0.293120pt;}
.ws0_c00407{word-spacing:-96.474880pt;}
.ws2_c00407{word-spacing:-1.707520pt;}
.ws1_c00407{word-spacing:0.000000pt;}
._3_c00407{margin-left:-5.890944pt;}
._2_c00407{margin-left:-4.567616pt;}
._0_c00407{margin-left:-3.546752pt;}
._1_c00407{margin-left:-0.908672pt;}
._4_c00407{width:1.156224pt;}
.fs0_c00407{font-size:293.120000pt;}
.fs1_c00407{font-size:426.880000pt;}
.y0_c00407{bottom:0.000000pt;}
.y4_c00407{bottom:166.767600pt;}
.y3_c00407{bottom:294.767600pt;}
.y2_c00407{bottom:422.767600pt;}
.y1_c00407{bottom:646.560000pt;}
.h1_c00407{height:212.826875pt;}
.h2_c00407{height:309.946562pt;}
.h0_c00407{height:720.000000pt;}
.w0_c00407{width:1280.000000pt;}
.x0_c00407{left:0.000000pt;}
.x3_c00407{left:33.092533pt;}
.x1_c00407{left:36.676800pt;}
.x2_c00407{left:118.052533pt;}
.x4_c00407{left:172.612533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9712c748e0f3245e0ec85927.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls1_c00408{letter-spacing:0.000000px;}
.ls0_c00408{letter-spacing:0.329760px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00408{word-spacing:-108.534240px;}
.ws2_c00408{word-spacing:-1.920960px;}
.ws1_c00408{word-spacing:0.000000px;}
._3_c00408{margin-left:-6.627312px;}
._2_c00408{margin-left:-5.138568px;}
._0_c00408{margin-left:-3.990096px;}
._1_c00408{margin-left:-1.022256px;}
._4_c00408{width:1.300752px;}
.fc0_c00408{color:rgb(255,255,255);}
.fs0_c00408{font-size:329.760000px;}
.fs1_c00408{font-size:480.240000px;}
.y0_c00408{bottom:0.000000px;}
.y4_c00408{bottom:187.613550px;}
.y6_c00408{bottom:258.910350px;}
.y3_c00408{bottom:331.613550px;}
.y5_c00408{bottom:402.910350px;}
.y2_c00408{bottom:475.613550px;}
.y1_c00408{bottom:727.380000px;}
.h1_c00408{height:239.430234px;}
.h2_c00408{height:348.689883px;}
.h0_c00408{height:810.000000px;}
.w0_c00408{width:1440.000000px;}
.x0_c00408{left:0.000000px;}
.x3_c00408{left:37.229100px;}
.x1_c00408{left:41.261400px;}
.x2_c00408{left:132.809100px;}
.x4_c00408{left:194.189100px;}
.x5_c00408{left:873.127650px;}
.x6_c00408{left:894.907500px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls1_c00408{letter-spacing:0.000000pt;}
.ls0_c00408{letter-spacing:0.293120pt;}
.ws0_c00408{word-spacing:-96.474880pt;}
.ws2_c00408{word-spacing:-1.707520pt;}
.ws1_c00408{word-spacing:0.000000pt;}
._3_c00408{margin-left:-5.890944pt;}
._2_c00408{margin-left:-4.567616pt;}
._0_c00408{margin-left:-3.546752pt;}
._1_c00408{margin-left:-0.908672pt;}
._4_c00408{width:1.156224pt;}
.fs0_c00408{font-size:293.120000pt;}
.fs1_c00408{font-size:426.880000pt;}
.y0_c00408{bottom:0.000000pt;}
.y4_c00408{bottom:166.767600pt;}
.y6_c00408{bottom:230.142533pt;}
.y3_c00408{bottom:294.767600pt;}
.y5_c00408{bottom:358.142533pt;}
.y2_c00408{bottom:422.767600pt;}
.y1_c00408{bottom:646.560000pt;}
.h1_c00408{height:212.826875pt;}
.h2_c00408{height:309.946562pt;}
.h0_c00408{height:720.000000pt;}
.w0_c00408{width:1280.000000pt;}
.x0_c00408{left:0.000000pt;}
.x3_c00408{left:33.092533pt;}
.x1_c00408{left:36.676800pt;}
.x2_c00408{left:118.052533pt;}
.x4_c00408{left:172.612533pt;}
.x5_c00408{left:776.113467pt;}
.x6_c00408{left:795.473333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4de2e58b8e4037190496fae2.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00409{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00409{vertical-align:0.000000px;}
.ls0_c00409{letter-spacing:0.000000px;}
.sc__c00409{text-shadow:none;}
.sc0_c00409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00409{-webkit-text-stroke:0px transparent;}
.sc0_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00409{word-spacing:-203.400000px;}
._0_c00409{margin-left:-8.280000px;}
.fc0_c00409{color:rgb(255,255,255);}
.fs0_c00409{font-size:900.000000px;}
.y0_c00409{bottom:0.000000px;}
.y1_c00409{bottom:375.726450px;}
.h1_c00409{height:653.466797px;}
.h0_c00409{height:810.000000px;}
.w0_c00409{width:1440.000000px;}
.x0_c00409{left:0.000000px;}
.x1_c00409{left:204.748500px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls0_c00409{letter-spacing:0.000000pt;}
.ws0_c00409{word-spacing:-180.800000pt;}
._0_c00409{margin-left:-7.360000pt;}
.fs0_c00409{font-size:800.000000pt;}
.y0_c00409{bottom:0.000000pt;}
.y1_c00409{bottom:333.979067pt;}
.h1_c00409{height:580.859375pt;}
.h0_c00409{height:720.000000pt;}
.w0_c00409{width:1280.000000pt;}
.x0_c00409{left:0.000000pt;}
.x1_c00409{left:181.998667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a577b5b23e799bec5416b73e.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00410;src:url('chunks/assets/font_88a22b2f21f64ce66168227b.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00410{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00410{vertical-align:0.000000px;}
.ls2_c00410{letter-spacing:-3.600000px;}
.ls1_c00410{letter-spacing:-1.080000px;}
.ls0_c00410{letter-spacing:0.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;}
}
.ws1_c00410{word-spacing:-77.760000px;}
.ws2_c00410{word-spacing:-1.170720px;}
.ws4_c00410{word-spacing:0.000000px;}
.ws3_c00410{word-spacing:1.440000px;}
.ws0_c00410{word-spacing:1462.284000px;}
._1_c00410{margin-left:-21.541248px;}
._0_c00410{margin-left:-14.829120px;}
._4_c00410{margin-left:-3.240000px;}
._3_c00410{margin-left:-1.080000px;}
._2_c00410{width:1.521936px;}
._5_c00410{width:3.240000px;}
._6_c00410{width:4.320000px;}
.fc2_c00410{color:rgb(32,56,100);}
.fc1_c00410{color:rgb(0,0,0);}
.fc0_c00410{color:rgb(255,255,255);}
.fs1_c00410{font-size:360.000000px;}
.fs0_c00410{font-size:390.240000px;}
.y0_c00410{bottom:0.000000px;}
.y4_c00410{bottom:309.674250px;}
.y3_c00410{bottom:417.674250px;}
.y2_c00410{bottom:525.674250px;}
.y1_c00410{bottom:713.340000px;}
.h2_c00410{height:261.386719px;}
.h1_c00410{height:283.343203px;}
.h0_c00410{height:810.000000px;}
.w0_c00410{width:1440.000000px;}
.x0_c00410{left:0.000000px;}
.x1_c00410{left:41.261400px;}
.x2_c00410{left:93.687000px;}
.x3_c00410{left:992.787000px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls2_c00410{letter-spacing:-3.200000pt;}
.ls1_c00410{letter-spacing:-0.960000pt;}
.ls0_c00410{letter-spacing:0.000000pt;}
.ws1_c00410{word-spacing:-69.120000pt;}
.ws2_c00410{word-spacing:-1.040640pt;}
.ws4_c00410{word-spacing:0.000000pt;}
.ws3_c00410{word-spacing:1.280000pt;}
.ws0_c00410{word-spacing:1299.808000pt;}
._1_c00410{margin-left:-19.147776pt;}
._0_c00410{margin-left:-13.181440pt;}
._4_c00410{margin-left:-2.880000pt;}
._3_c00410{margin-left:-0.960000pt;}
._2_c00410{width:1.352832pt;}
._5_c00410{width:2.880000pt;}
._6_c00410{width:3.840000pt;}
.fs1_c00410{font-size:320.000000pt;}
.fs0_c00410{font-size:346.880000pt;}
.y0_c00410{bottom:0.000000pt;}
.y4_c00410{bottom:275.266000pt;}
.y3_c00410{bottom:371.266000pt;}
.y2_c00410{bottom:467.266000pt;}
.y1_c00410{bottom:634.080000pt;}
.h2_c00410{height:232.343750pt;}
.h1_c00410{height:251.860625pt;}
.h0_c00410{height:720.000000pt;}
.w0_c00410{width:1280.000000pt;}
.x0_c00410{left:0.000000pt;}
.x1_c00410{left:36.676800pt;}
.x2_c00410{left:83.277333pt;}
.x3_c00410{left:882.477333pt;}
}





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





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





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_012f2eefe4aa54cba1a87a77.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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:0.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:-203.400000px;}
.fc0_c00414{color:rgb(255,255,255);}
.fs0_c00414{font-size:900.000000px;}
.y0_c00414{bottom:0.000000px;}
.y1_c00414{bottom:373.452750px;}
.h1_c00414{height:653.466797px;}
.h0_c00414{height:810.000000px;}
.w0_c00414{width:1440.000000px;}
.x0_c00414{left:0.000000px;}
.x1_c00414{left:190.114650px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls0_c00414{letter-spacing:0.000000pt;}
.ws0_c00414{word-spacing:-180.800000pt;}
.fs0_c00414{font-size:800.000000pt;}
.y0_c00414{bottom:0.000000pt;}
.y1_c00414{bottom:331.958000pt;}
.h1_c00414{height:580.859375pt;}
.h0_c00414{height:720.000000pt;}
.w0_c00414{width:1280.000000pt;}
.x0_c00414{left:0.000000pt;}
.x1_c00414{left:168.990800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cb51fd440f892f178ac4fe32.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00415;src:url('chunks/assets/font_0c974aad00e28b0c35754804.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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:-1.080000px;}
.ls0_c00415{letter-spacing:0.000000px;}
.ls2_c00415{letter-spacing:0.324000px;}
.sc__c00415{text-shadow:none;}
.sc0_c00415{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00415{-webkit-text-stroke:0px transparent;}
.sc0_c00415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00415{word-spacing:-128.874240px;}
.ws5_c00415{word-spacing:-1.620000px;}
.ws2_c00415{word-spacing:-1.170720px;}
.ws4_c00415{word-spacing:0.000000px;}
.ws3_c00415{word-spacing:1.440000px;}
.ws0_c00415{word-spacing:1462.284000px;}
._1_c00415{margin-left:-21.541248px;}
._0_c00415{margin-left:-14.829120px;}
._4_c00415{margin-left:-3.240000px;}
._3_c00415{margin-left:-1.080000px;}
._2_c00415{width:1.521936px;}
._5_c00415{width:1195.992000px;}
.fc3_c00415{color:rgb(0,32,96);}
.fc2_c00415{color:rgb(32,56,100);}
.fc1_c00415{color:rgb(0,0,0);}
.fc0_c00415{color:rgb(255,255,255);}
.fs2_c00415{font-size:324.000000px;}
.fs1_c00415{font-size:360.000000px;}
.fs0_c00415{font-size:390.240000px;}
.fs3_c00415{font-size:570.240000px;}
.y0_c00415{bottom:0.000000px;}
.y4_c00415{bottom:197.534250px;}
.y3_c00415{bottom:417.674250px;}
.y2_c00415{bottom:525.674250px;}
.y1_c00415{bottom:713.340000px;}
.h2_c00415{height:261.386719px;}
.h1_c00415{height:283.343203px;}
.h3_c00415{height:414.036563px;}
.h0_c00415{height:810.000000px;}
.w0_c00415{width:1440.000000px;}
.x0_c00415{left:0.000000px;}
.x1_c00415{left:41.261400px;}
.x2_c00415{left:93.687000px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls1_c00415{letter-spacing:-0.960000pt;}
.ls0_c00415{letter-spacing:0.000000pt;}
.ls2_c00415{letter-spacing:0.288000pt;}
.ws1_c00415{word-spacing:-114.554880pt;}
.ws5_c00415{word-spacing:-1.440000pt;}
.ws2_c00415{word-spacing:-1.040640pt;}
.ws4_c00415{word-spacing:0.000000pt;}
.ws3_c00415{word-spacing:1.280000pt;}
.ws0_c00415{word-spacing:1299.808000pt;}
._1_c00415{margin-left:-19.147776pt;}
._0_c00415{margin-left:-13.181440pt;}
._4_c00415{margin-left:-2.880000pt;}
._3_c00415{margin-left:-0.960000pt;}
._2_c00415{width:1.352832pt;}
._5_c00415{width:1063.104000pt;}
.fs2_c00415{font-size:288.000000pt;}
.fs1_c00415{font-size:320.000000pt;}
.fs0_c00415{font-size:346.880000pt;}
.fs3_c00415{font-size:506.880000pt;}
.y0_c00415{bottom:0.000000pt;}
.y4_c00415{bottom:175.586000pt;}
.y3_c00415{bottom:371.266000pt;}
.y2_c00415{bottom:467.266000pt;}
.y1_c00415{bottom:634.080000pt;}
.h2_c00415{height:232.343750pt;}
.h1_c00415{height:251.860625pt;}
.h3_c00415{height:368.032500pt;}
.h0_c00415{height:720.000000pt;}
.w0_c00415{width:1280.000000pt;}
.x0_c00415{left:0.000000pt;}
.x1_c00415{left:36.676800pt;}
.x2_c00415{left:83.277333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0505fc8b31e86e0f3f578452.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00416{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.ls1_c00416{letter-spacing:-0.360000px;}
.ls0_c00416{letter-spacing:-0.288000px;}
.ls2_c00416{letter-spacing:-0.180000px;}
.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:-64.800000px;}
.ws2_c00416{word-spacing:-40.500000px;}
.ws1_c00416{word-spacing:-40.320000px;}
.ws5_c00416{word-spacing:0.180000px;}
.ws4_c00416{word-spacing:0.360000px;}
.ws3_c00416{word-spacing:1.440000px;}
._1_c00416{margin-left:-24.912000px;}
._3_c00416{margin-left:-2.520000px;}
._2_c00416{margin-left:-1.188000px;}
._0_c00416{width:1.008000px;}
.fc1_c00416{color:rgb(0,0,0);}
.fc0_c00416{color:rgb(255,255,255);}
.fs1_c00416{font-size:180.000000px;}
.fs0_c00416{font-size:288.000000px;}
.y0_c00416{bottom:0.000000px;}
.y4_c00416{bottom:391.065750px;}
.y3_c00416{bottom:445.065750px;}
.y2_c00416{bottom:617.243250px;}
.y1_c00416{bottom:703.643250px;}
.h2_c00416{height:130.693359px;}
.h1_c00416{height:209.109375px;}
.h0_c00416{height:810.000000px;}
.w0_c00416{width:1440.000000px;}
.x0_c00416{left:0.000000px;}
.x4_c00416{left:345.780900px;}
.x3_c00416{left:352.080900px;}
.x1_c00416{left:905.331600px;}
.x6_c00416{left:915.120900px;}
.x5_c00416{left:916.560900px;}
.x2_c00416{left:986.151600px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls1_c00416{letter-spacing:-0.320000pt;}
.ls0_c00416{letter-spacing:-0.256000pt;}
.ls2_c00416{letter-spacing:-0.160000pt;}
.ws0_c00416{word-spacing:-57.600000pt;}
.ws2_c00416{word-spacing:-36.000000pt;}
.ws1_c00416{word-spacing:-35.840000pt;}
.ws5_c00416{word-spacing:0.160000pt;}
.ws4_c00416{word-spacing:0.320000pt;}
.ws3_c00416{word-spacing:1.280000pt;}
._1_c00416{margin-left:-22.144000pt;}
._3_c00416{margin-left:-2.240000pt;}
._2_c00416{margin-left:-1.056000pt;}
._0_c00416{width:0.896000pt;}
.fs1_c00416{font-size:160.000000pt;}
.fs0_c00416{font-size:256.000000pt;}
.y0_c00416{bottom:0.000000pt;}
.y4_c00416{bottom:347.614000pt;}
.y3_c00416{bottom:395.614000pt;}
.y2_c00416{bottom:548.660667pt;}
.y1_c00416{bottom:625.460667pt;}
.h2_c00416{height:116.171875pt;}
.h1_c00416{height:185.875000pt;}
.h0_c00416{height:720.000000pt;}
.w0_c00416{width:1280.000000pt;}
.x0_c00416{left:0.000000pt;}
.x4_c00416{left:307.360800pt;}
.x3_c00416{left:312.960800pt;}
.x1_c00416{left:804.739200pt;}
.x6_c00416{left:813.440800pt;}
.x5_c00416{left:814.720800pt;}
.x2_c00416{left:876.579200pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9515ca040438f9775bbf16c7.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00418;src:url('chunks/assets/font_418f5fccea3e3c2fc1b9856c.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00418;src:url('chunks/assets/font_dc9b10e0197690f9f1a43575.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls7_c00418{letter-spacing:-2.073600px;}
.ls4_c00418{letter-spacing:-0.276480px;}
.ls2_c00418{letter-spacing:-0.270000px;}
.ls3_c00418{letter-spacing:-0.180000px;}
.ls6_c00418{letter-spacing:-0.138240px;}
.ls5_c00418{letter-spacing:0.000000px;}
.ls1_c00418{letter-spacing:0.138240px;}
.ls0_c00418{letter-spacing:0.276480px;}
.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;}
}
.ws7_c00418{word-spacing:-0.829440px;}
.wsb_c00418{word-spacing:-0.414720px;}
.ws6_c00418{word-spacing:-0.276480px;}
.ws2_c00418{word-spacing:-0.180000px;}
.ws3_c00418{word-spacing:0.000000px;}
.ws5_c00418{word-spacing:0.276480px;}
.wsa_c00418{word-spacing:0.414720px;}
.ws1_c00418{word-spacing:0.540000px;}
.ws9_c00418{word-spacing:0.552960px;}
.ws4_c00418{word-spacing:0.691200px;}
.ws8_c00418{word-spacing:0.967680px;}
.ws0_c00418{word-spacing:4.382208px;}
._4_c00418{margin-left:-15.156000px;}
._3_c00418{margin-left:-10.980000px;}
._8_c00418{margin-left:-5.052528px;}
._0_c00418{margin-left:-3.510000px;}
._7_c00418{margin-left:-2.336256px;}
._5_c00418{margin-left:-1.257984px;}
._1_c00418{width:1.638000px;}
._9_c00418{width:3.068928px;}
._2_c00418{width:7.920000px;}
._6_c00418{width:30.426624px;}
.fc0_c00418{color:rgb(0,0,0);}
.fs2_c00418{font-size:138.240000px;}
.fs1_c00418{font-size:180.000000px;}
.fs0_c00418{font-size:270.000000px;}
.y0_c00418{bottom:0.000000px;}
.yb_c00418{bottom:77.606130px;}
.ya_c00418{bottom:119.009010px;}
.y9_c00418{bottom:160.411890px;}
.y8_c00418{bottom:201.814770px;}
.y7_c00418{bottom:243.217650px;}
.y6_c00418{bottom:284.620530px;}
.y5_c00418{bottom:326.023410px;}
.y4_c00418{bottom:367.426290px;}
.y3_c00418{bottom:450.232050px;}
.y2_c00418{bottom:635.024700px;}
.y1_c00418{bottom:694.964700px;}
.h4_c00418{height:99.225000px;}
.h3_c00418{height:100.372500px;}
.h2_c00418{height:129.199219px;}
.h1_c00418{height:196.040039px;}
.h0_c00418{height:810.000000px;}
.w0_c00418{width:1440.000000px;}
.x0_c00418{left:0.000000px;}
.x4_c00418{left:73.454010px;}
.x3_c00418{left:81.368250px;}
.x2_c00418{left:105.888600px;}
.x1_c00418{left:246.108600px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls7_c00418{letter-spacing:-1.843200pt;}
.ls4_c00418{letter-spacing:-0.245760pt;}
.ls2_c00418{letter-spacing:-0.240000pt;}
.ls3_c00418{letter-spacing:-0.160000pt;}
.ls6_c00418{letter-spacing:-0.122880pt;}
.ls5_c00418{letter-spacing:0.000000pt;}
.ls1_c00418{letter-spacing:0.122880pt;}
.ls0_c00418{letter-spacing:0.245760pt;}
.ws7_c00418{word-spacing:-0.737280pt;}
.wsb_c00418{word-spacing:-0.368640pt;}
.ws6_c00418{word-spacing:-0.245760pt;}
.ws2_c00418{word-spacing:-0.160000pt;}
.ws3_c00418{word-spacing:0.000000pt;}
.ws5_c00418{word-spacing:0.245760pt;}
.wsa_c00418{word-spacing:0.368640pt;}
.ws1_c00418{word-spacing:0.480000pt;}
.ws9_c00418{word-spacing:0.491520pt;}
.ws4_c00418{word-spacing:0.614400pt;}
.ws8_c00418{word-spacing:0.860160pt;}
.ws0_c00418{word-spacing:3.895296pt;}
._4_c00418{margin-left:-13.472000pt;}
._3_c00418{margin-left:-9.760000pt;}
._8_c00418{margin-left:-4.491136pt;}
._0_c00418{margin-left:-3.120000pt;}
._7_c00418{margin-left:-2.076672pt;}
._5_c00418{margin-left:-1.118208pt;}
._1_c00418{width:1.456000pt;}
._9_c00418{width:2.727936pt;}
._2_c00418{width:7.040000pt;}
._6_c00418{width:27.045888pt;}
.fs2_c00418{font-size:122.880000pt;}
.fs1_c00418{font-size:160.000000pt;}
.fs0_c00418{font-size:240.000000pt;}
.y0_c00418{bottom:0.000000pt;}
.yb_c00418{bottom:68.983227pt;}
.ya_c00418{bottom:105.785787pt;}
.y9_c00418{bottom:142.588347pt;}
.y8_c00418{bottom:179.390907pt;}
.y7_c00418{bottom:216.193467pt;}
.y6_c00418{bottom:252.996027pt;}
.y5_c00418{bottom:289.798587pt;}
.y4_c00418{bottom:326.601147pt;}
.y3_c00418{bottom:400.206267pt;}
.y2_c00418{bottom:564.466400pt;}
.y1_c00418{bottom:617.746400pt;}
.h4_c00418{height:88.200000pt;}
.h3_c00418{height:89.220000pt;}
.h2_c00418{height:114.843750pt;}
.h1_c00418{height:174.257812pt;}
.h0_c00418{height:720.000000pt;}
.w0_c00418{width:1280.000000pt;}
.x0_c00418{left:0.000000pt;}
.x4_c00418{left:65.292453pt;}
.x3_c00418{left:72.327333pt;}
.x2_c00418{left:94.123200pt;}
.x1_c00418{left:218.763200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9b5c524adcf8a1842114042b.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00419;src:url('chunks/assets/font_41c7dc65dc70d27a32b6e2c2.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.270000px;}
.ls1_c00419{letter-spacing:-0.180000px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00419{word-spacing:-0.180000px;}
.ws0_c00419{word-spacing:0.540000px;}
._4_c00419{margin-left:-15.156000px;}
._3_c00419{margin-left:-10.980000px;}
._0_c00419{margin-left:-3.510000px;}
._1_c00419{width:1.638000px;}
._2_c00419{width:7.920000px;}
.fc0_c00419{color:rgb(0,0,0);}
.fs1_c00419{font-size:180.000000px;}
.fs0_c00419{font-size:270.000000px;}
.y0_c00419{bottom:0.000000px;}
.y2_c00419{bottom:629.280000px;}
.y1_c00419{bottom:689.220000px;}
.h2_c00419{height:129.199219px;}
.h1_c00419{height:196.040039px;}
.h0_c00419{height:810.000000px;}
.w0_c00419{width:1440.000000px;}
.x0_c00419{left:0.000000px;}
.x2_c00419{left:107.416650px;}
.x1_c00419{left:247.636650px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls0_c00419{letter-spacing:-0.240000pt;}
.ls1_c00419{letter-spacing:-0.160000pt;}
.ws1_c00419{word-spacing:-0.160000pt;}
.ws0_c00419{word-spacing:0.480000pt;}
._4_c00419{margin-left:-13.472000pt;}
._3_c00419{margin-left:-9.760000pt;}
._0_c00419{margin-left:-3.120000pt;}
._1_c00419{width:1.456000pt;}
._2_c00419{width:7.040000pt;}
.fs1_c00419{font-size:160.000000pt;}
.fs0_c00419{font-size:240.000000pt;}
.y0_c00419{bottom:0.000000pt;}
.y2_c00419{bottom:559.360000pt;}
.y1_c00419{bottom:612.640000pt;}
.h2_c00419{height:114.843750pt;}
.h1_c00419{height:174.257812pt;}
.h0_c00419{height:720.000000pt;}
.w0_c00419{width:1280.000000pt;}
.x0_c00419{left:0.000000pt;}
.x2_c00419{left:95.481467pt;}
.x1_c00419{left:220.121467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f2362b6e557e843fb13ac820.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.ls2_c00420{letter-spacing:-1.980000px;}
.ls0_c00420{letter-spacing:-0.288000px;}
.ls1_c00420{letter-spacing:0.180000px;}
.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:-64.800000px;}
.ws1_c00420{word-spacing:-38.700000px;}
.ws3_c00420{word-spacing:-0.180000px;}
.ws2_c00420{word-spacing:1.440000px;}
._1_c00420{margin-left:-24.912000px;}
._2_c00420{margin-left:-3.060000px;}
._3_c00420{margin-left:-1.980000px;}
._0_c00420{width:1.008000px;}
._4_c00420{width:3.132000px;}
.fc1_c00420{color:rgb(0,0,0);}
.fc0_c00420{color:rgb(255,255,255);}
.fs1_c00420{font-size:180.000000px;}
.fs0_c00420{font-size:288.000000px;}
.y0_c00420{bottom:0.000000px;}
.y4_c00420{bottom:380.833950px;}
.y3_c00420{bottom:434.833950px;}
.y2_c00420{bottom:617.243250px;}
.y1_c00420{bottom:703.643250px;}
.h2_c00420{height:130.693359px;}
.h1_c00420{height:209.109375px;}
.h0_c00420{height:810.000000px;}
.w0_c00420{width:1440.000000px;}
.x0_c00420{left:0.000000px;}
.x1_c00420{left:905.331600px;}
.x2_c00420{left:986.151600px;}
.x3_c00420{left:1112.567250px;}
.x4_c00420{left:1128.407250px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls2_c00420{letter-spacing:-1.760000pt;}
.ls0_c00420{letter-spacing:-0.256000pt;}
.ls1_c00420{letter-spacing:0.160000pt;}
.ws0_c00420{word-spacing:-57.600000pt;}
.ws1_c00420{word-spacing:-34.400000pt;}
.ws3_c00420{word-spacing:-0.160000pt;}
.ws2_c00420{word-spacing:1.280000pt;}
._1_c00420{margin-left:-22.144000pt;}
._2_c00420{margin-left:-2.720000pt;}
._3_c00420{margin-left:-1.760000pt;}
._0_c00420{width:0.896000pt;}
._4_c00420{width:2.784000pt;}
.fs1_c00420{font-size:160.000000pt;}
.fs0_c00420{font-size:256.000000pt;}
.y0_c00420{bottom:0.000000pt;}
.y4_c00420{bottom:338.519067pt;}
.y3_c00420{bottom:386.519067pt;}
.y2_c00420{bottom:548.660667pt;}
.y1_c00420{bottom:625.460667pt;}
.h2_c00420{height:116.171875pt;}
.h1_c00420{height:185.875000pt;}
.h0_c00420{height:720.000000pt;}
.w0_c00420{width:1280.000000pt;}
.x0_c00420{left:0.000000pt;}
.x1_c00420{left:804.739200pt;}
.x2_c00420{left:876.579200pt;}
.x3_c00420{left:988.948667pt;}
.x4_c00420{left:1003.028667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4b976bfc3d349878b851aef.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00421{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00421{vertical-align:0.000000px;}
.ls0_c00421{letter-spacing:-0.288000px;}
.sc__c00421{text-shadow:none;}
.sc0_c00421{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00421{-webkit-text-stroke:0px transparent;}
.sc0_c00421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00421{word-spacing:0.144000px;}
._0_c00421{margin-left:-2.160000px;}
.fc1_c00421{color:transparent;}
.fc0_c00421{color:rgb(255,255,255);}
.fs0_c00421{font-size:144.000000px;}
.y0_c00421{bottom:0.000000px;}
.y1_c00421{bottom:49.140000px;}
.h1_c00421{height:103.359375px;}
.h0_c00421{height:810.000000px;}
.w0_c00421{width:1440.000000px;}
.x0_c00421{left:0.000000px;}
.x1_c00421{left:1187.662350px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls0_c00421{letter-spacing:-0.256000pt;}
.ws0_c00421{word-spacing:0.128000pt;}
._0_c00421{margin-left:-1.920000pt;}
.fs0_c00421{font-size:128.000000pt;}
.y0_c00421{bottom:0.000000pt;}
.y1_c00421{bottom:43.680000pt;}
.h1_c00421{height:91.875000pt;}
.h0_c00421{height:720.000000pt;}
.w0_c00421{width:1280.000000pt;}
.x0_c00421{left:0.000000pt;}
.x1_c00421{left:1055.699867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba130abba49fa4a5ec0513bb.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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.180000px;}
.ls0_c00422{letter-spacing:0.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;}
}
.ws0_c00422{word-spacing:-0.630720px;}
.ws1_c00422{word-spacing:0.540000px;}
._1_c00422{margin-left:-3.952512px;}
._0_c00422{margin-left:-1.913184px;}
._2_c00422{width:1.080000px;}
.fc0_c00422{color:rgb(0,0,0);}
.fs1_c00422{font-size:180.000000px;}
.fs0_c00422{font-size:210.240000px;}
.y0_c00422{bottom:0.000000px;}
.y2_c00422{bottom:657.675750px;}
.y1_c00422{bottom:713.655750px;}
.h2_c00422{height:130.693359px;}
.h1_c00422{height:152.649844px;}
.h0_c00422{height:810.000000px;}
.w0_c00422{width:1440.000000px;}
.x0_c00422{left:0.000000px;}
.x2_c00422{left:683.249700px;}
.x1_c00422{left:685.589700px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls1_c00422{letter-spacing:-0.160000pt;}
.ls0_c00422{letter-spacing:0.000000pt;}
.ws0_c00422{word-spacing:-0.560640pt;}
.ws1_c00422{word-spacing:0.480000pt;}
._1_c00422{margin-left:-3.513344pt;}
._0_c00422{margin-left:-1.700608pt;}
._2_c00422{width:0.960000pt;}
.fs1_c00422{font-size:160.000000pt;}
.fs0_c00422{font-size:186.880000pt;}
.y0_c00422{bottom:0.000000pt;}
.y2_c00422{bottom:584.600667pt;}
.y1_c00422{bottom:634.360667pt;}
.h2_c00422{height:116.171875pt;}
.h1_c00422{height:135.688750pt;}
.h0_c00422{height:720.000000pt;}
.w0_c00422{width:1280.000000pt;}
.x0_c00422{left:0.000000pt;}
.x2_c00422{left:607.333067pt;}
.x1_c00422{left:609.413067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6b952fd9ddb7ff55d1c8ea26.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls1_c00423{letter-spacing:-0.180000px;}
.ls0_c00423{letter-spacing:0.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:-0.630720px;}
.ws1_c00423{word-spacing:0.540000px;}
._1_c00423{margin-left:-3.952512px;}
._0_c00423{margin-left:-1.913184px;}
._2_c00423{width:1.080000px;}
.fc0_c00423{color:rgb(0,0,0);}
.fs1_c00423{font-size:180.000000px;}
.fs0_c00423{font-size:210.240000px;}
.y0_c00423{bottom:0.000000px;}
.y2_c00423{bottom:294.480000px;}
.y1_c00423{bottom:350.460000px;}
.h2_c00423{height:130.693359px;}
.h1_c00423{height:152.649844px;}
.h0_c00423{height:810.000000px;}
.w0_c00423{width:1440.000000px;}
.x0_c00423{left:0.000000px;}
.x2_c00423{left:1098.196950px;}
.x1_c00423{left:1100.536950px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls1_c00423{letter-spacing:-0.160000pt;}
.ls0_c00423{letter-spacing:0.000000pt;}
.ws0_c00423{word-spacing:-0.560640pt;}
.ws1_c00423{word-spacing:0.480000pt;}
._1_c00423{margin-left:-3.513344pt;}
._0_c00423{margin-left:-1.700608pt;}
._2_c00423{width:0.960000pt;}
.fs1_c00423{font-size:160.000000pt;}
.fs0_c00423{font-size:186.880000pt;}
.y0_c00423{bottom:0.000000pt;}
.y2_c00423{bottom:261.760000pt;}
.y1_c00423{bottom:311.520000pt;}
.h2_c00423{height:116.171875pt;}
.h1_c00423{height:135.688750pt;}
.h0_c00423{height:720.000000pt;}
.w0_c00423{width:1280.000000pt;}
.x0_c00423{left:0.000000pt;}
.x2_c00423{left:976.175067pt;}
.x1_c00423{left:978.255067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_55dd6abafcb7b073485d354a.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00424{letter-spacing:-0.288000px;}
.sc__c00424{text-shadow:none;}
.sc0_c00424{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00424{-webkit-text-stroke:0px transparent;}
.sc0_c00424{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00424{word-spacing:-64.800000px;}
.ws1_c00424{word-spacing:1.440000px;}
._1_c00424{margin-left:-24.912000px;}
._0_c00424{width:1.008000px;}
.fc0_c00424{color:rgb(255,255,255);}
.fs0_c00424{font-size:288.000000px;}
.y0_c00424{bottom:0.000000px;}
.y2_c00424{bottom:428.882850px;}
.y1_c00424{bottom:515.282850px;}
.h1_c00424{height:209.109375px;}
.h0_c00424{height:810.000000px;}
.w0_c00424{width:1440.000000px;}
.x0_c00424{left:0.000000px;}
.x1_c00424{left:589.432950px;}
.x2_c00424{left:670.252950px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls0_c00424{letter-spacing:-0.256000pt;}
.ws0_c00424{word-spacing:-57.600000pt;}
.ws1_c00424{word-spacing:1.280000pt;}
._1_c00424{margin-left:-22.144000pt;}
._0_c00424{width:0.896000pt;}
.fs0_c00424{font-size:256.000000pt;}
.y0_c00424{bottom:0.000000pt;}
.y2_c00424{bottom:381.229200pt;}
.y1_c00424{bottom:458.029200pt;}
.h1_c00424{height:185.875000pt;}
.h0_c00424{height:720.000000pt;}
.w0_c00424{width:1280.000000pt;}
.x0_c00424{left:0.000000pt;}
.x1_c00424{left:523.940400pt;}
.x2_c00424{left:595.780400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5e6e6de178b6d16a285ce811.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00425;src:url('chunks/assets/font_33b6a11374be2c39551c8513.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00425{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00425{vertical-align:0.000000px;}
.ls0_c00425{letter-spacing:0.000000px;}
.ls1_c00425{letter-spacing:0.299520px;}
.sc__c00425{text-shadow:none;}
.sc0_c00425{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00425{-webkit-text-stroke:0px transparent;}
.sc0_c00425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00425{word-spacing:-0.630720px;}
.ws1_c00425{word-spacing:0.449280px;}
._3_c00425{margin-left:-9.659520px;}
._1_c00425{margin-left:-3.931488px;}
._0_c00425{margin-left:-1.913184px;}
._2_c00425{width:4.627584px;}
.fc0_c00425{color:rgb(0,0,0);}
.fs1_c00425{font-size:149.760000px;}
.fs0_c00425{font-size:210.240000px;}
.y0_c00425{bottom:0.000000px;}
.y2_c00425{bottom:646.621950px;}
.y1_c00425{bottom:695.581950px;}
.h2_c00425{height:107.493750px;}
.h1_c00425{height:152.649844px;}
.h0_c00425{height:810.000000px;}
.w0_c00425{width:1440.000000px;}
.x0_c00425{left:0.000000px;}
.x2_c00425{left:127.488600px;}
.x1_c00425{left:219.108600px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls0_c00425{letter-spacing:0.000000pt;}
.ls1_c00425{letter-spacing:0.266240pt;}
.ws0_c00425{word-spacing:-0.560640pt;}
.ws1_c00425{word-spacing:0.399360pt;}
._3_c00425{margin-left:-8.586240pt;}
._1_c00425{margin-left:-3.494656pt;}
._0_c00425{margin-left:-1.700608pt;}
._2_c00425{width:4.113408pt;}
.fs1_c00425{font-size:133.120000pt;}
.fs0_c00425{font-size:186.880000pt;}
.y0_c00425{bottom:0.000000pt;}
.y2_c00425{bottom:574.775067pt;}
.y1_c00425{bottom:618.295067pt;}
.h2_c00425{height:95.550000pt;}
.h1_c00425{height:135.688750pt;}
.h0_c00425{height:720.000000pt;}
.w0_c00425{width:1280.000000pt;}
.x0_c00425{left:0.000000pt;}
.x2_c00425{left:113.323200pt;}
.x1_c00425{left:194.763200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb7c9a6984b9984687e92b41.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00426;src:url('chunks/assets/font_9077fb705c95db5fbb3d07f7.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00426{letter-spacing:0.000000px;}
.ls1_c00426{letter-spacing:0.329760px;}
.sc__c00426{text-shadow:none;}
.sc0_c00426{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00426{-webkit-text-stroke:0px transparent;}
.sc0_c00426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00426{word-spacing:-1.319040px;}
.ws2_c00426{word-spacing:-0.659520px;}
.ws0_c00426{word-spacing:0.000000px;}
._0_c00426{margin-left:-36.183312px;}
._2_c00426{margin-left:-3.990096px;}
._3_c00426{margin-left:-1.516896px;}
._1_c00426{width:1.301256px;}
.fc0_c00426{color:rgb(0,0,0);}
.fs1_c00426{font-size:329.760000px;}
.fs0_c00426{font-size:419.760000px;}
.y0_c00426{bottom:0.000000px;}
.y3_c00426{bottom:117.928050px;}
.y2_c00426{bottom:216.928050px;}
.y1_c00426{bottom:384.868050px;}
.h2_c00426{height:239.430234px;}
.h1_c00426{height:304.776914px;}
.h0_c00426{height:810.000000px;}
.w0_c00426{width:1440.000000px;}
.x0_c00426{left:0.000000px;}
.x1_c00426{left:298.919100px;}
.x2_c00426{left:311.159100px;}
.x3_c00426{left:358.139100px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls0_c00426{letter-spacing:0.000000pt;}
.ls1_c00426{letter-spacing:0.293120pt;}
.ws1_c00426{word-spacing:-1.172480pt;}
.ws2_c00426{word-spacing:-0.586240pt;}
.ws0_c00426{word-spacing:0.000000pt;}
._0_c00426{margin-left:-32.162944pt;}
._2_c00426{margin-left:-3.546752pt;}
._3_c00426{margin-left:-1.348352pt;}
._1_c00426{width:1.156672pt;}
.fs1_c00426{font-size:293.120000pt;}
.fs0_c00426{font-size:373.120000pt;}
.y0_c00426{bottom:0.000000pt;}
.y3_c00426{bottom:104.824933pt;}
.y2_c00426{bottom:192.824933pt;}
.y1_c00426{bottom:342.104933pt;}
.h2_c00426{height:212.826875pt;}
.h1_c00426{height:270.912813pt;}
.h0_c00426{height:720.000000pt;}
.w0_c00426{width:1280.000000pt;}
.x0_c00426{left:0.000000pt;}
.x1_c00426{left:265.705867pt;}
.x2_c00426{left:276.585867pt;}
.x3_c00426{left:318.345867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33e6facac34d8cee0054b630.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00427;src:url('chunks/assets/font_67d10ac6cf447c6fb834bf8f.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00427{letter-spacing:-9.815040px;}
.ls9_c00427{letter-spacing:-0.324000px;}
.ls3_c00427{letter-spacing:-0.276480px;}
.ls4_c00427{letter-spacing:-0.138240px;}
.lsa_c00427{letter-spacing:-0.108000px;}
.ls6_c00427{letter-spacing:0.000000px;}
.ls5_c00427{letter-spacing:0.138240px;}
.ls1_c00427{letter-spacing:0.180000px;}
.ls0_c00427{letter-spacing:0.276480px;}
.ls2_c00427{letter-spacing:0.299520px;}
.ls7_c00427{letter-spacing:0.691200px;}
.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;}
}
.ws2_c00427{word-spacing:-31.242240px;}
.ws3_c00427{word-spacing:-21.427200px;}
.ws4_c00427{word-spacing:-1.048320px;}
.ws8_c00427{word-spacing:-0.829440px;}
.ws9_c00427{word-spacing:-0.276480px;}
.ws6_c00427{word-spacing:0.000000px;}
.wsa_c00427{word-spacing:0.180000px;}
.wsc_c00427{word-spacing:0.216000px;}
.ws7_c00427{word-spacing:0.276480px;}
.ws5_c00427{word-spacing:0.691200px;}
.wsb_c00427{word-spacing:1.836000px;}
.ws0_c00427{word-spacing:273.300480px;}
.ws1_c00427{word-spacing:283.903488px;}
._7_c00427{margin-left:-18.360000px;}
._2_c00427{margin-left:-13.059072px;}
._5_c00427{margin-left:-9.718272px;}
._4_c00427{margin-left:-8.379648px;}
._3_c00427{margin-left:-2.499840px;}
._0_c00427{margin-left:-1.347840px;}
._1_c00427{width:1.647360px;}
._6_c00427{width:10.091520px;}
.fc1_c00427{color:rgb(255,255,255);}
.fc0_c00427{color:rgb(0,0,0);}
.fs3_c00427{font-size:108.000000px;}
.fs1_c00427{font-size:138.240000px;}
.fs0_c00427{font-size:149.760000px;}
.fs2_c00427{font-size:180.000000px;}
.y0_c00427{bottom:0.000000px;}
.y9_c00427{bottom:59.732640px;}
.y8_c00427{bottom:101.135520px;}
.y7_c00427{bottom:142.538400px;}
.y6_c00427{bottom:183.941280px;}
.y5_c00427{bottom:266.747040px;}
.y4_c00427{bottom:308.149920px;}
.y3_c00427{bottom:349.552800px;}
.y2_c00427{bottom:426.967200px;}
.y1_c00427{bottom:469.087200px;}
.yc_c00427{bottom:619.948050px;}
.yb_c00427{bottom:652.348050px;}
.ya_c00427{bottom:721.828050px;}
.h4_c00427{height:77.519531px;}
.h2_c00427{height:99.225000px;}
.h1_c00427{height:108.736875px;}
.h3_c00427{height:129.199219px;}
.h0_c00427{height:810.000000px;}
.w0_c00427{width:1440.000000px;}
.x0_c00427{left:0.000000px;}
.x1_c00427{left:192.780300px;}
.x2_c00427{left:300.780300px;}
.x4_c00427{left:348.754650px;}
.x3_c00427{left:359.734650px;}
.x5_c00427{left:472.414650px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls8_c00427{letter-spacing:-8.724480pt;}
.ls9_c00427{letter-spacing:-0.288000pt;}
.ls3_c00427{letter-spacing:-0.245760pt;}
.ls4_c00427{letter-spacing:-0.122880pt;}
.lsa_c00427{letter-spacing:-0.096000pt;}
.ls6_c00427{letter-spacing:0.000000pt;}
.ls5_c00427{letter-spacing:0.122880pt;}
.ls1_c00427{letter-spacing:0.160000pt;}
.ls0_c00427{letter-spacing:0.245760pt;}
.ls2_c00427{letter-spacing:0.266240pt;}
.ls7_c00427{letter-spacing:0.614400pt;}
.ws2_c00427{word-spacing:-27.770880pt;}
.ws3_c00427{word-spacing:-19.046400pt;}
.ws4_c00427{word-spacing:-0.931840pt;}
.ws8_c00427{word-spacing:-0.737280pt;}
.ws9_c00427{word-spacing:-0.245760pt;}
.ws6_c00427{word-spacing:0.000000pt;}
.wsa_c00427{word-spacing:0.160000pt;}
.wsc_c00427{word-spacing:0.192000pt;}
.ws7_c00427{word-spacing:0.245760pt;}
.ws5_c00427{word-spacing:0.614400pt;}
.wsb_c00427{word-spacing:1.632000pt;}
.ws0_c00427{word-spacing:242.933760pt;}
.ws1_c00427{word-spacing:252.358656pt;}
._7_c00427{margin-left:-16.320000pt;}
._2_c00427{margin-left:-11.608064pt;}
._5_c00427{margin-left:-8.638464pt;}
._4_c00427{margin-left:-7.448576pt;}
._3_c00427{margin-left:-2.222080pt;}
._0_c00427{margin-left:-1.198080pt;}
._1_c00427{width:1.464320pt;}
._6_c00427{width:8.970240pt;}
.fs3_c00427{font-size:96.000000pt;}
.fs1_c00427{font-size:122.880000pt;}
.fs0_c00427{font-size:133.120000pt;}
.fs2_c00427{font-size:160.000000pt;}
.y0_c00427{bottom:0.000000pt;}
.y9_c00427{bottom:53.095680pt;}
.y8_c00427{bottom:89.898240pt;}
.y7_c00427{bottom:126.700800pt;}
.y6_c00427{bottom:163.503360pt;}
.y5_c00427{bottom:237.108480pt;}
.y4_c00427{bottom:273.911040pt;}
.y3_c00427{bottom:310.713600pt;}
.y2_c00427{bottom:379.526400pt;}
.y1_c00427{bottom:416.966400pt;}
.yc_c00427{bottom:551.064933pt;}
.yb_c00427{bottom:579.864933pt;}
.ya_c00427{bottom:641.624933pt;}
.h4_c00427{height:68.906250pt;}
.h2_c00427{height:88.200000pt;}
.h1_c00427{height:96.655000pt;}
.h3_c00427{height:114.843750pt;}
.h0_c00427{height:720.000000pt;}
.w0_c00427{width:1280.000000pt;}
.x0_c00427{left:0.000000pt;}
.x1_c00427{left:171.360267pt;}
.x2_c00427{left:267.360267pt;}
.x4_c00427{left:310.004133pt;}
.x3_c00427{left:319.764133pt;}
.x5_c00427{left:419.924133pt;}
}





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





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_47427094990492870e2212d7.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00430{letter-spacing:0.000000px;}
.sc__c00430{text-shadow:none;}
.sc0_c00430{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00430{-webkit-text-stroke:0px transparent;}
.sc0_c00430{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00430{word-spacing:-203.400000px;}
.fc0_c00430{color:rgb(255,255,255);}
.fs0_c00430{font-size:900.000000px;}
.y0_c00430{bottom:0.000000px;}
.y1_c00430{bottom:373.452750px;}
.h1_c00430{height:653.466797px;}
.h0_c00430{height:810.000000px;}
.w0_c00430{width:1440.000000px;}
.x0_c00430{left:0.000000px;}
.x1_c00430{left:481.890900px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls0_c00430{letter-spacing:0.000000pt;}
.ws0_c00430{word-spacing:-180.800000pt;}
.fs0_c00430{font-size:800.000000pt;}
.y0_c00430{bottom:0.000000pt;}
.y1_c00430{bottom:331.958000pt;}
.h1_c00430{height:580.859375pt;}
.h0_c00430{height:720.000000pt;}
.w0_c00430{width:1280.000000pt;}
.x0_c00430{left:0.000000pt;}
.x1_c00430{left:428.347467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3799497658da1800d80d4bb.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00431{letter-spacing:0.000000px;}
.sc__c00431{text-shadow:none;}
.sc0_c00431{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00431{-webkit-text-stroke:0px transparent;}
.sc0_c00431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00431{word-spacing:-1.440720px;}
._4_c00431{margin-left:-17.240616px;}
._3_c00431{margin-left:-7.587792px;}
._1_c00431{margin-left:-6.099048px;}
._0_c00431{margin-left:-2.305152px;}
._2_c00431{width:2.689344px;}
.fc0_c00431{color:rgb(255,255,255);}
.fs0_c00431{font-size:480.240000px;}
.y0_c00431{bottom:0.000000px;}
.y1_c00431{bottom:671.145600px;}
.h1_c00431{height:348.689883px;}
.h0_c00431{height:810.000000px;}
.w0_c00431{width:1440.000000px;}
.x0_c00431{left:0.000000px;}
.x1_c00431{left:82.421100px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls0_c00431{letter-spacing:0.000000pt;}
.ws0_c00431{word-spacing:-1.280640pt;}
._4_c00431{margin-left:-15.324992pt;}
._3_c00431{margin-left:-6.744704pt;}
._1_c00431{margin-left:-5.421376pt;}
._0_c00431{margin-left:-2.049024pt;}
._2_c00431{width:2.390528pt;}
.fs0_c00431{font-size:426.880000pt;}
.y0_c00431{bottom:0.000000pt;}
.y1_c00431{bottom:596.573867pt;}
.h1_c00431{height:309.946562pt;}
.h0_c00431{height:720.000000pt;}
.w0_c00431{width:1280.000000pt;}
.x0_c00431{left:0.000000pt;}
.x1_c00431{left:73.263200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ba4330a804a8e3e07aa97a1.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00432;src:url('chunks/assets/font_da78fa36850b7bc7f656a01c.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00432{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.ls3_c00432{letter-spacing:-11.376000px;}
.ls2_c00432{letter-spacing:-0.432000px;}
.ls4_c00432{letter-spacing:-0.360000px;}
.ls0_c00432{letter-spacing:-0.144000px;}
.ls1_c00432{letter-spacing:0.144000px;}
.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:-21.168000px;}
.ws4_c00432{word-spacing:-0.360000px;}
.ws2_c00432{word-spacing:-0.144000px;}
.ws1_c00432{word-spacing:0.144000px;}
.ws3_c00432{word-spacing:0.432000px;}
._2_c00432{margin-left:-3.816000px;}
._0_c00432{width:1.008000px;}
._1_c00432{width:11.520000px;}
.fc0_c00432{color:rgb(255,255,255);}
.fs0_c00432{font-size:144.000000px;}
.fs1_c00432{font-size:360.000000px;}
.y0_c00432{bottom:0.000000px;}
.y2_c00432{bottom:325.317600px;}
.y1_c00432{bottom:368.517600px;}
.y4_c00432{bottom:540.882900px;}
.y3_c00432{bottom:584.082900px;}
.y5_c00432{bottom:720.360000px;}
.h1_c00432{height:104.554688px;}
.h2_c00432{height:261.386719px;}
.h0_c00432{height:810.000000px;}
.w0_c00432{width:1440.000000px;}
.x0_c00432{left:0.000000px;}
.x5_c00432{left:42.932250px;}
.x1_c00432{left:676.948350px;}
.x2_c00432{left:713.848350px;}
.x3_c00432{left:975.602400px;}
.x4_c00432{left:977.222400px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls3_c00432{letter-spacing:-10.112000pt;}
.ls2_c00432{letter-spacing:-0.384000pt;}
.ls4_c00432{letter-spacing:-0.320000pt;}
.ls0_c00432{letter-spacing:-0.128000pt;}
.ls1_c00432{letter-spacing:0.128000pt;}
.ws0_c00432{word-spacing:-18.816000pt;}
.ws4_c00432{word-spacing:-0.320000pt;}
.ws2_c00432{word-spacing:-0.128000pt;}
.ws1_c00432{word-spacing:0.128000pt;}
.ws3_c00432{word-spacing:0.384000pt;}
._2_c00432{margin-left:-3.392000pt;}
._0_c00432{width:0.896000pt;}
._1_c00432{width:10.240000pt;}
.fs0_c00432{font-size:128.000000pt;}
.fs1_c00432{font-size:320.000000pt;}
.y0_c00432{bottom:0.000000pt;}
.y2_c00432{bottom:289.171200pt;}
.y1_c00432{bottom:327.571200pt;}
.y4_c00432{bottom:480.784800pt;}
.y3_c00432{bottom:519.184800pt;}
.y5_c00432{bottom:640.320000pt;}
.h1_c00432{height:92.937500pt;}
.h2_c00432{height:232.343750pt;}
.h0_c00432{height:720.000000pt;}
.w0_c00432{width:1280.000000pt;}
.x0_c00432{left:0.000000pt;}
.x5_c00432{left:38.162000pt;}
.x1_c00432{left:601.731867pt;}
.x2_c00432{left:634.531867pt;}
.x3_c00432{left:867.202133pt;}
.x4_c00432{left:868.642133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38fcb1699b83a23394d869f7.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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.360000px;}
.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:1.080000px;}
._1_c00433{margin-left:-3.960000px;}
._2_c00433{margin-left:-1.440000px;}
._0_c00433{width:1.080000px;}
.fc0_c00433{color:rgb(255,255,255);}
.fs0_c00433{font-size:360.000000px;}
.y0_c00433{bottom:0.000000px;}
.y1_c00433{bottom:720.360000px;}
.h1_c00433{height:261.386719px;}
.h0_c00433{height:810.000000px;}
.w0_c00433{width:1440.000000px;}
.x0_c00433{left:0.000000px;}
.x1_c00433{left:206.535000px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls0_c00433{letter-spacing:-0.320000pt;}
.ws0_c00433{word-spacing:0.960000pt;}
._1_c00433{margin-left:-3.520000pt;}
._2_c00433{margin-left:-1.280000pt;}
._0_c00433{width:0.960000pt;}
.fs0_c00433{font-size:320.000000pt;}
.y0_c00433{bottom:0.000000pt;}
.y1_c00433{bottom:640.320000pt;}
.h1_c00433{height:232.343750pt;}
.h0_c00433{height:720.000000pt;}
.w0_c00433{width:1280.000000pt;}
.x0_c00433{left:0.000000pt;}
.x1_c00433{left:183.586667pt;}
}





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





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_76274aed384b34f60e3141e9.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00436;src:url('chunks/assets/font_99ca7789ed730c5baa868b57.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00436{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00436{vertical-align:0.000000px;}
.ls1_c00436{letter-spacing:-0.270000px;}
.ls0_c00436{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00436{word-spacing:-1.080000px;}
.ws0_c00436{word-spacing:-0.480240px;}
.ws1_c00436{word-spacing:-0.270000px;}
._2_c00436{margin-left:-27.037512px;}
._1_c00436{width:1.104552px;}
._3_c00436{width:2.349000px;}
._0_c00436{width:3.409704px;}
._4_c00436{width:645.921000px;}
.fc1_c00436{color:rgb(0,0,0);}
.fc0_c00436{color:rgb(255,255,255);}
.fs1_c00436{font-size:270.000000px;}
.fs0_c00436{font-size:480.240000px;}
.y0_c00436{bottom:0.000000px;}
.y2_c00436{bottom:81.026250px;}
.y1_c00436{bottom:671.145600px;}
.h2_c00436{height:196.040039px;}
.h1_c00436{height:348.689883px;}
.h0_c00436{height:810.000000px;}
.w0_c00436{width:1440.000000px;}
.x0_c00436{left:0.000000px;}
.x1_c00436{left:62.815050px;}
.x2_c00436{left:334.856100px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls1_c00436{letter-spacing:-0.240000pt;}
.ls0_c00436{letter-spacing:0.000000pt;}
.ws2_c00436{word-spacing:-0.960000pt;}
.ws0_c00436{word-spacing:-0.426880pt;}
.ws1_c00436{word-spacing:-0.240000pt;}
._2_c00436{margin-left:-24.033344pt;}
._1_c00436{width:0.981824pt;}
._3_c00436{width:2.088000pt;}
._0_c00436{width:3.030848pt;}
._4_c00436{width:574.152000pt;}
.fs1_c00436{font-size:240.000000pt;}
.fs0_c00436{font-size:426.880000pt;}
.y0_c00436{bottom:0.000000pt;}
.y2_c00436{bottom:72.023333pt;}
.y1_c00436{bottom:596.573867pt;}
.h2_c00436{height:174.257812pt;}
.h1_c00436{height:309.946562pt;}
.h0_c00436{height:720.000000pt;}
.w0_c00436{width:1280.000000pt;}
.x0_c00436{left:0.000000pt;}
.x1_c00436{left:55.835600pt;}
.x2_c00436{left:297.649867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fa4bdb0595d32131589b03a5.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls2_c00437{letter-spacing:0.144000px;}
.ls0_c00437{letter-spacing:0.288000px;}
.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:-32.832000px;}
.ws2_c00437{word-spacing:-0.144000px;}
.ws1_c00437{word-spacing:0.000000px;}
._0_c00437{margin-left:-2.016000px;}
.fc0_c00437{color:rgb(255,255,255);}
.fs0_c00437{font-size:144.000000px;}
.y0_c00437{bottom:0.000000px;}
.y3_c00437{bottom:313.957500px;}
.y2_c00437{bottom:357.157500px;}
.y1_c00437{bottom:436.489500px;}
.h1_c00437{height:104.554688px;}
.h0_c00437{height:810.000000px;}
.w0_c00437{width:1440.000000px;}
.x0_c00437{left:0.000000px;}
.x2_c00437{left:385.909350px;}
.x3_c00437{left:430.909350px;}
.x1_c00437{left:1132.500450px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls1_c00437{letter-spacing:0.000000pt;}
.ls2_c00437{letter-spacing:0.128000pt;}
.ls0_c00437{letter-spacing:0.256000pt;}
.ws0_c00437{word-spacing:-29.184000pt;}
.ws2_c00437{word-spacing:-0.128000pt;}
.ws1_c00437{word-spacing:0.000000pt;}
._0_c00437{margin-left:-1.792000pt;}
.fs0_c00437{font-size:128.000000pt;}
.y0_c00437{bottom:0.000000pt;}
.y3_c00437{bottom:279.073333pt;}
.y2_c00437{bottom:317.473333pt;}
.y1_c00437{bottom:387.990667pt;}
.h1_c00437{height:92.937500pt;}
.h0_c00437{height:720.000000pt;}
.w0_c00437{width:1280.000000pt;}
.x0_c00437{left:0.000000pt;}
.x2_c00437{left:343.030533pt;}
.x3_c00437{left:383.030533pt;}
.x1_c00437{left:1006.667067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_235e9466cc85478d8e8eeebf.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls6_c00438{letter-spacing:-1.980000px;}
.ls4_c00438{letter-spacing:-0.360000px;}
.ls3_c00438{letter-spacing:0.000000px;}
.ls5_c00438{letter-spacing:0.180000px;}
.ls0_c00438{letter-spacing:0.240480px;}
.ls2_c00438{letter-spacing:0.360000px;}
.ls1_c00438{letter-spacing:41.400000px;}
.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:-40.320000px;}
.ws1_c00438{word-spacing:-38.700000px;}
.ws3_c00438{word-spacing:-1.923840px;}
.ws2_c00438{word-spacing:-1.442880px;}
.ws5_c00438{word-spacing:-0.180000px;}
.ws4_c00438{word-spacing:0.000000px;}
._0_c00438{margin-left:-1.034064px;}
._1_c00438{width:1.382760px;}
._2_c00438{width:2.814480px;}
.fc0_c00438{color:rgb(255,255,255);}
.fs0_c00438{font-size:120.240000px;}
.fs1_c00438{font-size:180.000000px;}
.y0_c00438{bottom:0.000000px;}
.y3_c00438{bottom:14.826120px;}
.y2_c00438{bottom:50.838000px;}
.y1_c00438{bottom:122.831700px;}
.y5_c00438{bottom:174.224550px;}
.y4_c00438{bottom:737.512050px;}
.h1_c00438{height:87.303164px;}
.h2_c00438{height:130.693359px;}
.h0_c00438{height:810.000000px;}
.w0_c00438{width:1440.000000px;}
.x0_c00438{left:0.000000px;}
.x2_c00438{left:37.812480px;}
.x1_c00438{left:53.654100px;}
.x3_c00438{left:77.401500px;}
.x4_c00438{left:1099.576200px;}
.x5_c00438{left:1184.663400px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls6_c00438{letter-spacing:-1.760000pt;}
.ls4_c00438{letter-spacing:-0.320000pt;}
.ls3_c00438{letter-spacing:0.000000pt;}
.ls5_c00438{letter-spacing:0.160000pt;}
.ls0_c00438{letter-spacing:0.213760pt;}
.ls2_c00438{letter-spacing:0.320000pt;}
.ls1_c00438{letter-spacing:36.800000pt;}
.ws0_c00438{word-spacing:-35.840000pt;}
.ws1_c00438{word-spacing:-34.400000pt;}
.ws3_c00438{word-spacing:-1.710080pt;}
.ws2_c00438{word-spacing:-1.282560pt;}
.ws5_c00438{word-spacing:-0.160000pt;}
.ws4_c00438{word-spacing:0.000000pt;}
._0_c00438{margin-left:-0.919168pt;}
._1_c00438{width:1.229120pt;}
._2_c00438{width:2.501760pt;}
.fs0_c00438{font-size:106.880000pt;}
.fs1_c00438{font-size:160.000000pt;}
.y0_c00438{bottom:0.000000pt;}
.y3_c00438{bottom:13.178773pt;}
.y2_c00438{bottom:45.189333pt;}
.y1_c00438{bottom:109.183733pt;}
.y5_c00438{bottom:154.866267pt;}
.y4_c00438{bottom:655.566267pt;}
.h1_c00438{height:77.602812pt;}
.h2_c00438{height:116.171875pt;}
.h0_c00438{height:720.000000pt;}
.w0_c00438{width:1280.000000pt;}
.x0_c00438{left:0.000000pt;}
.x2_c00438{left:33.611093pt;}
.x1_c00438{left:47.692533pt;}
.x3_c00438{left:68.801333pt;}
.x4_c00438{left:977.401067pt;}
.x5_c00438{left:1053.034133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fcb6b44cc990c9794f8f0f62.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00439;src:url('chunks/assets/font_c053a1d3403112c4b28094de.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00439{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.ls1_c00439{letter-spacing:-0.270000px;}
.ls0_c00439{letter-spacing:0.000000px;}
.sc__c00439{text-shadow:none;}
.sc0_c00439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00439{-webkit-text-stroke:0px transparent;}
.sc0_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00439{word-spacing:-61.020000px;}
.ws0_c00439{word-spacing:-60.750000px;}
.ws2_c00439{word-spacing:-0.720000px;}
.ws3_c00439{word-spacing:0.000000px;}
.ws4_c00439{word-spacing:0.270000px;}
._2_c00439{margin-left:-20.520000px;}
._0_c00439{margin-left:-3.960000px;}
._3_c00439{margin-left:-1.809000px;}
._1_c00439{width:1.440000px;}
.fc0_c00439{color:rgb(255,255,255);}
.fs1_c00439{font-size:270.000000px;}
.fs0_c00439{font-size:360.000000px;}
.y0_c00439{bottom:0.000000px;}
.y3_c00439{bottom:49.000650px;}
.y7_c00439{bottom:53.373900px;}
.y5_c00439{bottom:55.331400px;}
.y2_c00439{bottom:130.000650px;}
.y6_c00439{bottom:134.373900px;}
.y4_c00439{bottom:136.331400px;}
.y1_c00439{bottom:699.225600px;}
.h2_c00439{height:196.040039px;}
.h1_c00439{height:261.386719px;}
.h0_c00439{height:810.000000px;}
.w0_c00439{width:1440.000000px;}
.x0_c00439{left:0.000000px;}
.x1_c00439{left:61.818750px;}
.x4_c00439{left:172.990800px;}
.x5_c00439{left:185.613300px;}
.x2_c00439{left:603.748050px;}
.x3_c00439{left:637.565550px;}
.x6_c00439{left:1073.643300px;}
.x7_c00439{left:1091.800800px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls1_c00439{letter-spacing:-0.240000pt;}
.ls0_c00439{letter-spacing:0.000000pt;}
.ws1_c00439{word-spacing:-54.240000pt;}
.ws0_c00439{word-spacing:-54.000000pt;}
.ws2_c00439{word-spacing:-0.640000pt;}
.ws3_c00439{word-spacing:0.000000pt;}
.ws4_c00439{word-spacing:0.240000pt;}
._2_c00439{margin-left:-18.240000pt;}
._0_c00439{margin-left:-3.520000pt;}
._3_c00439{margin-left:-1.608000pt;}
._1_c00439{width:1.280000pt;}
.fs1_c00439{font-size:240.000000pt;}
.fs0_c00439{font-size:320.000000pt;}
.y0_c00439{bottom:0.000000pt;}
.y3_c00439{bottom:43.556133pt;}
.y7_c00439{bottom:47.443467pt;}
.y5_c00439{bottom:49.183467pt;}
.y2_c00439{bottom:115.556133pt;}
.y6_c00439{bottom:119.443467pt;}
.y4_c00439{bottom:121.183467pt;}
.y1_c00439{bottom:621.533867pt;}
.h2_c00439{height:174.257812pt;}
.h1_c00439{height:232.343750pt;}
.h0_c00439{height:720.000000pt;}
.w0_c00439{width:1280.000000pt;}
.x0_c00439{left:0.000000pt;}
.x1_c00439{left:54.950000pt;}
.x4_c00439{left:153.769600pt;}
.x5_c00439{left:164.989600pt;}
.x2_c00439{left:536.664933pt;}
.x3_c00439{left:566.724933pt;}
.x6_c00439{left:954.349600pt;}
.x7_c00439{left:970.489600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1447bed9cdcc00d91c2ac004.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00440{letter-spacing:-0.288000px;}
.ls2_c00440{letter-spacing:0.144000px;}
.ls1_c00440{letter-spacing:0.288000px;}
.sc__c00440{text-shadow:none;}
.sc0_c00440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00440{-webkit-text-stroke:0px transparent;}
.sc0_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00440{word-spacing:-32.832000px;}
.ws2_c00440{word-spacing:-0.144000px;}
.ws1_c00440{word-spacing:0.288000px;}
._3_c00440{margin-left:-3.456000px;}
._0_c00440{margin-left:-2.160000px;}
._2_c00440{margin-left:-1.008000px;}
._1_c00440{width:1.152000px;}
.fc0_c00440{color:rgb(255,255,255);}
.fs0_c00440{font-size:144.000000px;}
.y0_c00440{bottom:0.000000px;}
.y4_c00440{bottom:344.762250px;}
.y3_c00440{bottom:387.962250px;}
.y2_c00440{bottom:436.911300px;}
.y1_c00440{bottom:480.111300px;}
.h1_c00440{height:104.554688px;}
.h0_c00440{height:810.000000px;}
.w0_c00440{width:1440.000000px;}
.x0_c00440{left:0.000000px;}
.x3_c00440{left:339.520650px;}
.x4_c00440{left:376.780650px;}
.x1_c00440{left:1167.117750px;}
.x2_c00440{left:1172.877750px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls0_c00440{letter-spacing:-0.256000pt;}
.ls2_c00440{letter-spacing:0.128000pt;}
.ls1_c00440{letter-spacing:0.256000pt;}
.ws0_c00440{word-spacing:-29.184000pt;}
.ws2_c00440{word-spacing:-0.128000pt;}
.ws1_c00440{word-spacing:0.256000pt;}
._3_c00440{margin-left:-3.072000pt;}
._0_c00440{margin-left:-1.920000pt;}
._2_c00440{margin-left:-0.896000pt;}
._1_c00440{width:1.024000pt;}
.fs0_c00440{font-size:128.000000pt;}
.y0_c00440{bottom:0.000000pt;}
.y4_c00440{bottom:306.455333pt;}
.y3_c00440{bottom:344.855333pt;}
.y2_c00440{bottom:388.365600pt;}
.y1_c00440{bottom:426.765600pt;}
.h1_c00440{height:92.937500pt;}
.h0_c00440{height:720.000000pt;}
.w0_c00440{width:1280.000000pt;}
.x0_c00440{left:0.000000pt;}
.x3_c00440{left:301.796133pt;}
.x4_c00440{left:334.916133pt;}
.x1_c00440{left:1037.438000pt;}
.x2_c00440{left:1042.558000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_de5b5bdc2202b8b52768f1d6.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00441{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00441{vertical-align:0.000000px;}
.ls1_c00441{letter-spacing:-0.288000px;}
.ls0_c00441{letter-spacing:0.144000px;}
.ls2_c00441{letter-spacing:0.288000px;}
.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:-32.832000px;}
.ws2_c00441{word-spacing:-32.688000px;}
.ws1_c00441{word-spacing:-32.256000px;}
.ws5_c00441{word-spacing:-0.288000px;}
.ws4_c00441{word-spacing:-0.144000px;}
.ws3_c00441{word-spacing:0.288000px;}
._3_c00441{margin-left:-3.456000px;}
._0_c00441{margin-left:-2.160000px;}
._2_c00441{margin-left:-1.008000px;}
._1_c00441{width:1.152000px;}
.fc0_c00441{color:rgb(255,255,255);}
.fs0_c00441{font-size:144.000000px;}
.y0_c00441{bottom:0.000000px;}
.y4_c00441{bottom:344.762250px;}
.y3_c00441{bottom:387.962250px;}
.y2_c00441{bottom:436.911300px;}
.y1_c00441{bottom:480.111300px;}
.y6_c00441{bottom:592.476450px;}
.y5_c00441{bottom:635.676450px;}
.h1_c00441{height:104.554688px;}
.h0_c00441{height:810.000000px;}
.w0_c00441{width:1440.000000px;}
.x0_c00441{left:0.000000px;}
.x3_c00441{left:339.520650px;}
.x4_c00441{left:376.780650px;}
.x5_c00441{left:523.163550px;}
.x6_c00441{left:529.823550px;}
.x1_c00441{left:1167.117750px;}
.x2_c00441{left:1172.877750px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls1_c00441{letter-spacing:-0.256000pt;}
.ls0_c00441{letter-spacing:0.128000pt;}
.ls2_c00441{letter-spacing:0.256000pt;}
.ws0_c00441{word-spacing:-29.184000pt;}
.ws2_c00441{word-spacing:-29.056000pt;}
.ws1_c00441{word-spacing:-28.672000pt;}
.ws5_c00441{word-spacing:-0.256000pt;}
.ws4_c00441{word-spacing:-0.128000pt;}
.ws3_c00441{word-spacing:0.256000pt;}
._3_c00441{margin-left:-3.072000pt;}
._0_c00441{margin-left:-1.920000pt;}
._2_c00441{margin-left:-0.896000pt;}
._1_c00441{width:1.024000pt;}
.fs0_c00441{font-size:128.000000pt;}
.y0_c00441{bottom:0.000000pt;}
.y4_c00441{bottom:306.455333pt;}
.y3_c00441{bottom:344.855333pt;}
.y2_c00441{bottom:388.365600pt;}
.y1_c00441{bottom:426.765600pt;}
.y6_c00441{bottom:526.645733pt;}
.y5_c00441{bottom:565.045733pt;}
.h1_c00441{height:92.937500pt;}
.h0_c00441{height:720.000000pt;}
.w0_c00441{width:1280.000000pt;}
.x0_c00441{left:0.000000pt;}
.x3_c00441{left:301.796133pt;}
.x4_c00441{left:334.916133pt;}
.x5_c00441{left:465.034267pt;}
.x6_c00441{left:470.954267pt;}
.x1_c00441{left:1037.438000pt;}
.x2_c00441{left:1042.558000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_49d419969a8e8ea916ccd95c.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00442{letter-spacing:0.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:0.000000px;}
.fc0_c00442{color:rgb(255,255,255);}
.fs0_c00442{font-size:900.000000px;}
.y0_c00442{bottom:0.000000px;}
.y1_c00442{bottom:372.315750px;}
.h1_c00442{height:653.466797px;}
.h0_c00442{height:810.000000px;}
.w0_c00442{width:1440.000000px;}
.x0_c00442{left:0.000000px;}
.x1_c00442{left:320.123850px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls0_c00442{letter-spacing:0.000000pt;}
.ws0_c00442{word-spacing:0.000000pt;}
.fs0_c00442{font-size:800.000000pt;}
.y0_c00442{bottom:0.000000pt;}
.y1_c00442{bottom:330.947333pt;}
.h1_c00442{height:580.859375pt;}
.h0_c00442{height:720.000000pt;}
.w0_c00442{width:1280.000000pt;}
.x0_c00442{left:0.000000pt;}
.x1_c00442{left:284.554533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4afda7b8ccd959cc93747c02.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00443{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.ls0_c00443{letter-spacing:-0.288000px;}
.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:-64.800000px;}
.ws1_c00443{word-spacing:1.440000px;}
._1_c00443{margin-left:-24.912000px;}
._0_c00443{width:1.008000px;}
.fc0_c00443{color:rgb(255,255,255);}
.fs0_c00443{font-size:288.000000px;}
.y0_c00443{bottom:0.000000px;}
.y2_c00443{bottom:617.243250px;}
.y1_c00443{bottom:703.643250px;}
.h1_c00443{height:209.109375px;}
.h0_c00443{height:810.000000px;}
.w0_c00443{width:1440.000000px;}
.x0_c00443{left:0.000000px;}
.x1_c00443{left:905.331600px;}
.x2_c00443{left:986.151600px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls0_c00443{letter-spacing:-0.256000pt;}
.ws0_c00443{word-spacing:-57.600000pt;}
.ws1_c00443{word-spacing:1.280000pt;}
._1_c00443{margin-left:-22.144000pt;}
._0_c00443{width:0.896000pt;}
.fs0_c00443{font-size:256.000000pt;}
.y0_c00443{bottom:0.000000pt;}
.y2_c00443{bottom:548.660667pt;}
.y1_c00443{bottom:625.460667pt;}
.h1_c00443{height:185.875000pt;}
.h0_c00443{height:720.000000pt;}
.w0_c00443{width:1280.000000pt;}
.x0_c00443{left:0.000000pt;}
.x1_c00443{left:804.739200pt;}
.x2_c00443{left:876.579200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4f64aca7ef365631fca8ea05.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00444{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.ls2_c00444{letter-spacing:-33.950880px;}
.ls0_c00444{letter-spacing:-0.288000px;}
.ls1_c00444{letter-spacing:0.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;}
}
.ws1_c00444{word-spacing:-88.194240px;}
.ws0_c00444{word-spacing:-64.800000px;}
.ws2_c00444{word-spacing:-54.243360px;}
.ws4_c00444{word-spacing:0.390240px;}
.ws3_c00444{word-spacing:1.440000px;}
._1_c00444{margin-left:-24.912000px;}
._0_c00444{width:1.008000px;}
._2_c00444{width:34.224048px;}
.fc1_c00444{color:transparent;}
.fc0_c00444{color:rgb(255,255,255);}
.fs0_c00444{font-size:288.000000px;}
.fs1_c00444{font-size:390.240000px;}
.y0_c00444{bottom:0.000000px;}
.y5_c00444{bottom:165.145200px;}
.y4_c00444{bottom:282.145200px;}
.y3_c00444{bottom:399.145200px;}
.y2_c00444{bottom:617.243250px;}
.y1_c00444{bottom:703.643250px;}
.h1_c00444{height:209.109375px;}
.h2_c00444{height:283.343203px;}
.h0_c00444{height:810.000000px;}
.w0_c00444{width:1440.000000px;}
.x0_c00444{left:0.000000px;}
.x4_c00444{left:552.460050px;}
.x5_c00444{left:661.900050px;}
.x3_c00444{left:677.740050px;}
.x1_c00444{left:905.331600px;}
.x2_c00444{left:986.151600px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls2_c00444{letter-spacing:-30.178560pt;}
.ls0_c00444{letter-spacing:-0.256000pt;}
.ls1_c00444{letter-spacing:0.000000pt;}
.ws1_c00444{word-spacing:-78.394880pt;}
.ws0_c00444{word-spacing:-57.600000pt;}
.ws2_c00444{word-spacing:-48.216320pt;}
.ws4_c00444{word-spacing:0.346880pt;}
.ws3_c00444{word-spacing:1.280000pt;}
._1_c00444{margin-left:-22.144000pt;}
._0_c00444{width:0.896000pt;}
._2_c00444{width:30.421376pt;}
.fs0_c00444{font-size:256.000000pt;}
.fs1_c00444{font-size:346.880000pt;}
.y0_c00444{bottom:0.000000pt;}
.y5_c00444{bottom:146.795733pt;}
.y4_c00444{bottom:250.795733pt;}
.y3_c00444{bottom:354.795733pt;}
.y2_c00444{bottom:548.660667pt;}
.y1_c00444{bottom:625.460667pt;}
.h1_c00444{height:185.875000pt;}
.h2_c00444{height:251.860625pt;}
.h0_c00444{height:720.000000pt;}
.w0_c00444{width:1280.000000pt;}
.x0_c00444{left:0.000000pt;}
.x4_c00444{left:491.075600pt;}
.x5_c00444{left:588.355600pt;}
.x3_c00444{left:602.435600pt;}
.x1_c00444{left:804.739200pt;}
.x2_c00444{left:876.579200pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2d1e36c5c5e4a2b5b38f8779.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00446{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.ls2_c00446{letter-spacing:-0.420480px;}
.ls3_c00446{letter-spacing:0.000000px;}
.ls0_c00446{letter-spacing:0.210240px;}
.ls1_c00446{letter-spacing:0.329760px;}
.sc__c00446{text-shadow:none;}
.sc0_c00446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00446{-webkit-text-stroke:0px transparent;}
.sc0_c00446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00446{word-spacing:-47.514240px;}
.ws0_c00446{word-spacing:-47.093760px;}
.ws2_c00446{word-spacing:-0.210240px;}
.ws3_c00446{word-spacing:0.000000px;}
._1_c00446{margin-left:-17.660160px;}
._0_c00446{margin-left:-1.030176px;}
.fc0_c00446{color:rgb(255,255,255);}
.fs0_c00446{font-size:210.240000px;}
.fs1_c00446{font-size:329.760000px;}
.y0_c00446{bottom:0.000000px;}
.y4_c00446{bottom:186.105150px;}
.y3_c00446{bottom:620.071050px;}
.y2_c00446{bottom:683.071050px;}
.y1_c00446{bottom:746.071050px;}
.h1_c00446{height:152.649844px;}
.h2_c00446{height:239.430234px;}
.h0_c00446{height:810.000000px;}
.w0_c00446{width:1440.000000px;}
.x0_c00446{left:0.000000px;}
.x2_c00446{left:545.884200px;}
.x3_c00446{left:604.744200px;}
.x1_c00446{left:613.384200px;}
.x4_c00446{left:980.504700px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls2_c00446{letter-spacing:-0.373760pt;}
.ls3_c00446{letter-spacing:0.000000pt;}
.ls0_c00446{letter-spacing:0.186880pt;}
.ls1_c00446{letter-spacing:0.293120pt;}
.ws1_c00446{word-spacing:-42.234880pt;}
.ws0_c00446{word-spacing:-41.861120pt;}
.ws2_c00446{word-spacing:-0.186880pt;}
.ws3_c00446{word-spacing:0.000000pt;}
._1_c00446{margin-left:-15.697920pt;}
._0_c00446{margin-left:-0.915712pt;}
.fs0_c00446{font-size:186.880000pt;}
.fs1_c00446{font-size:293.120000pt;}
.y0_c00446{bottom:0.000000pt;}
.y4_c00446{bottom:165.426800pt;}
.y3_c00446{bottom:551.174267pt;}
.y2_c00446{bottom:607.174267pt;}
.y1_c00446{bottom:663.174267pt;}
.h1_c00446{height:135.688750pt;}
.h2_c00446{height:212.826875pt;}
.h0_c00446{height:720.000000pt;}
.w0_c00446{width:1280.000000pt;}
.x0_c00446{left:0.000000pt;}
.x2_c00446{left:485.230400pt;}
.x3_c00446{left:537.550400pt;}
.x1_c00446{left:545.230400pt;}
.x4_c00446{left:871.559733pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bf941cb1c772b545448d3d7d.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00448{letter-spacing:0.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;}
}
.ws1_c00448{word-spacing:-1.500480px;}
.ws0_c00448{word-spacing:0.000000px;}
._1_c00448{margin-left:-64.670688px;}
._3_c00448{margin-left:-9.077904px;}
._2_c00448{margin-left:-7.802496px;}
._0_c00448{margin-left:-1.350432px;}
.fc0_c00448{color:rgb(255,255,255);}
.fs0_c00448{font-size:750.240000px;}
.y0_c00448{bottom:0.000000px;}
.y2_c00448{bottom:277.189500px;}
.y1_c00448{bottom:502.189500px;}
.h1_c00448{height:544.729922px;}
.h0_c00448{height:810.000000px;}
.w0_c00448{width:1440.000000px;}
.x0_c00448{left:0.000000px;}
.x2_c00448{left:106.368900px;}
.x1_c00448{left:276.828900px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls0_c00448{letter-spacing:0.000000pt;}
.ws1_c00448{word-spacing:-1.333760pt;}
.ws0_c00448{word-spacing:0.000000pt;}
._1_c00448{margin-left:-57.485056pt;}
._3_c00448{margin-left:-8.069248pt;}
._2_c00448{margin-left:-6.935552pt;}
._0_c00448{margin-left:-1.200384pt;}
.fs0_c00448{font-size:666.880000pt;}
.y0_c00448{bottom:0.000000pt;}
.y2_c00448{bottom:246.390667pt;}
.y1_c00448{bottom:446.390667pt;}
.h1_c00448{height:484.204375pt;}
.h0_c00448{height:720.000000pt;}
.w0_c00448{width:1280.000000pt;}
.x0_c00448{left:0.000000pt;}
.x2_c00448{left:94.550133pt;}
.x1_c00448{left:246.070133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0177e87ded9e86d32ed2cbd6.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:0.817871;font-style:normal;font-weight:normal;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_e5d9b8bb161a6786a2ad93de.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00449{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.ls1_c00449{letter-spacing:0.000000px;}
.ls2_c00449{letter-spacing:0.329760px;}
.ls0_c00449{letter-spacing:64.969920px;}
.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:-0.329760px;}
.ws0_c00449{word-spacing:0.000000px;}
.ws1_c00449{word-spacing:0.329760px;}
.ws2_c00449{word-spacing:1.319040px;}
._0_c00449{margin-left:-4.154976px;}
._2_c00449{margin-left:-2.704032px;}
._1_c00449{margin-left:-1.582848px;}
.fc1_c00449{color:transparent;}
.fc0_c00449{color:rgb(59,56,56);}
.fs0_c00449{font-size:329.760000px;}
.y0_c00449{bottom:0.000000px;}
.y3_c00449{bottom:228.923100px;}
.y2_c00449{bottom:327.923100px;}
.y1_c00449{bottom:426.923100px;}
.h1_c00449{height:254.082656px;}
.h0_c00449{height:810.000000px;}
.w0_c00449{width:1440.000000px;}
.x0_c00449{left:0.000000px;}
.x1_c00449{left:637.096650px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls1_c00449{letter-spacing:0.000000pt;}
.ls2_c00449{letter-spacing:0.293120pt;}
.ls0_c00449{letter-spacing:57.751040pt;}
.ws3_c00449{word-spacing:-0.293120pt;}
.ws0_c00449{word-spacing:0.000000pt;}
.ws1_c00449{word-spacing:0.293120pt;}
.ws2_c00449{word-spacing:1.172480pt;}
._0_c00449{margin-left:-3.693312pt;}
._2_c00449{margin-left:-2.403584pt;}
._1_c00449{margin-left:-1.406976pt;}
.fs0_c00449{font-size:293.120000pt;}
.y0_c00449{bottom:0.000000pt;}
.y3_c00449{bottom:203.487200pt;}
.y2_c00449{bottom:291.487200pt;}
.y1_c00449{bottom:379.487200pt;}
.h1_c00449{height:225.851250pt;}
.h0_c00449{height:720.000000pt;}
.w0_c00449{width:1280.000000pt;}
.x0_c00449{left:0.000000pt;}
.x1_c00449{left:566.308133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ffeac40cb4b96bfaf5f35c2f.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00450{letter-spacing:0.000000px;}
.sc__c00450{text-shadow:none;}
.sc0_c00450{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00450{-webkit-text-stroke:0px transparent;}
.sc0_c00450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00450{word-spacing:0.000000px;}
._0_c00450{margin-left:-32.040000px;}
._2_c00450{margin-left:-8.820000px;}
._1_c00450{margin-left:-3.960000px;}
.fc0_c00450{color:rgb(255,255,255);}
.fs0_c00450{font-size:900.000000px;}
.y0_c00450{bottom:0.000000px;}
.y2_c00450{bottom:197.089500px;}
.y1_c00450{bottom:467.089500px;}
.h1_c00450{height:653.466797px;}
.h0_c00450{height:810.000000px;}
.w0_c00450{width:1440.000000px;}
.x0_c00450{left:0.000000px;}
.x2_c00450{left:215.068200px;}
.x1_c00450{left:384.268200px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls0_c00450{letter-spacing:0.000000pt;}
.ws0_c00450{word-spacing:0.000000pt;}
._0_c00450{margin-left:-28.480000pt;}
._2_c00450{margin-left:-7.840000pt;}
._1_c00450{margin-left:-3.520000pt;}
.fs0_c00450{font-size:800.000000pt;}
.y0_c00450{bottom:0.000000pt;}
.y2_c00450{bottom:175.190667pt;}
.y1_c00450{bottom:415.190667pt;}
.h1_c00450{height:580.859375pt;}
.h0_c00450{height:720.000000pt;}
.w0_c00450{width:1280.000000pt;}
.x0_c00450{left:0.000000pt;}
.x2_c00450{left:191.171733pt;}
.x1_c00450{left:341.571733pt;}
}





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





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





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_19de4ebb2ce92a108021388c.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:0.873535;font-style:normal;font-weight:normal;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_2cef9851be7afb9ac321ee13.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00454;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00454;src:url('chunks/assets/font_7b69cf35a7a9f7faccc68838.woff2')format("woff");}.ff4_c00454{font-family:ff4_c00454;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00454;src:url('chunks/assets/font_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff5_c00454{font-family:ff5_c00454;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00454{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00454{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00454{vertical-align:0.000000px;}
.v2_c00454{vertical-align:15.120000px;}
.v1_c00454{vertical-align:20.880000px;}
.ls20_c00454{letter-spacing:-0.597600px;}
.ls1b_c00454{letter-spacing:-0.504000px;}
.ls18_c00454{letter-spacing:-0.480960px;}
.ls15_c00454{letter-spacing:-0.337680px;}
.ls1a_c00454{letter-spacing:-0.298800px;}
.ls12_c00454{letter-spacing:-0.289440px;}
.ls11_c00454{letter-spacing:-0.241200px;}
.ls1e_c00454{letter-spacing:-0.239040px;}
.ls10_c00454{letter-spacing:-0.216000px;}
.ls22_c00454{letter-spacing:-0.179280px;}
.ls14_c00454{letter-spacing:-0.144720px;}
.ls1f_c00454{letter-spacing:-0.119520px;}
.ls1d_c00454{letter-spacing:-0.059760px;}
.lsf_c00454{letter-spacing:0.000000px;}
.ls2_c00454{letter-spacing:0.024120px;}
.ls13_c00454{letter-spacing:0.048240px;}
.ls19_c00454{letter-spacing:0.059760px;}
.ls7_c00454{letter-spacing:0.096480px;}
.ls5_c00454{letter-spacing:0.119520px;}
.ls17_c00454{letter-spacing:0.120240px;}
.ls3_c00454{letter-spacing:0.144720px;}
.ls6_c00454{letter-spacing:0.148320px;}
.ls21_c00454{letter-spacing:0.168480px;}
.ls8_c00454{letter-spacing:0.179280px;}
.ls16_c00454{letter-spacing:0.192960px;}
.lse_c00454{letter-spacing:0.216000px;}
.ls1c_c00454{letter-spacing:0.298800px;}
.ls0_c00454{letter-spacing:0.337680px;}
.ls23_c00454{letter-spacing:0.358560px;}
.ls4_c00454{letter-spacing:0.385920px;}
.lsc_c00454{letter-spacing:0.597600px;}
.lsa_c00454{letter-spacing:2.330640px;}
.lsd_c00454{letter-spacing:2.336616px;}
.lsb_c00454{letter-spacing:3.047760px;}
.ls9_c00454{letter-spacing:4.482000px;}
.ls1_c00454{letter-spacing:91.318320px;}
.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;}
}
.wse_c00454{word-spacing:-16.488000px;}
.ws0_c00454{word-spacing:-16.056000px;}
.ws9_c00454{word-spacing:-15.768000px;}
.wsa_c00454{word-spacing:-13.804560px;}
.wsc_c00454{word-spacing:-13.685040px;}
.wsd_c00454{word-spacing:-13.625280px;}
.ws6_c00454{word-spacing:-13.565520px;}
.ws5_c00454{word-spacing:-13.505760px;}
.wsb_c00454{word-spacing:-13.446000px;}
.ws10_c00454{word-spacing:-13.326480px;}
.wsf_c00454{word-spacing:-13.266720px;}
.ws4_c00454{word-spacing:-10.950480px;}
.ws7_c00454{word-spacing:-10.902240px;}
.ws2_c00454{word-spacing:-10.757520px;}
.ws1_c00454{word-spacing:-10.661040px;}
.ws3_c00454{word-spacing:-10.612800px;}
.ws8_c00454{word-spacing:-10.564560px;}
.ws2a_c00454{word-spacing:-1.553760px;}
.ws2c_c00454{word-spacing:-1.195200px;}
.ws2b_c00454{word-spacing:-1.015920px;}
.ws2f_c00454{word-spacing:-0.505440px;}
.ws19_c00454{word-spacing:-0.289440px;}
.ws1a_c00454{word-spacing:-0.192960px;}
.ws14_c00454{word-spacing:-0.144720px;}
.ws1e_c00454{word-spacing:-0.119520px;}
.ws25_c00454{word-spacing:-0.059760px;}
.ws17_c00454{word-spacing:-0.048240px;}
.ws12_c00454{word-spacing:0.000000px;}
.ws16_c00454{word-spacing:0.048240px;}
.ws36_c00454{word-spacing:0.059760px;}
.ws11_c00454{word-spacing:0.072000px;}
.ws27_c00454{word-spacing:0.119520px;}
.ws1b_c00454{word-spacing:0.120240px;}
.ws15_c00454{word-spacing:0.144720px;}
.ws13_c00454{word-spacing:0.192960px;}
.ws1f_c00454{word-spacing:0.239040px;}
.ws18_c00454{word-spacing:0.241200px;}
.ws2d_c00454{word-spacing:0.418320px;}
.ws1d_c00454{word-spacing:0.478080px;}
.ws29_c00454{word-spacing:0.597600px;}
.ws1c_c00454{word-spacing:0.721440px;}
.ws39_c00454{word-spacing:0.956160px;}
.ws2e_c00454{word-spacing:1.135440px;}
.ws37_c00454{word-spacing:1.972080px;}
.ws23_c00454{word-spacing:2.270880px;}
.ws26_c00454{word-spacing:2.330640px;}
.ws28_c00454{word-spacing:2.390400px;}
.ws24_c00454{word-spacing:2.569680px;}
.ws38_c00454{word-spacing:2.629440px;}
.ws31_c00454{word-spacing:2.748960px;}
.ws30_c00454{word-spacing:3.107520px;}
.ws21_c00454{word-spacing:4.541760px;}
.ws22_c00454{word-spacing:4.721040px;}
.ws20_c00454{word-spacing:4.780800px;}
.ws33_c00454{word-spacing:5.019840px;}
.ws32_c00454{word-spacing:5.258880px;}
.ws34_c00454{word-spacing:5.438160px;}
.ws35_c00454{word-spacing:11.055600px;}
._9_c00454{margin-left:-10.954080px;}
._0_c00454{margin-left:-1.512000px;}
._1_c00454{width:1.296000px;}
._7_c00454{width:2.442960px;}
._6_c00454{width:5.034960px;}
._5_c00454{width:9.509760px;}
._2_c00454{width:92.048400px;}
._8_c00454{width:108.164160px;}
._4_c00454{width:135.457920px;}
._3_c00454{width:158.999040px;}
.fc4_c00454{color:transparent;}
.fc3_c00454{color:rgb(149,79,114);}
.fc2_c00454{color:rgb(51,51,255);}
.fc1_c00454{color:rgb(0,0,0);}
.fc0_c00454{color:rgb(0,0,255);}
.fs6_c00454{font-size:30.240000px;}
.fs5_c00454{font-size:38.880000px;}
.fs1_c00454{font-size:48.240000px;}
.fs2_c00454{font-size:54.000000px;}
.fs3_c00454{font-size:59.760000px;}
.fs0_c00454{font-size:72.000000px;}
.fs7_c00454{font-size:84.240000px;}
.fs4_c00454{font-size:120.240000px;}
.y0_c00454{bottom:0.000000px;}
.y2_c00454{bottom:15.300000px;}
.ye_c00454{bottom:71.280000px;}
.yd_c00454{bottom:91.800000px;}
.yc_c00454{bottom:109.440000px;}
.yb_c00454{bottom:126.900000px;}
.ya_c00454{bottom:144.720000px;}
.y9_c00454{bottom:165.960000px;}
.y2c_c00454{bottom:327.409200px;}
.y2b_c00454{bottom:349.371000px;}
.y2a_c00454{bottom:371.332800px;}
.y29_c00454{bottom:393.294600px;}
.y28_c00454{bottom:415.256400px;}
.y27_c00454{bottom:437.218200px;}
.y26_c00454{bottom:459.180000px;}
.y25_c00454{bottom:490.320000px;}
.y24_c00454{bottom:513.540000px;}
.y23_c00454{bottom:538.920000px;}
.y22_c00454{bottom:568.620000px;}
.y21_c00454{bottom:588.949560px;}
.y20_c00454{bottom:610.552800px;}
.y1f_c00454{bottom:632.514600px;}
.y1e_c00454{bottom:654.476400px;}
.y1d_c00454{bottom:676.438200px;}
.y1c_c00454{bottom:698.400000px;}
.y1b_c00454{bottom:728.100000px;}
.y1a_c00454{bottom:751.140000px;}
.y19_c00454{bottom:774.000000px;}
.y18_c00454{bottom:794.516220px;}
.y17_c00454{bottom:812.160000px;}
.y16_c00454{bottom:829.609560px;}
.y15_c00454{bottom:847.253340px;}
.y14_c00454{bottom:864.897120px;}
.y13_c00454{bottom:882.360000px;}
.y12_c00454{bottom:900.000000px;}
.y11_c00454{bottom:917.640000px;}
.y10_c00454{bottom:936.720000px;}
.yf_c00454{bottom:988.920000px;}
.y8_c00454{bottom:1045.962000px;}
.y7_c00454{bottom:1063.605780px;}
.y6_c00454{bottom:1081.249560px;}
.y5_c00454{bottom:1098.712440px;}
.y4_c00454{bottom:1116.356220px;}
.y3_c00454{bottom:1134.000000px;}
.y1_c00454{bottom:1145.520000px;}
.h2_c00454{height:32.400000px;}
.h4_c00454{height:34.625391px;}
.ha_c00454{height:34.667151px;}
.h5_c00454{height:35.991211px;}
.h9_c00454{height:36.825469px;}
.hb_c00454{height:41.522695px;}
.h6_c00454{height:42.894141px;}
.h8_c00454{height:48.787031px;}
.h3_c00454{height:50.062500px;}
.hc_c00454{height:58.573125px;}
.h7_c00454{height:83.604375px;}
.h0_c00454{height:1262.880000px;}
.h1_c00454{height:1263.000000px;}
.w2_c00454{width:723.060000px;}
.w0_c00454{width:892.980000px;}
.w1_c00454{width:893.250000px;}
.x0_c00454{left:0.000000px;}
.x2_c00454{left:8.100000px;}
.x1_c00454{left:84.960000px;}
.x4_c00454{left:99.900000px;}
.x3_c00454{left:442.620000px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.v2_c00454{vertical-align:13.440000pt;}
.v1_c00454{vertical-align:18.560000pt;}
.ls20_c00454{letter-spacing:-0.531200pt;}
.ls1b_c00454{letter-spacing:-0.448000pt;}
.ls18_c00454{letter-spacing:-0.427520pt;}
.ls15_c00454{letter-spacing:-0.300160pt;}
.ls1a_c00454{letter-spacing:-0.265600pt;}
.ls12_c00454{letter-spacing:-0.257280pt;}
.ls11_c00454{letter-spacing:-0.214400pt;}
.ls1e_c00454{letter-spacing:-0.212480pt;}
.ls10_c00454{letter-spacing:-0.192000pt;}
.ls22_c00454{letter-spacing:-0.159360pt;}
.ls14_c00454{letter-spacing:-0.128640pt;}
.ls1f_c00454{letter-spacing:-0.106240pt;}
.ls1d_c00454{letter-spacing:-0.053120pt;}
.lsf_c00454{letter-spacing:0.000000pt;}
.ls2_c00454{letter-spacing:0.021440pt;}
.ls13_c00454{letter-spacing:0.042880pt;}
.ls19_c00454{letter-spacing:0.053120pt;}
.ls7_c00454{letter-spacing:0.085760pt;}
.ls5_c00454{letter-spacing:0.106240pt;}
.ls17_c00454{letter-spacing:0.106880pt;}
.ls3_c00454{letter-spacing:0.128640pt;}
.ls6_c00454{letter-spacing:0.131840pt;}
.ls21_c00454{letter-spacing:0.149760pt;}
.ls8_c00454{letter-spacing:0.159360pt;}
.ls16_c00454{letter-spacing:0.171520pt;}
.lse_c00454{letter-spacing:0.192000pt;}
.ls1c_c00454{letter-spacing:0.265600pt;}
.ls0_c00454{letter-spacing:0.300160pt;}
.ls23_c00454{letter-spacing:0.318720pt;}
.ls4_c00454{letter-spacing:0.343040pt;}
.lsc_c00454{letter-spacing:0.531200pt;}
.lsa_c00454{letter-spacing:2.071680pt;}
.lsd_c00454{letter-spacing:2.076992pt;}
.lsb_c00454{letter-spacing:2.709120pt;}
.ls9_c00454{letter-spacing:3.984000pt;}
.ls1_c00454{letter-spacing:81.171840pt;}
.wse_c00454{word-spacing:-14.656000pt;}
.ws0_c00454{word-spacing:-14.272000pt;}
.ws9_c00454{word-spacing:-14.016000pt;}
.wsa_c00454{word-spacing:-12.270720pt;}
.wsc_c00454{word-spacing:-12.164480pt;}
.wsd_c00454{word-spacing:-12.111360pt;}
.ws6_c00454{word-spacing:-12.058240pt;}
.ws5_c00454{word-spacing:-12.005120pt;}
.wsb_c00454{word-spacing:-11.952000pt;}
.ws10_c00454{word-spacing:-11.845760pt;}
.wsf_c00454{word-spacing:-11.792640pt;}
.ws4_c00454{word-spacing:-9.733760pt;}
.ws7_c00454{word-spacing:-9.690880pt;}
.ws2_c00454{word-spacing:-9.562240pt;}
.ws1_c00454{word-spacing:-9.476480pt;}
.ws3_c00454{word-spacing:-9.433600pt;}
.ws8_c00454{word-spacing:-9.390720pt;}
.ws2a_c00454{word-spacing:-1.381120pt;}
.ws2c_c00454{word-spacing:-1.062400pt;}
.ws2b_c00454{word-spacing:-0.903040pt;}
.ws2f_c00454{word-spacing:-0.449280pt;}
.ws19_c00454{word-spacing:-0.257280pt;}
.ws1a_c00454{word-spacing:-0.171520pt;}
.ws14_c00454{word-spacing:-0.128640pt;}
.ws1e_c00454{word-spacing:-0.106240pt;}
.ws25_c00454{word-spacing:-0.053120pt;}
.ws17_c00454{word-spacing:-0.042880pt;}
.ws12_c00454{word-spacing:0.000000pt;}
.ws16_c00454{word-spacing:0.042880pt;}
.ws36_c00454{word-spacing:0.053120pt;}
.ws11_c00454{word-spacing:0.064000pt;}
.ws27_c00454{word-spacing:0.106240pt;}
.ws1b_c00454{word-spacing:0.106880pt;}
.ws15_c00454{word-spacing:0.128640pt;}
.ws13_c00454{word-spacing:0.171520pt;}
.ws1f_c00454{word-spacing:0.212480pt;}
.ws18_c00454{word-spacing:0.214400pt;}
.ws2d_c00454{word-spacing:0.371840pt;}
.ws1d_c00454{word-spacing:0.424960pt;}
.ws29_c00454{word-spacing:0.531200pt;}
.ws1c_c00454{word-spacing:0.641280pt;}
.ws39_c00454{word-spacing:0.849920pt;}
.ws2e_c00454{word-spacing:1.009280pt;}
.ws37_c00454{word-spacing:1.752960pt;}
.ws23_c00454{word-spacing:2.018560pt;}
.ws26_c00454{word-spacing:2.071680pt;}
.ws28_c00454{word-spacing:2.124800pt;}
.ws24_c00454{word-spacing:2.284160pt;}
.ws38_c00454{word-spacing:2.337280pt;}
.ws31_c00454{word-spacing:2.443520pt;}
.ws30_c00454{word-spacing:2.762240pt;}
.ws21_c00454{word-spacing:4.037120pt;}
.ws22_c00454{word-spacing:4.196480pt;}
.ws20_c00454{word-spacing:4.249600pt;}
.ws33_c00454{word-spacing:4.462080pt;}
.ws32_c00454{word-spacing:4.674560pt;}
.ws34_c00454{word-spacing:4.833920pt;}
.ws35_c00454{word-spacing:9.827200pt;}
._9_c00454{margin-left:-9.736960pt;}
._0_c00454{margin-left:-1.344000pt;}
._1_c00454{width:1.152000pt;}
._7_c00454{width:2.171520pt;}
._6_c00454{width:4.475520pt;}
._5_c00454{width:8.453120pt;}
._2_c00454{width:81.820800pt;}
._8_c00454{width:96.145920pt;}
._4_c00454{width:120.407040pt;}
._3_c00454{width:141.332480pt;}
.fs6_c00454{font-size:26.880000pt;}
.fs5_c00454{font-size:34.560000pt;}
.fs1_c00454{font-size:42.880000pt;}
.fs2_c00454{font-size:48.000000pt;}
.fs3_c00454{font-size:53.120000pt;}
.fs0_c00454{font-size:64.000000pt;}
.fs7_c00454{font-size:74.880000pt;}
.fs4_c00454{font-size:106.880000pt;}
.y0_c00454{bottom:0.000000pt;}
.y2_c00454{bottom:13.600000pt;}
.ye_c00454{bottom:63.360000pt;}
.yd_c00454{bottom:81.600000pt;}
.yc_c00454{bottom:97.280000pt;}
.yb_c00454{bottom:112.800000pt;}
.ya_c00454{bottom:128.640000pt;}
.y9_c00454{bottom:147.520000pt;}
.y2c_c00454{bottom:291.030400pt;}
.y2b_c00454{bottom:310.552000pt;}
.y2a_c00454{bottom:330.073600pt;}
.y29_c00454{bottom:349.595200pt;}
.y28_c00454{bottom:369.116800pt;}
.y27_c00454{bottom:388.638400pt;}
.y26_c00454{bottom:408.160000pt;}
.y25_c00454{bottom:435.840000pt;}
.y24_c00454{bottom:456.480000pt;}
.y23_c00454{bottom:479.040000pt;}
.y22_c00454{bottom:505.440000pt;}
.y21_c00454{bottom:523.510720pt;}
.y20_c00454{bottom:542.713600pt;}
.y1f_c00454{bottom:562.235200pt;}
.y1e_c00454{bottom:581.756800pt;}
.y1d_c00454{bottom:601.278400pt;}
.y1c_c00454{bottom:620.800000pt;}
.y1b_c00454{bottom:647.200000pt;}
.y1a_c00454{bottom:667.680000pt;}
.y19_c00454{bottom:688.000000pt;}
.y18_c00454{bottom:706.236640pt;}
.y17_c00454{bottom:721.920000pt;}
.y16_c00454{bottom:737.430720pt;}
.y15_c00454{bottom:753.114080pt;}
.y14_c00454{bottom:768.797440pt;}
.y13_c00454{bottom:784.320000pt;}
.y12_c00454{bottom:800.000000pt;}
.y11_c00454{bottom:815.680000pt;}
.y10_c00454{bottom:832.640000pt;}
.yf_c00454{bottom:879.040000pt;}
.y8_c00454{bottom:929.744000pt;}
.y7_c00454{bottom:945.427360pt;}
.y6_c00454{bottom:961.110720pt;}
.y5_c00454{bottom:976.633280pt;}
.y4_c00454{bottom:992.316640pt;}
.y3_c00454{bottom:1008.000000pt;}
.y1_c00454{bottom:1018.240000pt;}
.h2_c00454{height:28.800000pt;}
.h4_c00454{height:30.778125pt;}
.ha_c00454{height:30.815245pt;}
.h5_c00454{height:31.992188pt;}
.h9_c00454{height:32.733750pt;}
.hb_c00454{height:36.909063pt;}
.h6_c00454{height:38.128125pt;}
.h8_c00454{height:43.366250pt;}
.h3_c00454{height:44.500000pt;}
.hc_c00454{height:52.065000pt;}
.h7_c00454{height:74.315000pt;}
.h0_c00454{height:1122.560000pt;}
.h1_c00454{height:1122.666667pt;}
.w2_c00454{width:642.720000pt;}
.w0_c00454{width:793.760000pt;}
.w1_c00454{width:794.000000pt;}
.x0_c00454{left:0.000000pt;}
.x2_c00454{left:7.200000pt;}
.x1_c00454{left:75.520000pt;}
.x4_c00454{left:88.800000pt;}
.x3_c00454{left:393.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8cc35b1f6b85c06997c96c0a.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:0.873535;font-style:normal;font-weight:normal;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_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00455;src:url('chunks/assets/font_a414e0f3bb3787ed239449a9.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c00455{letter-spacing:-0.179280px;}
.ls5_c00455{letter-spacing:-0.119520px;}
.ls3_c00455{letter-spacing:-0.059760px;}
.ls2_c00455{letter-spacing:0.000000px;}
.ls0_c00455{letter-spacing:0.179280px;}
.ls1_c00455{letter-spacing:0.358560px;}
.sc__c00455{text-shadow:none;}
.sc0_c00455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00455{-webkit-text-stroke:0px transparent;}
.sc0_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00455{word-spacing:-13.505760px;}
.ws3_c00455{word-spacing:-13.446000px;}
.ws2_c00455{word-spacing:-13.386240px;}
.ws1_c00455{word-spacing:-13.326480px;}
.ws7_c00455{word-spacing:-0.358560px;}
.ws4_c00455{word-spacing:-0.179280px;}
.ws5_c00455{word-spacing:0.000000px;}
.ws8_c00455{word-spacing:0.059760px;}
.ws6_c00455{word-spacing:0.239040px;}
._0_c00455{margin-left:-1.284840px;}
._1_c00455{width:1.284840px;}
._2_c00455{width:43.594920px;}
.fc1_c00455{color:rgb(0,0,0);}
.fc0_c00455{color:rgb(0,0,255);}
.fs1_c00455{font-size:54.000000px;}
.fs0_c00455{font-size:59.760000px;}
.y0_c00455{bottom:0.000000px;}
.y3_c00455{bottom:71.280000px;}
.y2_c00455{bottom:91.980000px;}
.yb_c00455{bottom:150.282720px;}
.ya_c00455{bottom:172.244520px;}
.y9_c00455{bottom:194.206320px;}
.y8_c00455{bottom:216.168120px;}
.y7_c00455{bottom:234.170820px;}
.y6_c00455{bottom:752.573880px;}
.y5_c00455{bottom:774.535680px;}
.y4_c00455{bottom:792.359100px;}
.y1_c00455{bottom:1163.520000px;}
.h3_c00455{height:35.991211px;}
.h2_c00455{height:41.551875px;}
.h4_c00455{height:42.894141px;}
.h0_c00455{height:1262.880000px;}
.h1_c00455{height:1263.000000px;}
.w0_c00455{width:892.980000px;}
.w1_c00455{width:893.250000px;}
.x0_c00455{left:0.000000px;}
.x1_c00455{left:84.960000px;}
.x6_c00455{left:99.881460px;}
.x3_c00455{left:442.620000px;}
.x2_c00455{left:446.400000px;}
.x5_c00455{left:489.934980px;}
.x4_c00455{left:638.453520px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls4_c00455{letter-spacing:-0.159360pt;}
.ls5_c00455{letter-spacing:-0.106240pt;}
.ls3_c00455{letter-spacing:-0.053120pt;}
.ls2_c00455{letter-spacing:0.000000pt;}
.ls0_c00455{letter-spacing:0.159360pt;}
.ls1_c00455{letter-spacing:0.318720pt;}
.ws0_c00455{word-spacing:-12.005120pt;}
.ws3_c00455{word-spacing:-11.952000pt;}
.ws2_c00455{word-spacing:-11.898880pt;}
.ws1_c00455{word-spacing:-11.845760pt;}
.ws7_c00455{word-spacing:-0.318720pt;}
.ws4_c00455{word-spacing:-0.159360pt;}
.ws5_c00455{word-spacing:0.000000pt;}
.ws8_c00455{word-spacing:0.053120pt;}
.ws6_c00455{word-spacing:0.212480pt;}
._0_c00455{margin-left:-1.142080pt;}
._1_c00455{width:1.142080pt;}
._2_c00455{width:38.751040pt;}
.fs1_c00455{font-size:48.000000pt;}
.fs0_c00455{font-size:53.120000pt;}
.y0_c00455{bottom:0.000000pt;}
.y3_c00455{bottom:63.360000pt;}
.y2_c00455{bottom:81.760000pt;}
.yb_c00455{bottom:133.584640pt;}
.ya_c00455{bottom:153.106240pt;}
.y9_c00455{bottom:172.627840pt;}
.y8_c00455{bottom:192.149440pt;}
.y7_c00455{bottom:208.151840pt;}
.y6_c00455{bottom:668.954560pt;}
.y5_c00455{bottom:688.476160pt;}
.y4_c00455{bottom:704.319200pt;}
.y1_c00455{bottom:1034.240000pt;}
.h3_c00455{height:31.992188pt;}
.h2_c00455{height:36.935000pt;}
.h4_c00455{height:38.128125pt;}
.h0_c00455{height:1122.560000pt;}
.h1_c00455{height:1122.666667pt;}
.w0_c00455{width:793.760000pt;}
.w1_c00455{width:794.000000pt;}
.x0_c00455{left:0.000000pt;}
.x1_c00455{left:75.520000pt;}
.x6_c00455{left:88.783520pt;}
.x3_c00455{left:393.440000pt;}
.x2_c00455{left:396.800000pt;}
.x5_c00455{left:435.497760pt;}
.x4_c00455{left:567.514240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc6773bd025e41e94ed686b1.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:0.873535;font-style:normal;font-weight:normal;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_93588beb746a3ba838d2533f.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsc_c00456{letter-spacing:-0.298800px;}
.lsa_c00456{letter-spacing:-0.239040px;}
.lsb_c00456{letter-spacing:-0.119520px;}
.ls9_c00456{letter-spacing:-0.059760px;}
.ls7_c00456{letter-spacing:0.000000px;}
.lsd_c00456{letter-spacing:0.059760px;}
.ls8_c00456{letter-spacing:0.168480px;}
.ls4_c00456{letter-spacing:0.179280px;}
.ls1_c00456{letter-spacing:0.298800px;}
.ls6_c00456{letter-spacing:0.358560px;}
.ls5_c00456{letter-spacing:0.776880px;}
.ls0_c00456{letter-spacing:2.330640px;}
.ls3_c00456{letter-spacing:3.047760px;}
.ls2_c00456{letter-spacing:3.071664px;}
.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;}
}
.ws2_c00456{word-spacing:-13.804560px;}
.ws0_c00456{word-spacing:-13.505760px;}
.ws3_c00456{word-spacing:-13.446000px;}
.ws1_c00456{word-spacing:-13.266720px;}
.ws17_c00456{word-spacing:-1.613520px;}
.ws18_c00456{word-spacing:-1.553760px;}
.ws16_c00456{word-spacing:-1.195200px;}
.ws15_c00456{word-spacing:-0.836640px;}
.ws6_c00456{word-spacing:-0.505440px;}
.wsf_c00456{word-spacing:-0.358560px;}
.ws14_c00456{word-spacing:-0.298800px;}
.ws4_c00456{word-spacing:-0.179280px;}
.ws5_c00456{word-spacing:0.000000px;}
.ws19_c00456{word-spacing:0.059760px;}
.ws9_c00456{word-spacing:0.119520px;}
.wse_c00456{word-spacing:0.239040px;}
.wsd_c00456{word-spacing:0.418320px;}
.ws12_c00456{word-spacing:1.314720px;}
.ws10_c00456{word-spacing:1.673280px;}
.ws11_c00456{word-spacing:1.912320px;}
.ws8_c00456{word-spacing:1.972080px;}
.ws7_c00456{word-spacing:2.390400px;}
.wsc_c00456{word-spacing:2.748960px;}
.wsb_c00456{word-spacing:3.107520px;}
.wsa_c00456{word-spacing:3.286800px;}
.ws13_c00456{word-spacing:5.258880px;}
._0_c00456{margin-left:-1.231056px;}
._2_c00456{width:1.099584px;}
._3_c00456{width:2.223072px;}
._4_c00456{width:43.541136px;}
._1_c00456{width:108.164160px;}
.fc1_c00456{color:rgb(0,0,0);}
.fc0_c00456{color:rgb(0,0,255);}
.fs1_c00456{font-size:54.000000px;}
.fs0_c00456{font-size:59.760000px;}
.fs2_c00456{font-size:84.240000px;}
.y0_c00456{bottom:0.000000px;}
.y3_c00456{bottom:71.280000px;}
.y2_c00456{bottom:92.520000px;}
.y14_c00456{bottom:255.044700px;}
.y13_c00456{bottom:277.185780px;}
.y12_c00456{bottom:295.188480px;}
.y11_c00456{bottom:572.743800px;}
.y10_c00456{bottom:594.705600px;}
.yf_c00456{bottom:616.667400px;}
.ye_c00456{bottom:638.629200px;}
.yd_c00456{bottom:660.591000px;}
.yc_c00456{bottom:682.552800px;}
.yb_c00456{bottom:704.514600px;}
.ya_c00456{bottom:726.476400px;}
.y9_c00456{bottom:744.658380px;}
.y8_c00456{bottom:1018.254600px;}
.y7_c00456{bottom:1040.216400px;}
.y6_c00456{bottom:1062.178200px;}
.y5_c00456{bottom:1084.140000px;}
.y4_c00456{bottom:1115.280000px;}
.y1_c00456{bottom:1163.520000px;}
.h3_c00456{height:38.759766px;}
.h2_c00456{height:41.551875px;}
.h4_c00456{height:42.894141px;}
.h5_c00456{height:58.573125px;}
.h0_c00456{height:1262.880000px;}
.h1_c00456{height:1263.000000px;}
.w0_c00456{width:892.980000px;}
.w1_c00456{width:893.250000px;}
.x0_c00456{left:0.000000px;}
.x1_c00456{left:84.960000px;}
.x5_c00456{left:99.870120px;}
.x3_c00456{left:442.620000px;}
.x2_c00456{left:446.400000px;}
.x4_c00456{left:638.442180px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.lsc_c00456{letter-spacing:-0.265600pt;}
.lsa_c00456{letter-spacing:-0.212480pt;}
.lsb_c00456{letter-spacing:-0.106240pt;}
.ls9_c00456{letter-spacing:-0.053120pt;}
.ls7_c00456{letter-spacing:0.000000pt;}
.lsd_c00456{letter-spacing:0.053120pt;}
.ls8_c00456{letter-spacing:0.149760pt;}
.ls4_c00456{letter-spacing:0.159360pt;}
.ls1_c00456{letter-spacing:0.265600pt;}
.ls6_c00456{letter-spacing:0.318720pt;}
.ls5_c00456{letter-spacing:0.690560pt;}
.ls0_c00456{letter-spacing:2.071680pt;}
.ls3_c00456{letter-spacing:2.709120pt;}
.ls2_c00456{letter-spacing:2.730368pt;}
.ws2_c00456{word-spacing:-12.270720pt;}
.ws0_c00456{word-spacing:-12.005120pt;}
.ws3_c00456{word-spacing:-11.952000pt;}
.ws1_c00456{word-spacing:-11.792640pt;}
.ws17_c00456{word-spacing:-1.434240pt;}
.ws18_c00456{word-spacing:-1.381120pt;}
.ws16_c00456{word-spacing:-1.062400pt;}
.ws15_c00456{word-spacing:-0.743680pt;}
.ws6_c00456{word-spacing:-0.449280pt;}
.wsf_c00456{word-spacing:-0.318720pt;}
.ws14_c00456{word-spacing:-0.265600pt;}
.ws4_c00456{word-spacing:-0.159360pt;}
.ws5_c00456{word-spacing:0.000000pt;}
.ws19_c00456{word-spacing:0.053120pt;}
.ws9_c00456{word-spacing:0.106240pt;}
.wse_c00456{word-spacing:0.212480pt;}
.wsd_c00456{word-spacing:0.371840pt;}
.ws12_c00456{word-spacing:1.168640pt;}
.ws10_c00456{word-spacing:1.487360pt;}
.ws11_c00456{word-spacing:1.699840pt;}
.ws8_c00456{word-spacing:1.752960pt;}
.ws7_c00456{word-spacing:2.124800pt;}
.wsc_c00456{word-spacing:2.443520pt;}
.wsb_c00456{word-spacing:2.762240pt;}
.wsa_c00456{word-spacing:2.921600pt;}
.ws13_c00456{word-spacing:4.674560pt;}
._0_c00456{margin-left:-1.094272pt;}
._2_c00456{width:0.977408pt;}
._3_c00456{width:1.976064pt;}
._4_c00456{width:38.703232pt;}
._1_c00456{width:96.145920pt;}
.fs1_c00456{font-size:48.000000pt;}
.fs0_c00456{font-size:53.120000pt;}
.fs2_c00456{font-size:74.880000pt;}
.y0_c00456{bottom:0.000000pt;}
.y3_c00456{bottom:63.360000pt;}
.y2_c00456{bottom:82.240000pt;}
.y14_c00456{bottom:226.706400pt;}
.y13_c00456{bottom:246.387360pt;}
.y12_c00456{bottom:262.389760pt;}
.y11_c00456{bottom:509.105600pt;}
.y10_c00456{bottom:528.627200pt;}
.yf_c00456{bottom:548.148800pt;}
.ye_c00456{bottom:567.670400pt;}
.yd_c00456{bottom:587.192000pt;}
.yc_c00456{bottom:606.713600pt;}
.yb_c00456{bottom:626.235200pt;}
.ya_c00456{bottom:645.756800pt;}
.y9_c00456{bottom:661.918560pt;}
.y8_c00456{bottom:905.115200pt;}
.y7_c00456{bottom:924.636800pt;}
.y6_c00456{bottom:944.158400pt;}
.y5_c00456{bottom:963.680000pt;}
.y4_c00456{bottom:991.360000pt;}
.y1_c00456{bottom:1034.240000pt;}
.h3_c00456{height:34.453125pt;}
.h2_c00456{height:36.935000pt;}
.h4_c00456{height:38.128125pt;}
.h5_c00456{height:52.065000pt;}
.h0_c00456{height:1122.560000pt;}
.h1_c00456{height:1122.666667pt;}
.w0_c00456{width:793.760000pt;}
.w1_c00456{width:794.000000pt;}
.x0_c00456{left:0.000000pt;}
.x1_c00456{left:75.520000pt;}
.x5_c00456{left:88.773440pt;}
.x3_c00456{left:393.440000pt;}
.x2_c00456{left:396.800000pt;}
.x4_c00456{left:567.504160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_79cc5188a5cc1e4d3d9ca7c1.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:0.873535;font-style:normal;font-weight:normal;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_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00457;src:url('chunks/assets/font_6f9d48c8a56f460098af7d70.woff2')format("woff");}.ff3_c00457{font-family:ff3_c00457;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00457{letter-spacing:-0.239040px;}
.ls8_c00457{letter-spacing:-0.119520px;}
.ls5_c00457{letter-spacing:-0.059760px;}
.ls4_c00457{letter-spacing:0.000000px;}
.ls9_c00457{letter-spacing:0.059760px;}
.ls2_c00457{letter-spacing:0.179280px;}
.ls7_c00457{letter-spacing:0.298800px;}
.ls3_c00457{letter-spacing:0.358560px;}
.ls1_c00457{letter-spacing:0.418320px;}
.ls0_c00457{letter-spacing:0.776880px;}
.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;}
}
.ws2_c00457{word-spacing:-13.565520px;}
.ws0_c00457{word-spacing:-13.505760px;}
.ws3_c00457{word-spacing:-13.446000px;}
.ws1_c00457{word-spacing:-13.266720px;}
.ws11_c00457{word-spacing:-2.330640px;}
.ws12_c00457{word-spacing:-2.270880px;}
.ws10_c00457{word-spacing:-1.912320px;}
.ws13_c00457{word-spacing:-0.478080px;}
.ws7_c00457{word-spacing:-0.358560px;}
.ws4_c00457{word-spacing:-0.179280px;}
.ws14_c00457{word-spacing:-0.119520px;}
.wsf_c00457{word-spacing:-0.059760px;}
.ws5_c00457{word-spacing:0.000000px;}
.ws9_c00457{word-spacing:0.059760px;}
.wse_c00457{word-spacing:0.119520px;}
.ws6_c00457{word-spacing:0.239040px;}
.ws8_c00457{word-spacing:0.418320px;}
.wsd_c00457{word-spacing:0.537840px;}
.wsb_c00457{word-spacing:0.597600px;}
.wsc_c00457{word-spacing:0.956160px;}
.wsa_c00457{word-spacing:1.852560px;}
._3_c00457{margin-left:-2.450160px;}
._0_c00457{margin-left:-1.284840px;}
._1_c00457{width:1.284840px;}
._2_c00457{width:43.594920px;}
.fc2_c00457{color:rgb(51,51,255);}
.fc1_c00457{color:rgb(0,0,0);}
.fc0_c00457{color:rgb(0,0,255);}
.fs1_c00457{font-size:54.000000px;}
.fs0_c00457{font-size:59.760000px;}
.y0_c00457{bottom:0.000000px;}
.y3_c00457{bottom:71.280000px;}
.y2_c00457{bottom:91.980000px;}
.y12_c00457{bottom:214.718940px;}
.y11_c00457{bottom:236.680740px;}
.y10_c00457{bottom:258.642540px;}
.yf_c00457{bottom:280.604340px;}
.ye_c00457{bottom:302.566140px;}
.yd_c00457{bottom:324.527940px;}
.yc_c00457{bottom:346.489740px;}
.yb_c00457{bottom:364.492440px;}
.ya_c00457{bottom:701.269920px;}
.y9_c00457{bottom:723.231720px;}
.y8_c00457{bottom:745.193520px;}
.y7_c00457{bottom:767.155320px;}
.y6_c00457{bottom:789.117120px;}
.y5_c00457{bottom:811.078920px;}
.y4_c00457{bottom:829.081620px;}
.y1_c00457{bottom:1163.520000px;}
.h3_c00457{height:35.991211px;}
.h2_c00457{height:41.551875px;}
.h4_c00457{height:42.894141px;}
.h0_c00457{height:1262.880000px;}
.h1_c00457{height:1263.000000px;}
.w0_c00457{width:892.980000px;}
.w1_c00457{width:893.250000px;}
.x0_c00457{left:0.000000px;}
.x1_c00457{left:84.960000px;}
.x5_c00457{left:99.896400px;}
.x3_c00457{left:442.620000px;}
.x2_c00457{left:446.400000px;}
.x4_c00457{left:595.620540px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls6_c00457{letter-spacing:-0.212480pt;}
.ls8_c00457{letter-spacing:-0.106240pt;}
.ls5_c00457{letter-spacing:-0.053120pt;}
.ls4_c00457{letter-spacing:0.000000pt;}
.ls9_c00457{letter-spacing:0.053120pt;}
.ls2_c00457{letter-spacing:0.159360pt;}
.ls7_c00457{letter-spacing:0.265600pt;}
.ls3_c00457{letter-spacing:0.318720pt;}
.ls1_c00457{letter-spacing:0.371840pt;}
.ls0_c00457{letter-spacing:0.690560pt;}
.ws2_c00457{word-spacing:-12.058240pt;}
.ws0_c00457{word-spacing:-12.005120pt;}
.ws3_c00457{word-spacing:-11.952000pt;}
.ws1_c00457{word-spacing:-11.792640pt;}
.ws11_c00457{word-spacing:-2.071680pt;}
.ws12_c00457{word-spacing:-2.018560pt;}
.ws10_c00457{word-spacing:-1.699840pt;}
.ws13_c00457{word-spacing:-0.424960pt;}
.ws7_c00457{word-spacing:-0.318720pt;}
.ws4_c00457{word-spacing:-0.159360pt;}
.ws14_c00457{word-spacing:-0.106240pt;}
.wsf_c00457{word-spacing:-0.053120pt;}
.ws5_c00457{word-spacing:0.000000pt;}
.ws9_c00457{word-spacing:0.053120pt;}
.wse_c00457{word-spacing:0.106240pt;}
.ws6_c00457{word-spacing:0.212480pt;}
.ws8_c00457{word-spacing:0.371840pt;}
.wsd_c00457{word-spacing:0.478080pt;}
.wsb_c00457{word-spacing:0.531200pt;}
.wsc_c00457{word-spacing:0.849920pt;}
.wsa_c00457{word-spacing:1.646720pt;}
._3_c00457{margin-left:-2.177920pt;}
._0_c00457{margin-left:-1.142080pt;}
._1_c00457{width:1.142080pt;}
._2_c00457{width:38.751040pt;}
.fs1_c00457{font-size:48.000000pt;}
.fs0_c00457{font-size:53.120000pt;}
.y0_c00457{bottom:0.000000pt;}
.y3_c00457{bottom:63.360000pt;}
.y2_c00457{bottom:81.760000pt;}
.y12_c00457{bottom:190.861280pt;}
.y11_c00457{bottom:210.382880pt;}
.y10_c00457{bottom:229.904480pt;}
.yf_c00457{bottom:249.426080pt;}
.ye_c00457{bottom:268.947680pt;}
.yd_c00457{bottom:288.469280pt;}
.yc_c00457{bottom:307.990880pt;}
.yb_c00457{bottom:323.993280pt;}
.ya_c00457{bottom:623.351040pt;}
.y9_c00457{bottom:642.872640pt;}
.y8_c00457{bottom:662.394240pt;}
.y7_c00457{bottom:681.915840pt;}
.y6_c00457{bottom:701.437440pt;}
.y5_c00457{bottom:720.959040pt;}
.y4_c00457{bottom:736.961440pt;}
.y1_c00457{bottom:1034.240000pt;}
.h3_c00457{height:31.992188pt;}
.h2_c00457{height:36.935000pt;}
.h4_c00457{height:38.128125pt;}
.h0_c00457{height:1122.560000pt;}
.h1_c00457{height:1122.666667pt;}
.w0_c00457{width:793.760000pt;}
.w1_c00457{width:794.000000pt;}
.x0_c00457{left:0.000000pt;}
.x1_c00457{left:75.520000pt;}
.x5_c00457{left:88.796800pt;}
.x3_c00457{left:393.440000pt;}
.x2_c00457{left:396.800000pt;}
.x4_c00457{left:529.440480pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d97b72504fb49643470ca4ff.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:0.873535;font-style:normal;font-weight:normal;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_3d051e93fa451e81b5e80b2a.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsb_c00458{letter-spacing:-0.421200px;}
.lsc_c00458{letter-spacing:-0.418320px;}
.ls9_c00458{letter-spacing:-0.298800px;}
.ls6_c00458{letter-spacing:-0.239040px;}
.ls7_c00458{letter-spacing:-0.059760px;}
.ls5_c00458{letter-spacing:0.000000px;}
.lsd_c00458{letter-spacing:0.059760px;}
.ls2_c00458{letter-spacing:0.084240px;}
.lsa_c00458{letter-spacing:0.168480px;}
.ls1_c00458{letter-spacing:0.179280px;}
.ls3_c00458{letter-spacing:0.185256px;}
.ls8_c00458{letter-spacing:0.298800px;}
.ls0_c00458{letter-spacing:0.322704px;}
.ls4_c00458{letter-spacing:0.358560px;}
.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;}
}
.ws4_c00458{word-spacing:-19.206720px;}
.ws3_c00458{word-spacing:-19.038240px;}
.ws5_c00458{word-spacing:-13.685040px;}
.ws0_c00458{word-spacing:-13.505760px;}
.ws6_c00458{word-spacing:-13.446000px;}
.ws1_c00458{word-spacing:-13.266720px;}
.ws2_c00458{word-spacing:-13.206960px;}
.ws1d_c00458{word-spacing:-0.836640px;}
.ws19_c00458{word-spacing:-0.717120px;}
.ws16_c00458{word-spacing:-0.505440px;}
.ws14_c00458{word-spacing:-0.478080px;}
.ws9_c00458{word-spacing:-0.358560px;}
.ws15_c00458{word-spacing:-0.298800px;}
.ws7_c00458{word-spacing:-0.179280px;}
.ws17_c00458{word-spacing:-0.168480px;}
.wse_c00458{word-spacing:-0.119520px;}
.ws1b_c00458{word-spacing:-0.059760px;}
.ws8_c00458{word-spacing:0.000000px;}
.wsb_c00458{word-spacing:0.059760px;}
.ws10_c00458{word-spacing:0.239040px;}
.ws1c_c00458{word-spacing:0.298800px;}
.wsa_c00458{word-spacing:0.418320px;}
.ws18_c00458{word-spacing:0.421200px;}
.ws11_c00458{word-spacing:0.597600px;}
.ws12_c00458{word-spacing:0.956160px;}
.wsf_c00458{word-spacing:2.031840px;}
.ws1a_c00458{word-spacing:4.541760px;}
.wsd_c00458{word-spacing:4.900320px;}
.wsc_c00458{word-spacing:5.258880px;}
.ws13_c00458{word-spacing:6.155280px;}
._0_c00458{margin-left:-1.231056px;}
._2_c00458{width:1.027872px;}
._3_c00458{width:2.073672px;}
._1_c00458{width:43.541136px;}
._4_c00458{width:108.164160px;}
.fc2_c00458{color:rgb(51,51,255);}
.fc1_c00458{color:rgb(0,0,0);}
.fc0_c00458{color:rgb(0,0,255);}
.fs1_c00458{font-size:54.000000px;}
.fs0_c00458{font-size:59.760000px;}
.fs2_c00458{font-size:84.240000px;}
.y0_c00458{bottom:0.000000px;}
.y3_c00458{bottom:71.280000px;}
.y2_c00458{bottom:92.520000px;}
.y18_c00458{bottom:163.250100px;}
.y17_c00458{bottom:185.211900px;}
.y16_c00458{bottom:203.393880px;}
.y15_c00458{bottom:516.954600px;}
.y14_c00458{bottom:538.916400px;}
.y13_c00458{bottom:560.878200px;}
.y12_c00458{bottom:582.840000px;}
.y11_c00458{bottom:613.980000px;}
.y10_c00458{bottom:641.494980px;}
.yf_c00458{bottom:663.456780px;}
.ye_c00458{bottom:685.418580px;}
.yd_c00458{bottom:707.380380px;}
.yc_c00458{bottom:729.342180px;}
.yb_c00458{bottom:751.303980px;}
.ya_c00458{bottom:773.445060px;}
.y9_c00458{bottom:795.406860px;}
.y8_c00458{bottom:817.368660px;}
.y7_c00458{bottom:839.330460px;}
.y6_c00458{bottom:861.292260px;}
.y5_c00458{bottom:883.254060px;}
.y4_c00458{bottom:901.256760px;}
.y1_c00458{bottom:1163.520000px;}
.h3_c00458{height:38.759766px;}
.h2_c00458{height:41.551875px;}
.h4_c00458{height:42.894141px;}
.h5_c00458{height:58.573125px;}
.h0_c00458{height:1262.880000px;}
.h1_c00458{height:1263.000000px;}
.w0_c00458{width:892.980000px;}
.w1_c00458{width:893.250000px;}
.x0_c00458{left:0.000000px;}
.x1_c00458{left:84.960000px;}
.x5_c00458{left:99.896400px;}
.x3_c00458{left:442.620000px;}
.x2_c00458{left:446.400000px;}
.x4_c00458{left:638.453520px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.lsb_c00458{letter-spacing:-0.374400pt;}
.lsc_c00458{letter-spacing:-0.371840pt;}
.ls9_c00458{letter-spacing:-0.265600pt;}
.ls6_c00458{letter-spacing:-0.212480pt;}
.ls7_c00458{letter-spacing:-0.053120pt;}
.ls5_c00458{letter-spacing:0.000000pt;}
.lsd_c00458{letter-spacing:0.053120pt;}
.ls2_c00458{letter-spacing:0.074880pt;}
.lsa_c00458{letter-spacing:0.149760pt;}
.ls1_c00458{letter-spacing:0.159360pt;}
.ls3_c00458{letter-spacing:0.164672pt;}
.ls8_c00458{letter-spacing:0.265600pt;}
.ls0_c00458{letter-spacing:0.286848pt;}
.ls4_c00458{letter-spacing:0.318720pt;}
.ws4_c00458{word-spacing:-17.072640pt;}
.ws3_c00458{word-spacing:-16.922880pt;}
.ws5_c00458{word-spacing:-12.164480pt;}
.ws0_c00458{word-spacing:-12.005120pt;}
.ws6_c00458{word-spacing:-11.952000pt;}
.ws1_c00458{word-spacing:-11.792640pt;}
.ws2_c00458{word-spacing:-11.739520pt;}
.ws1d_c00458{word-spacing:-0.743680pt;}
.ws19_c00458{word-spacing:-0.637440pt;}
.ws16_c00458{word-spacing:-0.449280pt;}
.ws14_c00458{word-spacing:-0.424960pt;}
.ws9_c00458{word-spacing:-0.318720pt;}
.ws15_c00458{word-spacing:-0.265600pt;}
.ws7_c00458{word-spacing:-0.159360pt;}
.ws17_c00458{word-spacing:-0.149760pt;}
.wse_c00458{word-spacing:-0.106240pt;}
.ws1b_c00458{word-spacing:-0.053120pt;}
.ws8_c00458{word-spacing:0.000000pt;}
.wsb_c00458{word-spacing:0.053120pt;}
.ws10_c00458{word-spacing:0.212480pt;}
.ws1c_c00458{word-spacing:0.265600pt;}
.wsa_c00458{word-spacing:0.371840pt;}
.ws18_c00458{word-spacing:0.374400pt;}
.ws11_c00458{word-spacing:0.531200pt;}
.ws12_c00458{word-spacing:0.849920pt;}
.wsf_c00458{word-spacing:1.806080pt;}
.ws1a_c00458{word-spacing:4.037120pt;}
.wsd_c00458{word-spacing:4.355840pt;}
.wsc_c00458{word-spacing:4.674560pt;}
.ws13_c00458{word-spacing:5.471360pt;}
._0_c00458{margin-left:-1.094272pt;}
._2_c00458{width:0.913664pt;}
._3_c00458{width:1.843264pt;}
._1_c00458{width:38.703232pt;}
._4_c00458{width:96.145920pt;}
.fs1_c00458{font-size:48.000000pt;}
.fs0_c00458{font-size:53.120000pt;}
.fs2_c00458{font-size:74.880000pt;}
.y0_c00458{bottom:0.000000pt;}
.y3_c00458{bottom:63.360000pt;}
.y2_c00458{bottom:82.240000pt;}
.y18_c00458{bottom:145.111200pt;}
.y17_c00458{bottom:164.632800pt;}
.y16_c00458{bottom:180.794560pt;}
.y15_c00458{bottom:459.515200pt;}
.y14_c00458{bottom:479.036800pt;}
.y13_c00458{bottom:498.558400pt;}
.y12_c00458{bottom:518.080000pt;}
.y11_c00458{bottom:545.760000pt;}
.y10_c00458{bottom:570.217760pt;}
.yf_c00458{bottom:589.739360pt;}
.ye_c00458{bottom:609.260960pt;}
.yd_c00458{bottom:628.782560pt;}
.yc_c00458{bottom:648.304160pt;}
.yb_c00458{bottom:667.825760pt;}
.ya_c00458{bottom:687.506720pt;}
.y9_c00458{bottom:707.028320pt;}
.y8_c00458{bottom:726.549920pt;}
.y7_c00458{bottom:746.071520pt;}
.y6_c00458{bottom:765.593120pt;}
.y5_c00458{bottom:785.114720pt;}
.y4_c00458{bottom:801.117120pt;}
.y1_c00458{bottom:1034.240000pt;}
.h3_c00458{height:34.453125pt;}
.h2_c00458{height:36.935000pt;}
.h4_c00458{height:38.128125pt;}
.h5_c00458{height:52.065000pt;}
.h0_c00458{height:1122.560000pt;}
.h1_c00458{height:1122.666667pt;}
.w0_c00458{width:793.760000pt;}
.w1_c00458{width:794.000000pt;}
.x0_c00458{left:0.000000pt;}
.x1_c00458{left:75.520000pt;}
.x5_c00458{left:88.796800pt;}
.x3_c00458{left:393.440000pt;}
.x2_c00458{left:396.800000pt;}
.x4_c00458{left:567.514240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eb5b459df718499787d56362.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:0.873535;font-style:normal;font-weight:normal;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_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00459;src:url('chunks/assets/font_99c3c037581940caf8c72f73.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00459{letter-spacing:-0.239040px;}
.ls9_c00459{letter-spacing:-0.119520px;}
.ls6_c00459{letter-spacing:-0.059760px;}
.ls5_c00459{letter-spacing:0.000000px;}
.ls0_c00459{letter-spacing:0.179280px;}
.ls7_c00459{letter-spacing:0.298800px;}
.ls3_c00459{letter-spacing:0.304776px;}
.ls4_c00459{letter-spacing:0.358560px;}
.ls1_c00459{letter-spacing:0.776880px;}
.ls2_c00459{letter-spacing:13.147200px;}
.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;}
}
.ws4_c00459{word-spacing:-13.810536px;}
.ws1_c00459{word-spacing:-13.804560px;}
.ws2_c00459{word-spacing:-13.685040px;}
.ws0_c00459{word-spacing:-13.505760px;}
.ws3_c00459{word-spacing:-13.446000px;}
.ws8_c00459{word-spacing:-0.358560px;}
.ws5_c00459{word-spacing:-0.179280px;}
.ws9_c00459{word-spacing:-0.119520px;}
.ws6_c00459{word-spacing:0.000000px;}
.wsb_c00459{word-spacing:0.059760px;}
.wsd_c00459{word-spacing:0.119520px;}
.ws7_c00459{word-spacing:0.239040px;}
.wsa_c00459{word-spacing:0.418320px;}
.wsc_c00459{word-spacing:1.314720px;}
._0_c00459{margin-left:-1.284840px;}
._1_c00459{width:1.284840px;}
._2_c00459{width:43.594920px;}
.fc1_c00459{color:rgb(0,0,0);}
.fc0_c00459{color:rgb(0,0,255);}
.fs1_c00459{font-size:54.000000px;}
.fs0_c00459{font-size:59.760000px;}
.y0_c00459{bottom:0.000000px;}
.y3_c00459{bottom:71.280000px;}
.y2_c00459{bottom:91.980000px;}
.ye_c00459{bottom:168.823260px;}
.yd_c00459{bottom:190.785060px;}
.yc_c00459{bottom:212.746860px;}
.yb_c00459{bottom:230.749560px;}
.ya_c00459{bottom:603.891000px;}
.y9_c00459{bottom:625.852800px;}
.y8_c00459{bottom:647.814600px;}
.y7_c00459{bottom:669.955680px;}
.y6_c00459{bottom:691.917480px;}
.y5_c00459{bottom:713.879280px;}
.y4_c00459{bottom:731.702700px;}
.y1_c00459{bottom:1163.520000px;}
.h3_c00459{height:35.991211px;}
.h2_c00459{height:41.551875px;}
.h4_c00459{height:42.894141px;}
.h0_c00459{height:1262.880000px;}
.h1_c00459{height:1263.000000px;}
.w0_c00459{width:892.980000px;}
.w1_c00459{width:893.250000px;}
.x0_c00459{left:0.000000px;}
.x1_c00459{left:84.960000px;}
.x5_c00459{left:99.896400px;}
.x3_c00459{left:442.620000px;}
.x2_c00459{left:446.400000px;}
.x4_c00459{left:595.620540px;}
.x6_c00459{left:638.438580px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls8_c00459{letter-spacing:-0.212480pt;}
.ls9_c00459{letter-spacing:-0.106240pt;}
.ls6_c00459{letter-spacing:-0.053120pt;}
.ls5_c00459{letter-spacing:0.000000pt;}
.ls0_c00459{letter-spacing:0.159360pt;}
.ls7_c00459{letter-spacing:0.265600pt;}
.ls3_c00459{letter-spacing:0.270912pt;}
.ls4_c00459{letter-spacing:0.318720pt;}
.ls1_c00459{letter-spacing:0.690560pt;}
.ls2_c00459{letter-spacing:11.686400pt;}
.ws4_c00459{word-spacing:-12.276032pt;}
.ws1_c00459{word-spacing:-12.270720pt;}
.ws2_c00459{word-spacing:-12.164480pt;}
.ws0_c00459{word-spacing:-12.005120pt;}
.ws3_c00459{word-spacing:-11.952000pt;}
.ws8_c00459{word-spacing:-0.318720pt;}
.ws5_c00459{word-spacing:-0.159360pt;}
.ws9_c00459{word-spacing:-0.106240pt;}
.ws6_c00459{word-spacing:0.000000pt;}
.wsb_c00459{word-spacing:0.053120pt;}
.wsd_c00459{word-spacing:0.106240pt;}
.ws7_c00459{word-spacing:0.212480pt;}
.wsa_c00459{word-spacing:0.371840pt;}
.wsc_c00459{word-spacing:1.168640pt;}
._0_c00459{margin-left:-1.142080pt;}
._1_c00459{width:1.142080pt;}
._2_c00459{width:38.751040pt;}
.fs1_c00459{font-size:48.000000pt;}
.fs0_c00459{font-size:53.120000pt;}
.y0_c00459{bottom:0.000000pt;}
.y3_c00459{bottom:63.360000pt;}
.y2_c00459{bottom:81.760000pt;}
.ye_c00459{bottom:150.065120pt;}
.yd_c00459{bottom:169.586720pt;}
.yc_c00459{bottom:189.108320pt;}
.yb_c00459{bottom:205.110720pt;}
.ya_c00459{bottom:536.792000pt;}
.y9_c00459{bottom:556.313600pt;}
.y8_c00459{bottom:575.835200pt;}
.y7_c00459{bottom:595.516160pt;}
.y6_c00459{bottom:615.037760pt;}
.y5_c00459{bottom:634.559360pt;}
.y4_c00459{bottom:650.402400pt;}
.y1_c00459{bottom:1034.240000pt;}
.h3_c00459{height:31.992188pt;}
.h2_c00459{height:36.935000pt;}
.h4_c00459{height:38.128125pt;}
.h0_c00459{height:1122.560000pt;}
.h1_c00459{height:1122.666667pt;}
.w0_c00459{width:793.760000pt;}
.w1_c00459{width:794.000000pt;}
.x0_c00459{left:0.000000pt;}
.x1_c00459{left:75.520000pt;}
.x5_c00459{left:88.796800pt;}
.x3_c00459{left:393.440000pt;}
.x2_c00459{left:396.800000pt;}
.x4_c00459{left:529.440480pt;}
.x6_c00459{left:567.500960pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c33c22c8513686b42e47cc2f.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:0.873535;font-style:normal;font-weight:normal;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_f3ee59a9c6db274daa07379a.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00460;src:url('chunks/assets/font_8f054e2c2bed2941d549c77d.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00460;src:url('chunks/assets/font_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff4_c00460{font-family:ff4_c00460;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00460{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00460{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00460{vertical-align:0.000000px;}
.ls21_c00460{letter-spacing:-1.013040px;}
.ls20_c00460{letter-spacing:-0.820080px;}
.ls1d_c00460{letter-spacing:-0.675360px;}
.ls1f_c00460{letter-spacing:-0.578880px;}
.ls1b_c00460{letter-spacing:-0.530640px;}
.ls22_c00460{letter-spacing:-0.434160px;}
.ls18_c00460{letter-spacing:-0.337680px;}
.ls14_c00460{letter-spacing:-0.336000px;}
.ls19_c00460{letter-spacing:-0.289440px;}
.ls15_c00460{letter-spacing:-0.288000px;}
.ls1c_c00460{letter-spacing:-0.241200px;}
.lsf_c00460{letter-spacing:-0.239040px;}
.ls12_c00460{letter-spacing:-0.216000px;}
.ls1e_c00460{letter-spacing:-0.192960px;}
.ls1a_c00460{letter-spacing:-0.144720px;}
.lsd_c00460{letter-spacing:-0.059760px;}
.lsc_c00460{letter-spacing:0.000000px;}
.ls4_c00460{letter-spacing:0.024120px;}
.ls13_c00460{letter-spacing:0.048000px;}
.ls17_c00460{letter-spacing:0.048240px;}
.ls10_c00460{letter-spacing:0.084240px;}
.ls9_c00460{letter-spacing:0.095760px;}
.ls16_c00460{letter-spacing:0.096000px;}
.ls3_c00460{letter-spacing:0.096480px;}
.ls11_c00460{letter-spacing:0.119520px;}
.ls0_c00460{letter-spacing:0.179280px;}
.ls2_c00460{letter-spacing:0.192960px;}
.lse_c00460{letter-spacing:0.298800px;}
.ls1_c00460{letter-spacing:0.337680px;}
.lsb_c00460{letter-spacing:0.358560px;}
.ls7_c00460{letter-spacing:0.366624px;}
.ls8_c00460{letter-spacing:4.196880px;}
.lsa_c00460{letter-spacing:5.940000px;}
.ls5_c00460{letter-spacing:25.084800px;}
.ls6_c00460{letter-spacing:45.992016px;}
.sc__c00460{text-shadow:none;}
.sc0_c00460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00460{-webkit-text-stroke:0px transparent;}
.sc0_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00460{word-spacing:-13.505760px;}
.wsc_c00460{word-spacing:-11.095200px;}
.ws3_c00460{word-spacing:-10.998240px;}
.ws7_c00460{word-spacing:-10.950480px;}
.ws1_c00460{word-spacing:-10.950240px;}
.ws8_c00460{word-spacing:-10.902240px;}
.ws4_c00460{word-spacing:-10.757520px;}
.ws6_c00460{word-spacing:-10.661040px;}
.ws9_c00460{word-spacing:-10.612800px;}
.ws2_c00460{word-spacing:-10.566240px;}
.wsa_c00460{word-spacing:-10.564560px;}
.wse_c00460{word-spacing:-10.468080px;}
.ws5_c00460{word-spacing:-10.371600px;}
.wsb_c00460{word-spacing:-10.226880px;}
.wsd_c00460{word-spacing:-10.082160px;}
.ws1c_c00460{word-spacing:-1.015920px;}
.ws25_c00460{word-spacing:-0.630000px;}
.ws31_c00460{word-spacing:-0.530640px;}
.ws15_c00460{word-spacing:-0.421200px;}
.ws32_c00460{word-spacing:-0.289440px;}
.ws3e_c00460{word-spacing:-0.192960px;}
.wsf_c00460{word-spacing:-0.179280px;}
.ws2e_c00460{word-spacing:-0.144720px;}
.ws12_c00460{word-spacing:-0.119520px;}
.ws1f_c00460{word-spacing:-0.114000px;}
.ws2f_c00460{word-spacing:-0.048240px;}
.ws1e_c00460{word-spacing:-0.012000px;}
.ws10_c00460{word-spacing:0.000000px;}
.ws33_c00460{word-spacing:0.048240px;}
.ws1b_c00460{word-spacing:0.059760px;}
.ws30_c00460{word-spacing:0.144720px;}
.ws22_c00460{word-spacing:0.192000px;}
.ws1d_c00460{word-spacing:0.216000px;}
.ws11_c00460{word-spacing:0.239040px;}
.ws21_c00460{word-spacing:0.240000px;}
.ws2d_c00460{word-spacing:0.241200px;}
.ws14_c00460{word-spacing:0.418320px;}
.ws24_c00460{word-spacing:0.510000px;}
.ws23_c00460{word-spacing:0.564000px;}
.ws20_c00460{word-spacing:0.570000px;}
.ws34_c00460{word-spacing:0.578880px;}
.ws17_c00460{word-spacing:0.597600px;}
.ws36_c00460{word-spacing:0.771840px;}
.ws35_c00460{word-spacing:0.964800px;}
.ws16_c00460{word-spacing:1.314720px;}
.ws1a_c00460{word-spacing:1.673280px;}
.ws13_c00460{word-spacing:1.852560px;}
.ws18_c00460{word-spacing:2.868480px;}
.ws19_c00460{word-spacing:3.107520px;}
.ws3c_c00460{word-spacing:3.280320px;}
.ws3d_c00460{word-spacing:3.666240px;}
.ws43_c00460{word-spacing:3.714480px;}
.ws41_c00460{word-spacing:3.762720px;}
.ws3f_c00460{word-spacing:4.003920px;}
.ws42_c00460{word-spacing:4.148640px;}
.ws44_c00460{word-spacing:4.438080px;}
.ws2a_c00460{word-spacing:4.727520px;}
.ws3b_c00460{word-spacing:4.775760px;}
.ws2b_c00460{word-spacing:5.161680px;}
.ws40_c00460{word-spacing:5.209920px;}
.ws2c_c00460{word-spacing:5.258160px;}
.ws37_c00460{word-spacing:45.779760px;}
.ws38_c00460{word-spacing:45.924480px;}
.ws39_c00460{word-spacing:46.262160px;}
.ws3a_c00460{word-spacing:46.889280px;}
.ws26_c00460{word-spacing:85.384800px;}
.ws27_c00460{word-spacing:85.529520px;}
.ws29_c00460{word-spacing:85.867200px;}
.ws28_c00460{word-spacing:85.915440px;}
._0_c00460{margin-left:-1.231056px;}
._1_c00460{width:1.081656px;}
._4_c00460{width:3.846312px;}
._3_c00460{width:5.445720px;}
._2_c00460{width:108.164160px;}
.fc2_c00460{color:rgb(51,51,255);}
.fc1_c00460{color:rgb(0,0,0);}
.fc0_c00460{color:rgb(0,0,255);}
.fs3_c00460{font-size:48.240000px;}
.fs0_c00460{font-size:59.760000px;}
.fs2_c00460{font-size:72.000000px;}
.fs1_c00460{font-size:84.240000px;}
.y0_c00460{bottom:0.000000px;}
.y2_c00460{bottom:71.280000px;}
.y1f_c00460{bottom:465.116220px;}
.y1e_c00460{bottom:482.760000px;}
.y1d_c00460{bottom:504.897120px;}
.y1c_c00460{bottom:522.360000px;}
.y1b_c00460{bottom:544.491180px;}
.y1a_c00460{bottom:561.954060px;}
.y19_c00460{bottom:579.597840px;}
.y18_c00460{bottom:601.740000px;}
.y17_c00460{bottom:623.696220px;}
.y16_c00460{bottom:641.340000px;}
.y15_c00460{bottom:663.477120px;}
.y14_c00460{bottom:680.940000px;}
.y13_c00460{bottom:703.080000px;}
.y12_c00460{bottom:729.900000px;}
.y11_c00460{bottom:776.506320px;}
.y10_c00460{bottom:798.468120px;}
.yf_c00460{bottom:820.429920px;}
.ye_c00460{bottom:842.391720px;}
.yd_c00460{bottom:864.353520px;}
.yc_c00460{bottom:886.315320px;}
.yb_c00460{bottom:908.277120px;}
.ya_c00460{bottom:930.418200px;}
.y9_c00460{bottom:952.380000px;}
.y8_c00460{bottom:983.520000px;}
.y7_c00460{bottom:1033.012620px;}
.y6_c00460{bottom:1054.974420px;}
.y5_c00460{bottom:1076.936220px;}
.y4_c00460{bottom:1098.898020px;}
.y3_c00460{bottom:1120.859820px;}
.y1_c00460{bottom:1163.520000px;}
.h6_c00460{height:34.625391px;}
.h7_c00460{height:34.636911px;}
.h8_c00460{height:34.640511px;}
.h9_c00460{height:34.660671px;}
.ha_c00460{height:41.522695px;}
.h2_c00460{height:41.551875px;}
.h3_c00460{height:42.894141px;}
.h5_c00460{height:50.062500px;}
.h4_c00460{height:58.573125px;}
.h0_c00460{height:1262.880000px;}
.h1_c00460{height:1263.000000px;}
.w0_c00460{width:892.980000px;}
.w1_c00460{width:893.250000px;}
.x0_c00460{left:0.000000px;}
.x1_c00460{left:84.960000px;}
.x3_c00460{left:99.896400px;}
.x4_c00460{left:106.197660px;}
.x2_c00460{left:442.620000px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls21_c00460{letter-spacing:-0.900480pt;}
.ls20_c00460{letter-spacing:-0.728960pt;}
.ls1d_c00460{letter-spacing:-0.600320pt;}
.ls1f_c00460{letter-spacing:-0.514560pt;}
.ls1b_c00460{letter-spacing:-0.471680pt;}
.ls22_c00460{letter-spacing:-0.385920pt;}
.ls18_c00460{letter-spacing:-0.300160pt;}
.ls14_c00460{letter-spacing:-0.298667pt;}
.ls19_c00460{letter-spacing:-0.257280pt;}
.ls15_c00460{letter-spacing:-0.256000pt;}
.ls1c_c00460{letter-spacing:-0.214400pt;}
.lsf_c00460{letter-spacing:-0.212480pt;}
.ls12_c00460{letter-spacing:-0.192000pt;}
.ls1e_c00460{letter-spacing:-0.171520pt;}
.ls1a_c00460{letter-spacing:-0.128640pt;}
.lsd_c00460{letter-spacing:-0.053120pt;}
.lsc_c00460{letter-spacing:0.000000pt;}
.ls4_c00460{letter-spacing:0.021440pt;}
.ls13_c00460{letter-spacing:0.042667pt;}
.ls17_c00460{letter-spacing:0.042880pt;}
.ls10_c00460{letter-spacing:0.074880pt;}
.ls9_c00460{letter-spacing:0.085120pt;}
.ls16_c00460{letter-spacing:0.085333pt;}
.ls3_c00460{letter-spacing:0.085760pt;}
.ls11_c00460{letter-spacing:0.106240pt;}
.ls0_c00460{letter-spacing:0.159360pt;}
.ls2_c00460{letter-spacing:0.171520pt;}
.lse_c00460{letter-spacing:0.265600pt;}
.ls1_c00460{letter-spacing:0.300160pt;}
.lsb_c00460{letter-spacing:0.318720pt;}
.ls7_c00460{letter-spacing:0.325888pt;}
.ls8_c00460{letter-spacing:3.730560pt;}
.lsa_c00460{letter-spacing:5.280000pt;}
.ls5_c00460{letter-spacing:22.297600pt;}
.ls6_c00460{letter-spacing:40.881792pt;}
.ws0_c00460{word-spacing:-12.005120pt;}
.wsc_c00460{word-spacing:-9.862400pt;}
.ws3_c00460{word-spacing:-9.776213pt;}
.ws7_c00460{word-spacing:-9.733760pt;}
.ws1_c00460{word-spacing:-9.733547pt;}
.ws8_c00460{word-spacing:-9.690880pt;}
.ws4_c00460{word-spacing:-9.562240pt;}
.ws6_c00460{word-spacing:-9.476480pt;}
.ws9_c00460{word-spacing:-9.433600pt;}
.ws2_c00460{word-spacing:-9.392213pt;}
.wsa_c00460{word-spacing:-9.390720pt;}
.wse_c00460{word-spacing:-9.304960pt;}
.ws5_c00460{word-spacing:-9.219200pt;}
.wsb_c00460{word-spacing:-9.090560pt;}
.wsd_c00460{word-spacing:-8.961920pt;}
.ws1c_c00460{word-spacing:-0.903040pt;}
.ws25_c00460{word-spacing:-0.560000pt;}
.ws31_c00460{word-spacing:-0.471680pt;}
.ws15_c00460{word-spacing:-0.374400pt;}
.ws32_c00460{word-spacing:-0.257280pt;}
.ws3e_c00460{word-spacing:-0.171520pt;}
.wsf_c00460{word-spacing:-0.159360pt;}
.ws2e_c00460{word-spacing:-0.128640pt;}
.ws12_c00460{word-spacing:-0.106240pt;}
.ws1f_c00460{word-spacing:-0.101333pt;}
.ws2f_c00460{word-spacing:-0.042880pt;}
.ws1e_c00460{word-spacing:-0.010667pt;}
.ws10_c00460{word-spacing:0.000000pt;}
.ws33_c00460{word-spacing:0.042880pt;}
.ws1b_c00460{word-spacing:0.053120pt;}
.ws30_c00460{word-spacing:0.128640pt;}
.ws22_c00460{word-spacing:0.170667pt;}
.ws1d_c00460{word-spacing:0.192000pt;}
.ws11_c00460{word-spacing:0.212480pt;}
.ws21_c00460{word-spacing:0.213333pt;}
.ws2d_c00460{word-spacing:0.214400pt;}
.ws14_c00460{word-spacing:0.371840pt;}
.ws24_c00460{word-spacing:0.453333pt;}
.ws23_c00460{word-spacing:0.501333pt;}
.ws20_c00460{word-spacing:0.506667pt;}
.ws34_c00460{word-spacing:0.514560pt;}
.ws17_c00460{word-spacing:0.531200pt;}
.ws36_c00460{word-spacing:0.686080pt;}
.ws35_c00460{word-spacing:0.857600pt;}
.ws16_c00460{word-spacing:1.168640pt;}
.ws1a_c00460{word-spacing:1.487360pt;}
.ws13_c00460{word-spacing:1.646720pt;}
.ws18_c00460{word-spacing:2.549760pt;}
.ws19_c00460{word-spacing:2.762240pt;}
.ws3c_c00460{word-spacing:2.915840pt;}
.ws3d_c00460{word-spacing:3.258880pt;}
.ws43_c00460{word-spacing:3.301760pt;}
.ws41_c00460{word-spacing:3.344640pt;}
.ws3f_c00460{word-spacing:3.559040pt;}
.ws42_c00460{word-spacing:3.687680pt;}
.ws44_c00460{word-spacing:3.944960pt;}
.ws2a_c00460{word-spacing:4.202240pt;}
.ws3b_c00460{word-spacing:4.245120pt;}
.ws2b_c00460{word-spacing:4.588160pt;}
.ws40_c00460{word-spacing:4.631040pt;}
.ws2c_c00460{word-spacing:4.673920pt;}
.ws37_c00460{word-spacing:40.693120pt;}
.ws38_c00460{word-spacing:40.821760pt;}
.ws39_c00460{word-spacing:41.121920pt;}
.ws3a_c00460{word-spacing:41.679360pt;}
.ws26_c00460{word-spacing:75.897600pt;}
.ws27_c00460{word-spacing:76.026240pt;}
.ws29_c00460{word-spacing:76.326400pt;}
.ws28_c00460{word-spacing:76.369280pt;}
._0_c00460{margin-left:-1.094272pt;}
._1_c00460{width:0.961472pt;}
._4_c00460{width:3.418944pt;}
._3_c00460{width:4.840640pt;}
._2_c00460{width:96.145920pt;}
.fs3_c00460{font-size:42.880000pt;}
.fs0_c00460{font-size:53.120000pt;}
.fs2_c00460{font-size:64.000000pt;}
.fs1_c00460{font-size:74.880000pt;}
.y0_c00460{bottom:0.000000pt;}
.y2_c00460{bottom:63.360000pt;}
.y1f_c00460{bottom:413.436640pt;}
.y1e_c00460{bottom:429.120000pt;}
.y1d_c00460{bottom:448.797440pt;}
.y1c_c00460{bottom:464.320000pt;}
.y1b_c00460{bottom:483.992160pt;}
.y1a_c00460{bottom:499.514720pt;}
.y19_c00460{bottom:515.198080pt;}
.y18_c00460{bottom:534.880000pt;}
.y17_c00460{bottom:554.396640pt;}
.y16_c00460{bottom:570.080000pt;}
.y15_c00460{bottom:589.757440pt;}
.y14_c00460{bottom:605.280000pt;}
.y13_c00460{bottom:624.960000pt;}
.y12_c00460{bottom:648.800000pt;}
.y11_c00460{bottom:690.227840pt;}
.y10_c00460{bottom:709.749440pt;}
.yf_c00460{bottom:729.271040pt;}
.ye_c00460{bottom:748.792640pt;}
.yd_c00460{bottom:768.314240pt;}
.yc_c00460{bottom:787.835840pt;}
.yb_c00460{bottom:807.357440pt;}
.ya_c00460{bottom:827.038400pt;}
.y9_c00460{bottom:846.560000pt;}
.y8_c00460{bottom:874.240000pt;}
.y7_c00460{bottom:918.233440pt;}
.y6_c00460{bottom:937.755040pt;}
.y5_c00460{bottom:957.276640pt;}
.y4_c00460{bottom:976.798240pt;}
.y3_c00460{bottom:996.319840pt;}
.y1_c00460{bottom:1034.240000pt;}
.h6_c00460{height:30.778125pt;}
.h7_c00460{height:30.788365pt;}
.h8_c00460{height:30.791565pt;}
.h9_c00460{height:30.809485pt;}
.ha_c00460{height:36.909063pt;}
.h2_c00460{height:36.935000pt;}
.h3_c00460{height:38.128125pt;}
.h5_c00460{height:44.500000pt;}
.h4_c00460{height:52.065000pt;}
.h0_c00460{height:1122.560000pt;}
.h1_c00460{height:1122.666667pt;}
.w0_c00460{width:793.760000pt;}
.w1_c00460{width:794.000000pt;}
.x0_c00460{left:0.000000pt;}
.x1_c00460{left:75.520000pt;}
.x3_c00460{left:88.796800pt;}
.x4_c00460{left:94.397920pt;}
.x2_c00460{left:393.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:0.896000;font-style:normal;font-weight:normal;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_4d0aead6329a58bc90abf841.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:0.938965;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.ls0_c00461{letter-spacing:0.000000px;}
.ls1_c00461{letter-spacing:0.136640px;}
.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:-0.409919px;}
.ws0_c00461{word-spacing:-0.273280px;}
.ws3_c00461{word-spacing:-0.198749px;}
.ws2_c00461{word-spacing:-0.186327px;}
.ws4_c00461{word-spacing:0.000000px;}
._4_c00461{margin-left:-12.449128px;}
._2_c00461{margin-left:-4.645753px;}
._0_c00461{margin-left:-3.033404px;}
._3_c00461{margin-left:-1.093118px;}
._1_c00461{width:1.585022px;}
.fc1_c00461{color:rgb(64,64,64);}
.fc0_c00461{color:rgb(0,0,144);}
.fs3_c00461{font-size:111.796200px;}
.fs1_c00461{font-size:186.327000px;}
.fs2_c00461{font-size:198.748800px;}
.fs0_c00461{font-size:273.279600px;}
.y0_c00461{bottom:0.000000px;}
.y5_c00461{bottom:258.366600px;}
.y4_c00461{bottom:320.629800px;}
.y3_c00461{bottom:489.856500px;}
.y2_c00461{bottom:631.123571px;}
.y1_c00461{bottom:713.449050px;}
.h4_c00461{height:81.445279px;}
.h2_c00461{height:133.782786px;}
.h3_c00461{height:142.701638px;}
.h1_c00461{height:196.214753px;}
.h0_c00461{height:892.500000px;}
.w0_c00461{width:1263.000000px;}
.x0_c00461{left:0.000000px;}
.x1_c00461{left:245.789850px;}
.x3_c00461{left:305.419350px;}
.x2_c00461{left:368.884470px;}
.x4_c00461{left:387.628200px;}
.x5_c00461{left:463.195050px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls0_c00461{letter-spacing:0.000000pt;}
.ls1_c00461{letter-spacing:0.121458pt;}
.ws1_c00461{word-spacing:-0.364373pt;}
.ws0_c00461{word-spacing:-0.242915pt;}
.ws3_c00461{word-spacing:-0.176666pt;}
.ws2_c00461{word-spacing:-0.165624pt;}
.ws4_c00461{word-spacing:0.000000pt;}
._4_c00461{margin-left:-11.065892pt;}
._2_c00461{margin-left:-4.129558pt;}
._0_c00461{margin-left:-2.696359pt;}
._3_c00461{margin-left:-0.971661pt;}
._1_c00461{width:1.408908pt;}
.fs3_c00461{font-size:99.374400pt;}
.fs1_c00461{font-size:165.624000pt;}
.fs2_c00461{font-size:176.665600pt;}
.fs0_c00461{font-size:242.915200pt;}
.y0_c00461{bottom:0.000000pt;}
.y5_c00461{bottom:229.659200pt;}
.y4_c00461{bottom:285.004267pt;}
.y3_c00461{bottom:435.428000pt;}
.y2_c00461{bottom:560.998729pt;}
.y1_c00461{bottom:634.176933pt;}
.h4_c00461{height:72.395803pt;}
.h2_c00461{height:118.918032pt;}
.h3_c00461{height:126.845901pt;}
.h1_c00461{height:174.413114pt;}
.h0_c00461{height:793.333333pt;}
.w0_c00461{width:1122.666667pt;}
.x0_c00461{left:0.000000pt;}
.x1_c00461{left:218.479867pt;}
.x3_c00461{left:271.483867pt;}
.x2_c00461{left:327.897307pt;}
.x4_c00461{left:344.558400pt;}
.x5_c00461{left:411.728933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.ls0_c00462{letter-spacing:0.000000px;}
.sc__c00462{text-shadow:none;}
.sc0_c00462{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00462{-webkit-text-stroke:0px transparent;}
.sc0_c00462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00462{word-spacing:-0.273280px;}
._0_c00462{margin-left:-3.033404px;}
.fc0_c00462{color:rgb(0,0,0);}
.fs0_c00462{font-size:273.279600px;}
.y0_c00462{bottom:0.000000px;}
.y1_c00462{bottom:734.721600px;}
.h1_c00462{height:196.214753px;}
.h0_c00462{height:892.500000px;}
.w0_c00462{width:1263.000000px;}
.x0_c00462{left:0.000000px;}
.x1_c00462{left:410.894550px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls0_c00462{letter-spacing:0.000000pt;}
.ws0_c00462{word-spacing:-0.242915pt;}
._0_c00462{margin-left:-2.696359pt;}
.fs0_c00462{font-size:242.915200pt;}
.y0_c00462{bottom:0.000000pt;}
.y1_c00462{bottom:653.085867pt;}
.h1_c00462{height:174.413114pt;}
.h0_c00462{height:793.333333pt;}
.w0_c00462{width:1122.666667pt;}
.x0_c00462{left:0.000000pt;}
.x1_c00462{left:365.239600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.v1_c00463{vertical-align:81.984000px;}
.ls1_c00463{letter-spacing:-2.022269px;}
.ls0_c00463{letter-spacing:-0.054656px;}
.ls2_c00463{letter-spacing:0.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;}
}
.ws2_c00463{word-spacing:-0.273280px;}
.ws0_c00463{word-spacing:-0.218624px;}
.ws1_c00463{word-spacing:1.840083px;}
._1_c00463{margin-left:-4.509113px;}
._0_c00463{width:2.307190px;}
.fc0_c00463{color:rgb(0,0,0);}
.fs1_c00463{font-size:182.186400px;}
.fs0_c00463{font-size:273.279600px;}
.y0_c00463{bottom:0.000000px;}
.y1_c00463{bottom:734.721600px;}
.h1_c00463{height:212.793835px;}
.h0_c00463{height:892.500000px;}
.w0_c00463{width:1263.000000px;}
.x0_c00463{left:0.000000px;}
.x1_c00463{left:258.431100px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.v1_c00463{vertical-align:72.874667pt;}
.ls1_c00463{letter-spacing:-1.797572pt;}
.ls0_c00463{letter-spacing:-0.048583pt;}
.ls2_c00463{letter-spacing:0.000000pt;}
.ws2_c00463{word-spacing:-0.242915pt;}
.ws0_c00463{word-spacing:-0.194332pt;}
.ws1_c00463{word-spacing:1.635629pt;}
._1_c00463{margin-left:-4.008101pt;}
._0_c00463{width:2.050836pt;}
.fs1_c00463{font-size:161.943467pt;}
.fs0_c00463{font-size:242.915200pt;}
.y0_c00463{bottom:0.000000pt;}
.y1_c00463{bottom:653.085867pt;}
.h1_c00463{height:189.150076pt;}
.h0_c00463{height:793.333333pt;}
.w0_c00463{width:1122.666667pt;}
.x0_c00463{left:0.000000pt;}
.x1_c00463{left:229.716533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.ls0_c00464{letter-spacing:0.000000px;}
.sc__c00464{text-shadow:none;}
.sc0_c00464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00464{-webkit-text-stroke:0px transparent;}
.sc0_c00464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00464{word-spacing:-0.273280px;}
._2_c00464{margin-left:-7.050614px;}
._1_c00464{margin-left:-4.509113px;}
._0_c00464{margin-left:-3.033404px;}
.fc0_c00464{color:rgb(0,0,0);}
.fs0_c00464{font-size:273.279600px;}
.y0_c00464{bottom:0.000000px;}
.y1_c00464{bottom:734.721600px;}
.h1_c00464{height:196.214753px;}
.h0_c00464{height:892.500000px;}
.w0_c00464{width:1263.000000px;}
.x0_c00464{left:0.000000px;}
.x1_c00464{left:163.437450px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls0_c00464{letter-spacing:0.000000pt;}
.ws0_c00464{word-spacing:-0.242915pt;}
._2_c00464{margin-left:-6.267212pt;}
._1_c00464{margin-left:-4.008101pt;}
._0_c00464{margin-left:-2.696359pt;}
.fs0_c00464{font-size:242.915200pt;}
.y0_c00464{bottom:0.000000pt;}
.y1_c00464{bottom:653.085867pt;}
.h1_c00464{height:174.413114pt;}
.h0_c00464{height:793.333333pt;}
.w0_c00464{width:1122.666667pt;}
.x0_c00464{left:0.000000pt;}
.x1_c00464{left:145.277733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.ls0_c00465{letter-spacing:0.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:-0.248436px;}
._2_c00465{margin-left:-6.409649px;}
._1_c00465{margin-left:-4.099194px;}
._0_c00465{margin-left:-2.757640px;}
.fc0_c00465{color:rgb(0,0,0);}
.fs0_c00465{font-size:248.436000px;}
.y0_c00465{bottom:0.000000px;}
.y1_c00465{bottom:737.205750px;}
.h1_c00465{height:178.377048px;}
.h0_c00465{height:892.500000px;}
.w0_c00465{width:1263.000000px;}
.x0_c00465{left:0.000000px;}
.x1_c00465{left:154.016400px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls0_c00465{letter-spacing:0.000000pt;}
.ws0_c00465{word-spacing:-0.220832pt;}
._2_c00465{margin-left:-5.697466pt;}
._1_c00465{margin-left:-3.643728pt;}
._0_c00465{margin-left:-2.451235pt;}
.fs0_c00465{font-size:220.832000pt;}
.y0_c00465{bottom:0.000000pt;}
.y1_c00465{bottom:655.294000pt;}
.h1_c00465{height:158.557376pt;}
.h0_c00465{height:793.333333pt;}
.w0_c00465{width:1122.666667pt;}
.x0_c00465{left:0.000000pt;}
.x1_c00465{left:136.903467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00466{vertical-align:0.000000px;}
.v1_c00466{vertical-align:81.984000px;}
.ls2_c00466{letter-spacing:-2.022269px;}
.ls1_c00466{letter-spacing:-0.054656px;}
.ls3_c00466{letter-spacing:0.000000px;}
.ls0_c00466{letter-spacing:0.163968px;}
.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;}
}
.ws2_c00466{word-spacing:-0.437247px;}
.ws0_c00466{word-spacing:-0.218624px;}
.ws3_c00466{word-spacing:-0.198749px;}
.ws4_c00466{word-spacing:0.000000px;}
.ws1_c00466{word-spacing:1.840083px;}
._1_c00466{margin-left:-4.099194px;}
._3_c00466{margin-left:-2.757640px;}
._2_c00466{margin-left:-1.093118px;}
._0_c00466{width:2.307190px;}
.fc0_c00466{color:rgb(0,0,0);}
.fs1_c00466{font-size:182.186400px;}
.fs2_c00466{font-size:198.748800px;}
.fs0_c00466{font-size:273.279600px;}
.y0_c00466{bottom:0.000000px;}
.y2_c00466{bottom:88.204800px;}
.y1_c00466{bottom:734.721600px;}
.h2_c00466{height:142.701638px;}
.h1_c00466{height:212.793835px;}
.h0_c00466{height:892.500000px;}
.w0_c00466{width:1263.000000px;}
.x0_c00466{left:0.000000px;}
.x2_c00466{left:139.858950px;}
.x1_c00466{left:226.994550px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.v1_c00466{vertical-align:72.874667pt;}
.ls2_c00466{letter-spacing:-1.797572pt;}
.ls1_c00466{letter-spacing:-0.048583pt;}
.ls3_c00466{letter-spacing:0.000000pt;}
.ls0_c00466{letter-spacing:0.145749pt;}
.ws2_c00466{word-spacing:-0.388664pt;}
.ws0_c00466{word-spacing:-0.194332pt;}
.ws3_c00466{word-spacing:-0.176666pt;}
.ws4_c00466{word-spacing:0.000000pt;}
.ws1_c00466{word-spacing:1.635629pt;}
._1_c00466{margin-left:-3.643728pt;}
._3_c00466{margin-left:-2.451235pt;}
._2_c00466{margin-left:-0.971661pt;}
._0_c00466{width:2.050836pt;}
.fs1_c00466{font-size:161.943467pt;}
.fs2_c00466{font-size:176.665600pt;}
.fs0_c00466{font-size:242.915200pt;}
.y0_c00466{bottom:0.000000pt;}
.y2_c00466{bottom:78.404267pt;}
.y1_c00466{bottom:653.085867pt;}
.h2_c00466{height:126.845901pt;}
.h1_c00466{height:189.150076pt;}
.h0_c00466{height:793.333333pt;}
.w0_c00466{width:1122.666667pt;}
.x0_c00466{left:0.000000pt;}
.x2_c00466{left:124.319067pt;}
.x1_c00466{left:201.772933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.v1_c00467{vertical-align:81.984000px;}
.ls1_c00467{letter-spacing:-2.022269px;}
.ls0_c00467{letter-spacing:0.000000px;}
.sc__c00467{text-shadow:none;}
.sc0_c00467{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00467{-webkit-text-stroke:0px transparent;}
.sc0_c00467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00467{word-spacing:-0.273280px;}
.ws1_c00467{word-spacing:1.840083px;}
._3_c00467{margin-left:-5.711544px;}
._2_c00467{margin-left:-4.099194px;}
._1_c00467{margin-left:-1.585022px;}
._0_c00467{width:1.841859px;}
.fc0_c00467{color:rgb(0,0,0);}
.fs1_c00467{font-size:182.186400px;}
.fs0_c00467{font-size:273.279600px;}
.y0_c00467{bottom:0.000000px;}
.y1_c00467{bottom:734.721600px;}
.h1_c00467{height:212.793835px;}
.h0_c00467{height:892.500000px;}
.w0_c00467{width:1263.000000px;}
.x0_c00467{left:0.000000px;}
.x1_c00467{left:209.066400px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.v1_c00467{vertical-align:72.874667pt;}
.ls1_c00467{letter-spacing:-1.797572pt;}
.ls0_c00467{letter-spacing:0.000000pt;}
.ws0_c00467{word-spacing:-0.242915pt;}
.ws1_c00467{word-spacing:1.635629pt;}
._3_c00467{margin-left:-5.076928pt;}
._2_c00467{margin-left:-3.643728pt;}
._1_c00467{margin-left:-1.408908pt;}
._0_c00467{width:1.637208pt;}
.fs1_c00467{font-size:161.943467pt;}
.fs0_c00467{font-size:242.915200pt;}
.y0_c00467{bottom:0.000000pt;}
.y1_c00467{bottom:653.085867pt;}
.h1_c00467{height:189.150076pt;}
.h0_c00467{height:793.333333pt;}
.w0_c00467{width:1122.666667pt;}
.x0_c00467{left:0.000000pt;}
.x1_c00467{left:185.836800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.v1_c00468{vertical-align:81.984000px;}
.ls1_c00468{letter-spacing:-2.022269px;}
.ls0_c00468{letter-spacing:-0.054656px;}
.ls2_c00468{letter-spacing:0.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:-0.273280px;}
.ws0_c00468{word-spacing:-0.218624px;}
.ws1_c00468{word-spacing:1.840083px;}
._1_c00468{margin-left:-4.782393px;}
._2_c00468{margin-left:-2.432188px;}
._0_c00468{width:2.307790px;}
.fc0_c00468{color:rgb(0,0,0);}
.fs1_c00468{font-size:182.186400px;}
.fs0_c00468{font-size:273.279600px;}
.y0_c00468{bottom:0.000000px;}
.y1_c00468{bottom:734.721600px;}
.h1_c00468{height:212.793835px;}
.h0_c00468{height:892.500000px;}
.w0_c00468{width:1263.000000px;}
.x0_c00468{left:0.000000px;}
.x1_c00468{left:192.322500px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.v1_c00468{vertical-align:72.874667pt;}
.ls1_c00468{letter-spacing:-1.797572pt;}
.ls0_c00468{letter-spacing:-0.048583pt;}
.ls2_c00468{letter-spacing:0.000000pt;}
.ws2_c00468{word-spacing:-0.242915pt;}
.ws0_c00468{word-spacing:-0.194332pt;}
.ws1_c00468{word-spacing:1.635629pt;}
._1_c00468{margin-left:-4.251016pt;}
._2_c00468{margin-left:-2.161945pt;}
._0_c00468{width:2.051369pt;}
.fs1_c00468{font-size:161.943467pt;}
.fs0_c00468{font-size:242.915200pt;}
.y0_c00468{bottom:0.000000pt;}
.y1_c00468{bottom:653.085867pt;}
.h1_c00468{height:189.150076pt;}
.h0_c00468{height:793.333333pt;}
.w0_c00468{width:1122.666667pt;}
.x0_c00468{left:0.000000pt;}
.x1_c00468{left:170.953333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.ls0_c00469{letter-spacing:0.000000px;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00469{word-spacing:0.000000px;}
.fc0_c00469{color:rgb(0,0,0);}
.fs0_c00469{font-size:273.279600px;}
.y0_c00469{bottom:0.000000px;}
.y1_c00469{bottom:734.721600px;}
.h1_c00469{height:196.214753px;}
.h0_c00469{height:892.500000px;}
.w0_c00469{width:1263.000000px;}
.x0_c00469{left:0.000000px;}
.x1_c00469{left:309.580200px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls0_c00469{letter-spacing:0.000000pt;}
.ws0_c00469{word-spacing:0.000000pt;}
.fs0_c00469{font-size:242.915200pt;}
.y0_c00469{bottom:0.000000pt;}
.y1_c00469{bottom:653.085867pt;}
.h1_c00469{height:174.413114pt;}
.h0_c00469{height:793.333333pt;}
.w0_c00469{width:1122.666667pt;}
.x0_c00469{left:0.000000pt;}
.x1_c00469{left:275.182400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.v1_c00470{vertical-align:59.624400px;}
.ls2_c00470{letter-spacing:-1.470741px;}
.ls1_c00470{letter-spacing:0.000000px;}
.ls0_c00470{letter-spacing:0.059625px;}
.sc__c00470{text-shadow:none;}
.sc0_c00470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00470{-webkit-text-stroke:0px transparent;}
.sc0_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00470{word-spacing:-0.258373px;}
.ws0_c00470{word-spacing:-0.198749px;}
.ws1_c00470{word-spacing:1.338242px;}
._2_c00470{margin-left:-4.432098px;}
._1_c00470{margin-left:-2.702984px;}
._3_c00470{margin-left:-1.172618px;}
._0_c00470{width:1.338770px;}
.fc0_c00470{color:rgb(0,0,0);}
.fs1_c00470{font-size:132.499200px;}
.fs0_c00470{font-size:198.748800px;}
.y0_c00470{bottom:0.000000px;}
.y2_c00470{bottom:684.787594px;}
.y1_c00470{bottom:743.766300px;}
.h2_c00470{height:142.701638px;}
.h1_c00470{height:154.758826px;}
.h0_c00470{height:892.500000px;}
.w0_c00470{width:1263.000000px;}
.x0_c00470{left:0.000000px;}
.x1_c00470{left:332.211300px;}
.x2_c00470{left:344.677800px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.v1_c00470{vertical-align:52.999467pt;}
.ls2_c00470{letter-spacing:-1.307325pt;}
.ls1_c00470{letter-spacing:0.000000pt;}
.ls0_c00470{letter-spacing:0.053000pt;}
.ws2_c00470{word-spacing:-0.229665pt;}
.ws0_c00470{word-spacing:-0.176666pt;}
.ws1_c00470{word-spacing:1.189548pt;}
._2_c00470{margin-left:-3.939643pt;}
._1_c00470{margin-left:-2.402652pt;}
._3_c00470{margin-left:-1.042327pt;}
._0_c00470{width:1.190018pt;}
.fs1_c00470{font-size:117.777067pt;}
.fs0_c00470{font-size:176.665600pt;}
.y0_c00470{bottom:0.000000pt;}
.y2_c00470{bottom:608.700083pt;}
.y1_c00470{bottom:661.125600pt;}
.h2_c00470{height:126.845901pt;}
.h1_c00470{height:137.563401pt;}
.h0_c00470{height:793.333333pt;}
.w0_c00470{width:1122.666667pt;}
.x0_c00470{left:0.000000pt;}
.x1_c00470{left:295.298933pt;}
.x2_c00470{left:306.380267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00471{vertical-align:0.000000px;}
.v1_c00471{vertical-align:81.984000px;}
.ls2_c00471{letter-spacing:-2.022269px;}
.ls1_c00471{letter-spacing:-0.054656px;}
.ls3_c00471{letter-spacing:0.000000px;}
.ls0_c00471{letter-spacing:0.163968px;}
.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;}
}
.ws2_c00471{word-spacing:-0.437247px;}
.ws0_c00471{word-spacing:-0.218624px;}
.ws3_c00471{word-spacing:-0.198749px;}
.ws4_c00471{word-spacing:0.000000px;}
.ws1_c00471{word-spacing:1.840083px;}
._1_c00471{margin-left:-4.099194px;}
._3_c00471{margin-left:-2.757640px;}
._2_c00471{margin-left:-1.093118px;}
._0_c00471{width:2.307190px;}
.fc0_c00471{color:rgb(0,0,0);}
.fs1_c00471{font-size:182.186400px;}
.fs2_c00471{font-size:198.748800px;}
.fs0_c00471{font-size:273.279600px;}
.y0_c00471{bottom:0.000000px;}
.y3_c00471{bottom:79.883794px;}
.y2_c00471{bottom:138.862500px;}
.y1_c00471{bottom:734.721600px;}
.h2_c00471{height:142.701638px;}
.h1_c00471{height:212.793835px;}
.h0_c00471{height:892.500000px;}
.w0_c00471{width:1263.000000px;}
.x0_c00471{left:0.000000px;}
.x2_c00471{left:163.340550px;}
.x1_c00471{left:226.994550px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.v1_c00471{vertical-align:72.874667pt;}
.ls2_c00471{letter-spacing:-1.797572pt;}
.ls1_c00471{letter-spacing:-0.048583pt;}
.ls3_c00471{letter-spacing:0.000000pt;}
.ls0_c00471{letter-spacing:0.145749pt;}
.ws2_c00471{word-spacing:-0.388664pt;}
.ws0_c00471{word-spacing:-0.194332pt;}
.ws3_c00471{word-spacing:-0.176666pt;}
.ws4_c00471{word-spacing:0.000000pt;}
.ws1_c00471{word-spacing:1.635629pt;}
._1_c00471{margin-left:-3.643728pt;}
._3_c00471{margin-left:-2.451235pt;}
._2_c00471{margin-left:-0.971661pt;}
._0_c00471{width:2.050836pt;}
.fs1_c00471{font-size:161.943467pt;}
.fs2_c00471{font-size:176.665600pt;}
.fs0_c00471{font-size:242.915200pt;}
.y0_c00471{bottom:0.000000pt;}
.y3_c00471{bottom:71.007817pt;}
.y2_c00471{bottom:123.433333pt;}
.y1_c00471{bottom:653.085867pt;}
.h2_c00471{height:126.845901pt;}
.h1_c00471{height:189.150076pt;}
.h0_c00471{height:793.333333pt;}
.w0_c00471{width:1122.666667pt;}
.x0_c00471{left:0.000000pt;}
.x2_c00471{left:145.191600pt;}
.x1_c00471{left:201.772933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.ls0_c00472{letter-spacing:0.000000px;}
.sc__c00472{text-shadow:none;}
.sc0_c00472{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00472{-webkit-text-stroke:0px transparent;}
.sc0_c00472{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00472{word-spacing:-0.273280px;}
.ws1_c00472{word-spacing:-0.149062px;}
.ws2_c00472{word-spacing:-0.111796px;}
._1_c00472{margin-left:-4.809721px;}
._0_c00472{margin-left:-3.415995px;}
._3_c00472{margin-left:-2.300517px;}
._2_c00472{margin-left:-1.175102px;}
.fc0_c00472{color:rgb(0,0,0);}
.fs2_c00472{font-size:111.796200px;}
.fs1_c00472{font-size:149.061600px;}
.fs0_c00472{font-size:273.279600px;}
.y0_c00472{bottom:0.000000px;}
.y3_c00472{bottom:40.070250px;}
.y2_c00472{bottom:108.390300px;}
.y1_c00472{bottom:734.721600px;}
.h3_c00472{height:80.269672px;}
.h2_c00472{height:107.026229px;}
.h1_c00472{height:196.214753px;}
.h0_c00472{height:892.500000px;}
.w0_c00472{width:1263.000000px;}
.x0_c00472{left:0.000000px;}
.x1_c00472{left:143.341350px;}
.x2_c00472{left:659.558250px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls0_c00472{letter-spacing:0.000000pt;}
.ws0_c00472{word-spacing:-0.242915pt;}
.ws1_c00472{word-spacing:-0.132499pt;}
.ws2_c00472{word-spacing:-0.099374pt;}
._1_c00472{margin-left:-4.275308pt;}
._0_c00472{margin-left:-3.036440pt;}
._3_c00472{margin-left:-2.044904pt;}
._2_c00472{margin-left:-1.044535pt;}
.fs2_c00472{font-size:99.374400pt;}
.fs1_c00472{font-size:132.499200pt;}
.fs0_c00472{font-size:242.915200pt;}
.y0_c00472{bottom:0.000000pt;}
.y3_c00472{bottom:35.618000pt;}
.y2_c00472{bottom:96.346933pt;}
.y1_c00472{bottom:653.085867pt;}
.h3_c00472{height:71.350819pt;}
.h2_c00472{height:95.134426pt;}
.h1_c00472{height:174.413114pt;}
.h0_c00472{height:793.333333pt;}
.w0_c00472{width:1122.666667pt;}
.x0_c00472{left:0.000000pt;}
.x1_c00472{left:127.414533pt;}
.x2_c00472{left:586.274000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.ls0_c00473{letter-spacing:0.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.273280px;}
.ws1_c00473{word-spacing:-0.149062px;}
.ws2_c00473{word-spacing:-0.111796px;}
._1_c00473{margin-left:-4.809721px;}
._0_c00473{margin-left:-3.415995px;}
._2_c00473{margin-left:-1.175102px;}
.fc0_c00473{color:rgb(0,0,0);}
.fs2_c00473{font-size:111.796200px;}
.fs1_c00473{font-size:149.061600px;}
.fs0_c00473{font-size:273.279600px;}
.y0_c00473{bottom:0.000000px;}
.y3_c00473{bottom:45.892950px;}
.y2_c00473{bottom:81.605700px;}
.y1_c00473{bottom:734.721600px;}
.h3_c00473{height:80.269672px;}
.h2_c00473{height:107.026229px;}
.h1_c00473{height:196.214753px;}
.h0_c00473{height:892.500000px;}
.w0_c00473{width:1263.000000px;}
.x0_c00473{left:0.000000px;}
.x1_c00473{left:143.341350px;}
.x2_c00473{left:646.944150px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls0_c00473{letter-spacing:0.000000pt;}
.ws0_c00473{word-spacing:-0.242915pt;}
.ws1_c00473{word-spacing:-0.132499pt;}
.ws2_c00473{word-spacing:-0.099374pt;}
._1_c00473{margin-left:-4.275308pt;}
._0_c00473{margin-left:-3.036440pt;}
._2_c00473{margin-left:-1.044535pt;}
.fs2_c00473{font-size:99.374400pt;}
.fs1_c00473{font-size:132.499200pt;}
.fs0_c00473{font-size:242.915200pt;}
.y0_c00473{bottom:0.000000pt;}
.y3_c00473{bottom:40.793733pt;}
.y2_c00473{bottom:72.538400pt;}
.y1_c00473{bottom:653.085867pt;}
.h3_c00473{height:71.350819pt;}
.h2_c00473{height:95.134426pt;}
.h1_c00473{height:174.413114pt;}
.h0_c00473{height:793.333333pt;}
.w0_c00473{width:1122.666667pt;}
.x0_c00473{left:0.000000pt;}
.x1_c00473{left:127.414533pt;}
.x2_c00473{left:575.061467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.ls0_c00474{letter-spacing:0.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;}
}
.ws0_c00474{word-spacing:-0.273280px;}
.ws1_c00474{word-spacing:-0.111796px;}
._0_c00474{margin-left:-3.334011px;}
._1_c00474{margin-left:-1.363914px;}
.fc0_c00474{color:rgb(0,0,0);}
.fs1_c00474{font-size:111.796200px;}
.fs0_c00474{font-size:273.279600px;}
.y0_c00474{bottom:0.000000px;}
.y3_c00474{bottom:70.742761px;}
.y2_c00474{bottom:104.896500px;}
.y1_c00474{bottom:734.721600px;}
.h2_c00474{height:80.269672px;}
.h1_c00474{height:196.214753px;}
.h0_c00474{height:892.500000px;}
.w0_c00474{width:1263.000000px;}
.x0_c00474{left:0.000000px;}
.x1_c00474{left:132.613350px;}
.x2_c00474{left:171.685200px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls0_c00474{letter-spacing:0.000000pt;}
.ws0_c00474{word-spacing:-0.242915pt;}
.ws1_c00474{word-spacing:-0.099374pt;}
._0_c00474{margin-left:-2.963565pt;}
._1_c00474{margin-left:-1.212368pt;}
.fs1_c00474{font-size:99.374400pt;}
.fs0_c00474{font-size:242.915200pt;}
.y0_c00474{bottom:0.000000pt;}
.y3_c00474{bottom:62.882454pt;}
.y2_c00474{bottom:93.241333pt;}
.y1_c00474{bottom:653.085867pt;}
.h2_c00474{height:71.350819pt;}
.h1_c00474{height:174.413114pt;}
.h0_c00474{height:793.333333pt;}
.w0_c00474{width:1122.666667pt;}
.x0_c00474{left:0.000000pt;}
.x1_c00474{left:117.878533pt;}
.x2_c00474{left:152.609067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00475{vertical-align:0.000000px;}
.ls0_c00475{letter-spacing:-0.054656px;}
.ls1_c00475{letter-spacing:0.000000px;}
.sc__c00475{text-shadow:none;}
.sc0_c00475{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00475{-webkit-text-stroke:0px transparent;}
.sc0_c00475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00475{word-spacing:-0.273280px;}
.ws0_c00475{word-spacing:-0.218624px;}
.ws2_c00475{word-spacing:-0.149062px;}
._0_c00475{margin-left:-5.328952px;}
._1_c00475{margin-left:-2.541500px;}
._2_c00475{margin-left:-1.185040px;}
.fc0_c00475{color:rgb(0,0,0);}
.fs1_c00475{font-size:149.061600px;}
.fs0_c00475{font-size:273.279600px;}
.y0_c00475{bottom:0.000000px;}
.y3_c00475{bottom:53.669147px;}
.y2_c00475{bottom:98.685750px;}
.y1_c00475{bottom:734.721600px;}
.h2_c00475{height:107.026229px;}
.h1_c00475{height:196.214753px;}
.h0_c00475{height:892.500000px;}
.w0_c00475{width:1263.000000px;}
.x0_c00475{left:0.000000px;}
.x1_c00475{left:196.141650px;}
.x2_c00475{left:306.558600px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls0_c00475{letter-spacing:-0.048583pt;}
.ls1_c00475{letter-spacing:0.000000pt;}
.ws1_c00475{word-spacing:-0.242915pt;}
.ws0_c00475{word-spacing:-0.194332pt;}
.ws2_c00475{word-spacing:-0.132499pt;}
._0_c00475{margin-left:-4.736846pt;}
._1_c00475{margin-left:-2.259111pt;}
._2_c00475{margin-left:-1.053369pt;}
.fs1_c00475{font-size:132.499200pt;}
.fs0_c00475{font-size:242.915200pt;}
.y0_c00475{bottom:0.000000pt;}
.y3_c00475{bottom:47.705908pt;}
.y2_c00475{bottom:87.720667pt;}
.y1_c00475{bottom:653.085867pt;}
.h2_c00475{height:95.134426pt;}
.h1_c00475{height:174.413114pt;}
.h0_c00475{height:793.333333pt;}
.w0_c00475{width:1122.666667pt;}
.x0_c00475{left:0.000000pt;}
.x1_c00475{left:174.348133pt;}
.x2_c00475{left:272.496533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.ls0_c00476{letter-spacing:0.000000px;}
.sc__c00476{text-shadow:none;}
.sc0_c00476{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00476{-webkit-text-stroke:0px transparent;}
.sc0_c00476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00476{word-spacing:-0.273280px;}
._0_c00476{margin-left:-5.984823px;}
._1_c00476{margin-left:-2.541500px;}
.fc0_c00476{color:rgb(0,0,0);}
.fs0_c00476{font-size:273.279600px;}
.y0_c00476{bottom:0.000000px;}
.y1_c00476{bottom:734.721600px;}
.h1_c00476{height:196.214753px;}
.h0_c00476{height:892.500000px;}
.w0_c00476{width:1263.000000px;}
.x0_c00476{left:0.000000px;}
.x1_c00476{left:425.226300px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls0_c00476{letter-spacing:0.000000pt;}
.ws0_c00476{word-spacing:-0.242915pt;}
._0_c00476{margin-left:-5.319843pt;}
._1_c00476{margin-left:-2.259111pt;}
.fs0_c00476{font-size:242.915200pt;}
.y0_c00476{bottom:0.000000pt;}
.y1_c00476{bottom:653.085867pt;}
.h1_c00476{height:174.413114pt;}
.h0_c00476{height:793.333333pt;}
.w0_c00476{width:1122.666667pt;}
.x0_c00476{left:0.000000pt;}
.x1_c00476{left:377.978933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:0.896000;font-style:normal;font-weight:normal;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_d296ec359ebde532a9799d40.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:0.816406;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00477{vertical-align:0.000000px;}
.ls1_c00477{letter-spacing:-0.027328px;}
.ls0_c00477{letter-spacing:0.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:-0.273280px;}
.ws1_c00477{word-spacing:-0.245952px;}
.ws2_c00477{word-spacing:0.000000px;}
._0_c00477{margin-left:-1.585022px;}
.fc0_c00477{color:rgb(0,0,0);}
.fs0_c00477{font-size:273.279600px;}
.y0_c00477{bottom:0.000000px;}
.y1_c00477{bottom:734.721600px;}
.h1_c00477{height:218.837180px;}
.h0_c00477{height:892.500000px;}
.w0_c00477{width:1263.000000px;}
.x0_c00477{left:0.000000px;}
.x1_c00477{left:263.917950px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls1_c00477{letter-spacing:-0.024292pt;}
.ls0_c00477{letter-spacing:0.000000pt;}
.ws0_c00477{word-spacing:-0.242915pt;}
.ws1_c00477{word-spacing:-0.218624pt;}
.ws2_c00477{word-spacing:0.000000pt;}
._0_c00477{margin-left:-1.408908pt;}
.fs0_c00477{font-size:242.915200pt;}
.y0_c00477{bottom:0.000000pt;}
.y1_c00477{bottom:653.085867pt;}
.h1_c00477{height:194.521937pt;}
.h0_c00477{height:793.333333pt;}
.w0_c00477{width:1122.666667pt;}
.x0_c00477{left:0.000000pt;}
.x1_c00477{left:234.593733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00478{vertical-align:0.000000px;}
.ls0_c00478{letter-spacing:0.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;}
}
.ws0_c00478{word-spacing:-0.111796px;}
.ws1_c00478{word-spacing:0.000000px;}
._2_c00478{margin-left:-5.042009px;}
._3_c00478{margin-left:-3.991124px;}
._1_c00478{margin-left:-2.984959px;}
._0_c00478{margin-left:-1.274477px;}
.fc0_c00478{color:rgb(0,0,0);}
.fs1_c00478{font-size:111.796200px;}
.fs0_c00478{font-size:273.279600px;}
.y0_c00478{bottom:0.000000px;}
.y6_c00478{bottom:62.397736px;}
.y5_c00478{bottom:96.551475px;}
.y3_c00478{bottom:176.328361px;}
.y2_c00478{bottom:210.482100px;}
.y4_c00478{bottom:641.557950px;}
.y1_c00478{bottom:734.721600px;}
.h2_c00478{height:80.269672px;}
.h1_c00478{height:196.214753px;}
.h0_c00478{height:892.500000px;}
.w0_c00478{width:1263.000000px;}
.x0_c00478{left:0.000000px;}
.x2_c00478{left:110.555550px;}
.x4_c00478{left:173.422485px;}
.x1_c00478{left:335.780250px;}
.x3_c00478{left:681.099300px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls0_c00478{letter-spacing:0.000000pt;}
.ws0_c00478{word-spacing:-0.099374pt;}
.ws1_c00478{word-spacing:0.000000pt;}
._2_c00478{margin-left:-4.481785pt;}
._3_c00478{margin-left:-3.547666pt;}
._1_c00478{margin-left:-2.653296pt;}
._0_c00478{margin-left:-1.132868pt;}
.fs1_c00478{font-size:99.374400pt;}
.fs0_c00478{font-size:242.915200pt;}
.y0_c00478{bottom:0.000000pt;}
.y6_c00478{bottom:55.464654pt;}
.y5_c00478{bottom:85.823533pt;}
.y3_c00478{bottom:156.736321pt;}
.y2_c00478{bottom:187.095200pt;}
.y4_c00478{bottom:570.273733pt;}
.y1_c00478{bottom:653.085867pt;}
.h2_c00478{height:71.350819pt;}
.h1_c00478{height:174.413114pt;}
.h0_c00478{height:793.333333pt;}
.w0_c00478{width:1122.666667pt;}
.x0_c00478{left:0.000000pt;}
.x2_c00478{left:98.271600pt;}
.x4_c00478{left:154.153320pt;}
.x1_c00478{left:298.471333pt;}
.x3_c00478{left:605.421600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:0.896000;font-style:normal;font-weight:normal;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_edc5d9a72616cec0d922aad3.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:0.938965;font-style:normal;font-weight:normal;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_1698f0148a1a79c3ce5fb237.woff2')format("woff");}.ff3_c00479{font-family:ff3_c00479;line-height:0.717000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.ls1_c00479{letter-spacing:-0.054656px;}
.ls2_c00479{letter-spacing:0.000000px;}
.ls0_c00479{letter-spacing:70.555824px;}
.sc__c00479{text-shadow:none;}
.sc0_c00479{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00479{-webkit-text-stroke:0px transparent;}
.sc0_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00479{word-spacing:-0.218624px;}
.ws1_c00479{word-spacing:-0.198749px;}
.ws2_c00479{word-spacing:0.000000px;}
._2_c00479{margin-left:-17.609144px;}
._4_c00479{margin-left:-6.479211px;}
._1_c00479{margin-left:-3.915351px;}
._3_c00479{margin-left:-2.822233px;}
._0_c00479{margin-left:-1.768864px;}
.fc0_c00479{color:rgb(0,0,0);}
.fs1_c00479{font-size:198.748800px;}
.fs0_c00479{font-size:273.279600px;}
.y0_c00479{bottom:0.000000px;}
.ya_c00479{bottom:77.411081px;}
.y9_c00479{bottom:137.979778px;}
.y8_c00479{bottom:197.455356px;}
.y7_c00479{bottom:268.905550px;}
.y6_c00479{bottom:339.809184px;}
.y5_c00479{bottom:399.284762px;}
.y4_c00479{bottom:472.275259px;}
.y3_c00479{bottom:543.675766px;}
.y2_c00479{bottom:614.579400px;}
.y1_c00479{bottom:734.721600px;}
.h2_c00479{height:142.701638px;}
.h3_c00479{height:144.791606px;}
.h1_c00479{height:196.214753px;}
.h0_c00479{height:892.500000px;}
.w0_c00479{width:1263.000000px;}
.x0_c00479{left:0.000000px;}
.x2_c00479{left:116.377350px;}
.x3_c00479{left:158.307270px;}
.x1_c00479{left:369.118050px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls1_c00479{letter-spacing:-0.048583pt;}
.ls2_c00479{letter-spacing:0.000000pt;}
.ls0_c00479{letter-spacing:62.716288pt;}
.ws0_c00479{word-spacing:-0.194332pt;}
.ws1_c00479{word-spacing:-0.176666pt;}
.ws2_c00479{word-spacing:0.000000pt;}
._2_c00479{margin-left:-15.652572pt;}
._4_c00479{margin-left:-5.759299pt;}
._1_c00479{margin-left:-3.480312pt;}
._3_c00479{margin-left:-2.508652pt;}
._0_c00479{margin-left:-1.572324pt;}
.fs1_c00479{font-size:176.665600pt;}
.fs0_c00479{font-size:242.915200pt;}
.y0_c00479{bottom:0.000000pt;}
.ya_c00479{bottom:68.809850pt;}
.y9_c00479{bottom:122.648691pt;}
.y8_c00479{bottom:175.515872pt;}
.y7_c00479{bottom:239.027155pt;}
.y6_c00479{bottom:302.052608pt;}
.y5_c00479{bottom:354.919789pt;}
.y4_c00479{bottom:419.800230pt;}
.y3_c00479{bottom:483.267347pt;}
.y2_c00479{bottom:546.292800pt;}
.y1_c00479{bottom:653.085867pt;}
.h2_c00479{height:126.845901pt;}
.h3_c00479{height:128.703650pt;}
.h1_c00479{height:174.413114pt;}
.h0_c00479{height:793.333333pt;}
.w0_c00479{width:1122.666667pt;}
.x0_c00479{left:0.000000pt;}
.x2_c00479{left:103.446533pt;}
.x3_c00479{left:140.717573pt;}
.x1_c00479{left:328.104933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:0.896000;font-style:normal;font-weight:normal;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_edc5d9a72616cec0d922aad3.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:0.938965;font-style:normal;font-weight:normal;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_1698f0148a1a79c3ce5fb237.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:0.717000;font-style:normal;font-weight:normal;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_dd0c4498160eb783a5c976ac.woff2')format("woff");}.ff4_c00480{font-family:ff4_c00480;line-height:0.904000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.v1_c00480{vertical-align:41.238588px;}
.ls2_c00480{letter-spacing:-4.249498px;}
.ls3_c00480{letter-spacing:-1.065790px;}
.ls5_c00480{letter-spacing:-0.027328px;}
.ls1_c00480{letter-spacing:0.000000px;}
.ls4_c00480{letter-spacing:0.013664px;}
.ls0_c00480{letter-spacing:100.840172px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00480{word-spacing:-0.273280px;}
.ws1_c00480{word-spacing:-0.186327px;}
.ws5_c00480{word-spacing:-0.150304px;}
.ws2_c00480{word-spacing:-0.136640px;}
.ws6_c00480{word-spacing:-0.063765px;}
.ws7_c00480{word-spacing:0.000000px;}
.ws4_c00480{word-spacing:0.974697px;}
.ws3_c00480{word-spacing:4.112858px;}
._0_c00480{margin-left:-5.711544px;}
._4_c00480{margin-left:-4.247391px;}
._1_c00480{margin-left:-2.600009px;}
._2_c00480{margin-left:-1.417201px;}
._5_c00480{width:1.370251px;}
._3_c00480{width:4.235834px;}
.fc0_c00480{color:rgb(0,0,0);}
.fs3_c00480{font-size:91.093200px;}
.fs2_c00480{font-size:136.639800px;}
.fs1_c00480{font-size:186.327000px;}
.fs0_c00480{font-size:273.279600px;}
.y0_c00480{bottom:0.000000px;}
.ye_c00480{bottom:86.784073px;}
.yd_c00480{bottom:136.468392px;}
.yc_c00480{bottom:185.043841px;}
.yb_c00480{bottom:226.548180px;}
.ya_c00480{bottom:274.617903px;}
.y9_c00480{bottom:324.320630px;}
.y8_c00480{bottom:374.023357px;}
.y7_c00480{bottom:422.154727px;}
.y6_c00480{bottom:472.267374px;}
.y5_c00480{bottom:513.771713px;}
.y4_c00480{bottom:562.347162px;}
.y3_c00480{bottom:603.851501px;}
.y2_c00480{bottom:652.426950px;}
.y1_c00480{bottom:734.721600px;}
.h3_c00480{height:98.107376px;}
.h2_c00480{height:99.544229px;}
.h5_c00480{height:107.199294px;}
.h4_c00480{height:107.372251px;}
.h1_c00480{height:196.214753px;}
.h0_c00480{height:892.500000px;}
.w0_c00480{width:1263.000000px;}
.x0_c00480{left:0.000000px;}
.x2_c00480{left:116.377350px;}
.x4_c00480{left:150.566505px;}
.x3_c00480{left:158.285535px;}
.x1_c00480{left:286.270800px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.v1_c00480{vertical-align:36.656523pt;}
.ls2_c00480{letter-spacing:-3.777331pt;}
.ls3_c00480{letter-spacing:-0.947369pt;}
.ls5_c00480{letter-spacing:-0.024292pt;}
.ls1_c00480{letter-spacing:0.000000pt;}
.ls4_c00480{letter-spacing:0.012146pt;}
.ls0_c00480{letter-spacing:89.635709pt;}
.ws0_c00480{word-spacing:-0.242915pt;}
.ws1_c00480{word-spacing:-0.165624pt;}
.ws5_c00480{word-spacing:-0.133603pt;}
.ws2_c00480{word-spacing:-0.121458pt;}
.ws6_c00480{word-spacing:-0.056680pt;}
.ws7_c00480{word-spacing:0.000000pt;}
.ws4_c00480{word-spacing:0.866398pt;}
.ws3_c00480{word-spacing:3.655874pt;}
._0_c00480{margin-left:-5.076928pt;}
._4_c00480{margin-left:-3.775459pt;}
._1_c00480{margin-left:-2.311119pt;}
._2_c00480{margin-left:-1.259735pt;}
._5_c00480{width:1.218000pt;}
._3_c00480{width:3.765186pt;}
.fs3_c00480{font-size:80.971733pt;}
.fs2_c00480{font-size:121.457600pt;}
.fs1_c00480{font-size:165.624000pt;}
.fs0_c00480{font-size:242.915200pt;}
.y0_c00480{bottom:0.000000pt;}
.ye_c00480{bottom:77.141398pt;}
.yd_c00480{bottom:121.305238pt;}
.yc_c00480{bottom:164.483414pt;}
.yb_c00480{bottom:201.376160pt;}
.ya_c00480{bottom:244.104803pt;}
.y9_c00480{bottom:288.285005pt;}
.y8_c00480{bottom:332.465207pt;}
.y7_c00480{bottom:375.248646pt;}
.y6_c00480{bottom:419.793221pt;}
.y5_c00480{bottom:456.685967pt;}
.y4_c00480{bottom:499.864144pt;}
.y3_c00480{bottom:536.756890pt;}
.y2_c00480{bottom:579.935067pt;}
.y1_c00480{bottom:653.085867pt;}
.h3_c00480{height:87.206557pt;}
.h2_c00480{height:88.483759pt;}
.h5_c00480{height:95.288261pt;}
.h4_c00480{height:95.442001pt;}
.h1_c00480{height:174.413114pt;}
.h0_c00480{height:793.333333pt;}
.w0_c00480{width:1122.666667pt;}
.x0_c00480{left:0.000000pt;}
.x2_c00480{left:103.446533pt;}
.x4_c00480{left:133.836893pt;}
.x3_c00480{left:140.698253pt;}
.x1_c00480{left:254.462933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.ls0_c00481{letter-spacing:0.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:-0.273280px;}
.ws1_c00481{word-spacing:-0.149062px;}
._3_c00481{margin-left:-32.644490px;}
._5_c00481{margin-left:-10.687717px;}
._1_c00481{margin-left:-8.908915px;}
._4_c00481{margin-left:-4.889220px;}
._0_c00481{margin-left:-2.951420px;}
._2_c00481{margin-left:-1.594959px;}
.fc0_c00481{color:rgb(0,0,0);}
.fs1_c00481{font-size:149.061600px;}
.fs0_c00481{font-size:273.279600px;}
.y0_c00481{bottom:0.000000px;}
.y9_c00481{bottom:98.347912px;}
.y8_c00481{bottom:143.737169px;}
.y7_c00481{bottom:250.502540px;}
.y6_c00481{bottom:295.519144px;}
.y5_c00481{bottom:340.908401px;}
.y4_c00481{bottom:447.673772px;}
.y3_c00481{bottom:493.063029px;}
.y2_c00481{bottom:599.828400px;}
.y1_c00481{bottom:734.721600px;}
.h2_c00481{height:107.026229px;}
.h1_c00481{height:196.214753px;}
.h0_c00481{height:892.500000px;}
.w0_c00481{width:1263.000000px;}
.x0_c00481{left:0.000000px;}
.x2_c00481{left:116.377350px;}
.x3_c00481{left:158.294850px;}
.x1_c00481{left:279.261000px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls0_c00481{letter-spacing:0.000000pt;}
.ws0_c00481{word-spacing:-0.242915pt;}
.ws1_c00481{word-spacing:-0.132499pt;}
._3_c00481{margin-left:-29.017325pt;}
._5_c00481{margin-left:-9.500193pt;}
._1_c00481{margin-left:-7.919036pt;}
._4_c00481{margin-left:-4.345974pt;}
._0_c00481{margin-left:-2.623484pt;}
._2_c00481{margin-left:-1.417741pt;}
.fs1_c00481{font-size:132.499200pt;}
.fs0_c00481{font-size:242.915200pt;}
.y0_c00481{bottom:0.000000pt;}
.y9_c00481{bottom:87.420366pt;}
.y8_c00481{bottom:127.766373pt;}
.y7_c00481{bottom:222.668925pt;}
.y6_c00481{bottom:262.683683pt;}
.y5_c00481{bottom:303.029690pt;}
.y4_c00481{bottom:397.932242pt;}
.y3_c00481{bottom:438.278248pt;}
.y2_c00481{bottom:533.180800pt;}
.y1_c00481{bottom:653.085867pt;}
.h2_c00481{height:95.134426pt;}
.h1_c00481{height:174.413114pt;}
.h0_c00481{height:793.333333pt;}
.w0_c00481{width:1122.666667pt;}
.x0_c00481{left:0.000000pt;}
.x2_c00481{left:103.446533pt;}
.x3_c00481{left:140.706533pt;}
.x1_c00481{left:248.232000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:0.896000;font-style:normal;font-weight:normal;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_edc5d9a72616cec0d922aad3.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:0.938965;font-style:normal;font-weight:normal;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_1698f0148a1a79c3ce5fb237.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:0.717000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00482{vertical-align:0.000000px;}
.ls0_c00482{letter-spacing:0.000000px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00482{word-spacing:-0.273280px;}
.ws1_c00482{word-spacing:-0.167695px;}
.ws2_c00482{word-spacing:0.000000px;}
._6_c00482{margin-left:-23.309549px;}
._5_c00482{margin-left:-16.920385px;}
._7_c00482{margin-left:-13.046640px;}
._4_c00482{margin-left:-11.386463px;}
._9_c00482{margin-left:-9.558592px;}
._3_c00482{margin-left:-4.661910px;}
._8_c00482{margin-left:-3.488048px;}
._1_c00482{margin-left:-2.280647px;}
._2_c00482{margin-left:-1.257709px;}
._0_c00482{width:1.229758px;}
.fc0_c00482{color:rgb(0,0,0);}
.fs1_c00482{font-size:167.694600px;}
.fs0_c00482{font-size:273.279600px;}
.y0_c00482{bottom:0.000000px;}
.yc_c00482{bottom:147.851049px;}
.yb_c00482{bottom:188.223524px;}
.ya_c00482{bottom:228.595999px;}
.y9_c00482{bottom:268.968474px;}
.y8_c00482{bottom:309.340949px;}
.y7_c00482{bottom:348.958798px;}
.y6_c00482{bottom:399.392949px;}
.y5_c00482{bottom:439.010799px;}
.y4_c00482{bottom:490.241499px;}
.y3_c00482{bottom:590.355175px;}
.y2_c00482{bottom:630.727650px;}
.y1_c00482{bottom:734.721600px;}
.h2_c00482{height:120.404723px;}
.h3_c00482{height:122.168136px;}
.h1_c00482{height:196.214753px;}
.h0_c00482{height:892.500000px;}
.w0_c00482{width:1263.000000px;}
.x0_c00482{left:0.000000px;}
.x2_c00482{left:139.858950px;}
.x1_c00482{left:405.657750px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls0_c00482{letter-spacing:0.000000pt;}
.ws0_c00482{word-spacing:-0.242915pt;}
.ws1_c00482{word-spacing:-0.149062pt;}
.ws2_c00482{word-spacing:0.000000pt;}
._6_c00482{margin-left:-20.719599pt;}
._5_c00482{margin-left:-15.040342pt;}
._7_c00482{margin-left:-11.597013pt;}
._4_c00482{margin-left:-10.121301pt;}
._9_c00482{margin-left:-8.496526pt;}
._3_c00482{margin-left:-4.143920pt;}
._8_c00482{margin-left:-3.100487pt;}
._1_c00482{margin-left:-2.027241pt;}
._2_c00482{margin-left:-1.117964pt;}
._0_c00482{width:1.093118pt;}
.fs1_c00482{font-size:149.061867pt;}
.fs0_c00482{font-size:242.915200pt;}
.y0_c00482{bottom:0.000000pt;}
.yc_c00482{bottom:131.423155pt;}
.yb_c00482{bottom:167.309799pt;}
.ya_c00482{bottom:203.196444pt;}
.y9_c00482{bottom:239.083088pt;}
.y8_c00482{bottom:274.969733pt;}
.y7_c00482{bottom:310.185599pt;}
.y6_c00482{bottom:355.015955pt;}
.y5_c00482{bottom:390.231821pt;}
.y4_c00482{bottom:435.770221pt;}
.y3_c00482{bottom:524.760156pt;}
.y2_c00482{bottom:560.646800pt;}
.y1_c00482{bottom:653.085867pt;}
.h2_c00482{height:107.026420pt;}
.h3_c00482{height:108.593899pt;}
.h1_c00482{height:174.413114pt;}
.h0_c00482{height:793.333333pt;}
.w0_c00482{width:1122.666667pt;}
.x0_c00482{left:0.000000pt;}
.x2_c00482{left:124.319067pt;}
.x1_c00482{left:360.584667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00483{vertical-align:0.000000px;}
.ls0_c00483{letter-spacing:0.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:-0.273280px;}
._0_c00483{margin-left:-61.870501px;}
.fc0_c00483{color:rgb(0,0,0);}
.fs0_c00483{font-size:273.279600px;}
.y0_c00483{bottom:0.000000px;}
.y1_c00483{bottom:734.721600px;}
.h1_c00483{height:196.214753px;}
.h0_c00483{height:892.500000px;}
.w0_c00483{width:1263.000000px;}
.x0_c00483{left:0.000000px;}
.x1_c00483{left:206.567850px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls0_c00483{letter-spacing:0.000000pt;}
.ws0_c00483{word-spacing:-0.242915pt;}
._0_c00483{margin-left:-54.996001pt;}
.fs0_c00483{font-size:242.915200pt;}
.y0_c00483{bottom:0.000000pt;}
.y1_c00483{bottom:653.085867pt;}
.h1_c00483{height:174.413114pt;}
.h0_c00483{height:793.333333pt;}
.w0_c00483{width:1122.666667pt;}
.x0_c00483{left:0.000000pt;}
.x1_c00483{left:183.615867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:0.896000;font-style:normal;font-weight:normal;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_a388850e118df1eebaf821c2.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:0.816406;font-style:normal;font-weight:normal;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_ecf7b9edc49e837ebe6e0a91.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:0.871000;font-style:normal;font-weight:normal;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_dd0c4498160eb783a5c976ac.woff2')format("woff");}.ff4_c00484{font-family:ff4_c00484;line-height:0.904000;font-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_c00484{transform:matrix(0.242503,0.000000,-0.060626,0.242538,0,0);-ms-transform:matrix(0.242503,0.000000,-0.060626,0.242538,0,0);-webkit-transform:matrix(0.242503,0.000000,-0.060626,0.242538,0,0);}
.m0_c00484{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.ls1_c00484{letter-spacing:0.000000px;}
.ls2_c00484{letter-spacing:0.049687px;}
.ls0_c00484{letter-spacing:195.519132px;}
.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;}
}
.ws3_c00484{word-spacing:-195.643350px;}
.ws0_c00484{word-spacing:-0.273280px;}
.ws1_c00484{word-spacing:-0.124218px;}
.ws4_c00484{word-spacing:0.000000px;}
.ws2_c00484{word-spacing:27.700614px;}
._6_c00484{margin-left:-195.519132px;}
._7_c00484{margin-left:-7.477924px;}
._0_c00484{margin-left:-5.083001px;}
._1_c00484{margin-left:-3.502948px;}
._3_c00484{margin-left:-2.285611px;}
._2_c00484{margin-left:-1.006166px;}
._4_c00484{width:1.316711px;}
._5_c00484{width:195.519132px;}
.fc1_c00484{color:rgb(255,0,0);}
.fc0_c00484{color:rgb(0,0,0);}
.fs2_c00484{font-size:124.218000px;}
.fs1_c00484{font-size:128.039892px;}
.fs0_c00484{font-size:273.279600px;}
.y0_c00484{bottom:0.000000px;}
.y10_c00484{bottom:62.238975px;}
.yf_c00484{bottom:99.504375px;}
.ye_c00484{bottom:147.638850px;}
.yd_c00484{bottom:147.639345px;}
.yc_c00484{bottom:184.904745px;}
.yb_c00484{bottom:222.170145px;}
.ya_c00484{bottom:259.435545px;}
.y9_c00484{bottom:296.700945px;}
.y8_c00484{bottom:333.966345px;}
.y7_c00484{bottom:371.231745px;}
.y6_c00484{bottom:408.497145px;}
.y5_c00484{bottom:445.762545px;}
.y4_c00484{bottom:483.027945px;}
.y3_c00484{bottom:520.293345px;}
.y2_c00484{bottom:557.248200px;}
.y1_c00484{bottom:734.721600px;}
.h3_c00484{height:86.083074px;}
.h4_c00484{height:90.182268px;}
.h2_c00484{height:102.531945px;}
.h1_c00484{height:196.214753px;}
.h0_c00484{height:892.500000px;}
.w0_c00484{width:1263.000000px;}
.x0_c00484{left:0.000000px;}
.x2_c00484{left:110.286750px;}
.x3_c00484{left:125.811750px;}
.x6_c00484{left:145.180950px;}
.x1_c00484{left:245.142300px;}
.x4_c00484{left:595.685400px;}
.x5_c00484{left:611.210400px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls1_c00484{letter-spacing:0.000000pt;}
.ls2_c00484{letter-spacing:0.044166pt;}
.ls0_c00484{letter-spacing:173.794784pt;}
.ws3_c00484{word-spacing:-173.905200pt;}
.ws0_c00484{word-spacing:-0.242915pt;}
.ws1_c00484{word-spacing:-0.110416pt;}
.ws4_c00484{word-spacing:0.000000pt;}
.ws2_c00484{word-spacing:24.622768pt;}
._6_c00484{margin-left:-173.794784pt;}
._7_c00484{margin-left:-6.647043pt;}
._0_c00484{margin-left:-4.518223pt;}
._1_c00484{margin-left:-3.113731pt;}
._3_c00484{margin-left:-2.031654pt;}
._2_c00484{margin-left:-0.894370pt;}
._4_c00484{width:1.170410pt;}
._5_c00484{width:173.794784pt;}
.fs2_c00484{font-size:110.416000pt;}
.fs1_c00484{font-size:113.813238pt;}
.fs0_c00484{font-size:242.915200pt;}
.y0_c00484{bottom:0.000000pt;}
.y10_c00484{bottom:55.323533pt;}
.yf_c00484{bottom:88.448333pt;}
.ye_c00484{bottom:131.234533pt;}
.yd_c00484{bottom:131.234973pt;}
.yc_c00484{bottom:164.359773pt;}
.yb_c00484{bottom:197.484573pt;}
.ya_c00484{bottom:230.609373pt;}
.y9_c00484{bottom:263.734173pt;}
.y8_c00484{bottom:296.858973pt;}
.y7_c00484{bottom:329.983773pt;}
.y6_c00484{bottom:363.108573pt;}
.y5_c00484{bottom:396.233373pt;}
.y4_c00484{bottom:429.358173pt;}
.y3_c00484{bottom:462.482973pt;}
.y2_c00484{bottom:495.331733pt;}
.y1_c00484{bottom:653.085867pt;}
.h3_c00484{height:76.518288pt;}
.h4_c00484{height:80.162016pt;}
.h2_c00484{height:91.139507pt;}
.h1_c00484{height:174.413114pt;}
.h0_c00484{height:793.333333pt;}
.w0_c00484{width:1122.666667pt;}
.x0_c00484{left:0.000000pt;}
.x2_c00484{left:98.032667pt;}
.x3_c00484{left:111.832667pt;}
.x6_c00484{left:129.049733pt;}
.x1_c00484{left:217.904267pt;}
.x4_c00484{left:529.498133pt;}
.x5_c00484{left:543.298133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00485{vertical-align:0.000000px;}
.ls1_c00485{letter-spacing:0.000000px;}
.ls0_c00485{letter-spacing:0.044718px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00485{word-spacing:-0.193780px;}
.ws1_c00485{word-spacing:0.000000px;}
._0_c00485{margin-left:-9.241819px;}
._2_c00485{margin-left:-3.428417px;}
._1_c00485{margin-left:-1.490616px;}
.fc0_c00485{color:rgb(0,0,0);}
.fs1_c00485{font-size:149.061600px;}
.fs0_c00485{font-size:273.279600px;}
.y0_c00485{bottom:0.000000px;}
.y2_c00485{bottom:72.677550px;}
.y1_c00485{bottom:734.721600px;}
.h2_c00485{height:107.026229px;}
.h1_c00485{height:196.214753px;}
.h0_c00485{height:892.500000px;}
.w0_c00485{width:1263.000000px;}
.x0_c00485{left:0.000000px;}
.x1_c00485{left:235.750050px;}
.x2_c00485{left:485.872350px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls1_c00485{letter-spacing:0.000000pt;}
.ls0_c00485{letter-spacing:0.039750pt;}
.ws0_c00485{word-spacing:-0.172249pt;}
.ws1_c00485{word-spacing:0.000000pt;}
._0_c00485{margin-left:-8.214950pt;}
._2_c00485{margin-left:-3.047482pt;}
._1_c00485{margin-left:-1.324992pt;}
.fs1_c00485{font-size:132.499200pt;}
.fs0_c00485{font-size:242.915200pt;}
.y0_c00485{bottom:0.000000pt;}
.y2_c00485{bottom:64.602267pt;}
.y1_c00485{bottom:653.085867pt;}
.h2_c00485{height:95.134426pt;}
.h1_c00485{height:174.413114pt;}
.h0_c00485{height:793.333333pt;}
.w0_c00485{width:1122.666667pt;}
.x0_c00485{left:0.000000pt;}
.x1_c00485{left:209.555600pt;}
.x2_c00485{left:431.886533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:0.896000;font-style:normal;font-weight:normal;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_edc5d9a72616cec0d922aad3.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:0.938965;font-style:normal;font-weight:normal;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_1698f0148a1a79c3ce5fb237.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:0.717000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.ls1_c00486{letter-spacing:0.000000px;}
.ls0_c00486{letter-spacing:82.604970px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00486{word-spacing:-0.248436px;}
.ws1_c00486{word-spacing:-0.173905px;}
.ws2_c00486{word-spacing:0.000000px;}
._3_c00486{margin-left:-40.142289px;}
._0_c00486{margin-left:-15.328501px;}
._1_c00486{margin-left:-3.378730px;}
._2_c00486{margin-left:-1.440929px;}
.fc0_c00486{color:rgb(0,0,0);}
.fs1_c00486{font-size:173.905200px;}
.fs0_c00486{font-size:248.436000px;}
.y0_c00486{bottom:0.000000px;}
.y6_c00486{bottom:269.843170px;}
.y5_c00486{bottom:321.536491px;}
.y4_c00486{bottom:446.878664px;}
.y3_c00486{bottom:498.137222px;}
.y2_c00486{bottom:550.917450px;}
.y1_c00486{bottom:737.205750px;}
.h3_c00486{height:124.863934px;}
.h2_c00486{height:126.692655px;}
.h1_c00486{height:178.377048px;}
.h0_c00486{height:892.500000px;}
.w0_c00486{width:1263.000000px;}
.x0_c00486{left:0.000000px;}
.x5_c00486{left:151.771020px;}
.x2_c00486{left:165.420600px;}
.x3_c00486{left:185.503740px;}
.x6_c00486{left:215.324160px;}
.x4_c00486{left:247.013790px;}
.x1_c00486{left:330.977100px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls1_c00486{letter-spacing:0.000000pt;}
.ls0_c00486{letter-spacing:73.426640pt;}
.ws0_c00486{word-spacing:-0.220832pt;}
.ws1_c00486{word-spacing:-0.154582pt;}
.ws2_c00486{word-spacing:0.000000pt;}
._3_c00486{margin-left:-35.682035pt;}
._0_c00486{margin-left:-13.625334pt;}
._1_c00486{margin-left:-3.003315pt;}
._2_c00486{margin-left:-1.280826pt;}
.fs1_c00486{font-size:154.582400pt;}
.fs0_c00486{font-size:220.832000pt;}
.y0_c00486{bottom:0.000000pt;}
.y6_c00486{bottom:239.860596pt;}
.y5_c00486{bottom:285.810214pt;}
.y4_c00486{bottom:397.225479pt;}
.y3_c00486{bottom:442.788642pt;}
.y2_c00486{bottom:489.704400pt;}
.y1_c00486{bottom:655.294000pt;}
.h3_c00486{height:110.990163pt;}
.h2_c00486{height:112.615694pt;}
.h1_c00486{height:158.557376pt;}
.h0_c00486{height:793.333333pt;}
.w0_c00486{width:1122.666667pt;}
.x0_c00486{left:0.000000pt;}
.x5_c00486{left:134.907573pt;}
.x2_c00486{left:147.040533pt;}
.x3_c00486{left:164.892213pt;}
.x6_c00486{left:191.399253pt;}
.x4_c00486{left:219.567813pt;}
.x1_c00486{left:294.201867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:0.896000;font-style:normal;font-weight:normal;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_edc5d9a72616cec0d922aad3.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:0.938965;font-style:normal;font-weight:normal;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_1698f0148a1a79c3ce5fb237.woff2')format("woff");}.ff3_c00487{font-family:ff3_c00487;line-height:0.717000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00487{vertical-align:0.000000px;}
.ls2_c00487{letter-spacing:-2.459516px;}
.ls1_c00487{letter-spacing:0.000000px;}
.ls0_c00487{letter-spacing:0.054656px;}
.sc__c00487{text-shadow:none;}
.sc0_c00487{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00487{-webkit-text-stroke:0px transparent;}
.sc0_c00487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00487{word-spacing:-0.248436px;}
.ws2_c00487{word-spacing:-0.191296px;}
.ws1_c00487{word-spacing:-0.136640px;}
.ws4_c00487{word-spacing:0.000000px;}
.ws3_c00487{word-spacing:2.322877px;}
._2_c00487{margin-left:-19.452539px;}
._4_c00487{margin-left:-12.706259px;}
._8_c00487{margin-left:-8.215779px;}
._0_c00487{margin-left:-3.527791px;}
._1_c00487{margin-left:-2.260768px;}
._3_c00487{margin-left:-1.216094px;}
._5_c00487{width:1.216094px;}
._6_c00487{width:2.459516px;}
._7_c00487{width:3.579963px;}
.fc1_c00487{color:rgb(255,0,0);}
.fc0_c00487{color:rgb(0,0,0);}
.fs1_c00487{font-size:136.639800px;}
.fs0_c00487{font-size:248.436000px;}
.y0_c00487{bottom:0.000000px;}
.y12_c00487{bottom:79.345686px;}
.y11_c00487{bottom:111.968438px;}
.y10_c00487{bottom:144.147111px;}
.yf_c00487{bottom:186.505449px;}
.ye_c00487{bottom:219.128202px;}
.yd_c00487{bottom:251.306874px;}
.yc_c00487{bottom:292.128015px;}
.yb_c00487{bottom:324.750767px;}
.ya_c00487{bottom:357.373519px;}
.y9_c00487{bottom:391.533469px;}
.y8_c00487{bottom:424.156221px;}
.y7_c00487{bottom:456.778974px;}
.y6_c00487{bottom:488.957647px;}
.y5_c00487{bottom:529.778787px;}
.y4_c00487{bottom:563.494657px;}
.y3_c00487{bottom:604.315798px;}
.y2_c00487{bottom:636.938550px;}
.y1_c00487{bottom:737.205750px;}
.h2_c00487{height:98.107376px;}
.h3_c00487{height:99.544229px;}
.h1_c00487{height:178.377048px;}
.h0_c00487{height:892.500000px;}
.w0_c00487{width:1263.000000px;}
.x0_c00487{left:0.000000px;}
.x1_c00487{left:121.231950px;}
.x2_c00487{left:139.858950px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls2_c00487{letter-spacing:-2.186237pt;}
.ls1_c00487{letter-spacing:0.000000pt;}
.ls0_c00487{letter-spacing:0.048583pt;}
.ws0_c00487{word-spacing:-0.220832pt;}
.ws2_c00487{word-spacing:-0.170041pt;}
.ws1_c00487{word-spacing:-0.121458pt;}
.ws4_c00487{word-spacing:0.000000pt;}
.ws3_c00487{word-spacing:2.064779pt;}
._2_c00487{margin-left:-17.291146pt;}
._4_c00487{margin-left:-11.294453pt;}
._8_c00487{margin-left:-7.302914pt;}
._0_c00487{margin-left:-3.135814pt;}
._1_c00487{margin-left:-2.009571pt;}
._3_c00487{margin-left:-1.080973pt;}
._5_c00487{width:1.080973pt;}
._6_c00487{width:2.186237pt;}
._7_c00487{width:3.182189pt;}
.fs1_c00487{font-size:121.457600pt;}
.fs0_c00487{font-size:220.832000pt;}
.y0_c00487{bottom:0.000000pt;}
.y12_c00487{bottom:70.529499pt;}
.y11_c00487{bottom:99.527501pt;}
.y10_c00487{bottom:128.130766pt;}
.yf_c00487{bottom:165.782622pt;}
.ye_c00487{bottom:194.780624pt;}
.yd_c00487{bottom:223.383888pt;}
.yc_c00487{bottom:259.669346pt;}
.yb_c00487{bottom:288.667348pt;}
.ya_c00487{bottom:317.665350pt;}
.y9_c00487{bottom:348.029750pt;}
.y8_c00487{bottom:377.027752pt;}
.y7_c00487{bottom:406.025754pt;}
.y6_c00487{bottom:434.629019pt;}
.y5_c00487{bottom:470.914477pt;}
.y4_c00487{bottom:500.884140pt;}
.y3_c00487{bottom:537.169598pt;}
.y2_c00487{bottom:566.167600pt;}
.y1_c00487{bottom:655.294000pt;}
.h2_c00487{height:87.206557pt;}
.h3_c00487{height:88.483759pt;}
.h1_c00487{height:158.557376pt;}
.h0_c00487{height:793.333333pt;}
.w0_c00487{width:1122.666667pt;}
.x0_c00487{left:0.000000pt;}
.x1_c00487{left:107.761733pt;}
.x2_c00487{left:124.319067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.v1_c00488{vertical-align:44.718600px;}
.ls3_c00488{letter-spacing:-1.103056px;}
.ls2_c00488{letter-spacing:0.000000px;}
.ls0_c00488{letter-spacing:0.029812px;}
.ls1_c00488{letter-spacing:0.074531px;}
.sc__c00488{text-shadow:none;}
.sc0_c00488{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00488{-webkit-text-stroke:0px transparent;}
.sc0_c00488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00488{word-spacing:-0.248436px;}
.ws4_c00488{word-spacing:-0.223592px;}
.ws3_c00488{word-spacing:-0.178874px;}
.ws1_c00488{word-spacing:-0.149062px;}
.ws5_c00488{word-spacing:0.000000px;}
.ws2_c00488{word-spacing:1.003681px;}
._2_c00488{margin-left:-5.192312px;}
._1_c00488{margin-left:-4.099194px;}
._4_c00488{margin-left:-2.608578px;}
._0_c00488{margin-left:-1.589990px;}
._3_c00488{width:1.072907px;}
.fc1_c00488{color:rgb(255,0,0);}
.fc0_c00488{color:rgb(0,0,0);}
.fs3_c00488{font-size:49.687200px;}
.fs2_c00488{font-size:99.374400px;}
.fs1_c00488{font-size:149.061600px;}
.fs0_c00488{font-size:248.436000px;}
.y0_c00488{bottom:0.000000px;}
.y7_c00488{bottom:74.048597px;}
.y6_c00488{bottom:119.065200px;}
.y5_c00488{bottom:178.068900px;}
.y4_c00488{bottom:249.494250px;}
.y3_c00488{bottom:622.595550px;}
.y2_c00488{bottom:697.126350px;}
.y1_c00488{bottom:771.657150px;}
.h3_c00488{height:107.026229px;}
.h2_c00488{height:116.069419px;}
.h1_c00488{height:178.377048px;}
.h0_c00488{height:892.500000px;}
.w0_c00488{width:1263.000000px;}
.x0_c00488{left:0.000000px;}
.x2_c00488{left:210.130650px;}
.x4_c00488{left:289.350750px;}
.x1_c00488{left:341.968950px;}
.x3_c00488{left:424.686150px;}
.x7_c00488{left:680.808810px;}
.x5_c00488{left:758.845500px;}
.x6_c00488{left:795.532350px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.v1_c00488{vertical-align:39.749867pt;}
.ls3_c00488{letter-spacing:-0.980494pt;}
.ls2_c00488{letter-spacing:0.000000pt;}
.ls0_c00488{letter-spacing:0.026500pt;}
.ls1_c00488{letter-spacing:0.066250pt;}
.ws0_c00488{word-spacing:-0.220832pt;}
.ws4_c00488{word-spacing:-0.198749pt;}
.ws3_c00488{word-spacing:-0.158999pt;}
.ws1_c00488{word-spacing:-0.132499pt;}
.ws5_c00488{word-spacing:0.000000pt;}
.ws2_c00488{word-spacing:0.892161pt;}
._2_c00488{margin-left:-4.615389pt;}
._1_c00488{margin-left:-3.643728pt;}
._4_c00488{margin-left:-2.318736pt;}
._0_c00488{margin-left:-1.413325pt;}
._3_c00488{width:0.953696pt;}
.fs3_c00488{font-size:44.166400pt;}
.fs2_c00488{font-size:88.332800pt;}
.fs1_c00488{font-size:132.499200pt;}
.fs0_c00488{font-size:220.832000pt;}
.y0_c00488{bottom:0.000000pt;}
.y7_c00488{bottom:65.820975pt;}
.y6_c00488{bottom:105.835733pt;}
.y5_c00488{bottom:158.283467pt;}
.y4_c00488{bottom:221.772667pt;}
.y3_c00488{bottom:553.418267pt;}
.y2_c00488{bottom:619.667867pt;}
.y1_c00488{bottom:685.917467pt;}
.h3_c00488{height:95.134426pt;}
.h2_c00488{height:103.172817pt;}
.h1_c00488{height:158.557376pt;}
.h0_c00488{height:793.333333pt;}
.w0_c00488{width:1122.666667pt;}
.x0_c00488{left:0.000000pt;}
.x2_c00488{left:186.782800pt;}
.x4_c00488{left:257.200667pt;}
.x1_c00488{left:303.972400pt;}
.x3_c00488{left:377.498800pt;}
.x7_c00488{left:605.163387pt;}
.x5_c00488{left:674.529333pt;}
.x6_c00488{left:707.139867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:0.896000;font-style:normal;font-weight:normal;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_dd0c4498160eb783a5c976ac.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:0.904000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.ls1_c00489{letter-spacing:0.000000px;}
.ls0_c00489{letter-spacing:0.027328px;}
.sc__c00489{text-shadow:none;}
.sc0_c00489{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00489{-webkit-text-stroke:0px transparent;}
.sc0_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00489{word-spacing:-0.300608px;}
.ws1_c00489{word-spacing:-0.167695px;}
.ws2_c00489{word-spacing:0.000000px;}
._5_c00489{margin-left:-12.175254px;}
._3_c00489{margin-left:-4.142057px;}
._0_c00489{margin-left:-2.732796px;}
._1_c00489{margin-left:-1.609868px;}
._2_c00489{width:1.676946px;}
._4_c00489{width:7.529488px;}
.fc1_c00489{color:rgb(255,0,0);}
.fc0_c00489{color:rgb(0,0,0);}
.fs1_c00489{font-size:167.694600px;}
.fs0_c00489{font-size:273.279600px;}
.y0_c00489{bottom:0.000000px;}
.yc_c00489{bottom:88.109848px;}
.yb_c00489{bottom:136.992824px;}
.ya_c00489{bottom:177.365299px;}
.y9_c00489{bottom:217.737774px;}
.y8_c00489{bottom:258.906798px;}
.y7_c00489{bottom:359.020474px;}
.y6_c00489{bottom:399.392949px;}
.y5_c00489{bottom:439.765424px;}
.y4_c00489{bottom:479.383273px;}
.y3_c00489{bottom:580.293499px;}
.y2_c00489{bottom:630.727650px;}
.y1_c00489{bottom:734.721600px;}
.h3_c00489{height:120.404723px;}
.h2_c00489{height:121.746280px;}
.h1_c00489{height:196.214753px;}
.h0_c00489{height:892.500000px;}
.w0_c00489{width:1263.000000px;}
.x0_c00489{left:0.000000px;}
.x2_c00489{left:115.407000px;}
.x3_c00489{left:147.851145px;}
.x4_c00489{left:157.324500px;}
.x1_c00489{left:442.014150px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls1_c00489{letter-spacing:0.000000pt;}
.ls0_c00489{letter-spacing:0.024292pt;}
.ws0_c00489{word-spacing:-0.267207pt;}
.ws1_c00489{word-spacing:-0.149062pt;}
.ws2_c00489{word-spacing:0.000000pt;}
._5_c00489{margin-left:-10.822448pt;}
._3_c00489{margin-left:-3.681828pt;}
._0_c00489{margin-left:-2.429152pt;}
._1_c00489{margin-left:-1.430994pt;}
._2_c00489{width:1.490619pt;}
._4_c00489{width:6.692878pt;}
.fs1_c00489{font-size:149.061867pt;}
.fs0_c00489{font-size:242.915200pt;}
.y0_c00489{bottom:0.000000pt;}
.yc_c00489{bottom:78.319865pt;}
.yb_c00489{bottom:121.771399pt;}
.ya_c00489{bottom:157.658043pt;}
.y9_c00489{bottom:193.544688pt;}
.y8_c00489{bottom:230.139376pt;}
.y7_c00489{bottom:319.129311pt;}
.y6_c00489{bottom:355.015955pt;}
.y5_c00489{bottom:390.902599pt;}
.y4_c00489{bottom:426.118465pt;}
.y3_c00489{bottom:515.816444pt;}
.y2_c00489{bottom:560.646800pt;}
.y1_c00489{bottom:653.085867pt;}
.h3_c00489{height:107.026420pt;}
.h2_c00489{height:108.218915pt;}
.h1_c00489{height:174.413114pt;}
.h0_c00489{height:793.333333pt;}
.w0_c00489{width:1122.666667pt;}
.x0_c00489{left:0.000000pt;}
.x2_c00489{left:102.584000pt;}
.x3_c00489{left:131.423240pt;}
.x4_c00489{left:139.844000pt;}
.x1_c00489{left:392.901467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls1_c00490{letter-spacing:0.000000px;}
.ls0_c00490{letter-spacing:0.044718px;}
.sc__c00490{text-shadow:none;}
.sc0_c00490{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00490{-webkit-text-stroke:0px transparent;}
.sc0_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00490{word-spacing:-0.193780px;}
.ws1_c00490{word-spacing:0.000000px;}
._0_c00490{margin-left:-9.241819px;}
._2_c00490{margin-left:-3.428417px;}
._1_c00490{margin-left:-1.490616px;}
.fc0_c00490{color:rgb(0,0,0);}
.fs1_c00490{font-size:149.061600px;}
.fs0_c00490{font-size:273.279600px;}
.y0_c00490{bottom:0.000000px;}
.y2_c00490{bottom:72.677550px;}
.y1_c00490{bottom:734.721600px;}
.h2_c00490{height:107.026229px;}
.h1_c00490{height:196.214753px;}
.h0_c00490{height:892.500000px;}
.w0_c00490{width:1263.000000px;}
.x0_c00490{left:0.000000px;}
.x1_c00490{left:344.986050px;}
.x2_c00490{left:485.872350px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls1_c00490{letter-spacing:0.000000pt;}
.ls0_c00490{letter-spacing:0.039750pt;}
.ws0_c00490{word-spacing:-0.172249pt;}
.ws1_c00490{word-spacing:0.000000pt;}
._0_c00490{margin-left:-8.214950pt;}
._2_c00490{margin-left:-3.047482pt;}
._1_c00490{margin-left:-1.324992pt;}
.fs1_c00490{font-size:132.499200pt;}
.fs0_c00490{font-size:242.915200pt;}
.y0_c00490{bottom:0.000000pt;}
.y2_c00490{bottom:64.602267pt;}
.y1_c00490{bottom:653.085867pt;}
.h2_c00490{height:95.134426pt;}
.h1_c00490{height:174.413114pt;}
.h0_c00490{height:793.333333pt;}
.w0_c00490{width:1122.666667pt;}
.x0_c00490{left:0.000000pt;}
.x1_c00490{left:306.654267pt;}
.x2_c00490{left:431.886533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.ls1_c00491{letter-spacing:0.000000px;}
.ls0_c00491{letter-spacing:0.044718px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00491{word-spacing:-0.273280px;}
.ws1_c00491{word-spacing:-0.193780px;}
._1_c00491{margin-left:-9.241819px;}
._0_c00491{margin-left:-4.427130px;}
._2_c00491{margin-left:-1.490616px;}
.fc0_c00491{color:rgb(0,0,0);}
.fs1_c00491{font-size:149.061600px;}
.fs0_c00491{font-size:273.279600px;}
.y0_c00491{bottom:0.000000px;}
.y2_c00491{bottom:72.677550px;}
.y1_c00491{bottom:734.721600px;}
.h2_c00491{height:107.026229px;}
.h1_c00491{height:196.214753px;}
.h0_c00491{height:892.500000px;}
.w0_c00491{width:1263.000000px;}
.x0_c00491{left:0.000000px;}
.x1_c00491{left:300.891300px;}
.x2_c00491{left:485.872350px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls1_c00491{letter-spacing:0.000000pt;}
.ls0_c00491{letter-spacing:0.039750pt;}
.ws0_c00491{word-spacing:-0.242915pt;}
.ws1_c00491{word-spacing:-0.172249pt;}
._1_c00491{margin-left:-8.214950pt;}
._0_c00491{margin-left:-3.935226pt;}
._2_c00491{margin-left:-1.324992pt;}
.fs1_c00491{font-size:132.499200pt;}
.fs0_c00491{font-size:242.915200pt;}
.y0_c00491{bottom:0.000000pt;}
.y2_c00491{bottom:64.602267pt;}
.y1_c00491{bottom:653.085867pt;}
.h2_c00491{height:95.134426pt;}
.h1_c00491{height:174.413114pt;}
.h0_c00491{height:793.333333pt;}
.w0_c00491{width:1122.666667pt;}
.x0_c00491{left:0.000000pt;}
.x1_c00491{left:267.458933pt;}
.x2_c00491{left:431.886533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.ls0_c00492{letter-spacing:0.000000px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00492{word-spacing:-0.273280px;}
._1_c00492{margin-left:-4.782393px;}
._0_c00492{margin-left:-3.716603px;}
.fc0_c00492{color:rgb(0,0,0);}
.fs0_c00492{font-size:273.279600px;}
.y0_c00492{bottom:0.000000px;}
.y1_c00492{bottom:734.721600px;}
.h1_c00492{height:196.214753px;}
.h0_c00492{height:892.500000px;}
.w0_c00492{width:1263.000000px;}
.x0_c00492{left:0.000000px;}
.x1_c00492{left:141.823800px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls0_c00492{letter-spacing:0.000000pt;}
.ws0_c00492{word-spacing:-0.242915pt;}
._1_c00492{margin-left:-4.251016pt;}
._0_c00492{margin-left:-3.303647pt;}
.fs0_c00492{font-size:242.915200pt;}
.y0_c00492{bottom:0.000000pt;}
.y1_c00492{bottom:653.085867pt;}
.h1_c00492{height:174.413114pt;}
.h0_c00492{height:793.333333pt;}
.w0_c00492{width:1122.666667pt;}
.x0_c00492{left:0.000000pt;}
.x1_c00492{left:126.065600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.ls1_c00493{letter-spacing:-0.054656px;}
.ls0_c00493{letter-spacing:0.044718px;}
.sc__c00493{text-shadow:none;}
.sc0_c00493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00493{-webkit-text-stroke:0px transparent;}
.sc0_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00493{word-spacing:-0.218624px;}
.ws1_c00493{word-spacing:-0.193780px;}
._1_c00493{margin-left:-9.241819px;}
._0_c00493{margin-left:-2.186237px;}
.fc0_c00493{color:rgb(0,0,0);}
.fs1_c00493{font-size:149.061600px;}
.fs0_c00493{font-size:273.279600px;}
.y0_c00493{bottom:0.000000px;}
.y2_c00493{bottom:72.677550px;}
.y1_c00493{bottom:734.721600px;}
.h2_c00493{height:107.026229px;}
.h1_c00493{height:196.214753px;}
.h0_c00493{height:892.500000px;}
.w0_c00493{width:1263.000000px;}
.x0_c00493{left:0.000000px;}
.x1_c00493{left:454.488900px;}
.x2_c00493{left:485.872350px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls1_c00493{letter-spacing:-0.048583pt;}
.ls0_c00493{letter-spacing:0.039750pt;}
.ws0_c00493{word-spacing:-0.194332pt;}
.ws1_c00493{word-spacing:-0.172249pt;}
._1_c00493{margin-left:-8.214950pt;}
._0_c00493{margin-left:-1.943322pt;}
.fs1_c00493{font-size:132.499200pt;}
.fs0_c00493{font-size:242.915200pt;}
.y0_c00493{bottom:0.000000pt;}
.y2_c00493{bottom:64.602267pt;}
.y1_c00493{bottom:653.085867pt;}
.h2_c00493{height:95.134426pt;}
.h1_c00493{height:174.413114pt;}
.h0_c00493{height:793.333333pt;}
.w0_c00493{width:1122.666667pt;}
.x0_c00493{left:0.000000pt;}
.x1_c00493{left:403.990133pt;}
.x2_c00493{left:431.886533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.ls0_c00494{letter-spacing:-0.054656px;}
.ls1_c00494{letter-spacing:-0.014906px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00494{word-spacing:-0.218624px;}
.ws1_c00494{word-spacing:-0.134155px;}
.fc0_c00494{color:rgb(0,0,0);}
.fs1_c00494{font-size:149.061600px;}
.fs0_c00494{font-size:273.279600px;}
.y0_c00494{bottom:0.000000px;}
.y2_c00494{bottom:72.677550px;}
.y1_c00494{bottom:734.721600px;}
.h2_c00494{height:107.026229px;}
.h1_c00494{height:196.214753px;}
.h0_c00494{height:892.500000px;}
.w0_c00494{width:1263.000000px;}
.x0_c00494{left:0.000000px;}
.x1_c00494{left:381.759450px;}
.x2_c00494{left:572.618250px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls0_c00494{letter-spacing:-0.048583pt;}
.ls1_c00494{letter-spacing:-0.013250pt;}
.ws0_c00494{word-spacing:-0.194332pt;}
.ws1_c00494{word-spacing:-0.119249pt;}
.fs1_c00494{font-size:132.499200pt;}
.fs0_c00494{font-size:242.915200pt;}
.y0_c00494{bottom:0.000000pt;}
.y2_c00494{bottom:64.602267pt;}
.y1_c00494{bottom:653.085867pt;}
.h2_c00494{height:95.134426pt;}
.h1_c00494{height:174.413114pt;}
.h0_c00494{height:793.333333pt;}
.w0_c00494{width:1122.666667pt;}
.x0_c00494{left:0.000000pt;}
.x1_c00494{left:339.341733pt;}
.x2_c00494{left:508.994000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.ls0_c00495{letter-spacing:-0.054656px;}
.sc__c00495{text-shadow:none;}
.sc0_c00495{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00495{-webkit-text-stroke:0px transparent;}
.sc0_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00495{word-spacing:-0.218624px;}
._0_c00495{margin-left:-61.214630px;}
.fc0_c00495{color:rgb(0,0,0);}
.fs0_c00495{font-size:273.279600px;}
.y0_c00495{bottom:0.000000px;}
.y1_c00495{bottom:727.928400px;}
.h1_c00495{height:196.214753px;}
.h0_c00495{height:892.500000px;}
.w0_c00495{width:1263.000000px;}
.x0_c00495{left:0.000000px;}
.x1_c00495{left:409.560300px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls0_c00495{letter-spacing:-0.048583pt;}
.ws0_c00495{word-spacing:-0.194332pt;}
._0_c00495{margin-left:-54.413005pt;}
.fs0_c00495{font-size:242.915200pt;}
.y0_c00495{bottom:0.000000pt;}
.y1_c00495{bottom:647.047467pt;}
.h1_c00495{height:174.413114pt;}
.h0_c00495{height:793.333333pt;}
.w0_c00495{width:1122.666667pt;}
.x0_c00495{left:0.000000pt;}
.x1_c00495{left:364.053600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls0_c00496{letter-spacing:-0.054656px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00496{word-spacing:-0.218624px;}
._0_c00496{margin-left:-61.214630px;}
.fc0_c00496{color:rgb(0,0,0);}
.fs0_c00496{font-size:273.279600px;}
.y0_c00496{bottom:0.000000px;}
.y1_c00496{bottom:727.928400px;}
.h1_c00496{height:196.214753px;}
.h0_c00496{height:892.500000px;}
.w0_c00496{width:1263.000000px;}
.x0_c00496{left:0.000000px;}
.x1_c00496{left:409.560300px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls0_c00496{letter-spacing:-0.048583pt;}
.ws0_c00496{word-spacing:-0.194332pt;}
._0_c00496{margin-left:-54.413005pt;}
.fs0_c00496{font-size:242.915200pt;}
.y0_c00496{bottom:0.000000pt;}
.y1_c00496{bottom:647.047467pt;}
.h1_c00496{height:174.413114pt;}
.h0_c00496{height:793.333333pt;}
.w0_c00496{width:1122.666667pt;}
.x0_c00496{left:0.000000pt;}
.x1_c00496{left:364.053600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.ls0_c00497{letter-spacing:-0.054656px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00497{word-spacing:-0.218624px;}
._0_c00497{margin-left:-61.761190px;}
.fc0_c00497{color:rgb(0,0,0);}
.fs0_c00497{font-size:273.279600px;}
.y0_c00497{bottom:0.000000px;}
.y1_c00497{bottom:734.721600px;}
.h1_c00497{height:196.214753px;}
.h0_c00497{height:892.500000px;}
.w0_c00497{width:1263.000000px;}
.x0_c00497{left:0.000000px;}
.x1_c00497{left:194.426850px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls0_c00497{letter-spacing:-0.048583pt;}
.ws0_c00497{word-spacing:-0.194332pt;}
._0_c00497{margin-left:-54.898835pt;}
.fs0_c00497{font-size:242.915200pt;}
.y0_c00497{bottom:0.000000pt;}
.y1_c00497{bottom:653.085867pt;}
.h1_c00497{height:174.413114pt;}
.h0_c00497{height:793.333333pt;}
.w0_c00497{width:1122.666667pt;}
.x0_c00497{left:0.000000pt;}
.x1_c00497{left:172.823867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.v1_c00498{vertical-align:59.624400px;}
.ls1_c00498{letter-spacing:0.000000px;}
.ls0_c00498{letter-spacing:0.019875px;}
.ls2_c00498{letter-spacing:0.079500px;}
.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;}
}
.ws3_c00498{word-spacing:-0.278248px;}
.ws0_c00498{word-spacing:-0.273280px;}
.ws4_c00498{word-spacing:-0.218624px;}
.ws1_c00498{word-spacing:-0.198749px;}
.ws2_c00498{word-spacing:-0.132499px;}
._1_c00498{margin-left:-61.815846px;}
._2_c00498{margin-left:-5.127719px;}
._3_c00498{margin-left:-2.889311px;}
._0_c00498{margin-left:-1.885629px;}
.fc1_c00498{color:rgb(255,0,0);}
.fc0_c00498{color:rgb(0,0,0);}
.fs2_c00498{font-size:132.499200px;}
.fs1_c00498{font-size:198.748800px;}
.fs0_c00498{font-size:273.279600px;}
.y0_c00498{bottom:0.000000px;}
.y3_c00498{bottom:543.567094px;}
.y2_c00498{bottom:602.545800px;}
.y1_c00498{bottom:734.721600px;}
.h3_c00498{height:142.701638px;}
.h2_c00498{height:154.758826px;}
.h1_c00498{height:196.214753px;}
.h0_c00498{height:892.500000px;}
.w0_c00498{width:1263.000000px;}
.x0_c00498{left:0.000000px;}
.x2_c00498{left:139.858950px;}
.x1_c00498{left:346.820550px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.v1_c00498{vertical-align:52.999467pt;}
.ls1_c00498{letter-spacing:0.000000pt;}
.ls0_c00498{letter-spacing:0.017667pt;}
.ls2_c00498{letter-spacing:0.070666pt;}
.ws3_c00498{word-spacing:-0.247332pt;}
.ws0_c00498{word-spacing:-0.242915pt;}
.ws4_c00498{word-spacing:-0.194332pt;}
.ws1_c00498{word-spacing:-0.176666pt;}
.ws2_c00498{word-spacing:-0.117777pt;}
._1_c00498{margin-left:-54.947418pt;}
._2_c00498{margin-left:-4.557972pt;}
._3_c00498{margin-left:-2.568276pt;}
._0_c00498{margin-left:-1.676115pt;}
.fs2_c00498{font-size:117.777067pt;}
.fs1_c00498{font-size:176.665600pt;}
.fs0_c00498{font-size:242.915200pt;}
.y0_c00498{bottom:0.000000pt;}
.y3_c00498{bottom:483.170750pt;}
.y2_c00498{bottom:535.596267pt;}
.y1_c00498{bottom:653.085867pt;}
.h3_c00498{height:126.845901pt;}
.h2_c00498{height:137.563401pt;}
.h1_c00498{height:174.413114pt;}
.h0_c00498{height:793.333333pt;}
.w0_c00498{width:1122.666667pt;}
.x0_c00498{left:0.000000pt;}
.x2_c00498{left:124.319067pt;}
.x1_c00498{left:308.284933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:0.896000;font-style:normal;font-weight:normal;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_45d9422feb9d39baa0952a48.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:0.938965;font-style:normal;font-weight:normal;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_1698f0148a1a79c3ce5fb237.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:0.717000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.ls4_c00499{letter-spacing:-2.027238px;}
.ls3_c00499{letter-spacing:0.000000px;}
.ls1_c00499{letter-spacing:0.059625px;}
.ls2_c00499{letter-spacing:0.136640px;}
.ls0_c00499{letter-spacing:94.803178px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00499{word-spacing:-0.409919px;}
.ws2_c00499{word-spacing:-0.208686px;}
.ws1_c00499{word-spacing:-0.149062px;}
.ws5_c00499{word-spacing:0.000000px;}
.ws3_c00499{word-spacing:1.878176px;}
.ws4_c00499{word-spacing:76.200290px;}
._2_c00499{margin-left:-62.307749px;}
._3_c00499{margin-left:-8.302731px;}
._6_c00499{margin-left:-6.171150px;}
._1_c00499{margin-left:-3.006076px;}
._0_c00499{margin-left:-1.639678px;}
._4_c00499{width:1.937801px;}
._5_c00499{width:2.981232px;}
.fc0_c00499{color:rgb(0,0,0);}
.fs2_c00499{font-size:111.796200px;}
.fs1_c00499{font-size:149.061600px;}
.fs0_c00499{font-size:273.279600px;}
.y0_c00499{bottom:0.000000px;}
.yb_c00499{bottom:52.748784px;}
.ya_c00499{bottom:97.765387px;}
.y9_c00499{bottom:142.781990px;}
.y8_c00499{bottom:186.270712px;}
.y7_c00499{bottom:231.659969px;}
.y6_c00499{bottom:285.620269px;}
.y5_c00499{bottom:330.636872px;}
.y4_c00499{bottom:374.125594px;}
.y3_c00499{bottom:419.142197px;}
.y2_c00499{bottom:464.158800px;}
.yc_c00499{bottom:703.666950px;}
.y1_c00499{bottom:757.236150px;}
.h4_c00499{height:81.445279px;}
.h3_c00499{height:107.026229px;}
.h2_c00499{height:108.593705px;}
.h1_c00499{height:196.214753px;}
.h0_c00499{height:892.500000px;}
.w0_c00499{width:1263.000000px;}
.x0_c00499{left:0.000000px;}
.x2_c00499{left:83.968950px;}
.x1_c00499{left:87.877350px;}
.x3_c00499{left:125.886450px;}
.x4_c00499{left:191.673600px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls4_c00499{letter-spacing:-1.801989pt;}
.ls3_c00499{letter-spacing:0.000000pt;}
.ls1_c00499{letter-spacing:0.053000pt;}
.ls2_c00499{letter-spacing:0.121458pt;}
.ls0_c00499{letter-spacing:84.269491pt;}
.ws0_c00499{word-spacing:-0.364373pt;}
.ws2_c00499{word-spacing:-0.185499pt;}
.ws1_c00499{word-spacing:-0.132499pt;}
.ws5_c00499{word-spacing:0.000000pt;}
.ws3_c00499{word-spacing:1.669490pt;}
.ws4_c00499{word-spacing:67.733591pt;}
._2_c00499{margin-left:-55.384666pt;}
._3_c00499{margin-left:-7.380205pt;}
._6_c00499{margin-left:-5.485467pt;}
._1_c00499{margin-left:-2.672067pt;}
._0_c00499{margin-left:-1.457491pt;}
._4_c00499{width:1.722490pt;}
._5_c00499{width:2.649984pt;}
.fs2_c00499{font-size:99.374400pt;}
.fs1_c00499{font-size:132.499200pt;}
.fs0_c00499{font-size:242.915200pt;}
.y0_c00499{bottom:0.000000pt;}
.yb_c00499{bottom:46.887808pt;}
.ya_c00499{bottom:86.902566pt;}
.y9_c00499{bottom:126.917325pt;}
.y8_c00499{bottom:165.573966pt;}
.y7_c00499{bottom:205.919973pt;}
.y6_c00499{bottom:253.884683pt;}
.y5_c00499{bottom:293.899442pt;}
.y4_c00499{bottom:332.556083pt;}
.y3_c00499{bottom:372.570842pt;}
.y2_c00499{bottom:412.585600pt;}
.yc_c00499{bottom:625.481733pt;}
.y1_c00499{bottom:673.098800pt;}
.h4_c00499{height:72.395803pt;}
.h3_c00499{height:95.134426pt;}
.h2_c00499{height:96.527737pt;}
.h1_c00499{height:174.413114pt;}
.h0_c00499{height:793.333333pt;}
.w0_c00499{width:1122.666667pt;}
.x0_c00499{left:0.000000pt;}
.x2_c00499{left:74.639067pt;}
.x1_c00499{left:78.113200pt;}
.x3_c00499{left:111.899067pt;}
.x4_c00499{left:170.376533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01000{font-family:ff1_c01000;line-height:0.896000;font-style:normal;font-weight:normal;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_996c45e32c8996589f70d02b.woff2')format("woff");}.ff2_c01000{font-family:ff2_c01000;line-height:0.938965;font-style:normal;font-weight:normal;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_1698f0148a1a79c3ce5fb237.woff2')format("woff");}.ff3_c01000{font-family:ff3_c01000;line-height:0.717000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01000{vertical-align:0.000000px;}
.ls1_c01000{letter-spacing:-0.054656px;}
.ls2_c01000{letter-spacing:0.000000px;}
.ls0_c01000{letter-spacing:85.076908px;}
.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:-0.273280px;}
.ws0_c01000{word-spacing:-0.218624px;}
.ws2_c01000{word-spacing:0.000000px;}
._0_c01000{margin-left:-61.761190px;}
._1_c01000{margin-left:-6.182330px;}
.fc1_c01000{color:rgb(255,102,0);}
.fc0_c01000{color:rgb(0,0,0);}
.fs1_c01000{font-size:111.796200px;}
.fs0_c01000{font-size:273.279600px;}
.y0_c01000{bottom:0.000000px;}
.y6_c01000{bottom:159.824550px;}
.y5_c01000{bottom:226.594830px;}
.y4_c01000{bottom:260.748570px;}
.y3_c01000{bottom:327.518850px;}
.y2_c01000{bottom:693.388121px;}
.y1_c01000{bottom:775.713600px;}
.h2_c01000{height:81.445279px;}
.h1_c01000{height:196.214753px;}
.h0_c01000{height:892.500000px;}
.w0_c01000{width:1263.000000px;}
.x0_c01000{left:0.000000px;}
.x3_c01000{left:230.874300px;}
.x4_c01000{left:286.764300px;}
.x2_c01000{left:505.172070px;}
.x1_c01000{left:562.757400px;}
@media print{
.v0_c01000{vertical-align:0.000000pt;}
.ls1_c01000{letter-spacing:-0.048583pt;}
.ls2_c01000{letter-spacing:0.000000pt;}
.ls0_c01000{letter-spacing:75.623918pt;}
.ws1_c01000{word-spacing:-0.242915pt;}
.ws0_c01000{word-spacing:-0.194332pt;}
.ws2_c01000{word-spacing:0.000000pt;}
._0_c01000{margin-left:-54.898835pt;}
._1_c01000{margin-left:-5.495404pt;}
.fs1_c01000{font-size:99.374400pt;}
.fs0_c01000{font-size:242.915200pt;}
.y0_c01000{bottom:0.000000pt;}
.y6_c01000{bottom:142.066267pt;}
.y5_c01000{bottom:201.417627pt;}
.y4_c01000{bottom:231.776506pt;}
.y3_c01000{bottom:291.127867pt;}
.y2_c01000{bottom:616.344996pt;}
.y1_c01000{bottom:689.523200pt;}
.h2_c01000{height:72.395803pt;}
.h1_c01000{height:174.413114pt;}
.h0_c01000{height:793.333333pt;}
.w0_c01000{width:1122.666667pt;}
.x0_c01000{left:0.000000pt;}
.x3_c01000{left:205.221600pt;}
.x4_c01000{left:254.901600pt;}
.x2_c01000{left:449.041840pt;}
.x1_c01000{left:500.228800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01001{font-family:ff1_c01001;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01001{vertical-align:0.000000px;}
.v1_c01001{vertical-align:59.525026px;}
.ls1_c01001{letter-spacing:0.000000px;}
.ls0_c01001{letter-spacing:0.010321px;}
.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:-0.273280px;}
.ws1_c01001{word-spacing:-0.260858px;}
.ws2_c01001{word-spacing:-0.198749px;}
.ws3_c01001{word-spacing:0.000000px;}
._0_c01001{margin-left:-61.815846px;}
._1_c01001{margin-left:-58.953863px;}
._7_c01001{margin-left:-43.138829px;}
._3_c01001{margin-left:-5.451928px;}
._2_c01001{margin-left:-3.912867px;}
._5_c01001{margin-left:-2.765093px;}
._4_c01001{margin-left:-1.539061px;}
._6_c01001{width:1.385949px;}
.fc1_c01001{color:rgb(255,0,0);}
.fc0_c01001{color:rgb(0,0,0);}
.fs3_c01001{font-size:132.499200px;}
.fs2_c01001{font-size:198.748800px;}
.fs1_c01001{font-size:260.857800px;}
.fs0_c01001{font-size:273.279600px;}
.y0_c01001{bottom:0.000000px;}
.ya_c01001{bottom:99.474797px;}
.y9_c01001{bottom:158.950375px;}
.y8_c01001{bottom:251.617003px;}
.y7_c01001{bottom:312.210694px;}
.y6_c01001{bottom:371.189400px;}
.y5_c01001{bottom:431.770594px;}
.y4_c01001{bottom:490.749300px;}
.y3_c01001{bottom:582.430204px;}
.y2_c01001{bottom:660.035400px;}
.y1_c01001{bottom:739.224450px;}
.h3_c01001{height:142.701638px;}
.h5_c01001{height:154.658851px;}
.h4_c01001{height:154.659451px;}
.h2_c01001{height:187.295900px;}
.h1_c01001{height:196.214753px;}
.h0_c01001{height:892.500000px;}
.w0_c01001{width:1263.000000px;}
.x0_c01001{left:0.000000px;}
.x4_c01001{left:114.655050px;}
.x5_c01001{left:125.882730px;}
.x1_c01001{left:589.034700px;}
.x2_c01001{left:684.063900px;}
.x3_c01001{left:725.208255px;}
@media print{
.v0_c01001{vertical-align:0.000000pt;}
.v1_c01001{vertical-align:52.911134pt;}
.ls1_c01001{letter-spacing:0.000000pt;}
.ls0_c01001{letter-spacing:0.009175pt;}
.ws0_c01001{word-spacing:-0.242915pt;}
.ws1_c01001{word-spacing:-0.231874pt;}
.ws2_c01001{word-spacing:-0.176666pt;}
.ws3_c01001{word-spacing:0.000000pt;}
._0_c01001{margin-left:-54.947418pt;}
._1_c01001{margin-left:-52.403434pt;}
._7_c01001{margin-left:-38.345626pt;}
._3_c01001{margin-left:-4.846158pt;}
._2_c01001{margin-left:-3.478104pt;}
._5_c01001{margin-left:-2.457860pt;}
._4_c01001{margin-left:-1.368054pt;}
._6_c01001{width:1.231955pt;}
.fs3_c01001{font-size:117.777067pt;}
.fs2_c01001{font-size:176.665600pt;}
.fs1_c01001{font-size:231.873600pt;}
.fs0_c01001{font-size:242.915200pt;}
.y0_c01001{bottom:0.000000pt;}
.ya_c01001{bottom:88.422042pt;}
.y9_c01001{bottom:141.289222pt;}
.y8_c01001{bottom:223.659558pt;}
.y7_c01001{bottom:277.520617pt;}
.y6_c01001{bottom:329.946133pt;}
.y5_c01001{bottom:383.796083pt;}
.y4_c01001{bottom:436.221600pt;}
.y3_c01001{bottom:517.715737pt;}
.y2_c01001{bottom:586.698133pt;}
.y1_c01001{bottom:657.088400pt;}
.h3_c01001{height:126.845901pt;}
.h5_c01001{height:137.474534pt;}
.h4_c01001{height:137.475068pt;}
.h2_c01001{height:166.485245pt;}
.h1_c01001{height:174.413114pt;}
.h0_c01001{height:793.333333pt;}
.w0_c01001{width:1122.666667pt;}
.x0_c01001{left:0.000000pt;}
.x4_c01001{left:101.915600pt;}
.x5_c01001{left:111.895760pt;}
.x1_c01001{left:523.586400pt;}
.x2_c01001{left:608.056800pt;}
.x3_c01001{left:644.629560pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01002{font-family:ff1_c01002;line-height:0.896000;font-style:normal;font-weight:normal;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_4f9974c2202814d435f81c55.woff2')format("woff");}.ff2_c01002{font-family:ff2_c01002;line-height:0.938965;font-style:normal;font-weight:normal;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_1698f0148a1a79c3ce5fb237.woff2')format("woff");}.ff3_c01002{font-family:ff3_c01002;line-height:0.717000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01002{vertical-align:0.000000px;}
.ls8_c01002{letter-spacing:-3.130294px;}
.ls7_c01002{letter-spacing:-1.460804px;}
.ls4_c01002{letter-spacing:-0.054656px;}
.ls5_c01002{letter-spacing:0.000000px;}
.ls1_c01002{letter-spacing:0.029812px;}
.ls3_c01002{letter-spacing:0.052172px;}
.ls6_c01002{letter-spacing:6.692866px;}
.ls2_c01002{letter-spacing:82.604970px;}
.ls0_c01002{letter-spacing:94.803178px;}
.sc__c01002{text-shadow:none;}
.sc0_c01002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01002{-webkit-text-stroke:0px transparent;}
.sc0_c01002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01002{word-spacing:-6.841927px;}
.ws6_c01002{word-spacing:-0.226077px;}
.ws0_c01002{word-spacing:-0.218624px;}
.ws4_c01002{word-spacing:-0.178874px;}
.ws5_c01002{word-spacing:-0.173905px;}
.ws2_c01002{word-spacing:-0.149062px;}
.ws8_c01002{word-spacing:0.000000px;}
.ws3_c01002{word-spacing:1.311742px;}
.ws7_c01002{word-spacing:2.956388px;}
._2_c01002{margin-left:-61.761190px;}
._4_c01002{margin-left:-8.794634px;}
._a_c01002{margin-left:-7.769836px;}
._3_c01002{margin-left:-6.707772px;}
._9_c01002{margin-left:-5.645708px;}
._1_c01002{margin-left:-3.825914px;}
._5_c01002{margin-left:-2.613547px;}
._0_c01002{margin-left:-1.366398px;}
._6_c01002{width:1.098087px;}
._7_c01002{width:2.126612px;}
._8_c01002{width:3.661947px;}
.fc1_c01002{color:rgb(255,255,255);}
.fc0_c01002{color:rgb(0,0,0);}
.fs3_c01002{font-size:111.796200px;}
.fs1_c01002{font-size:149.061600px;}
.fs2_c01002{font-size:173.905200px;}
.fs0_c01002{font-size:273.279600px;}
.y0_c01002{bottom:0.000000px;}
.y10_c01002{bottom:57.926550px;}
.yf_c01002{bottom:255.893714px;}
.ye_c01002{bottom:307.152272px;}
.yd_c01002{bottom:359.932500px;}
.y7_c01002{bottom:385.186019px;}
.yc_c01002{bottom:412.712728px;}
.y6_c01002{bottom:439.518973px;}
.yb_c01002{bottom:463.971286px;}
.y5_c01002{bottom:493.479272px;}
.ya_c01002{bottom:516.751514px;}
.y4_c01002{bottom:536.967994px;}
.y9_c01002{bottom:568.010072px;}
.y3_c01002{bottom:581.984597px;}
.y8_c01002{bottom:620.790300px;}
.y2_c01002{bottom:627.001200px;}
.y1_c01002{bottom:734.721600px;}
.h6_c01002{height:81.445279px;}
.h3_c01002{height:107.026229px;}
.h2_c01002{height:108.593705px;}
.h5_c01002{height:124.863934px;}
.h4_c01002{height:126.692655px;}
.h1_c01002{height:196.214753px;}
.h0_c01002{height:892.500000px;}
.w0_c01002{width:1263.000000px;}
.x0_c01002{left:0.000000px;}
.x2_c01002{left:139.858950px;}
.x3_c01002{left:181.776450px;}
.x1_c01002{left:433.225350px;}
.x4_c01002{left:626.761800px;}
.x5_c01002{left:668.666880px;}
@media print{
.v0_c01002{vertical-align:0.000000pt;}
.ls8_c01002{letter-spacing:-2.782483pt;}
.ls7_c01002{letter-spacing:-1.298492pt;}
.ls4_c01002{letter-spacing:-0.048583pt;}
.ls5_c01002{letter-spacing:0.000000pt;}
.ls1_c01002{letter-spacing:0.026500pt;}
.ls3_c01002{letter-spacing:0.046375pt;}
.ls6_c01002{letter-spacing:5.949214pt;}
.ls2_c01002{letter-spacing:73.426640pt;}
.ls0_c01002{letter-spacing:84.269491pt;}
.ws1_c01002{word-spacing:-6.081713pt;}
.ws6_c01002{word-spacing:-0.200957pt;}
.ws0_c01002{word-spacing:-0.194332pt;}
.ws4_c01002{word-spacing:-0.158999pt;}
.ws5_c01002{word-spacing:-0.154582pt;}
.ws2_c01002{word-spacing:-0.132499pt;}
.ws8_c01002{word-spacing:0.000000pt;}
.ws3_c01002{word-spacing:1.165993pt;}
.ws7_c01002{word-spacing:2.627901pt;}
._2_c01002{margin-left:-54.898835pt;}
._4_c01002{margin-left:-7.817453pt;}
._a_c01002{margin-left:-6.906521pt;}
._3_c01002{margin-left:-5.962464pt;}
._9_c01002{margin-left:-5.018407pt;}
._1_c01002{margin-left:-3.400813pt;}
._5_c01002{margin-left:-2.323153pt;}
._0_c01002{margin-left:-1.214576pt;}
._6_c01002{width:0.976077pt;}
._7_c01002{width:1.890322pt;}
._8_c01002{width:3.255064pt;}
.fs3_c01002{font-size:99.374400pt;}
.fs1_c01002{font-size:132.499200pt;}
.fs2_c01002{font-size:154.582400pt;}
.fs0_c01002{font-size:242.915200pt;}
.y0_c01002{bottom:0.000000pt;}
.y10_c01002{bottom:51.490267pt;}
.yf_c01002{bottom:227.461079pt;}
.ye_c01002{bottom:273.024242pt;}
.yd_c01002{bottom:319.940000pt;}
.y7_c01002{bottom:342.387573pt;}
.yc_c01002{bottom:366.855758pt;}
.y6_c01002{bottom:390.683531pt;}
.yb_c01002{bottom:412.418921pt;}
.y5_c01002{bottom:438.648242pt;}
.ya_c01002{bottom:459.334679pt;}
.y4_c01002{bottom:477.304883pt;}
.y9_c01002{bottom:504.897842pt;}
.y3_c01002{bottom:517.319642pt;}
.y8_c01002{bottom:551.813600pt;}
.y2_c01002{bottom:557.334400pt;}
.y1_c01002{bottom:653.085867pt;}
.h6_c01002{height:72.395803pt;}
.h3_c01002{height:95.134426pt;}
.h2_c01002{height:96.527737pt;}
.h5_c01002{height:110.990163pt;}
.h4_c01002{height:112.615694pt;}
.h1_c01002{height:174.413114pt;}
.h0_c01002{height:793.333333pt;}
.w0_c01002{width:1122.666667pt;}
.x0_c01002{left:0.000000pt;}
.x2_c01002{left:124.319067pt;}
.x3_c01002{left:161.579067pt;}
.x1_c01002{left:385.089200pt;}
.x4_c01002{left:557.121600pt;}
.x5_c01002{left:594.370560pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01003{font-family:ff1_c01003;line-height:0.896000;font-style:normal;font-weight:normal;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_40e0dbeadfc58fa4209094c8.woff2')format("woff");}.ff2_c01003{font-family:ff2_c01003;line-height:0.816406;font-style:normal;font-weight:normal;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_dd0c4498160eb783a5c976ac.woff2')format("woff");}.ff3_c01003{font-family:ff3_c01003;line-height:0.904000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01003{vertical-align:0.000000px;}
.ls1_c01003{letter-spacing:-0.064593px;}
.ls0_c01003{letter-spacing:0.000000px;}
.ls2_c01003{letter-spacing:0.048445px;}
.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.273280px;}
.ws3_c01003{word-spacing:-0.209928px;}
.ws1_c01003{word-spacing:-0.161483px;}
.ws2_c01003{word-spacing:-0.096890px;}
.ws4_c01003{word-spacing:0.000000px;}
._1_c01003{margin-left:-61.897829px;}
._3_c01003{margin-left:-12.240442px;}
._6_c01003{margin-left:-10.638030px;}
._0_c01003{margin-left:-4.509113px;}
._4_c01003{margin-left:-2.777514px;}
._2_c01003{margin-left:-1.437202px;}
._5_c01003{width:1.146532px;}
.fc0_c01003{color:rgb(0,0,0);}
.fs1_c01003{font-size:161.483400px;}
.fs0_c01003{font-size:273.279600px;}
.y0_c01003{bottom:0.000000px;}
.ya_c01003{bottom:66.701665px;}
.y9_c01003{bottom:124.512722px;}
.y8_c01003{bottom:173.845900px;}
.y7_c01003{bottom:231.293620px;}
.y6_c01003{bottom:290.679140px;}
.y5_c01003{bottom:338.801194px;}
.y4_c01003{bottom:386.559909px;}
.y3_c01003{bottom:467.664947px;}
.y2_c01003{bottom:515.787000px;}
.y1_c01003{bottom:768.299400px;}
.h3_c01003{height:115.945081px;}
.h4_c01003{height:117.236948px;}
.h2_c01003{height:129.312879px;}
.h1_c01003{height:196.214753px;}
.h0_c01003{height:892.500000px;}
.w0_c01003{width:1263.000000px;}
.x0_c01003{left:0.000000px;}
.x2_c01003{left:97.941450px;}
.x3_c01003{left:144.724485px;}
.x1_c01003{left:288.450150px;}
@media print{
.v0_c01003{vertical-align:0.000000pt;}
.ls1_c01003{letter-spacing:-0.057416pt;}
.ls0_c01003{letter-spacing:0.000000pt;}
.ls2_c01003{letter-spacing:0.043062pt;}
.ws0_c01003{word-spacing:-0.242915pt;}
.ws3_c01003{word-spacing:-0.186603pt;}
.ws1_c01003{word-spacing:-0.143541pt;}
.ws2_c01003{word-spacing:-0.086124pt;}
.ws4_c01003{word-spacing:0.000000pt;}
._1_c01003{margin-left:-55.020293pt;}
._3_c01003{margin-left:-10.880393pt;}
._6_c01003{margin-left:-9.456026pt;}
._0_c01003{margin-left:-4.008101pt;}
._4_c01003{margin-left:-2.468902pt;}
._2_c01003{margin-left:-1.277513pt;}
._5_c01003{width:1.019140pt;}
.fs1_c01003{font-size:143.540800pt;}
.fs0_c01003{font-size:242.915200pt;}
.y0_c01003{bottom:0.000000pt;}
.ya_c01003{bottom:59.290369pt;}
.y9_c01003{bottom:110.677975pt;}
.y8_c01003{bottom:154.529689pt;}
.y7_c01003{bottom:205.594329pt;}
.y6_c01003{bottom:258.381458pt;}
.y5_c01003{bottom:301.156617pt;}
.y4_c01003{bottom:343.608808pt;}
.y3_c01003{bottom:415.702175pt;}
.y2_c01003{bottom:458.477333pt;}
.y1_c01003{bottom:682.932800pt;}
.h3_c01003{height:103.062294pt;}
.h4_c01003{height:104.210621pt;}
.h2_c01003{height:114.944781pt;}
.h1_c01003{height:174.413114pt;}
.h0_c01003{height:793.333333pt;}
.w0_c01003{width:1122.666667pt;}
.x0_c01003{left:0.000000pt;}
.x2_c01003{left:87.059067pt;}
.x3_c01003{left:128.643987pt;}
.x1_c01003{left:256.400133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01004{font-family:ff1_c01004;line-height:0.896000;font-style:normal;font-weight:normal;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_c3dee88a4e9fa253421d44bc.woff2')format("woff");}.ff2_c01004{font-family:ff2_c01004;line-height:0.816406;font-style:normal;font-weight:normal;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_dd0c4498160eb783a5c976ac.woff2')format("woff");}.ff3_c01004{font-family:ff3_c01004;line-height:0.904000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01004{vertical-align:0.000000px;}
.ls5_c01004{letter-spacing:-0.807417px;}
.ls3_c01004{letter-spacing:-0.064593px;}
.ls1_c01004{letter-spacing:-0.054656px;}
.ls4_c01004{letter-spacing:-0.048445px;}
.ls2_c01004{letter-spacing:0.000000px;}
.ls0_c01004{letter-spacing:0.016148px;}
.sc__c01004{text-shadow:none;}
.sc1_c01004{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1_c01004{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01004{word-spacing:-0.218624px;}
.ws2_c01004{word-spacing:-0.177632px;}
.ws1_c01004{word-spacing:-0.161483px;}
.ws4_c01004{word-spacing:-0.113038px;}
.ws3_c01004{word-spacing:-0.096890px;}
.ws6_c01004{word-spacing:0.000000px;}
.ws5_c01004{word-spacing:0.645934px;}
._0_c01004{margin-left:-61.761190px;}
._3_c01004{margin-left:-17.068795px;}
._5_c01004{margin-left:-6.782303px;}
._2_c01004{margin-left:-3.617228px;}
._4_c01004{margin-left:-2.502993px;}
._1_c01004{margin-left:-1.501796px;}
._6_c01004{width:1.098087px;}
.fc0_c01004{color:rgb(0,0,0);}
.fs1_c01004{font-size:161.483400px;}
.fs0_c01004{font-size:273.279600px;}
.y0_c01004{bottom:0.000000px;}
.ya_c01004{bottom:106.866049px;}
.y9_c01004{bottom:154.624765px;}
.y8_c01004{bottom:212.435822px;}
.y7_c01004{bottom:261.769001px;}
.y6_c01004{bottom:319.580058px;}
.y5_c01004{bottom:367.702111px;}
.y4_c01004{bottom:415.824164px;}
.y3_c01004{bottom:465.157343px;}
.y2_c01004{bottom:522.968400px;}
.y1_c01004{bottom:734.721600px;}
.h2_c01004{height:115.945081px;}
.h4_c01004{height:117.236948px;}
.h3_c01004{height:129.312879px;}
.h1_c01004{height:196.214753px;}
.h0_c01004{height:892.500000px;}
.w0_c01004{width:1263.000000px;}
.x0_c01004{left:0.000000px;}
.x2_c01004{left:113.078250px;}
.x3_c01004{left:145.894995px;}
.x4_c01004{left:155.017485px;}
.x1_c01004{left:188.701950px;}
@media print{
.v0_c01004{vertical-align:0.000000pt;}
.ls5_c01004{letter-spacing:-0.717704pt;}
.ls3_c01004{letter-spacing:-0.057416pt;}
.ls1_c01004{letter-spacing:-0.048583pt;}
.ls4_c01004{letter-spacing:-0.043062pt;}
.ls2_c01004{letter-spacing:0.000000pt;}
.ls0_c01004{letter-spacing:0.014354pt;}
.ws0_c01004{word-spacing:-0.194332pt;}
.ws2_c01004{word-spacing:-0.157895pt;}
.ws1_c01004{word-spacing:-0.143541pt;}
.ws4_c01004{word-spacing:-0.100479pt;}
.ws3_c01004{word-spacing:-0.086124pt;}
.ws6_c01004{word-spacing:0.000000pt;}
.ws5_c01004{word-spacing:0.574163pt;}
._0_c01004{margin-left:-54.898835pt;}
._3_c01004{margin-left:-15.172263pt;}
._5_c01004{margin-left:-6.028714pt;}
._2_c01004{margin-left:-3.215314pt;}
._4_c01004{margin-left:-2.224882pt;}
._1_c01004{margin-left:-1.334929pt;}
._6_c01004{width:0.976077pt;}
.fs1_c01004{font-size:143.540800pt;}
.fs0_c01004{font-size:242.915200pt;}
.y0_c01004{bottom:0.000000pt;}
.ya_c01004{bottom:94.992044pt;}
.y9_c01004{bottom:137.444235pt;}
.y8_c01004{bottom:188.831842pt;}
.y7_c01004{bottom:232.683556pt;}
.y6_c01004{bottom:284.071162pt;}
.y5_c01004{bottom:326.846321pt;}
.y4_c01004{bottom:369.621479pt;}
.y3_c01004{bottom:413.473194pt;}
.y2_c01004{bottom:464.860800pt;}
.y1_c01004{bottom:653.085867pt;}
.h2_c01004{height:103.062294pt;}
.h4_c01004{height:104.210621pt;}
.h3_c01004{height:114.944781pt;}
.h1_c01004{height:174.413114pt;}
.h0_c01004{height:793.333333pt;}
.w0_c01004{width:1122.666667pt;}
.x0_c01004{left:0.000000pt;}
.x2_c01004{left:100.514000pt;}
.x3_c01004{left:129.684440pt;}
.x4_c01004{left:137.793320pt;}
.x1_c01004{left:167.735067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01005{font-family:ff1_c01005;line-height:0.896000;font-style:normal;font-weight:normal;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_c3dee88a4e9fa253421d44bc.woff2')format("woff");}.ff2_c01005{font-family:ff2_c01005;line-height:0.816406;font-style:normal;font-weight:normal;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_dd0c4498160eb783a5c976ac.woff2')format("woff");}.ff3_c01005{font-family:ff3_c01005;line-height:0.904000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01005{vertical-align:0.000000px;}
.ls2_c01005{letter-spacing:-1.808614px;}
.ls0_c01005{letter-spacing:-0.054656px;}
.ls1_c01005{letter-spacing:0.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;}
}
.ws0_c01005{word-spacing:-0.218624px;}
.ws1_c01005{word-spacing:-0.198749px;}
.ws3_c01005{word-spacing:0.000000px;}
.ws2_c01005{word-spacing:1.609865px;}
._0_c01005{margin-left:-61.761190px;}
._5_c01005{margin-left:-38.457893px;}
._3_c01005{margin-left:-7.373580px;}
._1_c01005{margin-left:-3.855727px;}
._2_c01005{margin-left:-1.848364px;}
._4_c01005{width:1.053369px;}
._6_c01005{width:2.722859px;}
.fc0_c01005{color:rgb(0,0,0);}
.fs1_c01005{font-size:198.748800px;}
.fs0_c01005{font-size:273.279600px;}
.y0_c01005{bottom:0.000000px;}
.y8_c01005{bottom:54.896231px;}
.y7_c01005{bottom:113.874937px;}
.y6_c01005{bottom:173.350516px;}
.y5_c01005{bottom:245.844140px;}
.y4_c01005{bottom:304.822847px;}
.y3_c01005{bottom:365.391544px;}
.y2_c01005{bottom:424.370250px;}
.y1_c01005{bottom:766.649550px;}
.h2_c01005{height:142.701638px;}
.h4_c01005{height:144.291629px;}
.h3_c01005{height:159.154313px;}
.h1_c01005{height:196.214753px;}
.h0_c01005{height:892.500000px;}
.w0_c01005{width:1263.000000px;}
.x0_c01005{left:0.000000px;}
.x2_c01005{left:139.858950px;}
.x3_c01005{left:184.521270px;}
.x1_c01005{left:562.757400px;}
@media print{
.v0_c01005{vertical-align:0.000000pt;}
.ls2_c01005{letter-spacing:-1.607657pt;}
.ls0_c01005{letter-spacing:-0.048583pt;}
.ls1_c01005{letter-spacing:0.000000pt;}
.ws0_c01005{word-spacing:-0.194332pt;}
.ws1_c01005{word-spacing:-0.176666pt;}
.ws3_c01005{word-spacing:0.000000pt;}
.ws2_c01005{word-spacing:1.430991pt;}
._0_c01005{margin-left:-54.898835pt;}
._5_c01005{margin-left:-34.184794pt;}
._3_c01005{margin-left:-6.554294pt;}
._1_c01005{margin-left:-3.427313pt;}
._2_c01005{margin-left:-1.642990pt;}
._4_c01005{width:0.936328pt;}
._6_c01005{width:2.420319pt;}
.fs1_c01005{font-size:176.665600pt;}
.fs0_c01005{font-size:242.915200pt;}
.y0_c01005{bottom:0.000000pt;}
.y8_c01005{bottom:48.796650pt;}
.y7_c01005{bottom:101.222166pt;}
.y6_c01005{bottom:154.089347pt;}
.y5_c01005{bottom:218.528125pt;}
.y4_c01005{bottom:270.953642pt;}
.y3_c01005{bottom:324.792483pt;}
.y2_c01005{bottom:377.218000pt;}
.y1_c01005{bottom:681.466267pt;}
.h2_c01005{height:126.845901pt;}
.h4_c01005{height:128.259226pt;}
.h3_c01005{height:141.470500pt;}
.h1_c01005{height:174.413114pt;}
.h0_c01005{height:793.333333pt;}
.w0_c01005{width:1122.666667pt;}
.x0_c01005{left:0.000000pt;}
.x2_c01005{left:124.319067pt;}
.x3_c01005{left:164.018907pt;}
.x1_c01005{left:500.228800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01006{font-family:ff1_c01006;line-height:0.896000;font-style:normal;font-weight:normal;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_c3dee88a4e9fa253421d44bc.woff2')format("woff");}.ff2_c01006{font-family:ff2_c01006;line-height:0.816406;font-style:normal;font-weight:normal;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_dd0c4498160eb783a5c976ac.woff2')format("woff");}.ff3_c01006{font-family:ff3_c01006;line-height:0.904000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01006{vertical-align:0.000000px;}
.ls4_c01006{letter-spacing:-3.020982px;}
.ls2_c01006{letter-spacing:-0.079500px;}
.ls1_c01006{letter-spacing:-0.054656px;}
.ls0_c01006{letter-spacing:0.000000px;}
.ls3_c01006{letter-spacing:0.079500px;}
.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:-0.273280px;}
.ws1_c01006{word-spacing:-0.218624px;}
.ws2_c01006{word-spacing:-0.198749px;}
.ws3_c01006{word-spacing:-0.119249px;}
.ws5_c01006{word-spacing:0.000000px;}
.ws4_c01006{word-spacing:2.822233px;}
._1_c01006{margin-left:-61.761190px;}
._2_c01006{margin-left:-15.601781px;}
._6_c01006{margin-left:-12.143552px;}
._3_c01006{margin-left:-9.189648px;}
._5_c01006{margin-left:-6.069291px;}
._0_c01006{margin-left:-3.033404px;}
._4_c01006{margin-left:-1.947738px;}
._7_c01006{width:1.788739px;}
._8_c01006{width:3.815977px;}
.fc0_c01006{color:rgb(0,0,0);}
.fs1_c01006{font-size:198.748800px;}
.fs0_c01006{font-size:273.279600px;}
.y0_c01006{bottom:0.000000px;}
.y8_c01006{bottom:69.283874px;}
.y7_c01006{bottom:128.759453px;}
.y6_c01006{bottom:199.663087px;}
.y5_c01006{bottom:260.231784px;}
.y4_c01006{bottom:319.210490px;}
.y3_c01006{bottom:378.686069px;}
.y2_c01006{bottom:472.893000px;}
.y1_c01006{bottom:734.721600px;}
.h2_c01006{height:142.701638px;}
.h4_c01006{height:144.291629px;}
.h3_c01006{height:159.154313px;}
.h1_c01006{height:196.214753px;}
.h0_c01006{height:892.500000px;}
.w0_c01006{width:1263.000000px;}
.x0_c01006{left:0.000000px;}
.x2_c01006{left:139.858950px;}
.x3_c01006{left:170.561190px;}
.x4_c01006{left:181.788870px;}
.x1_c01006{left:433.859100px;}
@media print{
.v0_c01006{vertical-align:0.000000pt;}
.ls4_c01006{letter-spacing:-2.685317pt;}
.ls2_c01006{letter-spacing:-0.070666pt;}
.ls1_c01006{letter-spacing:-0.048583pt;}
.ls0_c01006{letter-spacing:0.000000pt;}
.ls3_c01006{letter-spacing:0.070666pt;}
.ws0_c01006{word-spacing:-0.242915pt;}
.ws1_c01006{word-spacing:-0.194332pt;}
.ws2_c01006{word-spacing:-0.176666pt;}
.ws3_c01006{word-spacing:-0.105999pt;}
.ws5_c01006{word-spacing:0.000000pt;}
.ws4_c01006{word-spacing:2.508652pt;}
._1_c01006{margin-left:-54.898835pt;}
._2_c01006{margin-left:-13.868250pt;}
._6_c01006{margin-left:-10.794268pt;}
._3_c01006{margin-left:-8.168576pt;}
._5_c01006{margin-left:-5.394926pt;}
._0_c01006{margin-left:-2.696359pt;}
._4_c01006{margin-left:-1.731323pt;}
._7_c01006{width:1.589990pt;}
._8_c01006{width:3.391980pt;}
.fs1_c01006{font-size:176.665600pt;}
.fs0_c01006{font-size:242.915200pt;}
.y0_c01006{bottom:0.000000pt;}
.y8_c01006{bottom:61.585666pt;}
.y7_c01006{bottom:114.452847pt;}
.y6_c01006{bottom:177.478300pt;}
.y5_c01006{bottom:231.317141pt;}
.y4_c01006{bottom:283.742658pt;}
.y3_c01006{bottom:336.609839pt;}
.y2_c01006{bottom:420.349333pt;}
.y1_c01006{bottom:653.085867pt;}
.h2_c01006{height:126.845901pt;}
.h4_c01006{height:128.259226pt;}
.h3_c01006{height:141.470500pt;}
.h1_c01006{height:174.413114pt;}
.h0_c01006{height:793.333333pt;}
.w0_c01006{width:1122.666667pt;}
.x0_c01006{left:0.000000pt;}
.x2_c01006{left:124.319067pt;}
.x3_c01006{left:151.609947pt;}
.x4_c01006{left:161.590107pt;}
.x1_c01006{left:385.652533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01007{font-family:ff1_c01007;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01007{vertical-align:0.000000px;}
.ls0_c01007{letter-spacing:0.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;}
}
.ws0_c01007{word-spacing:-0.273280px;}
.ws1_c01007{word-spacing:-0.149062px;}
._1_c01007{margin-left:-61.815846px;}
._6_c01007{margin-left:-33.762452px;}
._5_c01007{margin-left:-9.271632px;}
._4_c01007{margin-left:-6.305306px;}
._0_c01007{margin-left:-5.083001px;}
._3_c01007{margin-left:-3.100481px;}
._2_c01007{margin-left:-1.371367px;}
.fc0_c01007{color:rgb(0,0,0);}
.fs1_c01007{font-size:149.061600px;}
.fs0_c01007{font-size:273.279600px;}
.y0_c01007{bottom:0.000000px;}
.y4_c01007{bottom:609.164325px;}
.y3_c01007{bottom:652.653047px;}
.y2_c01007{bottom:697.669650px;}
.y1_c01007{bottom:748.909650px;}
.h2_c01007{height:107.026229px;}
.h1_c01007{height:196.214753px;}
.h0_c01007{height:892.500000px;}
.w0_c01007{width:1263.000000px;}
.x0_c01007{left:0.000000px;}
.x3_c01007{left:121.010400px;}
.x4_c01007{left:140.162040px;}
.x2_c01007{left:193.853700px;}
.x1_c01007{left:357.310500px;}
@media print{
.v0_c01007{vertical-align:0.000000pt;}
.ls0_c01007{letter-spacing:0.000000pt;}
.ws0_c01007{word-spacing:-0.242915pt;}
.ws1_c01007{word-spacing:-0.132499pt;}
._1_c01007{margin-left:-54.947418pt;}
._6_c01007{margin-left:-30.011069pt;}
._5_c01007{margin-left:-8.241450pt;}
._4_c01007{margin-left:-5.604716pt;}
._0_c01007{margin-left:-4.518223pt;}
._3_c01007{margin-left:-2.755983pt;}
._2_c01007{margin-left:-1.218993pt;}
.fs1_c01007{font-size:132.499200pt;}
.fs0_c01007{font-size:242.915200pt;}
.y0_c01007{bottom:0.000000pt;}
.y4_c01007{bottom:541.479400pt;}
.y3_c01007{bottom:580.136042pt;}
.y2_c01007{bottom:620.150800pt;}
.y1_c01007{bottom:665.697467pt;}
.h2_c01007{height:95.134426pt;}
.h1_c01007{height:174.413114pt;}
.h0_c01007{height:793.333333pt;}
.w0_c01007{width:1122.666667pt;}
.x0_c01007{left:0.000000pt;}
.x3_c01007{left:107.564800pt;}
.x4_c01007{left:124.588480pt;}
.x2_c01007{left:172.314400pt;}
.x1_c01007{left:317.609333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01008{font-family:ff1_c01008;line-height:0.896000;font-style:normal;font-weight:normal;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_dd0c4498160eb783a5c976ac.woff2')format("woff");}.ff2_c01008{font-family:ff2_c01008;line-height:0.904000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01008{vertical-align:0.000000px;}
.ls1_c01008{letter-spacing:-0.069562px;}
.ls0_c01008{letter-spacing:-0.054656px;}
.ls3_c01008{letter-spacing:-0.052172px;}
.ls2_c01008{letter-spacing:0.000000px;}
.ls4_c01008{letter-spacing:0.069562px;}
.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.218624px;}
.ws2_c01008{word-spacing:-0.173905px;}
.ws3_c01008{word-spacing:-0.121734px;}
.ws1_c01008{word-spacing:-0.104343px;}
.ws4_c01008{word-spacing:0.000000px;}
._0_c01008{margin-left:-61.761190px;}
._3_c01008{margin-left:-25.477112px;}
._5_c01008{margin-left:-4.260677px;}
._2_c01008{margin-left:-2.469454px;}
._1_c01008{margin-left:-1.008650px;}
._4_c01008{width:1.078212px;}
.fc0_c01008{color:rgb(0,0,0);}
.fs1_c01008{font-size:173.905200px;}
.fs0_c01008{font-size:273.279600px;}
.y0_c01008{bottom:0.000000px;}
.y9_c01008{bottom:50.351414px;}
.y8_c01008{bottom:103.131642px;}
.y7_c01008{bottom:154.390200px;}
.y6_c01008{bottom:207.170428px;}
.y5_c01008{bottom:258.863749px;}
.y4_c01008{bottom:343.816439px;}
.y3_c01008{bottom:395.509760px;}
.y2_c01008{bottom:458.724300px;}
.y1_c01008{bottom:786.252600px;}
.h2_c01008{height:124.863934px;}
.h3_c01008{height:126.255175px;}
.h1_c01008{height:196.214753px;}
.h0_c01008{height:892.500000px;}
.w0_c01008{width:1263.000000px;}
.x0_c01008{left:0.000000px;}
.x2_c01008{left:105.315750px;}
.x1_c01008{left:196.076400px;}
@media print{
.v0_c01008{vertical-align:0.000000pt;}
.ls1_c01008{letter-spacing:-0.061833pt;}
.ls0_c01008{letter-spacing:-0.048583pt;}
.ls3_c01008{letter-spacing:-0.046375pt;}
.ls2_c01008{letter-spacing:0.000000pt;}
.ls4_c01008{letter-spacing:0.061833pt;}
.ws0_c01008{word-spacing:-0.194332pt;}
.ws2_c01008{word-spacing:-0.154582pt;}
.ws3_c01008{word-spacing:-0.108208pt;}
.ws1_c01008{word-spacing:-0.092749pt;}
.ws4_c01008{word-spacing:0.000000pt;}
._0_c01008{margin-left:-54.898835pt;}
._3_c01008{margin-left:-22.646322pt;}
._5_c01008{margin-left:-3.787269pt;}
._2_c01008{margin-left:-2.195070pt;}
._1_c01008{margin-left:-0.896578pt;}
._4_c01008{width:0.958411pt;}
.fs1_c01008{font-size:154.582400pt;}
.fs0_c01008{font-size:242.915200pt;}
.y0_c01008{bottom:0.000000pt;}
.y9_c01008{bottom:44.756813pt;}
.y8_c01008{bottom:91.672571pt;}
.y7_c01008{bottom:137.235733pt;}
.y6_c01008{bottom:184.151492pt;}
.y5_c01008{bottom:230.101110pt;}
.y4_c01008{bottom:305.614613pt;}
.y3_c01008{bottom:351.564231pt;}
.y2_c01008{bottom:407.754933pt;}
.y1_c01008{bottom:698.891200pt;}
.h2_c01008{height:110.990163pt;}
.h3_c01008{height:112.226822pt;}
.h1_c01008{height:174.413114pt;}
.h0_c01008{height:793.333333pt;}
.w0_c01008{width:1122.666667pt;}
.x0_c01008{left:0.000000pt;}
.x2_c01008{left:93.614000pt;}
.x1_c01008{left:174.290133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01009{font-family:ff1_c01009;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01009{vertical-align:0.000000px;}
.ls0_c01009{letter-spacing:-0.054656px;}
.sc__c01009{text-shadow:none;}
.sc0_c01009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01009{-webkit-text-stroke:0px transparent;}
.sc0_c01009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01009{word-spacing:-0.218624px;}
._0_c01009{margin-left:-61.487910px;}
.fc0_c01009{color:rgb(0,0,0);}
.fs0_c01009{font-size:273.279600px;}
.y0_c01009{bottom:0.000000px;}
.y1_c01009{bottom:734.721600px;}
.h1_c01009{height:196.214753px;}
.h0_c01009{height:892.500000px;}
.w0_c01009{width:1263.000000px;}
.x0_c01009{left:0.000000px;}
.x1_c01009{left:386.428950px;}
@media print{
.v0_c01009{vertical-align:0.000000pt;}
.ls0_c01009{letter-spacing:-0.048583pt;}
.ws0_c01009{word-spacing:-0.194332pt;}
._0_c01009{margin-left:-54.655920pt;}
.fs0_c01009{font-size:242.915200pt;}
.y0_c01009{bottom:0.000000pt;}
.y1_c01009{bottom:653.085867pt;}
.h1_c01009{height:174.413114pt;}
.h0_c01009{height:793.333333pt;}
.w0_c01009{width:1122.666667pt;}
.x0_c01009{left:0.000000pt;}
.x1_c01009{left:343.492400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01010{font-family:ff1_c01010;line-height:0.896000;font-style:normal;font-weight:normal;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_d7fac593848cbf7f144ca49a.woff2')format("woff");}.ff2_c01010{font-family:ff2_c01010;line-height:0.816406;font-style:normal;font-weight:normal;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_dd0c4498160eb783a5c976ac.woff2')format("woff");}.ff3_c01010{font-family:ff3_c01010;line-height:0.904000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01010{vertical-align:0.000000px;}
.ls3_c01010{letter-spacing:-0.059625px;}
.ls0_c01010{letter-spacing:-0.054656px;}
.ls2_c01010{letter-spacing:-0.019875px;}
.ls1_c01010{letter-spacing:0.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:-0.218624px;}
.ws1_c01010{word-spacing:-0.198749px;}
.ws2_c01010{word-spacing:-0.178874px;}
.ws3_c01010{word-spacing:-0.139124px;}
.ws4_c01010{word-spacing:0.000000px;}
._0_c01010{margin-left:-61.761190px;}
._2_c01010{margin-left:-2.822233px;}
._1_c01010{margin-left:-1.152743px;}
._3_c01010{width:1.033494px;}
.fc0_c01010{color:rgb(0,0,0);}
.fs1_c01010{font-size:198.748800px;}
.fs0_c01010{font-size:273.279600px;}
.y0_c01010{bottom:0.000000px;}
.y5_c01010{bottom:76.039434px;}
.y4_c01010{bottom:135.018140px;}
.y3_c01010{bottom:194.493719px;}
.y2_c01010{bottom:288.700650px;}
.y1_c01010{bottom:734.721600px;}
.h2_c01010{height:142.701638px;}
.h4_c01010{height:144.291629px;}
.h3_c01010{height:159.154313px;}
.h1_c01010{height:196.214753px;}
.h0_c01010{height:892.500000px;}
.w0_c01010{width:1263.000000px;}
.x0_c01010{left:0.000000px;}
.x2_c01010{left:139.858950px;}
.x3_c01010{left:170.561190px;}
.x4_c01010{left:181.788870px;}
.x1_c01010{left:562.757400px;}
@media print{
.v0_c01010{vertical-align:0.000000pt;}
.ls3_c01010{letter-spacing:-0.053000pt;}
.ls0_c01010{letter-spacing:-0.048583pt;}
.ls2_c01010{letter-spacing:-0.017667pt;}
.ls1_c01010{letter-spacing:0.000000pt;}
.ws0_c01010{word-spacing:-0.194332pt;}
.ws1_c01010{word-spacing:-0.176666pt;}
.ws2_c01010{word-spacing:-0.158999pt;}
.ws3_c01010{word-spacing:-0.123666pt;}
.ws4_c01010{word-spacing:0.000000pt;}
._0_c01010{margin-left:-54.898835pt;}
._2_c01010{margin-left:-2.508652pt;}
._1_c01010{margin-left:-1.024660pt;}
._3_c01010{width:0.918661pt;}
.fs1_c01010{font-size:176.665600pt;}
.fs0_c01010{font-size:242.915200pt;}
.y0_c01010{bottom:0.000000pt;}
.y5_c01010{bottom:67.590608pt;}
.y4_c01010{bottom:120.016125pt;}
.y3_c01010{bottom:172.883306pt;}
.y2_c01010{bottom:256.622800pt;}
.y1_c01010{bottom:653.085867pt;}
.h2_c01010{height:126.845901pt;}
.h4_c01010{height:128.259226pt;}
.h3_c01010{height:141.470500pt;}
.h1_c01010{height:174.413114pt;}
.h0_c01010{height:793.333333pt;}
.w0_c01010{width:1122.666667pt;}
.x0_c01010{left:0.000000pt;}
.x2_c01010{left:124.319067pt;}
.x3_c01010{left:151.609947pt;}
.x4_c01010{left:161.590107pt;}
.x1_c01010{left:500.228800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01011{font-family:ff1_c01011;line-height:0.896000;font-style:normal;font-weight:normal;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_c3dee88a4e9fa253421d44bc.woff2')format("woff");}.ff2_c01011{font-family:ff2_c01011;line-height:0.816406;font-style:normal;font-weight:normal;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_dd0c4498160eb783a5c976ac.woff2')format("woff");}.ff3_c01011{font-family:ff3_c01011;line-height:0.904000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01011{vertical-align:0.000000px;}
.ls2_c01011{letter-spacing:-0.064593px;}
.ls3_c01011{letter-spacing:-0.048445px;}
.ls1_c01011{letter-spacing:0.000000px;}
.ls0_c01011{letter-spacing:0.016148px;}
.sc__c01011{text-shadow:none;}
.sc0_c01011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01011{-webkit-text-stroke:0px transparent;}
.sc0_c01011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01011{word-spacing:-0.273280px;}
.ws2_c01011{word-spacing:-0.177632px;}
.ws1_c01011{word-spacing:-0.161483px;}
.ws3_c01011{word-spacing:-0.113038px;}
.ws4_c01011{word-spacing:-0.096890px;}
.ws5_c01011{word-spacing:0.000000px;}
._2_c01011{margin-left:-61.815846px;}
._0_c01011{margin-left:-3.880570px;}
._3_c01011{margin-left:-2.293064px;}
._4_c01011{margin-left:-1.035978px;}
._1_c01011{width:1.229758px;}
.fc0_c01011{color:rgb(0,0,0);}
.fs1_c01011{font-size:161.483400px;}
.fs0_c01011{font-size:273.279600px;}
.y0_c01011{bottom:0.000000px;}
.y8_c01011{bottom:155.016145px;}
.y7_c01011{bottom:270.274922px;}
.y6_c01011{bottom:319.971438px;}
.y5_c01011{bottom:368.093491px;}
.y4_c01011{bottom:416.215545px;}
.y3_c01011{bottom:463.974260px;}
.y2_c01011{bottom:580.807500px;}
.y1_c01011{bottom:734.721600px;}
.h2_c01011{height:115.945081px;}
.h4_c01011{height:117.236948px;}
.h3_c01011{height:129.312879px;}
.h1_c01011{height:196.214753px;}
.h0_c01011{height:892.500000px;}
.w0_c01011{width:1263.000000px;}
.x0_c01011{left:0.000000px;}
.x2_c01011{left:139.858950px;}
.x3_c01011{left:172.635330px;}
.x4_c01011{left:181.757820px;}
.x1_c01011{left:291.627900px;}
@media print{
.v0_c01011{vertical-align:0.000000pt;}
.ls2_c01011{letter-spacing:-0.057416pt;}
.ls3_c01011{letter-spacing:-0.043062pt;}
.ls1_c01011{letter-spacing:0.000000pt;}
.ls0_c01011{letter-spacing:0.014354pt;}
.ws0_c01011{word-spacing:-0.242915pt;}
.ws2_c01011{word-spacing:-0.157895pt;}
.ws1_c01011{word-spacing:-0.143541pt;}
.ws3_c01011{word-spacing:-0.100479pt;}
.ws4_c01011{word-spacing:-0.086124pt;}
.ws5_c01011{word-spacing:0.000000pt;}
._2_c01011{margin-left:-54.947418pt;}
._0_c01011{margin-left:-3.449396pt;}
._3_c01011{margin-left:-2.038279pt;}
._4_c01011{margin-left:-0.920869pt;}
._1_c01011{width:1.093118pt;}
.fs1_c01011{font-size:143.540800pt;}
.fs0_c01011{font-size:242.915200pt;}
.y0_c01011{bottom:0.000000pt;}
.y8_c01011{bottom:137.792129pt;}
.y7_c01011{bottom:240.244375pt;}
.y6_c01011{bottom:284.419056pt;}
.y5_c01011{bottom:327.194215pt;}
.y4_c01011{bottom:369.969373pt;}
.y3_c01011{bottom:412.421565pt;}
.y2_c01011{bottom:516.273333pt;}
.y1_c01011{bottom:653.085867pt;}
.h2_c01011{height:103.062294pt;}
.h4_c01011{height:104.210621pt;}
.h3_c01011{height:114.944781pt;}
.h1_c01011{height:174.413114pt;}
.h0_c01011{height:793.333333pt;}
.w0_c01011{width:1122.666667pt;}
.x0_c01011{left:0.000000pt;}
.x2_c01011{left:124.319067pt;}
.x3_c01011{left:153.453627pt;}
.x4_c01011{left:161.562507pt;}
.x1_c01011{left:259.224800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01012{font-family:ff1_c01012;line-height:0.896000;font-style:normal;font-weight:normal;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_c3dee88a4e9fa253421d44bc.woff2')format("woff");}.ff2_c01012{font-family:ff2_c01012;line-height:0.816406;font-style:normal;font-weight:normal;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_dd0c4498160eb783a5c976ac.woff2')format("woff");}.ff3_c01012{font-family:ff3_c01012;line-height:0.904000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01012{vertical-align:0.000000px;}
.ls4_c01012{letter-spacing:-1.669490px;}
.ls3_c01012{letter-spacing:-0.069562px;}
.ls0_c01012{letter-spacing:-0.054656px;}
.ls5_c01012{letter-spacing:-0.052172px;}
.ls2_c01012{letter-spacing:-0.034781px;}
.ls1_c01012{letter-spacing:0.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:-0.218624px;}
.ws1_c01012{word-spacing:-0.173905px;}
.ws2_c01012{word-spacing:-0.139124px;}
.ws5_c01012{word-spacing:-0.121734px;}
.ws3_c01012{word-spacing:-0.104343px;}
.ws6_c01012{word-spacing:0.000000px;}
.ws4_c01012{word-spacing:1.495585px;}
._0_c01012{margin-left:-61.761190px;}
._7_c01012{margin-left:-15.408001px;}
._2_c01012{margin-left:-5.478014px;}
._4_c01012{margin-left:-4.208506px;}
._3_c01012{margin-left:-2.643359px;}
._1_c01012{margin-left:-1.617318px;}
._5_c01012{width:1.026041px;}
._6_c01012{width:2.434673px;}
.fc0_c01012{color:rgb(0,0,0);}
.fs1_c01012{font-size:173.905200px;}
.fs0_c01012{font-size:273.279600px;}
.y0_c01012{bottom:0.000000px;}
.ya_c01012{bottom:87.598331px;}
.y9_c01012{bottom:140.813323px;}
.y8_c01012{bottom:202.940955px;}
.y7_c01012{bottom:264.633825px;}
.y6_c01012{bottom:317.414053px;}
.y5_c01012{bottom:369.107374px;}
.y4_c01012{bottom:454.494827px;}
.y3_c01012{bottom:516.622460px;}
.y2_c01012{bottom:579.837000px;}
.y1_c01012{bottom:734.721600px;}
.h2_c01012{height:124.863934px;}
.h4_c01012{height:126.255175px;}
.h3_c01012{height:139.260023px;}
.h1_c01012{height:196.214753px;}
.h0_c01012{height:892.500000px;}
.w0_c01012{width:1263.000000px;}
.x0_c01012{left:0.000000px;}
.x2_c01012{left:103.181100px;}
.x3_c01012{left:149.259300px;}
.x1_c01012{left:364.813650px;}
@media print{
.v0_c01012{vertical-align:0.000000pt;}
.ls4_c01012{letter-spacing:-1.483991pt;}
.ls3_c01012{letter-spacing:-0.061833pt;}
.ls0_c01012{letter-spacing:-0.048583pt;}
.ls5_c01012{letter-spacing:-0.046375pt;}
.ls2_c01012{letter-spacing:-0.030916pt;}
.ls1_c01012{letter-spacing:0.000000pt;}
.ws0_c01012{word-spacing:-0.194332pt;}
.ws1_c01012{word-spacing:-0.154582pt;}
.ws2_c01012{word-spacing:-0.123666pt;}
.ws5_c01012{word-spacing:-0.108208pt;}
.ws3_c01012{word-spacing:-0.092749pt;}
.ws6_c01012{word-spacing:0.000000pt;}
.ws4_c01012{word-spacing:1.329409pt;}
._0_c01012{margin-left:-54.898835pt;}
._7_c01012{margin-left:-13.696001pt;}
._2_c01012{margin-left:-4.869346pt;}
._4_c01012{margin-left:-3.740894pt;}
._3_c01012{margin-left:-2.349652pt;}
._1_c01012{margin-left:-1.437616pt;}
._5_c01012{width:0.912036pt;}
._6_c01012{width:2.164154pt;}
.fs1_c01012{font-size:154.582400pt;}
.fs0_c01012{font-size:242.915200pt;}
.y0_c01012{bottom:0.000000pt;}
.ya_c01012{bottom:77.865183pt;}
.y9_c01012{bottom:125.167398pt;}
.y8_c01012{bottom:180.391960pt;}
.y7_c01012{bottom:235.230067pt;}
.y6_c01012{bottom:282.145825pt;}
.y5_c01012{bottom:328.095443pt;}
.y4_c01012{bottom:403.995402pt;}
.y3_c01012{bottom:459.219964pt;}
.y2_c01012{bottom:515.410667pt;}
.y1_c01012{bottom:653.085867pt;}
.h2_c01012{height:110.990163pt;}
.h4_c01012{height:112.226822pt;}
.h3_c01012{height:123.786687pt;}
.h1_c01012{height:174.413114pt;}
.h0_c01012{height:793.333333pt;}
.w0_c01012{width:1122.666667pt;}
.x0_c01012{left:0.000000pt;}
.x2_c01012{left:91.716533pt;}
.x3_c01012{left:132.674933pt;}
.x1_c01012{left:324.278800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01013{font-family:ff1_c01013;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01013{vertical-align:0.000000px;}
.ls0_c01013{letter-spacing:-0.054656px;}
.sc__c01013{text-shadow:none;}
.sc0_c01013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01013{-webkit-text-stroke:0px transparent;}
.sc0_c01013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01013{word-spacing:-0.218624px;}
._1_c01013{margin-left:-61.214630px;}
._0_c01013{margin-left:-2.732796px;}
.fc0_c01013{color:rgb(0,0,0);}
.fs0_c01013{font-size:273.279600px;}
.y0_c01013{bottom:0.000000px;}
.y1_c01013{bottom:780.333000px;}
.h1_c01013{height:196.214753px;}
.h0_c01013{height:892.500000px;}
.w0_c01013{width:1263.000000px;}
.x0_c01013{left:0.000000px;}
.x1_c01013{left:399.670650px;}
@media print{
.v0_c01013{vertical-align:0.000000pt;}
.ls0_c01013{letter-spacing:-0.048583pt;}
.ws0_c01013{word-spacing:-0.194332pt;}
._1_c01013{margin-left:-54.413005pt;}
._0_c01013{margin-left:-2.429152pt;}
.fs0_c01013{font-size:242.915200pt;}
.y0_c01013{bottom:0.000000pt;}
.y1_c01013{bottom:693.629333pt;}
.h1_c01013{height:174.413114pt;}
.h0_c01013{height:793.333333pt;}
.w0_c01013{width:1122.666667pt;}
.x0_c01013{left:0.000000pt;}
.x1_c01013{left:355.262800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01014{font-family:ff1_c01014;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01014{vertical-align:0.000000px;}
.ls1_c01014{letter-spacing:-0.054656px;}
.ls2_c01014{letter-spacing:0.000000px;}
.ls0_c01014{letter-spacing:0.039750px;}
.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;}
}
.ws2_c01014{word-spacing:-0.238499px;}
.ws0_c01014{word-spacing:-0.218624px;}
.ws1_c01014{word-spacing:-0.198749px;}
.ws3_c01014{word-spacing:0.000000px;}
._2_c01014{margin-left:-61.761190px;}
._3_c01014{margin-left:-3.825914px;}
._1_c01014{margin-left:-2.732796px;}
._0_c01014{margin-left:-1.093118px;}
.fc0_c01014{color:rgb(0,0,0);}
.fs1_c01014{font-size:198.748800px;}
.fs0_c01014{font-size:273.279600px;}
.y0_c01014{bottom:0.000000px;}
.y6_c01014{bottom:318.070884px;}
.y5_c01014{bottom:377.049590px;}
.y4_c01014{bottom:436.525169px;}
.y3_c01014{bottom:530.732100px;}
.y2_c01014{bottom:693.388121px;}
.y1_c01014{bottom:775.713600px;}
.h2_c01014{height:142.701638px;}
.h1_c01014{height:196.214753px;}
.h0_c01014{height:892.500000px;}
.w0_c01014{width:1263.000000px;}
.x0_c01014{left:0.000000px;}
.x3_c01014{left:139.858950px;}
.x1_c01014{left:144.716550px;}
.x4_c01014{left:181.788870px;}
.x2_c01014{left:263.917500px;}
@media print{
.v0_c01014{vertical-align:0.000000pt;}
.ls1_c01014{letter-spacing:-0.048583pt;}
.ls2_c01014{letter-spacing:0.000000pt;}
.ls0_c01014{letter-spacing:0.035333pt;}
.ws2_c01014{word-spacing:-0.211999pt;}
.ws0_c01014{word-spacing:-0.194332pt;}
.ws1_c01014{word-spacing:-0.176666pt;}
.ws3_c01014{word-spacing:0.000000pt;}
._2_c01014{margin-left:-54.898835pt;}
._3_c01014{margin-left:-3.400813pt;}
._1_c01014{margin-left:-2.429152pt;}
._0_c01014{margin-left:-0.971661pt;}
.fs1_c01014{font-size:176.665600pt;}
.fs0_c01014{font-size:242.915200pt;}
.y0_c01014{bottom:0.000000pt;}
.y6_c01014{bottom:282.729675pt;}
.y5_c01014{bottom:335.155191pt;}
.y4_c01014{bottom:388.022372pt;}
.y3_c01014{bottom:471.761867pt;}
.y2_c01014{bottom:616.344996pt;}
.y1_c01014{bottom:689.523200pt;}
.h2_c01014{height:126.845901pt;}
.h1_c01014{height:174.413114pt;}
.h0_c01014{height:793.333333pt;}
.w0_c01014{width:1122.666667pt;}
.x0_c01014{left:0.000000pt;}
.x3_c01014{left:124.319067pt;}
.x1_c01014{left:128.636933pt;}
.x4_c01014{left:161.590107pt;}
.x2_c01014{left:234.593333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01015{font-family:ff1_c01015;line-height:0.896000;font-style:normal;font-weight:normal;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_edc5d9a72616cec0d922aad3.woff2')format("woff");}.ff2_c01015{font-family:ff2_c01015;line-height:0.938965;font-style:normal;font-weight:normal;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_1698f0148a1a79c3ce5fb237.woff2')format("woff");}.ff3_c01015{font-family:ff3_c01015;line-height:0.717000;font-style:normal;font-weight:normal;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_c3dee88a4e9fa253421d44bc.woff2')format("woff");}.ff4_c01015{font-family:ff4_c01015;line-height:0.816406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01015;src:url('chunks/assets/font_dd0c4498160eb783a5c976ac.woff2')format("woff");}.ff5_c01015{font-family:ff5_c01015;line-height:0.904000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01015{vertical-align:0.000000px;}
.ls3_c01015{letter-spacing:-1.243422px;}
.ls4_c01015{letter-spacing:-0.064593px;}
.ls1_c01015{letter-spacing:-0.054656px;}
.ls5_c01015{letter-spacing:-0.016148px;}
.ls2_c01015{letter-spacing:0.000000px;}
.ls0_c01015{letter-spacing:88.654387px;}
.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.218624px;}
.ws1_c01015{word-spacing:-0.161483px;}
.ws4_c01015{word-spacing:-0.145335px;}
.ws3_c01015{word-spacing:-0.096890px;}
.ws5_c01015{word-spacing:0.000000px;}
.ws2_c01015{word-spacing:1.081939px;}
._0_c01015{margin-left:-61.761190px;}
._8_c01015{margin-left:-13.839127px;}
._2_c01015{margin-left:-11.206948px;}
._6_c01015{margin-left:-6.265556px;}
._7_c01015{margin-left:-4.796057px;}
._3_c01015{margin-left:-3.375003px;}
._1_c01015{margin-left:-2.341509px;}
._4_c01015{margin-left:-1.162680px;}
._5_c01015{width:1.227274px;}
.fc0_c01015{color:rgb(0,0,0);}
.fs1_c01015{font-size:161.483400px;}
.fs0_c01015{font-size:273.279600px;}
.y0_c01015{bottom:0.000000px;}
.y8_c01015{bottom:151.106252px;}
.y7_c01015{bottom:199.228305px;}
.y6_c01015{bottom:247.350359px;}
.y5_c01015{bottom:295.472412px;}
.y4_c01015{bottom:344.805591px;}
.y3_c01015{bottom:402.253310px;}
.y2_c01015{bottom:519.086550px;}
.y1_c01015{bottom:734.721600px;}
.h2_c01015{height:115.945081px;}
.h4_c01015{height:117.236948px;}
.h3_c01015{height:129.312879px;}
.h1_c01015{height:196.214753px;}
.h0_c01015{height:892.500000px;}
.w0_c01015{width:1263.000000px;}
.x0_c01015{left:0.000000px;}
.x2_c01015{left:105.315750px;}
.x3_c01015{left:147.214620px;}
.x1_c01015{left:511.330950px;}
@media print{
.v0_c01015{vertical-align:0.000000pt;}
.ls3_c01015{letter-spacing:-1.105264pt;}
.ls4_c01015{letter-spacing:-0.057416pt;}
.ls1_c01015{letter-spacing:-0.048583pt;}
.ls5_c01015{letter-spacing:-0.014354pt;}
.ls2_c01015{letter-spacing:0.000000pt;}
.ls0_c01015{letter-spacing:78.803899pt;}
.ws0_c01015{word-spacing:-0.194332pt;}
.ws1_c01015{word-spacing:-0.143541pt;}
.ws4_c01015{word-spacing:-0.129187pt;}
.ws3_c01015{word-spacing:-0.086124pt;}
.ws5_c01015{word-spacing:0.000000pt;}
.ws2_c01015{word-spacing:0.961723pt;}
._0_c01015{margin-left:-54.898835pt;}
._8_c01015{margin-left:-12.301447pt;}
._2_c01015{margin-left:-9.961732pt;}
._6_c01015{margin-left:-5.569383pt;}
._7_c01015{margin-left:-4.263162pt;}
._3_c01015{margin-left:-3.000003pt;}
._1_c01015{margin-left:-2.081342pt;}
._4_c01015{margin-left:-1.033494pt;}
._5_c01015{width:1.090910pt;}
.fs1_c01015{font-size:143.540800pt;}
.fs0_c01015{font-size:242.915200pt;}
.y0_c01015{bottom:0.000000pt;}
.y8_c01015{bottom:134.316669pt;}
.y7_c01015{bottom:177.091827pt;}
.y6_c01015{bottom:219.866985pt;}
.y5_c01015{bottom:262.642144pt;}
.y4_c01015{bottom:306.493858pt;}
.y3_c01015{bottom:357.558498pt;}
.y2_c01015{bottom:461.410267pt;}
.y1_c01015{bottom:653.085867pt;}
.h2_c01015{height:103.062294pt;}
.h4_c01015{height:104.210621pt;}
.h3_c01015{height:114.944781pt;}
.h1_c01015{height:174.413114pt;}
.h0_c01015{height:793.333333pt;}
.w0_c01015{width:1122.666667pt;}
.x0_c01015{left:0.000000pt;}
.x2_c01015{left:93.614000pt;}
.x3_c01015{left:130.857440pt;}
.x1_c01015{left:454.516400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01016{font-family:ff1_c01016;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01016{vertical-align:0.000000px;}
.ls0_c01016{letter-spacing:-0.054656px;}
.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:-0.218624px;}
._3_c01016{margin-left:-61.761190px;}
._1_c01016{margin-left:-2.732796px;}
._0_c01016{margin-left:-1.093118px;}
._2_c01016{width:1.093118px;}
.fc0_c01016{color:rgb(0,0,0);}
.fs0_c01016{font-size:273.279600px;}
.y0_c01016{bottom:0.000000px;}
.y1_c01016{bottom:734.721600px;}
.h1_c01016{height:196.214753px;}
.h0_c01016{height:892.500000px;}
.w0_c01016{width:1263.000000px;}
.x0_c01016{left:0.000000px;}
.x1_c01016{left:202.879200px;}
@media print{
.v0_c01016{vertical-align:0.000000pt;}
.ls0_c01016{letter-spacing:-0.048583pt;}
.ws0_c01016{word-spacing:-0.194332pt;}
._3_c01016{margin-left:-54.898835pt;}
._1_c01016{margin-left:-2.429152pt;}
._0_c01016{margin-left:-0.971661pt;}
._2_c01016{width:0.971661pt;}
.fs0_c01016{font-size:242.915200pt;}
.y0_c01016{bottom:0.000000pt;}
.y1_c01016{bottom:653.085867pt;}
.h1_c01016{height:174.413114pt;}
.h0_c01016{height:793.333333pt;}
.w0_c01016{width:1122.666667pt;}
.x0_c01016{left:0.000000pt;}
.x1_c01016{left:180.337067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01017{font-family:ff1_c01017;line-height:0.896000;font-style:normal;font-weight:normal;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_21e3cd22d214d94440f9580c.woff2')format("woff");}.ff2_c01017{font-family:ff2_c01017;line-height:0.816406;font-style:normal;font-weight:normal;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_b8bdb772491298f5f95f4231.woff2')format("woff");}.ff3_c01017{font-family:ff3_c01017;line-height:0.938965;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01017{vertical-align:0.000000px;}
.ls0_c01017{letter-spacing:-0.054656px;}
.ls1_c01017{letter-spacing:0.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;}
}
.ws1_c01017{word-spacing:-0.273280px;}
.ws0_c01017{word-spacing:-0.218624px;}
.ws2_c01017{word-spacing:0.000000px;}
._0_c01017{margin-left:-61.761190px;}
._2_c01017{margin-left:-5.711544px;}
._1_c01017{margin-left:-3.033404px;}
._3_c01017{width:1.803645px;}
.fc0_c01017{color:rgb(0,0,0);}
.fs1_c01017{font-size:136.639800px;}
.fs0_c01017{font-size:273.279600px;}
.y0_c01017{bottom:0.000000px;}
.y8_c01017{bottom:81.217800px;}
.y7_c01017{bottom:121.594861px;}
.y6_c01017{bottom:163.509120px;}
.y5_c01017{bottom:203.886180px;}
.y4_c01017{bottom:245.800439px;}
.y3_c01017{bottom:286.177500px;}
.y2_c01017{bottom:680.189921px;}
.y1_c01017{bottom:762.515400px;}
.h3_c01017{height:99.544229px;}
.h2_c01017{height:109.418590px;}
.h1_c01017{height:196.214753px;}
.h0_c01017{height:892.500000px;}
.w0_c01017{width:1263.000000px;}
.x0_c01017{left:0.000000px;}
.x2_c01017{left:117.728490px;}
.x1_c01017{left:309.064800px;}
.x3_c01017{left:442.596300px;}
@media print{
.v0_c01017{vertical-align:0.000000pt;}
.ls0_c01017{letter-spacing:-0.048583pt;}
.ls1_c01017{letter-spacing:0.000000pt;}
.ws1_c01017{word-spacing:-0.242915pt;}
.ws0_c01017{word-spacing:-0.194332pt;}
.ws2_c01017{word-spacing:0.000000pt;}
._0_c01017{margin-left:-54.898835pt;}
._2_c01017{margin-left:-5.076928pt;}
._1_c01017{margin-left:-2.696359pt;}
._3_c01017{width:1.603240pt;}
.fs1_c01017{font-size:121.457600pt;}
.fs0_c01017{font-size:242.915200pt;}
.y0_c01017{bottom:0.000000pt;}
.y8_c01017{bottom:72.193600pt;}
.y7_c01017{bottom:108.084321pt;}
.y6_c01017{bottom:145.341440pt;}
.y5_c01017{bottom:181.232160pt;}
.y4_c01017{bottom:218.489279pt;}
.y3_c01017{bottom:254.380000pt;}
.y2_c01017{bottom:604.613263pt;}
.y1_c01017{bottom:677.791467pt;}
.h3_c01017{height:88.483759pt;}
.h2_c01017{height:97.260969pt;}
.h1_c01017{height:174.413114pt;}
.h0_c01017{height:793.333333pt;}
.w0_c01017{width:1122.666667pt;}
.x0_c01017{left:0.000000pt;}
.x2_c01017{left:104.647547pt;}
.x1_c01017{left:274.724267pt;}
.x3_c01017{left:393.418933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01018{font-family:ff1_c01018;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01018{vertical-align:0.000000px;}
.ls0_c01018{letter-spacing:-0.054656px;}
.sc__c01018{text-shadow:none;}
.sc0_c01018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01018{-webkit-text-stroke:0px transparent;}
.sc0_c01018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01018{word-spacing:-0.218624px;}
._0_c01018{margin-left:-61.761190px;}
.fc0_c01018{color:rgb(0,0,0);}
.fs0_c01018{font-size:273.279600px;}
.y0_c01018{bottom:0.000000px;}
.y1_c01018{bottom:734.721600px;}
.h1_c01018{height:196.214753px;}
.h0_c01018{height:892.500000px;}
.w0_c01018{width:1263.000000px;}
.x0_c01018{left:0.000000px;}
.x1_c01018{left:926.175300px;}
@media print{
.v0_c01018{vertical-align:0.000000pt;}
.ls0_c01018{letter-spacing:-0.048583pt;}
.ws0_c01018{word-spacing:-0.194332pt;}
._0_c01018{margin-left:-54.898835pt;}
.fs0_c01018{font-size:242.915200pt;}
.y0_c01018{bottom:0.000000pt;}
.y1_c01018{bottom:653.085867pt;}
.h1_c01018{height:174.413114pt;}
.h0_c01018{height:793.333333pt;}
.w0_c01018{width:1122.666667pt;}
.x0_c01018{left:0.000000pt;}
.x1_c01018{left:823.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01019{font-family:ff1_c01019;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01019{vertical-align:0.000000px;}
.ls0_c01019{letter-spacing:-0.054656px;}
.ls1_c01019{letter-spacing:0.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;}
}
.ws0_c01019{word-spacing:-0.218624px;}
.ws1_c01019{word-spacing:-0.149062px;}
._0_c01019{margin-left:-61.761190px;}
._4_c01019{margin-left:-33.643203px;}
._3_c01019{margin-left:-9.167288px;}
._1_c01019{margin-left:-4.173725px;}
._2_c01019{margin-left:-2.414798px;}
.fc0_c01019{color:rgb(0,0,0);}
.fs1_c01019{font-size:149.061600px;}
.fs0_c01019{font-size:273.279600px;}
.y0_c01019{bottom:0.000000px;}
.y2_c01019{bottom:705.840750px;}
.y1_c01019{bottom:757.080900px;}
.h2_c01019{height:107.026229px;}
.h1_c01019{height:196.214753px;}
.h0_c01019{height:892.500000px;}
.w0_c01019{width:1263.000000px;}
.x0_c01019{left:0.000000px;}
.x2_c01019{left:161.963850px;}
.x1_c01019{left:284.860050px;}
@media print{
.v0_c01019{vertical-align:0.000000pt;}
.ls0_c01019{letter-spacing:-0.048583pt;}
.ls1_c01019{letter-spacing:0.000000pt;}
.ws0_c01019{word-spacing:-0.194332pt;}
.ws1_c01019{word-spacing:-0.132499pt;}
._0_c01019{margin-left:-54.898835pt;}
._4_c01019{margin-left:-29.905069pt;}
._3_c01019{margin-left:-8.148701pt;}
._1_c01019{margin-left:-3.709978pt;}
._2_c01019{margin-left:-2.146487pt;}
.fs1_c01019{font-size:132.499200pt;}
.fs0_c01019{font-size:242.915200pt;}
.y0_c01019{bottom:0.000000pt;}
.y2_c01019{bottom:627.414000pt;}
.y1_c01019{bottom:672.960800pt;}
.h2_c01019{height:95.134426pt;}
.h1_c01019{height:174.413114pt;}
.h0_c01019{height:793.333333pt;}
.w0_c01019{width:1122.666667pt;}
.x0_c01019{left:0.000000pt;}
.x2_c01019{left:143.967867pt;}
.x1_c01019{left:253.208933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01020{font-family:ff1_c01020;line-height:0.896000;font-style:normal;font-weight:normal;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_97fe1a875395a4e3f5bcc5fd.woff2')format("woff");}.ff2_c01020{font-family:ff2_c01020;line-height:0.938965;font-style:normal;font-weight:normal;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_1698f0148a1a79c3ce5fb237.woff2')format("woff");}.ff3_c01020{font-family:ff3_c01020;line-height:0.717000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01020{vertical-align:0.000000px;}
.ls1_c01020{letter-spacing:-0.054656px;}
.ls2_c01020{letter-spacing:0.000000px;}
.ls3_c01020{letter-spacing:0.024844px;}
.ls0_c01020{letter-spacing:106.951698px;}
.sc__c01020{text-shadow:none;}
.sc0_c01020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01020{-webkit-text-stroke:0px transparent;}
.sc0_c01020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01020{word-spacing:-0.218624px;}
.ws1_c01020{word-spacing:0.000000px;}
._0_c01020{margin-left:-44.892433px;}
._1_c01020{margin-left:-6.869255px;}
._2_c01020{margin-left:-2.248346px;}
.fc1_c01020{color:rgb(255,0,0);}
.fc0_c01020{color:rgb(0,0,0);}
.fs3_c01020{font-size:111.796200px;}
.fs2_c01020{font-size:124.218000px;}
.fs1_c01020{font-size:198.748800px;}
.fs0_c01020{font-size:273.279600px;}
.y0_c01020{bottom:0.000000px;}
.yd_c01020{bottom:59.417700px;}
.yc_c01020{bottom:113.509350px;}
.yb_c01020{bottom:150.774750px;}
.ya_c01020{bottom:188.040150px;}
.y9_c01020{bottom:225.305550px;}
.y8_c01020{bottom:262.570950px;}
.y7_c01020{bottom:299.836350px;}
.y6_c01020{bottom:337.101750px;}
.y5_c01020{bottom:374.367150px;}
.y4_c01020{bottom:411.632550px;}
.y3_c01020{bottom:448.897950px;}
.y2_c01020{bottom:486.163350px;}
.y1_c01020{bottom:750.294450px;}
.h3_c01020{height:81.445279px;}
.h2_c01020{height:90.494754px;}
.h1_c01020{height:196.214753px;}
.h0_c01020{height:892.500000px;}
.w0_c01020{width:1263.000000px;}
.x0_c01020{left:0.000000px;}
.x1_c01020{left:248.833650px;}
.x4_c01020{left:307.674900px;}
.x2_c01020{left:544.128150px;}
.x3_c01020{left:586.045650px;}
@media print{
.v0_c01020{vertical-align:0.000000pt;}
.ls1_c01020{letter-spacing:-0.048583pt;}
.ls2_c01020{letter-spacing:0.000000pt;}
.ls3_c01020{letter-spacing:0.022083pt;}
.ls0_c01020{letter-spacing:95.068176pt;}
.ws0_c01020{word-spacing:-0.194332pt;}
.ws1_c01020{word-spacing:0.000000pt;}
._0_c01020{margin-left:-39.904385pt;}
._1_c01020{margin-left:-6.106005pt;}
._2_c01020{margin-left:-1.998530pt;}
.fs3_c01020{font-size:99.374400pt;}
.fs2_c01020{font-size:110.416000pt;}
.fs1_c01020{font-size:176.665600pt;}
.fs0_c01020{font-size:242.915200pt;}
.y0_c01020{bottom:0.000000pt;}
.yd_c01020{bottom:52.815733pt;}
.yc_c01020{bottom:100.897200pt;}
.yb_c01020{bottom:134.022000pt;}
.ya_c01020{bottom:167.146800pt;}
.y9_c01020{bottom:200.271600pt;}
.y8_c01020{bottom:233.396400pt;}
.y7_c01020{bottom:266.521200pt;}
.y6_c01020{bottom:299.646000pt;}
.y5_c01020{bottom:332.770800pt;}
.y4_c01020{bottom:365.895600pt;}
.y3_c01020{bottom:399.020400pt;}
.y2_c01020{bottom:432.145200pt;}
.y1_c01020{bottom:666.928400pt;}
.h3_c01020{height:72.395803pt;}
.h2_c01020{height:80.439781pt;}
.h1_c01020{height:174.413114pt;}
.h0_c01020{height:793.333333pt;}
.w0_c01020{width:1122.666667pt;}
.x0_c01020{left:0.000000pt;}
.x1_c01020{left:221.185467pt;}
.x4_c01020{left:273.488800pt;}
.x2_c01020{left:483.669467pt;}
.x3_c01020{left:520.929467pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c01021 {
      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_c01021 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c01021 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c01021 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_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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01022{font-family:ff1_c01022;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01022{vertical-align:0.000000px;}
.ls0_c01022{letter-spacing:-0.054656px;}
.ls1_c01022{letter-spacing:0.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:-0.218624px;}
.ws1_c01022{word-spacing:0.000000px;}
._0_c01022{margin-left:-33.659405px;}
.fc0_c01022{color:rgb(0,0,0);}
.fs1_c01022{font-size:149.061600px;}
.fs0_c01022{font-size:273.279600px;}
.y0_c01022{bottom:0.000000px;}
.y1_c01022{bottom:752.235450px;}
.h1_c01022{height:196.214753px;}
.h0_c01022{height:892.500000px;}
.w0_c01022{width:1263.000000px;}
.x0_c01022{left:0.000000px;}
.x1_c01022{left:154.397400px;}
@media print{
.v0_c01022{vertical-align:0.000000pt;}
.ls0_c01022{letter-spacing:-0.048583pt;}
.ls1_c01022{letter-spacing:0.000000pt;}
.ws0_c01022{word-spacing:-0.194332pt;}
.ws1_c01022{word-spacing:0.000000pt;}
._0_c01022{margin-left:-29.919472pt;}
.fs1_c01022{font-size:132.499200pt;}
.fs0_c01022{font-size:242.915200pt;}
.y0_c01022{bottom:0.000000pt;}
.y1_c01022{bottom:668.653733pt;}
.h1_c01022{height:174.413114pt;}
.h0_c01022{height:793.333333pt;}
.w0_c01022{width:1122.666667pt;}
.x0_c01022{left:0.000000pt;}
.x1_c01022{left:137.242133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01023{font-family:ff1_c01023;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01023{vertical-align:0.000000px;}
.ls1_c01023{letter-spacing:-0.079500px;}
.ls0_c01023{letter-spacing:-0.054656px;}
.sc__c01023{text-shadow:none;}
.sc0_c01023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01023{-webkit-text-stroke:0px transparent;}
.sc0_c01023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01023{word-spacing:-0.218624px;}
.ws1_c01023{word-spacing:-0.119249px;}
._0_c01023{margin-left:-61.761190px;}
._2_c01023{margin-left:-44.519731px;}
._1_c01023{margin-left:-2.782483px;}
.fc0_c01023{color:rgb(0,0,0);}
.fs1_c01023{font-size:198.748800px;}
.fs0_c01023{font-size:273.279600px;}
.y0_c01023{bottom:0.000000px;}
.y2_c01023{bottom:707.912550px;}
.y1_c01023{bottom:771.574350px;}
.h2_c01023{height:142.701638px;}
.h1_c01023{height:196.214753px;}
.h0_c01023{height:892.500000px;}
.w0_c01023{width:1263.000000px;}
.x0_c01023{left:0.000000px;}
.x2_c01023{left:658.114650px;}
.x1_c01023{left:739.475250px;}
@media print{
.v0_c01023{vertical-align:0.000000pt;}
.ls1_c01023{letter-spacing:-0.070666pt;}
.ls0_c01023{letter-spacing:-0.048583pt;}
.ws0_c01023{word-spacing:-0.194332pt;}
.ws1_c01023{word-spacing:-0.105999pt;}
._0_c01023{margin-left:-54.898835pt;}
._2_c01023{margin-left:-39.573094pt;}
._1_c01023{margin-left:-2.473318pt;}
.fs1_c01023{font-size:176.665600pt;}
.fs0_c01023{font-size:242.915200pt;}
.y0_c01023{bottom:0.000000pt;}
.y2_c01023{bottom:629.255600pt;}
.y1_c01023{bottom:685.843867pt;}
.h2_c01023{height:126.845901pt;}
.h1_c01023{height:174.413114pt;}
.h0_c01023{height:793.333333pt;}
.w0_c01023{width:1122.666667pt;}
.x0_c01023{left:0.000000pt;}
.x2_c01023{left:584.990800pt;}
.x1_c01023{left:657.311333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01024{font-family:ff1_c01024;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01024{vertical-align:0.000000px;}
.ls0_c01024{letter-spacing:-0.054656px;}
.ls1_c01024{letter-spacing:-0.032297px;}
.sc__c01024{text-shadow:none;}
.sc0_c01024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01024{-webkit-text-stroke:0px transparent;}
.sc0_c01024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01024{word-spacing:-0.218624px;}
.ws1_c01024{word-spacing:-0.129187px;}
._3_c01024{margin-left:-36.010798px;}
._1_c01024{margin-left:-4.683019px;}
._0_c01024{margin-left:-2.642567px;}
._2_c01024{width:1.027733px;}
.fc0_c01024{color:rgb(0,0,0);}
.fs1_c01024{font-size:161.483400px;}
.fs0_c01024{font-size:273.279600px;}
.y0_c01024{bottom:0.000000px;}
.y1_c01024{bottom:767.644800px;}
.h1_c01024{height:196.214753px;}
.h0_c01024{height:892.500000px;}
.w0_c01024{width:1263.000000px;}
.x0_c01024{left:0.000000px;}
.x1_c01024{left:373.753500px;}
@media print{
.v0_c01024{vertical-align:0.000000pt;}
.ls0_c01024{letter-spacing:-0.048583pt;}
.ls1_c01024{letter-spacing:-0.028708pt;}
.ws0_c01024{word-spacing:-0.194332pt;}
.ws1_c01024{word-spacing:-0.114833pt;}
._3_c01024{margin-left:-32.009598pt;}
._1_c01024{margin-left:-4.162683pt;}
._0_c01024{margin-left:-2.348948pt;}
._2_c01024{width:0.913540pt;}
.fs1_c01024{font-size:143.540800pt;}
.fs0_c01024{font-size:242.915200pt;}
.y0_c01024{bottom:0.000000pt;}
.y1_c01024{bottom:682.350933pt;}
.h1_c01024{height:174.413114pt;}
.h0_c01024{height:793.333333pt;}
.w0_c01024{width:1122.666667pt;}
.x0_c01024{left:0.000000pt;}
.x1_c01024{left:332.225333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c113d749c6d941d12aea355b.woff2')format("woff");}.ff1_c01025{font-family:ff1_c01025;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01025{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01025{vertical-align:0.000000px;}
.ls0_c01025{letter-spacing:0.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;}
}
.ws3_c01025{word-spacing:-22.607676px;}
.ws1_c01025{word-spacing:-21.216434px;}
.ws4_c01025{word-spacing:-17.912236px;}
.ws2_c01025{word-spacing:-13.216795px;}
.ws0_c01025{word-spacing:-12.272738px;}
.ws5_c01025{word-spacing:0.000000px;}
._9_c01025{margin-left:-47.476120px;}
._13_c01025{margin-left:-13.191952px;}
._5_c01025{margin-left:-12.111255px;}
._7_c01025{margin-left:-10.980871px;}
._1e_c01025{margin-left:-2.459516px;}
._16_c01025{margin-left:-1.242180px;}
._18_c01025{width:1.204915px;}
._1b_c01025{width:4.347630px;}
._15_c01025{width:6.101588px;}
._1_c01025{width:7.589720px;}
._a_c01025{width:8.695260px;}
._1d_c01025{width:12.675205px;}
._8_c01025{width:14.533506px;}
._17_c01025{width:16.058903px;}
._3_c01025{width:19.539491px;}
._10_c01025{width:20.980420px;}
._1c_c01025{width:22.160491px;}
._19_c01025{width:23.477202px;}
._f_c01025{width:26.706870px;}
._0_c01025{width:27.936628px;}
._2_c01025{width:29.551462px;}
._4_c01025{width:31.812230px;}
._d_c01025{width:34.259324px;}
._12_c01025{width:36.144954px;}
._6_c01025{width:37.464149px;}
._c_c01025{width:38.954765px;}
._20_c01025{width:40.917409px;}
._1f_c01025{width:47.066200px;}
._21_c01025{width:53.326787px;}
._b_c01025{width:54.606233px;}
._14_c01025{width:66.257881px;}
._e_c01025{width:71.375663px;}
._11_c01025{width:85.834638px;}
._1a_c01025{width:87.302895px;}
.fc0_c01025{color:transparent;}
.fs2_c01025{font-size:111.796200px;}
.fs0_c01025{font-size:161.483400px;}
.fs1_c01025{font-size:173.905200px;}
.y0_c01025{bottom:0.000000px;}
.yb_c01025{bottom:28.813050px;}
.ya_c01025{bottom:172.027931px;}
.y9_c01025{bottom:223.721252px;}
.y8_c01025{bottom:286.935792px;}
.y7_c01025{bottom:338.629113px;}
.y6_c01025{bottom:401.843653px;}
.y5_c01025{bottom:453.536974px;}
.y4_c01025{bottom:516.751514px;}
.y3_c01025{bottom:568.010072px;}
.y2_c01025{bottom:620.790300px;}
.y1_c01025{bottom:745.900950px;}
.h3_c01025{height:111.796200px;}
.h1_c01025{height:161.483400px;}
.h2_c01025{height:173.905200px;}
.h0_c01025{height:892.500000px;}
.w0_c01025{width:1263.000000px;}
.x0_c01025{left:0.000000px;}
.x1_c01025{left:436.414500px;}
.x2_c01025{left:652.183800px;}
.x3_c01025{left:694.088880px;}
.x4_c01025{left:968.154750px;}
@media print{
.v0_c01025{vertical-align:0.000000pt;}
.ls0_c01025{letter-spacing:0.000000pt;}
.ws3_c01025{word-spacing:-20.095712pt;}
.ws1_c01025{word-spacing:-18.859053pt;}
.ws4_c01025{word-spacing:-15.921987pt;}
.ws2_c01025{word-spacing:-11.748262pt;}
.ws0_c01025{word-spacing:-10.909101pt;}
.ws5_c01025{word-spacing:0.000000pt;}
._9_c01025{margin-left:-42.200995pt;}
._13_c01025{margin-left:-11.726179pt;}
._5_c01025{margin-left:-10.765560pt;}
._7_c01025{margin-left:-9.760774pt;}
._1e_c01025{margin-left:-2.186237pt;}
._16_c01025{margin-left:-1.104160pt;}
._18_c01025{width:1.071035pt;}
._1b_c01025{width:3.864560pt;}
._15_c01025{width:5.423634pt;}
._1_c01025{width:6.746418pt;}
._a_c01025{width:7.729120pt;}
._1d_c01025{width:11.266849pt;}
._8_c01025{width:12.918672pt;}
._17_c01025{width:14.274580pt;}
._3_c01025{width:17.368437pt;}
._10_c01025{width:18.649262pt;}
._1c_c01025{width:19.698214pt;}
._19_c01025{width:20.868624pt;}
._f_c01025{width:23.739440pt;}
._0_c01025{width:24.832558pt;}
._2_c01025{width:26.267966pt;}
._4_c01025{width:28.277538pt;}
._d_c01025{width:30.452733pt;}
._12_c01025{width:32.128848pt;}
._6_c01025{width:33.301466pt;}
._c_c01025{width:34.626458pt;}
._20_c01025{width:36.371030pt;}
._1f_c01025{width:41.836622pt;}
._21_c01025{width:47.401589pt;}
._b_c01025{width:48.538874pt;}
._14_c01025{width:58.895894pt;}
._e_c01025{width:63.445034pt;}
._11_c01025{width:76.297456pt;}
._1a_c01025{width:77.602573pt;}
.fs2_c01025{font-size:99.374400pt;}
.fs0_c01025{font-size:143.540800pt;}
.fs1_c01025{font-size:154.582400pt;}
.y0_c01025{bottom:0.000000pt;}
.yb_c01025{bottom:25.611600pt;}
.ya_c01025{bottom:152.913717pt;}
.y9_c01025{bottom:198.863335pt;}
.y8_c01025{bottom:255.054038pt;}
.y7_c01025{bottom:301.003656pt;}
.y6_c01025{bottom:357.194358pt;}
.y5_c01025{bottom:403.143977pt;}
.y4_c01025{bottom:459.334679pt;}
.y3_c01025{bottom:504.897842pt;}
.y2_c01025{bottom:551.813600pt;}
.y1_c01025{bottom:663.023067pt;}
.h3_c01025{height:99.374400pt;}
.h1_c01025{height:143.540800pt;}
.h2_c01025{height:154.582400pt;}
.h0_c01025{height:793.333333pt;}
.w0_c01025{width:1122.666667pt;}
.x0_c01025{left:0.000000pt;}
.x1_c01025{left:387.924000pt;}
.x2_c01025{left:579.718933pt;}
.x3_c01025{left:616.967893pt;}
.x4_c01025{left:860.582000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01026{font-family:ff1_c01026;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01026{vertical-align:0.000000px;}
.ls0_c01026{letter-spacing:-0.054656px;}
.ls1_c01026{letter-spacing:0.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;}
}
.ws0_c01026{word-spacing:-0.218624px;}
.ws1_c01026{word-spacing:0.000000px;}
._0_c01026{margin-left:-32.807330px;}
.fc0_c01026{color:rgb(0,0,0);}
.fs1_c01026{font-size:149.061600px;}
.fs0_c01026{font-size:273.279600px;}
.y0_c01026{bottom:0.000000px;}
.y1_c01026{bottom:752.235450px;}
.h1_c01026{height:196.214753px;}
.h0_c01026{height:892.500000px;}
.w0_c01026{width:1263.000000px;}
.x0_c01026{left:0.000000px;}
.x1_c01026{left:692.393250px;}
@media print{
.v0_c01026{vertical-align:0.000000pt;}
.ls0_c01026{letter-spacing:-0.048583pt;}
.ls1_c01026{letter-spacing:0.000000pt;}
.ws0_c01026{word-spacing:-0.194332pt;}
.ws1_c01026{word-spacing:0.000000pt;}
._0_c01026{margin-left:-29.162071pt;}
.fs1_c01026{font-size:132.499200pt;}
.fs0_c01026{font-size:242.915200pt;}
.y0_c01026{bottom:0.000000pt;}
.y1_c01026{bottom:668.653733pt;}
.h1_c01026{height:174.413114pt;}
.h0_c01026{height:793.333333pt;}
.w0_c01026{width:1122.666667pt;}
.x0_c01026{left:0.000000pt;}
.x1_c01026{left:615.460667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01027{font-family:ff1_c01027;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01027{vertical-align:0.000000px;}
.ls0_c01027{letter-spacing:-0.054656px;}
.sc__c01027{text-shadow:none;}
.sc0_c01027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01027{-webkit-text-stroke:0px transparent;}
.sc0_c01027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01027{word-spacing:-0.218624px;}
._0_c01027{margin-left:-61.761190px;}
.fc0_c01027{color:rgb(0,0,0);}
.fs0_c01027{font-size:273.279600px;}
.y0_c01027{bottom:0.000000px;}
.y1_c01027{bottom:759.148500px;}
.h1_c01027{height:196.214753px;}
.h0_c01027{height:892.500000px;}
.w0_c01027{width:1263.000000px;}
.x0_c01027{left:0.000000px;}
.x1_c01027{left:227.526900px;}
@media print{
.v0_c01027{vertical-align:0.000000pt;}
.ls0_c01027{letter-spacing:-0.048583pt;}
.ws0_c01027{word-spacing:-0.194332pt;}
._0_c01027{margin-left:-54.898835pt;}
.fs0_c01027{font-size:242.915200pt;}
.y0_c01027{bottom:0.000000pt;}
.y1_c01027{bottom:674.798667pt;}
.h1_c01027{height:174.413114pt;}
.h0_c01027{height:793.333333pt;}
.w0_c01027{width:1122.666667pt;}
.x0_c01027{left:0.000000pt;}
.x1_c01027{left:202.246133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01028{font-family:ff1_c01028;line-height:0.896000;font-style:normal;font-weight:normal;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_c7641b142f80d85c9af4b242.woff2')format("woff");}.ff2_c01028{font-family:ff2_c01028;line-height:0.938965;font-style:normal;font-weight:normal;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_1698f0148a1a79c3ce5fb237.woff2')format("woff");}.ff3_c01028{font-family:ff3_c01028;line-height:0.717000;font-style:normal;font-weight:normal;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_c5d5d6d438e6b928852d6ca4.woff2')format("woff");}.ff4_c01028{font-family:ff4_c01028;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01028{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01028{vertical-align:0.000000px;}
.ls1_c01028{letter-spacing:0.000000px;}
.ls2_c01028{letter-spacing:0.029812px;}
.ls0_c01028{letter-spacing:85.076908px;}
.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.273280px;}
.ws1_c01028{word-spacing:0.000000px;}
._0_c01028{margin-left:-3.825914px;}
._1_c01028{margin-left:-2.023511px;}
.fc1_c01028{color:rgb(255,0,0);}
.fc0_c01028{color:rgb(0,0,0);}
.fs1_c01028{font-size:111.796200px;}
.fs2_c01028{font-size:149.061600px;}
.fs0_c01028{font-size:273.279600px;}
.y0_c01028{bottom:0.000000px;}
.yb_c01028{bottom:226.057259px;}
.ya_c01028{bottom:269.545980px;}
.y9_c01028{bottom:302.162522px;}
.y8_c01028{bottom:336.316261px;}
.y7_c01028{bottom:370.470000px;}
.y6_c01028{bottom:404.623889px;}
.y5_c01028{bottom:448.112611px;}
.y4_c01028{bottom:482.266350px;}
.y3_c01028{bottom:516.413878px;}
.y2_c01028{bottom:559.902600px;}
.y1_c01028{bottom:734.721600px;}
.h2_c01028{height:81.445279px;}
.h3_c01028{height:108.570608px;}
.h4_c01028{height:108.617948px;}
.h5_c01028{height:108.630070px;}
.h1_c01028{height:196.214753px;}
.h0_c01028{height:892.500000px;}
.w0_c01028{width:1263.000000px;}
.x0_c01028{left:0.000000px;}
.x1_c01028{left:139.858950px;}
.x2_c01028{left:656.312400px;}
@media print{
.v0_c01028{vertical-align:0.000000pt;}
.ls1_c01028{letter-spacing:0.000000pt;}
.ls2_c01028{letter-spacing:0.026500pt;}
.ls0_c01028{letter-spacing:75.623918pt;}
.ws0_c01028{word-spacing:-0.242915pt;}
.ws1_c01028{word-spacing:0.000000pt;}
._0_c01028{margin-left:-3.400813pt;}
._1_c01028{margin-left:-1.798677pt;}
.fs1_c01028{font-size:99.374400pt;}
.fs2_c01028{font-size:132.499200pt;}
.fs0_c01028{font-size:242.915200pt;}
.y0_c01028{bottom:0.000000pt;}
.yb_c01028{bottom:200.939785pt;}
.ya_c01028{bottom:239.596427pt;}
.y9_c01028{bottom:268.588908pt;}
.y8_c01028{bottom:298.947787pt;}
.y7_c01028{bottom:329.306667pt;}
.y6_c01028{bottom:359.665679pt;}
.y5_c01028{bottom:398.322321pt;}
.y4_c01028{bottom:428.681200pt;}
.y3_c01028{bottom:459.034558pt;}
.y2_c01028{bottom:497.691200pt;}
.y1_c01028{bottom:653.085867pt;}
.h2_c01028{height:72.395803pt;}
.h3_c01028{height:96.507207pt;}
.h4_c01028{height:96.549287pt;}
.h5_c01028{height:96.560062pt;}
.h1_c01028{height:174.413114pt;}
.h0_c01028{height:793.333333pt;}
.w0_c01028{width:1122.666667pt;}
.x0_c01028{left:0.000000pt;}
.x1_c01028{left:124.319067pt;}
.x2_c01028{left:583.388800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01029{font-family:ff1_c01029;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01029{vertical-align:0.000000px;}
.ls0_c01029{letter-spacing:-0.054656px;}
.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:-0.218624px;}
._0_c01029{margin-left:-61.761190px;}
.fc0_c01029{color:rgb(0,0,0);}
.fs0_c01029{font-size:273.279600px;}
.y0_c01029{bottom:0.000000px;}
.y1_c01029{bottom:734.721600px;}
.h1_c01029{height:196.214753px;}
.h0_c01029{height:892.500000px;}
.w0_c01029{width:1263.000000px;}
.x0_c01029{left:0.000000px;}
.x1_c01029{left:191.127750px;}
@media print{
.v0_c01029{vertical-align:0.000000pt;}
.ls0_c01029{letter-spacing:-0.048583pt;}
.ws0_c01029{word-spacing:-0.194332pt;}
._0_c01029{margin-left:-54.898835pt;}
.fs0_c01029{font-size:242.915200pt;}
.y0_c01029{bottom:0.000000pt;}
.y1_c01029{bottom:653.085867pt;}
.h1_c01029{height:174.413114pt;}
.h0_c01029{height:793.333333pt;}
.w0_c01029{width:1122.666667pt;}
.x0_c01029{left:0.000000pt;}
.x1_c01029{left:169.891333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01030{font-family:ff1_c01030;line-height:0.896000;font-style:normal;font-weight:normal;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_0d9c2ce8d6c6ba1105b366e7.woff2')format("woff");}.ff2_c01030{font-family:ff2_c01030;line-height:0.938965;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01030{vertical-align:0.000000px;}
.ls0_c01030{letter-spacing:-0.054656px;}
.ls1_c01030{letter-spacing:0.000000px;}
.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;}
}
.ws0_c01030{word-spacing:-0.218624px;}
.ws1_c01030{word-spacing:0.000000px;}
._0_c01030{margin-left:-33.660006px;}
._1_c01030{margin-left:-2.034691px;}
.fc0_c01030{color:rgb(0,0,0);}
.fs2_c01030{font-size:111.796200px;}
.fs1_c01030{font-size:149.061600px;}
.fs0_c01030{font-size:273.279600px;}
.y0_c01030{bottom:0.000000px;}
.y2_c01030{bottom:55.548600px;}
.y1_c01030{bottom:736.826400px;}
.h2_c01030{height:81.445279px;}
.h1_c01030{height:196.214753px;}
.h0_c01030{height:892.500000px;}
.w0_c01030{width:1263.000000px;}
.x0_c01030{left:0.000000px;}
.x1_c01030{left:164.035800px;}
.x2_c01030{left:221.268150px;}
@media print{
.v0_c01030{vertical-align:0.000000pt;}
.ls0_c01030{letter-spacing:-0.048583pt;}
.ls1_c01030{letter-spacing:0.000000pt;}
.ws0_c01030{word-spacing:-0.194332pt;}
.ws1_c01030{word-spacing:0.000000pt;}
._0_c01030{margin-left:-29.920005pt;}
._1_c01030{margin-left:-1.808614pt;}
.fs2_c01030{font-size:99.374400pt;}
.fs1_c01030{font-size:132.499200pt;}
.fs0_c01030{font-size:242.915200pt;}
.y0_c01030{bottom:0.000000pt;}
.y2_c01030{bottom:49.376533pt;}
.y1_c01030{bottom:654.956800pt;}
.h2_c01030{height:72.395803pt;}
.h1_c01030{height:174.413114pt;}
.h0_c01030{height:793.333333pt;}
.w0_c01030{width:1122.666667pt;}
.x0_c01030{left:0.000000pt;}
.x1_c01030{left:145.809600pt;}
.x2_c01030{left:196.682800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01031{font-family:ff1_c01031;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01031{vertical-align:0.000000px;}
.ls0_c01031{letter-spacing:-0.054656px;}
.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;}
}
.ws0_c01031{word-spacing:-0.218624px;}
.ws1_c01031{word-spacing:0.000000px;}
._0_c01031{margin-left:-33.659405px;}
.fc0_c01031{color:rgb(0,0,0);}
.fs1_c01031{font-size:149.061600px;}
.fs0_c01031{font-size:273.279600px;}
.y0_c01031{bottom:0.000000px;}
.y1_c01031{bottom:745.123650px;}
.h1_c01031{height:196.214753px;}
.h0_c01031{height:892.500000px;}
.w0_c01031{width:1263.000000px;}
.x0_c01031{left:0.000000px;}
.x1_c01031{left:238.545750px;}
@media print{
.v0_c01031{vertical-align:0.000000pt;}
.ls0_c01031{letter-spacing:-0.048583pt;}
.ls1_c01031{letter-spacing:0.000000pt;}
.ws0_c01031{word-spacing:-0.194332pt;}
.ws1_c01031{word-spacing:0.000000pt;}
._0_c01031{margin-left:-29.919472pt;}
.fs1_c01031{font-size:132.499200pt;}
.fs0_c01031{font-size:242.915200pt;}
.y0_c01031{bottom:0.000000pt;}
.y1_c01031{bottom:662.332133pt;}
.h1_c01031{height:174.413114pt;}
.h0_c01031{height:793.333333pt;}
.w0_c01031{width:1122.666667pt;}
.x0_c01031{left:0.000000pt;}
.x1_c01031{left:212.040667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01032{font-family:ff1_c01032;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01032{vertical-align:0.000000px;}
.ls0_c01032{letter-spacing:-0.054656px;}
.ls1_c01032{letter-spacing:0.000000px;}
.sc__c01032{text-shadow:none;}
.sc0_c01032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01032{-webkit-text-stroke:0px transparent;}
.sc0_c01032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01032{word-spacing:-0.218624px;}
.ws1_c01032{word-spacing:-0.186327px;}
._3_c01032{margin-left:-42.296229px;}
._0_c01032{margin-left:-10.038861px;}
._2_c01032{margin-left:-3.074396px;}
._1_c01032{margin-left:-1.565147px;}
.fc0_c01032{color:rgb(0,0,0);}
.fs1_c01032{font-size:186.327000px;}
.fs0_c01032{font-size:273.279600px;}
.y0_c01032{bottom:0.000000px;}
.y1_c01032{bottom:752.235450px;}
.h1_c01032{height:196.214753px;}
.h0_c01032{height:892.500000px;}
.w0_c01032{width:1263.000000px;}
.x0_c01032{left:0.000000px;}
.x1_c01032{left:139.581900px;}
@media print{
.v0_c01032{vertical-align:0.000000pt;}
.ls0_c01032{letter-spacing:-0.048583pt;}
.ls1_c01032{letter-spacing:0.000000pt;}
.ws0_c01032{word-spacing:-0.194332pt;}
.ws1_c01032{word-spacing:-0.165624pt;}
._3_c01032{margin-left:-37.596648pt;}
._0_c01032{margin-left:-8.923432pt;}
._2_c01032{margin-left:-2.732796pt;}
._1_c01032{margin-left:-1.391242pt;}
.fs1_c01032{font-size:165.624000pt;}
.fs0_c01032{font-size:242.915200pt;}
.y0_c01032{bottom:0.000000pt;}
.y1_c01032{bottom:668.653733pt;}
.h1_c01032{height:174.413114pt;}
.h0_c01032{height:793.333333pt;}
.w0_c01032{width:1122.666667pt;}
.x0_c01032{left:0.000000pt;}
.x1_c01032{left:124.072800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01033{font-family:ff1_c01033;line-height:0.896000;font-style:normal;font-weight:normal;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_2685478cbf21ca6aadd936f9.woff2')format("woff");}.ff2_c01033{font-family:ff2_c01033;line-height:0.938965;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01033{vertical-align:0.000000px;}
.v1_c01033{vertical-align:55.898400px;}
.ls3_c01033{letter-spacing:-1.378820px;}
.ls1_c01033{letter-spacing:-0.054656px;}
.ls2_c01033{letter-spacing:-0.018633px;}
.ls4_c01033{letter-spacing:0.000000px;}
.ls0_c01033{letter-spacing:0.018633px;}
.sc__c01033{text-shadow:none;}
.sc0_c01033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01033{-webkit-text-stroke:0px transparent;}
.sc0_c01033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01033{word-spacing:-0.218624px;}
.ws3_c01033{word-spacing:-0.204960px;}
.ws1_c01033{word-spacing:-0.167694px;}
.ws4_c01033{word-spacing:0.000000px;}
.ws2_c01033{word-spacing:1.254602px;}
._2_c01033{margin-left:-42.109902px;}
._1_c01033{margin-left:-1.676943px;}
._0_c01033{width:2.000054px;}
.fc0_c01033{color:rgb(0,0,0);}
.fs3_c01033{font-size:111.796200px;}
.fs2_c01033{font-size:124.218000px;}
.fs1_c01033{font-size:186.327000px;}
.fs0_c01033{font-size:273.279600px;}
.y0_c01033{bottom:0.000000px;}
.y4_c01033{bottom:54.174270px;}
.y3_c01033{bottom:86.790811px;}
.y2_c01033{bottom:120.944550px;}
.y1_c01033{bottom:752.235450px;}
.h2_c01033{height:81.445279px;}
.h1_c01033{height:196.214753px;}
.h0_c01033{height:892.500000px;}
.w0_c01033{width:1263.000000px;}
.x0_c01033{left:0.000000px;}
.x2_c01033{left:83.968950px;}
.x1_c01033{left:160.308750px;}
@media print{
.v0_c01033{vertical-align:0.000000pt;}
.v1_c01033{vertical-align:49.687467pt;}
.ls3_c01033{letter-spacing:-1.225618pt;}
.ls1_c01033{letter-spacing:-0.048583pt;}
.ls2_c01033{letter-spacing:-0.016562pt;}
.ls4_c01033{letter-spacing:0.000000pt;}
.ls0_c01033{letter-spacing:0.016562pt;}
.ws0_c01033{word-spacing:-0.194332pt;}
.ws3_c01033{word-spacing:-0.182186pt;}
.ws1_c01033{word-spacing:-0.149062pt;}
.ws4_c01033{word-spacing:0.000000pt;}
.ws2_c01033{word-spacing:1.115202pt;}
._2_c01033{margin-left:-37.431024pt;}
._1_c01033{margin-left:-1.490616pt;}
._0_c01033{width:1.777826pt;}
.fs3_c01033{font-size:99.374400pt;}
.fs2_c01033{font-size:110.416000pt;}
.fs1_c01033{font-size:165.624000pt;}
.fs0_c01033{font-size:242.915200pt;}
.y0_c01033{bottom:0.000000pt;}
.y4_c01033{bottom:48.154906pt;}
.y3_c01033{bottom:77.147387pt;}
.y2_c01033{bottom:107.506267pt;}
.y1_c01033{bottom:668.653733pt;}
.h2_c01033{height:72.395803pt;}
.h1_c01033{height:174.413114pt;}
.h0_c01033{height:793.333333pt;}
.w0_c01033{width:1122.666667pt;}
.x0_c01033{left:0.000000pt;}
.x2_c01033{left:74.639067pt;}
.x1_c01033{left:142.496667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01034{font-family:ff1_c01034;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01034{vertical-align:0.000000px;}
.ls0_c01034{letter-spacing:-0.054656px;}
.ls1_c01034{letter-spacing:-0.018633px;}
.ls2_c01034{letter-spacing:0.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:-0.218624px;}
.ws2_c01034{word-spacing:-0.186327px;}
.ws1_c01034{word-spacing:-0.167694px;}
._0_c01034{margin-left:-61.761190px;}
._1_c01034{margin-left:-41.737248px;}
._2_c01034{margin-left:-2.012332px;}
.fc0_c01034{color:rgb(0,0,0);}
.fs1_c01034{font-size:186.327000px;}
.fs0_c01034{font-size:273.279600px;}
.y0_c01034{bottom:0.000000px;}
.y3_c01034{bottom:595.667550px;}
.y2_c01034{bottom:651.565650px;}
.y1_c01034{bottom:712.122000px;}
.h2_c01034{height:133.782786px;}
.h1_c01034{height:196.214753px;}
.h0_c01034{height:892.500000px;}
.w0_c01034{width:1263.000000px;}
.x0_c01034{left:0.000000px;}
.x3_c01034{left:706.234200px;}
.x2_c01034{left:822.671700px;}
.x1_c01034{left:833.555100px;}
@media print{
.v0_c01034{vertical-align:0.000000pt;}
.ls0_c01034{letter-spacing:-0.048583pt;}
.ls1_c01034{letter-spacing:-0.016562pt;}
.ls2_c01034{letter-spacing:0.000000pt;}
.ws0_c01034{word-spacing:-0.194332pt;}
.ws2_c01034{word-spacing:-0.165624pt;}
.ws1_c01034{word-spacing:-0.149062pt;}
._0_c01034{margin-left:-54.898835pt;}
._1_c01034{margin-left:-37.099776pt;}
._2_c01034{margin-left:-1.788739pt;}
.fs1_c01034{font-size:165.624000pt;}
.fs0_c01034{font-size:242.915200pt;}
.y0_c01034{bottom:0.000000pt;}
.y3_c01034{bottom:529.482267pt;}
.y2_c01034{bottom:579.169467pt;}
.y1_c01034{bottom:632.997333pt;}
.h2_c01034{height:118.918032pt;}
.h1_c01034{height:174.413114pt;}
.h0_c01034{height:793.333333pt;}
.w0_c01034{width:1122.666667pt;}
.x0_c01034{left:0.000000pt;}
.x3_c01034{left:627.763733pt;}
.x2_c01034{left:731.263733pt;}
.x1_c01034{left:740.937867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01035{font-family:ff1_c01035;line-height:0.896000;font-style:normal;font-weight:normal;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_46d84308b30aa8d23ef16916.woff2')format("woff");}.ff2_c01035{font-family:ff2_c01035;line-height:0.938965;font-style:normal;font-weight:normal;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_a5ccd5b36efc4eb241c00a06.woff2')format("woff");}.ff3_c01035{font-family:ff3_c01035;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01035{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01035{vertical-align:0.000000px;}
.ls1_c01035{letter-spacing:-0.054656px;}
.ls3_c01035{letter-spacing:-0.022359px;}
.ls2_c01035{letter-spacing:0.000000px;}
.ls0_c01035{letter-spacing:0.022359px;}
.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;}
}
.ws1_c01035{word-spacing:-31.056984px;}
.ws0_c01035{word-spacing:-0.218624px;}
.ws2_c01035{word-spacing:0.000000px;}
._1_c01035{margin-left:-41.845048px;}
._3_c01035{margin-left:-6.182330px;}
._0_c01035{margin-left:-3.825914px;}
._2_c01035{margin-left:-2.034691px;}
.fc0_c01035{color:rgb(0,0,0);}
.fs2_c01035{font-size:111.796200px;}
.fs1_c01035{font-size:186.327000px;}
.fs0_c01035{font-size:273.279600px;}
.y0_c01035{bottom:0.000000px;}
.y9_c01035{bottom:337.739194px;}
.y8_c01035{bottom:371.892933px;}
.y7_c01035{bottom:420.021197px;}
.y6_c01035{bottom:468.149461px;}
.y5_c01035{bottom:502.303200px;}
.y4_c01035{bottom:591.832920px;}
.y3_c01035{bottom:624.449461px;}
.y2_c01035{bottom:658.603200px;}
.y1_c01035{bottom:752.235450px;}
.h2_c01035{height:81.445279px;}
.h1_c01035{height:196.214753px;}
.h0_c01035{height:892.500000px;}
.w0_c01035{width:1263.000000px;}
.x0_c01035{left:0.000000px;}
.x4_c01035{left:112.034520px;}
.x2_c01035{left:125.445750px;}
.x3_c01035{left:128.354400px;}
.x1_c01035{left:149.967300px;}
.x6_c01035{left:222.305490px;}
.x5_c01035{left:366.697305px;}
@media print{
.v0_c01035{vertical-align:0.000000pt;}
.ls1_c01035{letter-spacing:-0.048583pt;}
.ls3_c01035{letter-spacing:-0.019875pt;}
.ls2_c01035{letter-spacing:0.000000pt;}
.ls0_c01035{letter-spacing:0.019875pt;}
.ws1_c01035{word-spacing:-27.606208pt;}
.ws0_c01035{word-spacing:-0.194332pt;}
.ws2_c01035{word-spacing:0.000000pt;}
._1_c01035{margin-left:-37.195598pt;}
._3_c01035{margin-left:-5.495404pt;}
._0_c01035{margin-left:-3.400813pt;}
._2_c01035{margin-left:-1.808614pt;}
.fs2_c01035{font-size:99.374400pt;}
.fs1_c01035{font-size:165.624000pt;}
.fs0_c01035{font-size:242.915200pt;}
.y0_c01035{bottom:0.000000pt;}
.y9_c01035{bottom:300.212617pt;}
.y8_c01035{bottom:330.571496pt;}
.y7_c01035{bottom:373.352175pt;}
.y6_c01035{bottom:416.132854pt;}
.y5_c01035{bottom:446.491733pt;}
.y4_c01035{bottom:526.073706pt;}
.y3_c01035{bottom:555.066187pt;}
.y2_c01035{bottom:585.425067pt;}
.y1_c01035{bottom:668.653733pt;}
.h2_c01035{height:72.395803pt;}
.h1_c01035{height:174.413114pt;}
.h0_c01035{height:793.333333pt;}
.w0_c01035{width:1122.666667pt;}
.x0_c01035{left:0.000000pt;}
.x4_c01035{left:99.586240pt;}
.x2_c01035{left:111.507333pt;}
.x3_c01035{left:114.092800pt;}
.x1_c01035{left:133.304267pt;}
.x6_c01035{left:197.604880pt;}
.x5_c01035{left:325.953160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01036{font-family:ff1_c01036;line-height:0.896000;font-style:normal;font-weight:normal;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_fe13929323c2775ce5caafc8.woff2')format("woff");}.ff2_c01036{font-family:ff2_c01036;line-height:0.938965;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01036{vertical-align:0.000000px;}
.ls0_c01036{letter-spacing:0.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;}
}
.ws0_c01036{word-spacing:-0.273280px;}
.ws1_c01036{word-spacing:0.000000px;}
._2_c01036{margin-left:-61.815846px;}
._0_c01036{margin-left:-5.711544px;}
._1_c01036{margin-left:-1.503038px;}
.fc0_c01036{color:rgb(0,0,0);}
.fs1_c01036{font-size:111.796200px;}
.fs0_c01036{font-size:273.279600px;}
.y0_c01036{bottom:0.000000px;}
.ya_c01036{bottom:195.931861px;}
.y9_c01036{bottom:230.085600px;}
.y8_c01036{bottom:264.239339px;}
.y7_c01036{bottom:296.855880px;}
.y6_c01036{bottom:363.626161px;}
.y5_c01036{bottom:397.779900px;}
.y4_c01036{bottom:431.933639px;}
.y3_c01036{bottom:498.703920px;}
.y2_c01036{bottom:565.474200px;}
.y1_c01036{bottom:734.721600px;}
.h2_c01036{height:81.445279px;}
.h1_c01036{height:196.214753px;}
.h0_c01036{height:892.500000px;}
.w0_c01036{width:1263.000000px;}
.x0_c01036{left:0.000000px;}
.x1_c01036{left:412.295400px;}
.x2_c01036{left:661.311900px;}
@media print{
.v0_c01036{vertical-align:0.000000pt;}
.ls0_c01036{letter-spacing:0.000000pt;}
.ws0_c01036{word-spacing:-0.242915pt;}
.ws1_c01036{word-spacing:0.000000pt;}
._2_c01036{margin-left:-54.947418pt;}
._0_c01036{margin-left:-5.076928pt;}
._1_c01036{margin-left:-1.336034pt;}
.fs1_c01036{font-size:99.374400pt;}
.fs0_c01036{font-size:242.915200pt;}
.y0_c01036{bottom:0.000000pt;}
.ya_c01036{bottom:174.161654pt;}
.y9_c01036{bottom:204.520533pt;}
.y8_c01036{bottom:234.879413pt;}
.y7_c01036{bottom:263.871894pt;}
.y6_c01036{bottom:323.223254pt;}
.y5_c01036{bottom:353.582133pt;}
.y4_c01036{bottom:383.941013pt;}
.y3_c01036{bottom:443.292373pt;}
.y2_c01036{bottom:502.643733pt;}
.y1_c01036{bottom:653.085867pt;}
.h2_c01036{height:72.395803pt;}
.h1_c01036{height:174.413114pt;}
.h0_c01036{height:793.333333pt;}
.w0_c01036{width:1122.666667pt;}
.x0_c01036{left:0.000000pt;}
.x1_c01036{left:366.484800pt;}
.x2_c01036{left:587.832800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01037{font-family:ff1_c01037;line-height:0.896000;font-style:normal;font-weight:normal;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_bad4d4a7f21a51e57f0f38b8.woff2')format("woff");}.ff2_c01037{font-family:ff2_c01037;line-height:0.938965;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01037{vertical-align:0.000000px;}
.ls0_c01037{letter-spacing:0.000000px;}
.sc__c01037{text-shadow:none;}
.sc0_c01037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01037{-webkit-text-stroke:0px transparent;}
.sc0_c01037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01037{word-spacing:-0.273280px;}
.ws1_c01037{word-spacing:0.000000px;}
._1_c01037{margin-left:-61.815846px;}
._0_c01037{margin-left:-7.323893px;}
.fc1_c01037{color:rgb(255,0,0);}
.fc0_c01037{color:rgb(0,0,0);}
.fs1_c01037{font-size:149.061600px;}
.fs0_c01037{font-size:273.279600px;}
.y0_c01037{bottom:0.000000px;}
.y2_c01037{bottom:614.751150px;}
.y1_c01037{bottom:763.032300px;}
.h2_c01037{height:108.593705px;}
.h1_c01037{height:196.214753px;}
.h0_c01037{height:892.500000px;}
.w0_c01037{width:1263.000000px;}
.x0_c01037{left:0.000000px;}
.x1_c01037{left:374.721600px;}
.x2_c01037{left:774.016050px;}
@media print{
.v0_c01037{vertical-align:0.000000pt;}
.ls0_c01037{letter-spacing:0.000000pt;}
.ws0_c01037{word-spacing:-0.242915pt;}
.ws1_c01037{word-spacing:0.000000pt;}
._1_c01037{margin-left:-54.947418pt;}
._0_c01037{margin-left:-6.510127pt;}
.fs1_c01037{font-size:132.499200pt;}
.fs0_c01037{font-size:242.915200pt;}
.y0_c01037{bottom:0.000000pt;}
.y2_c01037{bottom:546.445467pt;}
.y1_c01037{bottom:678.250933pt;}
.h2_c01037{height:96.527737pt;}
.h1_c01037{height:174.413114pt;}
.h0_c01037{height:793.333333pt;}
.w0_c01037{width:1122.666667pt;}
.x0_c01037{left:0.000000pt;}
.x1_c01037{left:333.085867pt;}
.x2_c01037{left:688.014267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01038{font-family:ff1_c01038;line-height:0.896000;font-style:normal;font-weight:normal;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_658b40c15d11ecb91f9715b7.woff2')format("woff");}.ff2_c01038{font-family:ff2_c01038;line-height:0.938965;font-style:normal;font-weight:normal;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_c087200d4fe92a9b11c8bf2c.woff2')format("woff");}.ff3_c01038{font-family:ff3_c01038;line-height:0.960938;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01038{vertical-align:0.000000px;}
.ls0_c01038{letter-spacing:-0.054656px;}
.ls1_c01038{letter-spacing:0.000000px;}
.sc__c01038{text-shadow:none;}
.sc0_c01038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01038{-webkit-text-stroke:0px transparent;}
.sc0_c01038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01038{word-spacing:-0.218624px;}
.ws1_c01038{word-spacing:-0.161483px;}
.ws2_c01038{word-spacing:0.000000px;}
._2_c01038{margin-left:-37.108885px;}
._4_c01038{margin-left:-15.852701px;}
._5_c01038{margin-left:-11.492649px;}
._0_c01038{margin-left:-3.999027px;}
._1_c01038{margin-left:-2.664476px;}
._3_c01038{margin-left:-1.006166px;}
.fc0_c01038{color:rgb(0,0,0);}
.fs2_c01038{font-size:111.796200px;}
.fs1_c01038{font-size:161.483400px;}
.fs0_c01038{font-size:273.279600px;}
.y0_c01038{bottom:0.000000px;}
.y3_c01038{bottom:88.980211px;}
.y2_c01038{bottom:123.133950px;}
.y1_c01038{bottom:752.235450px;}
.h2_c01038{height:84.938910px;}
.h1_c01038{height:196.214753px;}
.h0_c01038{height:892.500000px;}
.w0_c01038{width:1263.000000px;}
.x0_c01038{left:0.000000px;}
.x1_c01038{left:279.131100px;}
.x2_c01038{left:525.993300px;}
@media print{
.v0_c01038{vertical-align:0.000000pt;}
.ls0_c01038{letter-spacing:-0.048583pt;}
.ls1_c01038{letter-spacing:0.000000pt;}
.ws0_c01038{word-spacing:-0.194332pt;}
.ws1_c01038{word-spacing:-0.143541pt;}
.ws2_c01038{word-spacing:0.000000pt;}
._2_c01038{margin-left:-32.985676pt;}
._4_c01038{margin-left:-14.091290pt;}
._5_c01038{margin-left:-10.215688pt;}
._0_c01038{margin-left:-3.554691pt;}
._1_c01038{margin-left:-2.368423pt;}
._3_c01038{margin-left:-0.894370pt;}
.fs2_c01038{font-size:99.374400pt;}
.fs1_c01038{font-size:143.540800pt;}
.fs0_c01038{font-size:242.915200pt;}
.y0_c01038{bottom:0.000000pt;}
.y3_c01038{bottom:79.093521pt;}
.y2_c01038{bottom:109.452400pt;}
.y1_c01038{bottom:668.653733pt;}
.h2_c01038{height:75.501253pt;}
.h1_c01038{height:174.413114pt;}
.h0_c01038{height:793.333333pt;}
.w0_c01038{width:1122.666667pt;}
.x0_c01038{left:0.000000pt;}
.x1_c01038{left:248.116533pt;}
.x2_c01038{left:467.549600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01039{font-family:ff1_c01039;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01039{vertical-align:0.000000px;}
.ls0_c01039{letter-spacing:0.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.273280px;}
._1_c01039{margin-left:-61.569894px;}
._0_c01039{margin-left:-21.452449px;}
.fc0_c01039{color:rgb(0,0,0);}
.fs0_c01039{font-size:273.279600px;}
.y0_c01039{bottom:0.000000px;}
.y1_c01039{bottom:734.721600px;}
.h1_c01039{height:196.214753px;}
.h0_c01039{height:892.500000px;}
.w0_c01039{width:1263.000000px;}
.x0_c01039{left:0.000000px;}
.x1_c01039{left:469.698450px;}
@media print{
.v0_c01039{vertical-align:0.000000pt;}
.ls0_c01039{letter-spacing:0.000000pt;}
.ws0_c01039{word-spacing:-0.242915pt;}
._1_c01039{margin-left:-54.728795pt;}
._0_c01039{margin-left:-19.068843pt;}
.fs0_c01039{font-size:242.915200pt;}
.y0_c01039{bottom:0.000000pt;}
.y1_c01039{bottom:653.085867pt;}
.h1_c01039{height:174.413114pt;}
.h0_c01039{height:793.333333pt;}
.w0_c01039{width:1122.666667pt;}
.x0_c01039{left:0.000000pt;}
.x1_c01039{left:417.509733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01040{font-family:ff1_c01040;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01040{vertical-align:0.000000px;}
.ls0_c01040{letter-spacing:-0.054656px;}
.ls1_c01040{letter-spacing:0.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:-0.218624px;}
.ws1_c01040{word-spacing:0.000000px;}
._0_c01040{margin-left:-36.468413px;}
.fc0_c01040{color:rgb(0,0,0);}
.fs1_c01040{font-size:161.483400px;}
.fs0_c01040{font-size:273.279600px;}
.y0_c01040{bottom:0.000000px;}
.y1_c01040{bottom:716.050800px;}
.h1_c01040{height:196.214753px;}
.h0_c01040{height:892.500000px;}
.w0_c01040{width:1263.000000px;}
.x0_c01040{left:0.000000px;}
.x1_c01040{left:173.427900px;}
@media print{
.v0_c01040{vertical-align:0.000000pt;}
.ls0_c01040{letter-spacing:-0.048583pt;}
.ls1_c01040{letter-spacing:0.000000pt;}
.ws0_c01040{word-spacing:-0.194332pt;}
.ws1_c01040{word-spacing:0.000000pt;}
._0_c01040{margin-left:-32.416367pt;}
.fs1_c01040{font-size:143.540800pt;}
.fs0_c01040{font-size:242.915200pt;}
.y0_c01040{bottom:0.000000pt;}
.y1_c01040{bottom:636.489600pt;}
.h1_c01040{height:174.413114pt;}
.h0_c01040{height:793.333333pt;}
.w0_c01040{width:1122.666667pt;}
.x0_c01040{left:0.000000pt;}
.x1_c01040{left:154.158133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01041{font-family:ff1_c01041;line-height:0.896000;font-style:normal;font-weight:normal;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_2c29fe3dcf8ceb6fab779e64.woff2')format("woff");}.ff2_c01041{font-family:ff2_c01041;line-height:0.816406;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01041{vertical-align:0.000000px;}
.ls0_c01041{letter-spacing:0.000000px;}
.sc__c01041{text-shadow:none;}
.sc0_c01041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01041{-webkit-text-stroke:0px transparent;}
.sc0_c01041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01041{word-spacing:-0.273280px;}
.ws1_c01041{word-spacing:0.000000px;}
._3_c01041{margin-left:-61.679206px;}
._0_c01041{margin-left:-4.454457px;}
._1_c01041{margin-left:-3.033404px;}
._2_c01041{margin-left:-1.940285px;}
.fc0_c01041{color:rgb(0,0,0);}
.fs0_c01041{font-size:273.279600px;}
.y0_c01041{bottom:0.000000px;}
.y1_c01041{bottom:734.721600px;}
.h1_c01041{height:218.837180px;}
.h0_c01041{height:892.500000px;}
.w0_c01041{width:1263.000000px;}
.x0_c01041{left:0.000000px;}
.x1_c01041{left:280.728600px;}
@media print{
.v0_c01041{vertical-align:0.000000pt;}
.ls0_c01041{letter-spacing:0.000000pt;}
.ws0_c01041{word-spacing:-0.242915pt;}
.ws1_c01041{word-spacing:0.000000pt;}
._3_c01041{margin-left:-54.825961pt;}
._0_c01041{margin-left:-3.959518pt;}
._1_c01041{margin-left:-2.696359pt;}
._2_c01041{margin-left:-1.724698pt;}
.fs0_c01041{font-size:242.915200pt;}
.y0_c01041{bottom:0.000000pt;}
.y1_c01041{bottom:653.085867pt;}
.h1_c01041{height:194.521937pt;}
.h0_c01041{height:793.333333pt;}
.w0_c01041{width:1122.666667pt;}
.x0_c01041{left:0.000000pt;}
.x1_c01041{left:249.536533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01042{font-family:ff1_c01042;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01042{vertical-align:0.000000px;}
.ls0_c01042{letter-spacing:-0.054656px;}
.ls1_c01042{letter-spacing:0.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:-0.218624px;}
.ws1_c01042{word-spacing:0.000000px;}
._0_c01042{margin-left:-42.084626px;}
.fc0_c01042{color:rgb(0,0,0);}
.fs1_c01042{font-size:186.327000px;}
.fs0_c01042{font-size:273.279600px;}
.y0_c01042{bottom:0.000000px;}
.y1_c01042{bottom:761.125500px;}
.h1_c01042{height:196.214753px;}
.h0_c01042{height:892.500000px;}
.w0_c01042{width:1263.000000px;}
.x0_c01042{left:0.000000px;}
.x1_c01042{left:269.626050px;}
@media print{
.v0_c01042{vertical-align:0.000000pt;}
.ls0_c01042{letter-spacing:-0.048583pt;}
.ls1_c01042{letter-spacing:0.000000pt;}
.ws0_c01042{word-spacing:-0.194332pt;}
.ws1_c01042{word-spacing:0.000000pt;}
._0_c01042{margin-left:-37.408557pt;}
.fs1_c01042{font-size:165.624000pt;}
.fs0_c01042{font-size:242.915200pt;}
.y0_c01042{bottom:0.000000pt;}
.y1_c01042{bottom:676.556000pt;}
.h1_c01042{height:174.413114pt;}
.h0_c01042{height:793.333333pt;}
.w0_c01042{width:1122.666667pt;}
.x0_c01042{left:0.000000pt;}
.x1_c01042{left:239.667600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01043{font-family:ff1_c01043;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01043{vertical-align:0.000000px;}
.ls0_c01043{letter-spacing:-0.054656px;}
.ls1_c01043{letter-spacing:0.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:-0.218624px;}
.ws1_c01043{word-spacing:0.000000px;}
._0_c01043{margin-left:-42.084626px;}
.fc0_c01043{color:rgb(0,0,0);}
.fs1_c01043{font-size:186.327000px;}
.fs0_c01043{font-size:273.279600px;}
.y0_c01043{bottom:0.000000px;}
.y1_c01043{bottom:764.088900px;}
.h1_c01043{height:196.214753px;}
.h0_c01043{height:892.500000px;}
.w0_c01043{width:1263.000000px;}
.x0_c01043{left:0.000000px;}
.x1_c01043{left:332.433900px;}
@media print{
.v0_c01043{vertical-align:0.000000pt;}
.ls0_c01043{letter-spacing:-0.048583pt;}
.ls1_c01043{letter-spacing:0.000000pt;}
.ws0_c01043{word-spacing:-0.194332pt;}
.ws1_c01043{word-spacing:0.000000pt;}
._0_c01043{margin-left:-37.408557pt;}
.fs1_c01043{font-size:165.624000pt;}
.fs0_c01043{font-size:242.915200pt;}
.y0_c01043{bottom:0.000000pt;}
.y1_c01043{bottom:679.190133pt;}
.h1_c01043{height:174.413114pt;}
.h0_c01043{height:793.333333pt;}
.w0_c01043{width:1122.666667pt;}
.x0_c01043{left:0.000000pt;}
.x1_c01043{left:295.496800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01044{font-family:ff1_c01044;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01044{vertical-align:0.000000px;}
.ls0_c01044{letter-spacing:-0.054656px;}
.ls1_c01044{letter-spacing:0.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;}
}
.ws0_c01044{word-spacing:-0.218624px;}
.ws1_c01044{word-spacing:0.000000px;}
._0_c01044{margin-left:-42.084626px;}
.fc0_c01044{color:rgb(0,0,0);}
.fs1_c01044{font-size:186.327000px;}
.fs0_c01044{font-size:273.279600px;}
.y0_c01044{bottom:0.000000px;}
.y1_c01044{bottom:761.125500px;}
.h1_c01044{height:196.214753px;}
.h0_c01044{height:892.500000px;}
.w0_c01044{width:1263.000000px;}
.x0_c01044{left:0.000000px;}
.x1_c01044{left:269.626050px;}
@media print{
.v0_c01044{vertical-align:0.000000pt;}
.ls0_c01044{letter-spacing:-0.048583pt;}
.ls1_c01044{letter-spacing:0.000000pt;}
.ws0_c01044{word-spacing:-0.194332pt;}
.ws1_c01044{word-spacing:0.000000pt;}
._0_c01044{margin-left:-37.408557pt;}
.fs1_c01044{font-size:165.624000pt;}
.fs0_c01044{font-size:242.915200pt;}
.y0_c01044{bottom:0.000000pt;}
.y1_c01044{bottom:676.556000pt;}
.h1_c01044{height:174.413114pt;}
.h0_c01044{height:793.333333pt;}
.w0_c01044{width:1122.666667pt;}
.x0_c01044{left:0.000000pt;}
.x1_c01044{left:239.667600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01045{font-family:ff1_c01045;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01045{vertical-align:0.000000px;}
.ls0_c01045{letter-spacing:-0.054656px;}
.sc__c01045{text-shadow:none;}
.sc0_c01045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01045{-webkit-text-stroke:0px transparent;}
.sc0_c01045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01045{word-spacing:-0.218624px;}
._0_c01045{margin-left:-61.761190px;}
.fc0_c01045{color:rgb(0,0,0);}
.fs0_c01045{font-size:273.279600px;}
.y0_c01045{bottom:0.000000px;}
.y1_c01045{bottom:734.721600px;}
.h1_c01045{height:196.214753px;}
.h0_c01045{height:892.500000px;}
.w0_c01045{width:1263.000000px;}
.x0_c01045{left:0.000000px;}
.x1_c01045{left:264.192300px;}
@media print{
.v0_c01045{vertical-align:0.000000pt;}
.ls0_c01045{letter-spacing:-0.048583pt;}
.ws0_c01045{word-spacing:-0.194332pt;}
._0_c01045{margin-left:-54.898835pt;}
.fs0_c01045{font-size:242.915200pt;}
.y0_c01045{bottom:0.000000pt;}
.y1_c01045{bottom:653.085867pt;}
.h1_c01045{height:174.413114pt;}
.h0_c01045{height:793.333333pt;}
.w0_c01045{width:1122.666667pt;}
.x0_c01045{left:0.000000pt;}
.x1_c01045{left:234.837600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01046{font-family:ff1_c01046;line-height:0.896000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01046{vertical-align:0.000000px;}
.ls0_c01046{letter-spacing:-0.054656px;}
.ls1_c01046{letter-spacing:0.000000px;}
.sc__c01046{text-shadow:none;}
.sc0_c01046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01046{-webkit-text-stroke:0px transparent;}
.sc0_c01046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01046{word-spacing:-0.218624px;}
.ws1_c01046{word-spacing:0.000000px;}
._0_c01046{margin-left:-42.084626px;}
.fc0_c01046{color:rgb(0,0,0);}
.fs1_c01046{font-size:186.327000px;}
.fs0_c01046{font-size:273.279600px;}
.y0_c01046{bottom:0.000000px;}
.y1_c01046{bottom:761.125500px;}
.h1_c01046{height:196.214753px;}
.h0_c01046{height:892.500000px;}
.w0_c01046{width:1263.000000px;}
.x0_c01046{left:0.000000px;}
.x1_c01046{left:561.148800px;}
@media print{
.v0_c01046{vertical-align:0.000000pt;}
.ls0_c01046{letter-spacing:-0.048583pt;}
.ls1_c01046{letter-spacing:0.000000pt;}
.ws0_c01046{word-spacing:-0.194332pt;}
.ws1_c01046{word-spacing:0.000000pt;}
._0_c01046{margin-left:-37.408557pt;}
.fs1_c01046{font-size:165.624000pt;}
.fs0_c01046{font-size:242.915200pt;}
.y0_c01046{bottom:0.000000pt;}
.y1_c01046{bottom:676.556000pt;}
.h1_c01046{height:174.413114pt;}
.h0_c01046{height:793.333333pt;}
.w0_c01046{width:1122.666667pt;}
.x0_c01046{left:0.000000pt;}
.x1_c01046{left:498.798933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01047{font-family:ff1_c01047;line-height:0.896000;font-style:normal;font-weight:normal;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_edc5d9a72616cec0d922aad3.woff2')format("woff");}.ff2_c01047{font-family:ff2_c01047;line-height:0.938965;font-style:normal;font-weight:normal;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_1698f0148a1a79c3ce5fb237.woff2')format("woff");}.ff3_c01047{font-family:ff3_c01047;line-height:0.717000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01047{vertical-align:0.000000px;}
.ls3_c01047{letter-spacing:-9.457959px;}
.ls4_c01047{letter-spacing:0.000000px;}
.ls0_c01047{letter-spacing:0.022359px;}
.ls2_c01047{letter-spacing:0.059625px;}
.ls1_c01047{letter-spacing:70.555824px;}
.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;}
}
.ws4_c01047{word-spacing:-0.258373px;}
.ws2_c01047{word-spacing:-0.245952px;}
.ws1_c01047{word-spacing:-0.223592px;}
.ws3_c01047{word-spacing:-0.198749px;}
.ws5_c01047{word-spacing:0.000000px;}
.ws0_c01047{word-spacing:9.234366px;}
._2_c01047{margin-left:-50.755475px;}
._3_c01047{margin-left:-8.407074px;}
._1_c01047{margin-left:-2.683109px;}
._4_c01047{margin-left:-1.152743px;}
._0_c01047{width:9.614473px;}
.fc0_c01047{color:rgb(0,0,0);}
.fs1_c01047{font-size:198.748800px;}
.fs0_c01047{font-size:223.592400px;}
.y0_c01047{bottom:0.000000px;}
.y3_c01047{bottom:622.539316px;}
.y2_c01047{bottom:693.442950px;}
.y1_c01047{bottom:770.634600px;}
.h2_c01047{height:144.791606px;}
.h1_c01047{height:160.539343px;}
.h0_c01047{height:892.500000px;}
.w0_c01047{width:1263.000000px;}
.x0_c01047{left:0.000000px;}
.x2_c01047{left:139.858950px;}
.x1_c01047{left:241.057950px;}
@media print{
.v0_c01047{vertical-align:0.000000pt;}
.ls3_c01047{letter-spacing:-8.407074pt;}
.ls4_c01047{letter-spacing:0.000000pt;}
.ls0_c01047{letter-spacing:0.019875pt;}
.ls2_c01047{letter-spacing:0.053000pt;}
.ls1_c01047{letter-spacing:62.716288pt;}
.ws4_c01047{word-spacing:-0.229665pt;}
.ws2_c01047{word-spacing:-0.218624pt;}
.ws1_c01047{word-spacing:-0.198749pt;}
.ws3_c01047{word-spacing:-0.176666pt;}
.ws5_c01047{word-spacing:0.000000pt;}
.ws0_c01047{word-spacing:8.208325pt;}
._2_c01047{margin-left:-45.115978pt;}
._3_c01047{margin-left:-7.472955pt;}
._1_c01047{margin-left:-2.384986pt;}
._4_c01047{margin-left:-1.024660pt;}
._0_c01047{width:8.546198pt;}
.fs1_c01047{font-size:176.665600pt;}
.fs0_c01047{font-size:198.748800pt;}
.y0_c01047{bottom:0.000000pt;}
.y3_c01047{bottom:553.368281pt;}
.y2_c01047{bottom:616.393733pt;}
.y1_c01047{bottom:685.008533pt;}
.h2_c01047{height:128.703650pt;}
.h1_c01047{height:142.701638pt;}
.h0_c01047{height:793.333333pt;}
.w0_c01047{width:1122.666667pt;}
.x0_c01047{left:0.000000pt;}
.x2_c01047{left:124.319067pt;}
.x1_c01047{left:214.273733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01048{font-family:ff1_c01048;line-height:0.896000;font-style:normal;font-weight:normal;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_34b50e4888afa66c9c749e5f.woff2')format("woff");}.ff2_c01048{font-family:ff2_c01048;line-height:0.871000;font-style:normal;font-weight:normal;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_81425d3abc123fd29180b45f.woff2')format("woff");}.ff3_c01048{font-family:ff3_c01048;line-height:0.938965;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01048{vertical-align:0.000000px;}
.ls0_c01048{letter-spacing:0.000000px;}
.sc__c01048{text-shadow:none;}
.sc0_c01048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01048{-webkit-text-stroke:0px transparent;}
.sc0_c01048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01048{word-spacing:-0.273280px;}
.ws1_c01048{word-spacing:0.000000px;}
._3_c01048{margin-left:-62.471717px;}
._2_c01048{margin-left:-31.645778px;}
._5_c01048{margin-left:-14.410530px;}
._4_c01048{margin-left:-8.295278px;}
._6_c01048{margin-left:-6.182330px;}
._0_c01048{margin-left:-4.509113px;}
._1_c01048{margin-left:-2.295549px;}
.fc0_c01048{color:rgb(0,0,0);}
.fs1_c01048{font-size:111.796200px;}
.fs0_c01048{font-size:273.279600px;}
.y0_c01048{bottom:0.000000px;}
.y5_c01048{bottom:478.897139px;}
.y4_c01048{bottom:545.667420px;}
.y3_c01048{bottom:612.437700px;}
.y2_c01048{bottom:693.388121px;}
.y1_c01048{bottom:775.713600px;}
.h2_c01048{height:81.445279px;}
.h1_c01048{height:196.214753px;}
.h0_c01048{height:892.500000px;}
.w0_c01048{width:1263.000000px;}
.x0_c01048{left:0.000000px;}
.x1_c01048{left:139.858950px;}
.x2_c01048{left:306.808590px;}
.x3_c01048{left:584.191800px;}
@media print{
.v0_c01048{vertical-align:0.000000pt;}
.ls0_c01048{letter-spacing:0.000000pt;}
.ws0_c01048{word-spacing:-0.242915pt;}
.ws1_c01048{word-spacing:0.000000pt;}
._3_c01048{margin-left:-55.530415pt;}
._2_c01048{margin-left:-28.129580pt;}
._5_c01048{margin-left:-12.809360pt;}
._4_c01048{margin-left:-7.373580pt;}
._6_c01048{margin-left:-5.495404pt;}
._0_c01048{margin-left:-4.008101pt;}
._1_c01048{margin-left:-2.040488pt;}
.fs1_c01048{font-size:99.374400pt;}
.fs0_c01048{font-size:242.915200pt;}
.y0_c01048{bottom:0.000000pt;}
.y5_c01048{bottom:425.686346pt;}
.y4_c01048{bottom:485.037706pt;}
.y3_c01048{bottom:544.389067pt;}
.y2_c01048{bottom:616.344996pt;}
.y1_c01048{bottom:689.523200pt;}
.h2_c01048{height:72.395803pt;}
.h1_c01048{height:174.413114pt;}
.h0_c01048{height:793.333333pt;}
.w0_c01048{width:1122.666667pt;}
.x0_c01048{left:0.000000pt;}
.x1_c01048{left:124.319067pt;}
.x2_c01048{left:272.718747pt;}
.x3_c01048{left:519.281600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01049{font-family:ff1_c01049;line-height:0.896000;font-style:normal;font-weight:normal;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_6a4988d5c73278eb833ecfe9.woff2')format("woff");}.ff2_c01049{font-family:ff2_c01049;line-height:0.938965;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01049{vertical-align:0.000000px;}
.ls1_c01049{letter-spacing:0.000000px;}
.ls0_c01049{letter-spacing:0.054656px;}
.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;}
}
.ws1_c01049{word-spacing:-0.327936px;}
.ws0_c01049{word-spacing:-0.273280px;}
.ws2_c01049{word-spacing:0.000000px;}
._3_c01049{margin-left:-62.034469px;}
._4_c01049{margin-left:-6.182330px;}
._1_c01049{margin-left:-4.891705px;}
._0_c01049{margin-left:-3.716603px;}
._2_c01049{margin-left:-2.541500px;}
.fc1_c01049{color:rgb(255,0,0);}
.fc0_c01049{color:rgb(0,0,0);}
.fs1_c01049{font-size:111.796200px;}
.fs0_c01049{font-size:273.279600px;}
.y0_c01049{bottom:0.000000px;}
.y4_c01049{bottom:111.929250px;}
.y3_c01049{bottom:593.730441px;}
.y2_c01049{bottom:676.055921px;}
.y1_c01049{bottom:758.381400px;}
.h2_c01049{height:81.445279px;}
.h1_c01049{height:196.214753px;}
.h0_c01049{height:892.500000px;}
.w0_c01049{width:1263.000000px;}
.x0_c01049{left:0.000000px;}
.x4_c01049{left:120.981600px;}
.x1_c01049{left:129.082200px;}
.x3_c01049{left:325.268520px;}
.x2_c01049{left:462.366690px;}
@media print{
.v0_c01049{vertical-align:0.000000pt;}
.ls1_c01049{letter-spacing:0.000000pt;}
.ls0_c01049{letter-spacing:0.048583pt;}
.ws1_c01049{word-spacing:-0.291498pt;}
.ws0_c01049{word-spacing:-0.242915pt;}
.ws2_c01049{word-spacing:0.000000pt;}
._3_c01049{margin-left:-55.141750pt;}
._4_c01049{margin-left:-5.495404pt;}
._1_c01049{margin-left:-4.348182pt;}
._0_c01049{margin-left:-3.303647pt;}
._2_c01049{margin-left:-2.259111pt;}
.fs1_c01049{font-size:99.374400pt;}
.fs0_c01049{font-size:242.915200pt;}
.y0_c01049{bottom:0.000000pt;}
.y4_c01049{bottom:99.492667pt;}
.y3_c01049{bottom:527.760392pt;}
.y2_c01049{bottom:600.938596pt;}
.y1_c01049{bottom:674.116800pt;}
.h2_c01049{height:72.395803pt;}
.h1_c01049{height:174.413114pt;}
.h0_c01049{height:793.333333pt;}
.w0_c01049{width:1122.666667pt;}
.x0_c01049{left:0.000000pt;}
.x4_c01049{left:107.539200pt;}
.x1_c01049{left:114.739733pt;}
.x3_c01049{left:289.127573pt;}
.x2_c01049{left:410.992613pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01050{font-family:ff1_c01050;line-height:0.896000;font-style:normal;font-weight:normal;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_72691cea511353d34f8ce718.woff2')format("woff");}.ff2_c01050{font-family:ff2_c01050;line-height:0.938965;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01050{vertical-align:0.000000px;}
.ls0_c01050{letter-spacing:0.000000px;}
.sc__c01050{text-shadow:none;}
.sc0_c01050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01050{-webkit-text-stroke:0px transparent;}
.sc0_c01050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01050{word-spacing:-0.273280px;}
.ws1_c01050{word-spacing:0.000000px;}
._0_c01050{margin-left:-15.221674px;}
._3_c01050{margin-left:-6.285431px;}
._4_c01050{margin-left:-5.110329px;}
._2_c01050{margin-left:-3.115387px;}
._1_c01050{margin-left:-1.858301px;}
.fc1_c01050{color:rgb(255,0,0);}
.fc0_c01050{color:rgb(0,0,0);}
.fs1_c01050{font-size:111.796200px;}
.fs0_c01050{font-size:273.279600px;}
.y0_c01050{bottom:0.000000px;}
.y4_c01050{bottom:136.189289px;}
.y3_c01050{bottom:218.514768px;}
.y1_c01050{bottom:374.283150px;}
.y5_c01050{bottom:577.494600px;}
.y2_c01050{bottom:716.088600px;}
.h2_c01050{height:81.445279px;}
.h1_c01050{height:196.214753px;}
.h0_c01050{height:892.500000px;}
.w0_c01050{width:1263.000000px;}
.x0_c01050{left:0.000000px;}
.x1_c01050{left:128.926350px;}
.x4_c01050{left:550.819500px;}
.x3_c01050{left:837.904770px;}
.x2_c01050{left:849.585780px;}
@media print{
.v0_c01050{vertical-align:0.000000pt;}
.ls0_c01050{letter-spacing:0.000000pt;}
.ws0_c01050{word-spacing:-0.242915pt;}
.ws1_c01050{word-spacing:0.000000pt;}
._0_c01050{margin-left:-13.530377pt;}
._3_c01050{margin-left:-5.587050pt;}
._4_c01050{margin-left:-4.542514pt;}
._2_c01050{margin-left:-2.769233pt;}
._1_c01050{margin-left:-1.651823pt;}
.fs1_c01050{font-size:99.374400pt;}
.fs0_c01050{font-size:242.915200pt;}
.y0_c01050{bottom:0.000000pt;}
.y4_c01050{bottom:121.057146pt;}
.y3_c01050{bottom:194.235350pt;}
.y1_c01050{bottom:332.696133pt;}
.y5_c01050{bottom:513.328533pt;}
.y2_c01050{bottom:636.523200pt;}
.h2_c01050{height:72.395803pt;}
.h1_c01050{height:174.413114pt;}
.h0_c01050{height:793.333333pt;}
.w0_c01050{width:1122.666667pt;}
.x0_c01050{left:0.000000pt;}
.x1_c01050{left:114.601200pt;}
.x4_c01050{left:489.617333pt;}
.x3_c01050{left:744.804240pt;}
.x2_c01050{left:755.187360pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01051{font-family:ff1_c01051;line-height:0.896000;font-style:normal;font-weight:normal;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_edc5d9a72616cec0d922aad3.woff2')format("woff");}.ff2_c01051{font-family:ff2_c01051;line-height:0.938965;font-style:normal;font-weight:normal;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_1698f0148a1a79c3ce5fb237.woff2')format("woff");}.ff3_c01051{font-family:ff3_c01051;line-height:0.717000;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01051{vertical-align:0.000000px;}
.ls1_c01051{letter-spacing:0.000000px;}
.ls0_c01051{letter-spacing:88.654387px;}
.sc__c01051{text-shadow:none;}
.sc0_c01051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01051{-webkit-text-stroke:0px transparent;}
.sc0_c01051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01051{word-spacing:-0.273280px;}
.ws1_c01051{word-spacing:-0.161483px;}
.ws2_c01051{word-spacing:0.000000px;}
._2_c01051{margin-left:-61.870501px;}
._0_c01051{margin-left:-24.212573px;}
._5_c01051{margin-left:-8.994625px;}
._6_c01051{margin-left:-4.602277px;}
._3_c01051{margin-left:-2.664476px;}
._4_c01051{margin-left:-1.630982px;}
._1_c01051{width:1.229758px;}
.fc0_c01051{color:rgb(0,0,0);}
.fs1_c01051{font-size:161.483400px;}
.fs0_c01051{font-size:273.279600px;}
.y0_c01051{bottom:0.000000px;}
.y9_c01051{bottom:235.689656px;}
.y8_c01051{bottom:285.022835px;}
.y7_c01051{bottom:342.470555px;}
.y6_c01051{bottom:400.281612px;}
.y5_c01051{bottom:449.614791px;}
.y4_c01051{bottom:507.062510px;}
.y3_c01051{bottom:566.084693px;}
.y2_c01051{bottom:623.895750px;}
.y1_c01051{bottom:734.721600px;}
.h3_c01051{height:115.945081px;}
.h2_c01051{height:117.643180px;}
.h1_c01051{height:196.214753px;}
.h0_c01051{height:892.500000px;}
.w0_c01051{width:1263.000000px;}
.x0_c01051{left:0.000000px;}
.x2_c01051{left:139.858800px;}
.x3_c01051{left:181.757670px;}
.x1_c01051{left:273.390600px;}
@media print{
.v0_c01051{vertical-align:0.000000pt;}
.ls1_c01051{letter-spacing:0.000000pt;}
.ls0_c01051{letter-spacing:78.803899pt;}
.ws0_c01051{word-spacing:-0.242915pt;}
.ws1_c01051{word-spacing:-0.143541pt;}
.ws2_c01051{word-spacing:0.000000pt;}
._2_c01051{margin-left:-54.996001pt;}
._0_c01051{margin-left:-21.522287pt;}
._5_c01051{margin-left:-7.995223pt;}
._6_c01051{margin-left:-4.090913pt;}
._3_c01051{margin-left:-2.368423pt;}
._4_c01051{margin-left:-1.449762pt;}
._1_c01051{width:1.093118pt;}
.fs1_c01051{font-size:143.540800pt;}
.fs0_c01051{font-size:242.915200pt;}
.y0_c01051{bottom:0.000000pt;}
.y9_c01051{bottom:209.501917pt;}
.y8_c01051{bottom:253.353631pt;}
.y7_c01051{bottom:304.418271pt;}
.y6_c01051{bottom:355.805877pt;}
.y5_c01051{bottom:399.657592pt;}
.y4_c01051{bottom:450.722231pt;}
.y3_c01051{bottom:503.186394pt;}
.y2_c01051{bottom:554.574000pt;}
.y1_c01051{bottom:653.085867pt;}
.h3_c01051{height:103.062294pt;}
.h2_c01051{height:104.571716pt;}
.h1_c01051{height:174.413114pt;}
.h0_c01051{height:793.333333pt;}
.w0_c01051{width:1122.666667pt;}
.x0_c01051{left:0.000000pt;}
.x2_c01051{left:124.318933pt;}
.x3_c01051{left:161.562373pt;}
.x1_c01051{left:243.013867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_635224f676d0f11bce6d8795.woff2')format("woff");}.ff1_c01052{font-family:ff1_c01052;line-height:0.896000;font-style:normal;font-weight:normal;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_6a9db8786e41a2ad0d68d5b5.woff2')format("woff");}.ff2_c01052{font-family:ff2_c01052;line-height:0.938965;font-style: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.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.v0_c01052{vertical-align:0.000000px;}
.ls0_c01052{letter-spacing:0.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:-0.273280px;}
.ws1_c01052{word-spacing:-0.198749px;}
.ws2_c01052{word-spacing:0.000000px;}
._3_c01052{margin-left:-12.449128px;}
._2_c01052{margin-left:-4.509113px;}
._0_c01052{margin-left:-3.033404px;}
._4_c01052{margin-left:-1.597443px;}
._1_c01052{width:1.585022px;}
.fc2_c01052{color:rgb(0,0,0);}
.fc1_c01052{color:rgb(64,64,64);}
.fc0_c01052{color:rgb(0,0,144);}
.fs2_c01052{font-size:111.796200px;}
.fs1_c01052{font-size:198.748800px;}
.fs3_c01052{font-size:223.592400px;}
.fs0_c01052{font-size:273.279600px;}
.y0_c01052{bottom:0.000000px;}
.y4_c01052{bottom:293.358750px;}
.y3_c01052{bottom:355.026000px;}
.y5_c01052{bottom:493.456650px;}
.y2_c01052{bottom:652.046770px;}
.y1_c01052{bottom:734.372250px;}
.h3_c01052{height:81.445279px;}
.h2_c01052{height:142.701638px;}
.h4_c01052{height:162.890557px;}
.h1_c01052{height:196.214753px;}
.h0_c01052{height:892.500000px;}
.w0_c01052{width:1263.000000px;}
.x0_c01052{left:0.000000px;}
.x1_c01052{left:245.789850px;}
.x2_c01052{left:332.611860px;}
.x5_c01052{left:336.204750px;}
.x3_c01052{left:387.628200px;}
.x4_c01052{left:481.825050px;}
@media print{
.v0_c01052{vertical-align:0.000000pt;}
.ls0_c01052{letter-spacing:0.000000pt;}
.ws0_c01052{word-spacing:-0.242915pt;}
.ws1_c01052{word-spacing:-0.176666pt;}
.ws2_c01052{word-spacing:0.000000pt;}
._3_c01052{margin-left:-11.065892pt;}
._2_c01052{margin-left:-4.008101pt;}
._0_c01052{margin-left:-2.696359pt;}
._4_c01052{margin-left:-1.419950pt;}
._1_c01052{width:1.408908pt;}
.fs2_c01052{font-size:99.374400pt;}
.fs1_c01052{font-size:176.665600pt;}
.fs3_c01052{font-size:198.748800pt;}
.fs0_c01052{font-size:242.915200pt;}
.y0_c01052{bottom:0.000000pt;}
.y4_c01052{bottom:260.763333pt;}
.y3_c01052{bottom:315.578667pt;}
.y5_c01052{bottom:438.628133pt;}
.y2_c01052{bottom:579.597129pt;}
.y1_c01052{bottom:652.775333pt;}
.h3_c01052{height:72.395803pt;}
.h2_c01052{height:126.845901pt;}
.h4_c01052{height:144.791606pt;}
.h1_c01052{height:174.413114pt;}
.h0_c01052{height:793.333333pt;}
.w0_c01052{width:1122.666667pt;}
.x0_c01052{left:0.000000pt;}
.x1_c01052{left:218.479867pt;}
.x2_c01052{left:295.654987pt;}
.x5_c01052{left:298.848667pt;}
.x3_c01052{left:344.558400pt;}
.x4_c01052{left:428.288933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c101136573631e9c3c09aa38.woff2')format("woff");}.ff1_c01053{font-family:ff1_c01053;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01053;src:url('chunks/assets/font_18093f728bec57c621424ddd.woff2')format("woff");}.ff2_c01053{font-family:ff2_c01053;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01053;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff3_c01053{font-family:ff3_c01053;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01053;src:url('chunks/assets/font_3e78c650ae17363984b8aff0.woff2')format("woff");}.ff4_c01053{font-family:ff4_c01053;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01053;src:url('chunks/assets/font_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff5_c01053{font-family:ff5_c01053;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01053{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c01053{vertical-align:-15.120000px;}
.v0_c01053{vertical-align:0.000000px;}
.v1_c01053{vertical-align:20.880000px;}
.ls20_c01053{letter-spacing:-0.597600px;}
.ls21_c01053{letter-spacing:-0.537840px;}
.ls1d_c01053{letter-spacing:-0.504000px;}
.ls16_c01053{letter-spacing:-0.337680px;}
.ls11_c01053{letter-spacing:-0.289440px;}
.ls1b_c01053{letter-spacing:-0.272160px;}
.ls10_c01053{letter-spacing:-0.241200px;}
.ls19_c01053{letter-spacing:-0.239040px;}
.lsf_c01053{letter-spacing:-0.216000px;}
.ls1c_c01053{letter-spacing:-0.211680px;}
.ls14_c01053{letter-spacing:-0.192960px;}
.ls22_c01053{letter-spacing:-0.179280px;}
.ls13_c01053{letter-spacing:-0.144720px;}
.ls1a_c01053{letter-spacing:-0.059760px;}
.lse_c01053{letter-spacing:0.000000px;}
.ls12_c01053{letter-spacing:0.048240px;}
.ls1e_c01053{letter-spacing:0.059760px;}
.ls5_c01053{letter-spacing:0.096480px;}
.ls17_c01053{letter-spacing:0.120240px;}
.ls4_c01053{letter-spacing:0.144720px;}
.lsa_c01053{letter-spacing:0.173304px;}
.lsb_c01053{letter-spacing:0.179280px;}
.ls15_c01053{letter-spacing:0.192960px;}
.lsd_c01053{letter-spacing:0.216000px;}
.lsc_c01053{letter-spacing:0.239040px;}
.ls18_c01053{letter-spacing:0.240480px;}
.ls1f_c01053{letter-spacing:0.298800px;}
.ls0_c01053{letter-spacing:0.337680px;}
.ls3_c01053{letter-spacing:0.366624px;}
.ls8_c01053{letter-spacing:0.418320px;}
.ls9_c01053{letter-spacing:5.211072px;}
.ls2_c01053{letter-spacing:5.644080px;}
.ls6_c01053{letter-spacing:6.633360px;}
.ls7_c01053{letter-spacing:6.711048px;}
.ls1_c01053{letter-spacing:91.318320px;}
.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;}
}
.wsf_c01053{word-spacing:-16.488000px;}
.ws0_c01053{word-spacing:-16.056000px;}
.wsc_c01053{word-spacing:-15.768000px;}
.wsd_c01053{word-spacing:-13.685040px;}
.ws8_c01053{word-spacing:-13.505760px;}
.wsa_c01053{word-spacing:-13.446000px;}
.ws10_c01053{word-spacing:-13.326480px;}
.ws9_c01053{word-spacing:-13.266720px;}
.wse_c01053{word-spacing:-12.908160px;}
.ws7_c01053{word-spacing:-10.950480px;}
.ws6_c01053{word-spacing:-10.902240px;}
.ws2_c01053{word-spacing:-10.757520px;}
.ws3_c01053{word-spacing:-10.709280px;}
.ws1_c01053{word-spacing:-10.661040px;}
.ws4_c01053{word-spacing:-10.612800px;}
.ws5_c01053{word-spacing:-10.564560px;}
.wsb_c01053{word-spacing:-8.514720px;}
.ws20_c01053{word-spacing:-0.289440px;}
.ws23_c01053{word-spacing:-0.239040px;}
.ws19_c01053{word-spacing:-0.192960px;}
.ws2b_c01053{word-spacing:-0.179280px;}
.ws14_c01053{word-spacing:-0.144720px;}
.ws35_c01053{word-spacing:-0.119520px;}
.ws26_c01053{word-spacing:-0.059760px;}
.ws1a_c01053{word-spacing:-0.048240px;}
.ws12_c01053{word-spacing:0.000000px;}
.ws16_c01053{word-spacing:0.048240px;}
.ws2a_c01053{word-spacing:0.059760px;}
.ws11_c01053{word-spacing:0.072000px;}
.ws21_c01053{word-spacing:0.120240px;}
.ws15_c01053{word-spacing:0.144720px;}
.ws13_c01053{word-spacing:0.192960px;}
.ws24_c01053{word-spacing:0.211680px;}
.ws29_c01053{word-spacing:0.239040px;}
.ws22_c01053{word-spacing:0.240480px;}
.ws37_c01053{word-spacing:0.418320px;}
.ws28_c01053{word-spacing:0.537840px;}
.ws34_c01053{word-spacing:1.135440px;}
.ws2e_c01053{word-spacing:1.314720px;}
.ws2f_c01053{word-spacing:1.852560px;}
.ws2c_c01053{word-spacing:2.031840px;}
.ws30_c01053{word-spacing:2.748960px;}
.ws2d_c01053{word-spacing:4.183200px;}
.ws31_c01053{word-spacing:4.900320px;}
.ws33_c01053{word-spacing:5.019840px;}
.ws18_c01053{word-spacing:5.161680px;}
.ws32_c01053{word-spacing:5.438160px;}
.ws17_c01053{word-spacing:5.595840px;}
.ws1b_c01053{word-spacing:5.885280px;}
.ws1c_c01053{word-spacing:5.933520px;}
.ws27_c01053{word-spacing:6.334560px;}
.ws25_c01053{word-spacing:6.693120px;}
.ws36_c01053{word-spacing:12.848400px;}
.ws1e_c01053{word-spacing:48.095280px;}
.ws1f_c01053{word-spacing:48.384720px;}
.ws1d_c01053{word-spacing:48.481200px;}
._0_c01053{margin-left:-1.512000px;}
._1_c01053{width:1.296000px;}
._7_c01053{width:5.476320px;}
._6_c01053{width:6.548400px;}
._5_c01053{width:9.509760px;}
._8_c01053{width:48.060000px;}
._2_c01053{width:92.048400px;}
._4_c01053{width:135.457920px;}
._3_c01053{width:158.999040px;}
.fc2_c01053{color:transparent;}
.fc1_c01053{color:rgb(0,0,0);}
.fc0_c01053{color:rgb(0,0,255);}
.fs6_c01053{font-size:30.240000px;}
.fs5_c01053{font-size:38.880000px;}
.fs1_c01053{font-size:48.240000px;}
.fs2_c01053{font-size:54.000000px;}
.fs3_c01053{font-size:59.760000px;}
.fs0_c01053{font-size:72.000000px;}
.fs4_c01053{font-size:120.240000px;}
.y0_c01053{bottom:0.000000px;}
.y2_c01053{bottom:15.300000px;}
.ye_c01053{bottom:67.680000px;}
.yd_c01053{bottom:85.320000px;}
.yc_c01053{bottom:100.079460px;}
.yb_c01053{bottom:114.660000px;}
.ya_c01053{bottom:129.240000px;}
.y9_c01053{bottom:147.420000px;}
.y33_c01053{bottom:213.987780px;}
.y32_c01053{bottom:235.949580px;}
.y31_c01053{bottom:257.911380px;}
.y30_c01053{bottom:279.873180px;}
.y2f_c01053{bottom:301.834980px;}
.y2e_c01053{bottom:323.796780px;}
.y2d_c01053{bottom:345.758580px;}
.y2c_c01053{bottom:367.720380px;}
.y2b_c01053{bottom:389.682180px;}
.y2a_c01053{bottom:411.643980px;}
.y29_c01053{bottom:433.605780px;}
.y28_c01053{bottom:455.567580px;}
.y27_c01053{bottom:477.529380px;}
.y26_c01053{bottom:499.670460px;}
.y25_c01053{bottom:521.632260px;}
.y24_c01053{bottom:543.594060px;}
.y23_c01053{bottom:565.555860px;}
.y22_c01053{bottom:583.200000px;}
.y21_c01053{bottom:608.400000px;}
.y20_c01053{bottom:638.100000px;}
.y1f_c01053{bottom:658.434960px;}
.y1e_c01053{bottom:680.038200px;}
.y1d_c01053{bottom:702.000000px;}
.y1c_c01053{bottom:731.700000px;}
.y1b_c01053{bottom:752.040000px;}
.y1a_c01053{bottom:774.720000px;}
.y19_c01053{bottom:792.539460px;}
.y18_c01053{bottom:807.120000px;}
.y17_c01053{bottom:821.696580px;}
.y16_c01053{bottom:836.458020px;}
.y15_c01053{bottom:851.038560px;}
.y14_c01053{bottom:865.800000px;}
.y13_c01053{bottom:880.379460px;}
.y12_c01053{bottom:898.740000px;}
.y11_c01053{bottom:910.260000px;}
.y10_c01053{bottom:962.462340px;}
.yf_c01053{bottom:1006.380000px;}
.y8_c01053{bottom:1060.915500px;}
.y7_c01053{bottom:1075.496040px;}
.y6_c01053{bottom:1090.257480px;}
.y5_c01053{bottom:1104.838020px;}
.y4_c01053{bottom:1119.418560px;}
.y3_c01053{bottom:1134.180000px;}
.y1_c01053{bottom:1145.520000px;}
.ha_c01053{height:21.705469px;}
.h2_c01053{height:32.400000px;}
.h4_c01053{height:34.625391px;}
.hb_c01053{height:34.627551px;}
.hc_c01053{height:34.639071px;}
.h6_c01053{height:35.025820px;}
.h5_c01053{height:35.991211px;}
.he_c01053{height:41.522695px;}
.hd_c01053{height:42.894141px;}
.h7_c01053{height:43.390195px;}
.h9_c01053{height:48.787031px;}
.h3_c01053{height:52.277344px;}
.h8_c01053{height:87.303164px;}
.h0_c01053{height:1262.880000px;}
.h1_c01053{height:1263.000000px;}
.w2_c01053{width:739.078500px;}
.w0_c01053{width:892.980000px;}
.w1_c01053{width:893.250000px;}
.x0_c01053{left:0.000000px;}
.x2_c01053{left:7.920000px;}
.x1_c01053{left:77.040000px;}
.x3_c01053{left:84.960000px;}
.x5_c01053{left:99.870120px;}
.x6_c01053{left:298.766340px;}
.x9_c01053{left:317.127600px;}
.x8_c01053{left:324.149400px;}
.x7_c01053{left:333.143280px;}
.x4_c01053{left:442.620000px;}
@media print{
.v2_c01053{vertical-align:-13.440000pt;}
.v0_c01053{vertical-align:0.000000pt;}
.v1_c01053{vertical-align:18.560000pt;}
.ls20_c01053{letter-spacing:-0.531200pt;}
.ls21_c01053{letter-spacing:-0.478080pt;}
.ls1d_c01053{letter-spacing:-0.448000pt;}
.ls16_c01053{letter-spacing:-0.300160pt;}
.ls11_c01053{letter-spacing:-0.257280pt;}
.ls1b_c01053{letter-spacing:-0.241920pt;}
.ls10_c01053{letter-spacing:-0.214400pt;}
.ls19_c01053{letter-spacing:-0.212480pt;}
.lsf_c01053{letter-spacing:-0.192000pt;}
.ls1c_c01053{letter-spacing:-0.188160pt;}
.ls14_c01053{letter-spacing:-0.171520pt;}
.ls22_c01053{letter-spacing:-0.159360pt;}
.ls13_c01053{letter-spacing:-0.128640pt;}
.ls1a_c01053{letter-spacing:-0.053120pt;}
.lse_c01053{letter-spacing:0.000000pt;}
.ls12_c01053{letter-spacing:0.042880pt;}
.ls1e_c01053{letter-spacing:0.053120pt;}
.ls5_c01053{letter-spacing:0.085760pt;}
.ls17_c01053{letter-spacing:0.106880pt;}
.ls4_c01053{letter-spacing:0.128640pt;}
.lsa_c01053{letter-spacing:0.154048pt;}
.lsb_c01053{letter-spacing:0.159360pt;}
.ls15_c01053{letter-spacing:0.171520pt;}
.lsd_c01053{letter-spacing:0.192000pt;}
.lsc_c01053{letter-spacing:0.212480pt;}
.ls18_c01053{letter-spacing:0.213760pt;}
.ls1f_c01053{letter-spacing:0.265600pt;}
.ls0_c01053{letter-spacing:0.300160pt;}
.ls3_c01053{letter-spacing:0.325888pt;}
.ls8_c01053{letter-spacing:0.371840pt;}
.ls9_c01053{letter-spacing:4.632064pt;}
.ls2_c01053{letter-spacing:5.016960pt;}
.ls6_c01053{letter-spacing:5.896320pt;}
.ls7_c01053{letter-spacing:5.965376pt;}
.ls1_c01053{letter-spacing:81.171840pt;}
.wsf_c01053{word-spacing:-14.656000pt;}
.ws0_c01053{word-spacing:-14.272000pt;}
.wsc_c01053{word-spacing:-14.016000pt;}
.wsd_c01053{word-spacing:-12.164480pt;}
.ws8_c01053{word-spacing:-12.005120pt;}
.wsa_c01053{word-spacing:-11.952000pt;}
.ws10_c01053{word-spacing:-11.845760pt;}
.ws9_c01053{word-spacing:-11.792640pt;}
.wse_c01053{word-spacing:-11.473920pt;}
.ws7_c01053{word-spacing:-9.733760pt;}
.ws6_c01053{word-spacing:-9.690880pt;}
.ws2_c01053{word-spacing:-9.562240pt;}
.ws3_c01053{word-spacing:-9.519360pt;}
.ws1_c01053{word-spacing:-9.476480pt;}
.ws4_c01053{word-spacing:-9.433600pt;}
.ws5_c01053{word-spacing:-9.390720pt;}
.wsb_c01053{word-spacing:-7.568640pt;}
.ws20_c01053{word-spacing:-0.257280pt;}
.ws23_c01053{word-spacing:-0.212480pt;}
.ws19_c01053{word-spacing:-0.171520pt;}
.ws2b_c01053{word-spacing:-0.159360pt;}
.ws14_c01053{word-spacing:-0.128640pt;}
.ws35_c01053{word-spacing:-0.106240pt;}
.ws26_c01053{word-spacing:-0.053120pt;}
.ws1a_c01053{word-spacing:-0.042880pt;}
.ws12_c01053{word-spacing:0.000000pt;}
.ws16_c01053{word-spacing:0.042880pt;}
.ws2a_c01053{word-spacing:0.053120pt;}
.ws11_c01053{word-spacing:0.064000pt;}
.ws21_c01053{word-spacing:0.106880pt;}
.ws15_c01053{word-spacing:0.128640pt;}
.ws13_c01053{word-spacing:0.171520pt;}
.ws24_c01053{word-spacing:0.188160pt;}
.ws29_c01053{word-spacing:0.212480pt;}
.ws22_c01053{word-spacing:0.213760pt;}
.ws37_c01053{word-spacing:0.371840pt;}
.ws28_c01053{word-spacing:0.478080pt;}
.ws34_c01053{word-spacing:1.009280pt;}
.ws2e_c01053{word-spacing:1.168640pt;}
.ws2f_c01053{word-spacing:1.646720pt;}
.ws2c_c01053{word-spacing:1.806080pt;}
.ws30_c01053{word-spacing:2.443520pt;}
.ws2d_c01053{word-spacing:3.718400pt;}
.ws31_c01053{word-spacing:4.355840pt;}
.ws33_c01053{word-spacing:4.462080pt;}
.ws18_c01053{word-spacing:4.588160pt;}
.ws32_c01053{word-spacing:4.833920pt;}
.ws17_c01053{word-spacing:4.974080pt;}
.ws1b_c01053{word-spacing:5.231360pt;}
.ws1c_c01053{word-spacing:5.274240pt;}
.ws27_c01053{word-spacing:5.630720pt;}
.ws25_c01053{word-spacing:5.949440pt;}
.ws36_c01053{word-spacing:11.420800pt;}
.ws1e_c01053{word-spacing:42.751360pt;}
.ws1f_c01053{word-spacing:43.008640pt;}
.ws1d_c01053{word-spacing:43.094400pt;}
._0_c01053{margin-left:-1.344000pt;}
._1_c01053{width:1.152000pt;}
._7_c01053{width:4.867840pt;}
._6_c01053{width:5.820800pt;}
._5_c01053{width:8.453120pt;}
._8_c01053{width:42.720000pt;}
._2_c01053{width:81.820800pt;}
._4_c01053{width:120.407040pt;}
._3_c01053{width:141.332480pt;}
.fs6_c01053{font-size:26.880000pt;}
.fs5_c01053{font-size:34.560000pt;}
.fs1_c01053{font-size:42.880000pt;}
.fs2_c01053{font-size:48.000000pt;}
.fs3_c01053{font-size:53.120000pt;}
.fs0_c01053{font-size:64.000000pt;}
.fs4_c01053{font-size:106.880000pt;}
.y0_c01053{bottom:0.000000pt;}
.y2_c01053{bottom:13.600000pt;}
.ye_c01053{bottom:60.160000pt;}
.yd_c01053{bottom:75.840000pt;}
.yc_c01053{bottom:88.959520pt;}
.yb_c01053{bottom:101.920000pt;}
.ya_c01053{bottom:114.880000pt;}
.y9_c01053{bottom:131.040000pt;}
.y33_c01053{bottom:190.211360pt;}
.y32_c01053{bottom:209.732960pt;}
.y31_c01053{bottom:229.254560pt;}
.y30_c01053{bottom:248.776160pt;}
.y2f_c01053{bottom:268.297760pt;}
.y2e_c01053{bottom:287.819360pt;}
.y2d_c01053{bottom:307.340960pt;}
.y2c_c01053{bottom:326.862560pt;}
.y2b_c01053{bottom:346.384160pt;}
.y2a_c01053{bottom:365.905760pt;}
.y29_c01053{bottom:385.427360pt;}
.y28_c01053{bottom:404.948960pt;}
.y27_c01053{bottom:424.470560pt;}
.y26_c01053{bottom:444.151520pt;}
.y25_c01053{bottom:463.673120pt;}
.y24_c01053{bottom:483.194720pt;}
.y23_c01053{bottom:502.716320pt;}
.y22_c01053{bottom:518.400000pt;}
.y21_c01053{bottom:540.800000pt;}
.y20_c01053{bottom:567.200000pt;}
.y1f_c01053{bottom:585.275520pt;}
.y1e_c01053{bottom:604.478400pt;}
.y1d_c01053{bottom:624.000000pt;}
.y1c_c01053{bottom:650.400000pt;}
.y1b_c01053{bottom:668.480000pt;}
.y1a_c01053{bottom:688.640000pt;}
.y19_c01053{bottom:704.479520pt;}
.y18_c01053{bottom:717.440000pt;}
.y17_c01053{bottom:730.396960pt;}
.y16_c01053{bottom:743.518240pt;}
.y15_c01053{bottom:756.478720pt;}
.y14_c01053{bottom:769.600000pt;}
.y13_c01053{bottom:782.559520pt;}
.y12_c01053{bottom:798.880000pt;}
.y11_c01053{bottom:809.120000pt;}
.y10_c01053{bottom:855.522080pt;}
.yf_c01053{bottom:894.560000pt;}
.y8_c01053{bottom:943.036000pt;}
.y7_c01053{bottom:955.996480pt;}
.y6_c01053{bottom:969.117760pt;}
.y5_c01053{bottom:982.078240pt;}
.y4_c01053{bottom:995.038720pt;}
.y3_c01053{bottom:1008.160000pt;}
.y1_c01053{bottom:1018.240000pt;}
.ha_c01053{height:19.293750pt;}
.h2_c01053{height:28.800000pt;}
.h4_c01053{height:30.778125pt;}
.hb_c01053{height:30.780045pt;}
.hc_c01053{height:30.790285pt;}
.h6_c01053{height:31.134062pt;}
.h5_c01053{height:31.992188pt;}
.he_c01053{height:36.909063pt;}
.hd_c01053{height:38.128125pt;}
.h7_c01053{height:38.569063pt;}
.h9_c01053{height:43.366250pt;}
.h3_c01053{height:46.468750pt;}
.h8_c01053{height:77.602812pt;}
.h0_c01053{height:1122.560000pt;}
.h1_c01053{height:1122.666667pt;}
.w2_c01053{width:656.958667pt;}
.w0_c01053{width:793.760000pt;}
.w1_c01053{width:794.000000pt;}
.x0_c01053{left:0.000000pt;}
.x2_c01053{left:7.040000pt;}
.x1_c01053{left:68.480000pt;}
.x3_c01053{left:75.520000pt;}
.x5_c01053{left:88.773440pt;}
.x6_c01053{left:265.570080pt;}
.x9_c01053{left:281.891200pt;}
.x8_c01053{left:288.132800pt;}
.x7_c01053{left:296.127360pt;}
.x4_c01053{left:393.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cb0872ac22dbaf6d21f670d5.woff2')format("woff");}.ff1_c01054{font-family:ff1_c01054;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01054;src:url('chunks/assets/font_0e696e1f4312c767c3419e2c.woff2')format("woff");}.ff2_c01054{font-family:ff2_c01054;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01054;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff3_c01054{font-family:ff3_c01054;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01054;src:url('chunks/assets/font_537eef96db0cc025cffa77bb.woff2')format("woff");}.ff4_c01054{font-family:ff4_c01054;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c01054{letter-spacing:-0.239040px;}
.lsa_c01054{letter-spacing:-0.119520px;}
.ls7_c01054{letter-spacing:-0.059760px;}
.ls5_c01054{letter-spacing:0.000000px;}
.ls2_c01054{letter-spacing:0.059760px;}
.ls9_c01054{letter-spacing:0.119520px;}
.ls0_c01054{letter-spacing:0.179280px;}
.lsb_c01054{letter-spacing:0.239040px;}
.ls6_c01054{letter-spacing:0.298800px;}
.ls4_c01054{letter-spacing:0.358560px;}
.ls1_c01054{letter-spacing:0.418320px;}
.ls3_c01054{letter-spacing:3.053736px;}
.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:-13.685040px;}
.ws0_c01054{word-spacing:-13.505760px;}
.ws3_c01054{word-spacing:-13.446000px;}
.ws4_c01054{word-spacing:-13.386240px;}
.ws2_c01054{word-spacing:-13.266720px;}
.ws6_c01054{word-spacing:-0.179280px;}
.wsb_c01054{word-spacing:-0.119520px;}
.ws5_c01054{word-spacing:0.000000px;}
.ws14_c01054{word-spacing:0.239040px;}
.wsa_c01054{word-spacing:0.418320px;}
.wse_c01054{word-spacing:0.597600px;}
.ws12_c01054{word-spacing:0.717120px;}
.ws1b_c01054{word-spacing:0.776880px;}
.wsd_c01054{word-spacing:0.956160px;}
.ws15_c01054{word-spacing:1.135440px;}
.wsc_c01054{word-spacing:1.314720px;}
.ws19_c01054{word-spacing:1.434240px;}
.ws1a_c01054{word-spacing:1.852560px;}
.ws9_c01054{word-spacing:2.031840px;}
.ws8_c01054{word-spacing:2.390400px;}
.ws1e_c01054{word-spacing:2.569680px;}
.ws10_c01054{word-spacing:2.748960px;}
.ws22_c01054{word-spacing:2.808720px;}
.ws23_c01054{word-spacing:2.868480px;}
.ws11_c01054{word-spacing:3.286800px;}
.ws13_c01054{word-spacing:3.466080px;}
.ws17_c01054{word-spacing:3.585600px;}
.ws1f_c01054{word-spacing:4.063680px;}
.ws16_c01054{word-spacing:4.183200px;}
.ws20_c01054{word-spacing:4.721040px;}
.wsf_c01054{word-spacing:4.900320px;}
.ws18_c01054{word-spacing:5.617440px;}
.ws7_c01054{word-spacing:6.334560px;}
.ws21_c01054{word-spacing:8.306640px;}
.ws1c_c01054{word-spacing:10.697040px;}
.ws1d_c01054{word-spacing:11.055600px;}
._2_c01054{margin-left:-2.258928px;}
._0_c01054{margin-left:-1.027872px;}
._1_c01054{width:1.135440px;}
._4_c01054{width:2.366496px;}
._3_c01054{width:11.378304px;}
.fc1_c01054{color:rgb(0,0,255);}
.fc0_c01054{color:rgb(0,0,0);}
.fs1_c01054{font-size:54.000000px;}
.fs0_c01054{font-size:59.760000px;}
.y0_c01054{bottom:0.000000px;}
.y3_c01054{bottom:71.280000px;}
.y2_c01054{bottom:88.740000px;}
.y30_c01054{bottom:154.002780px;}
.y2f_c01054{bottom:175.964580px;}
.y2e_c01054{bottom:197.926380px;}
.y2d_c01054{bottom:219.888180px;}
.y2c_c01054{bottom:241.849980px;}
.y2b_c01054{bottom:263.991060px;}
.y2a_c01054{bottom:285.952860px;}
.y29_c01054{bottom:307.914660px;}
.y28_c01054{bottom:329.876460px;}
.y27_c01054{bottom:351.838260px;}
.y26_c01054{bottom:373.800060px;}
.y25_c01054{bottom:395.761860px;}
.y24_c01054{bottom:417.723660px;}
.y23_c01054{bottom:439.685460px;}
.y22_c01054{bottom:461.647260px;}
.y21_c01054{bottom:483.609060px;}
.y20_c01054{bottom:505.570860px;}
.y1f_c01054{bottom:527.532660px;}
.y1e_c01054{bottom:549.494460px;}
.y1d_c01054{bottom:571.456260px;}
.y1c_c01054{bottom:593.597340px;}
.y1b_c01054{bottom:615.559140px;}
.y1a_c01054{bottom:637.520940px;}
.y19_c01054{bottom:659.482740px;}
.y18_c01054{bottom:681.444540px;}
.y17_c01054{bottom:703.406340px;}
.y16_c01054{bottom:725.368140px;}
.y15_c01054{bottom:747.329940px;}
.y14_c01054{bottom:769.291740px;}
.y13_c01054{bottom:791.253540px;}
.y12_c01054{bottom:813.215340px;}
.y11_c01054{bottom:835.177140px;}
.y10_c01054{bottom:857.138940px;}
.yf_c01054{bottom:879.100740px;}
.ye_c01054{bottom:901.241820px;}
.yd_c01054{bottom:923.203620px;}
.yc_c01054{bottom:945.165420px;}
.yb_c01054{bottom:967.127220px;}
.ya_c01054{bottom:989.089020px;}
.y9_c01054{bottom:1011.050820px;}
.y8_c01054{bottom:1033.012620px;}
.y7_c01054{bottom:1054.974420px;}
.y6_c01054{bottom:1076.936220px;}
.y5_c01054{bottom:1098.898020px;}
.y4_c01054{bottom:1120.859820px;}
.y1_c01054{bottom:1163.520000px;}
.h3_c01054{height:35.991211px;}
.h4_c01054{height:42.894141px;}
.h2_c01054{height:43.390195px;}
.h0_c01054{height:1262.880000px;}
.h1_c01054{height:1263.000000px;}
.w0_c01054{width:892.980000px;}
.w1_c01054{width:893.250000px;}
.x0_c01054{left:0.000000px;}
.x1_c01054{left:84.960000px;}
.x4_c01054{left:99.911340px;}
.x3_c01054{left:442.620000px;}
.x2_c01054{left:446.400000px;}
@media print{
.v0_c01054{vertical-align:0.000000pt;}
.ls8_c01054{letter-spacing:-0.212480pt;}
.lsa_c01054{letter-spacing:-0.106240pt;}
.ls7_c01054{letter-spacing:-0.053120pt;}
.ls5_c01054{letter-spacing:0.000000pt;}
.ls2_c01054{letter-spacing:0.053120pt;}
.ls9_c01054{letter-spacing:0.106240pt;}
.ls0_c01054{letter-spacing:0.159360pt;}
.lsb_c01054{letter-spacing:0.212480pt;}
.ls6_c01054{letter-spacing:0.265600pt;}
.ls4_c01054{letter-spacing:0.318720pt;}
.ls1_c01054{letter-spacing:0.371840pt;}
.ls3_c01054{letter-spacing:2.714432pt;}
.ws1_c01054{word-spacing:-12.164480pt;}
.ws0_c01054{word-spacing:-12.005120pt;}
.ws3_c01054{word-spacing:-11.952000pt;}
.ws4_c01054{word-spacing:-11.898880pt;}
.ws2_c01054{word-spacing:-11.792640pt;}
.ws6_c01054{word-spacing:-0.159360pt;}
.wsb_c01054{word-spacing:-0.106240pt;}
.ws5_c01054{word-spacing:0.000000pt;}
.ws14_c01054{word-spacing:0.212480pt;}
.wsa_c01054{word-spacing:0.371840pt;}
.wse_c01054{word-spacing:0.531200pt;}
.ws12_c01054{word-spacing:0.637440pt;}
.ws1b_c01054{word-spacing:0.690560pt;}
.wsd_c01054{word-spacing:0.849920pt;}
.ws15_c01054{word-spacing:1.009280pt;}
.wsc_c01054{word-spacing:1.168640pt;}
.ws19_c01054{word-spacing:1.274880pt;}
.ws1a_c01054{word-spacing:1.646720pt;}
.ws9_c01054{word-spacing:1.806080pt;}
.ws8_c01054{word-spacing:2.124800pt;}
.ws1e_c01054{word-spacing:2.284160pt;}
.ws10_c01054{word-spacing:2.443520pt;}
.ws22_c01054{word-spacing:2.496640pt;}
.ws23_c01054{word-spacing:2.549760pt;}
.ws11_c01054{word-spacing:2.921600pt;}
.ws13_c01054{word-spacing:3.080960pt;}
.ws17_c01054{word-spacing:3.187200pt;}
.ws1f_c01054{word-spacing:3.612160pt;}
.ws16_c01054{word-spacing:3.718400pt;}
.ws20_c01054{word-spacing:4.196480pt;}
.wsf_c01054{word-spacing:4.355840pt;}
.ws18_c01054{word-spacing:4.993280pt;}
.ws7_c01054{word-spacing:5.630720pt;}
.ws21_c01054{word-spacing:7.383680pt;}
.ws1c_c01054{word-spacing:9.508480pt;}
.ws1d_c01054{word-spacing:9.827200pt;}
._2_c01054{margin-left:-2.007936pt;}
._0_c01054{margin-left:-0.913664pt;}
._1_c01054{width:1.009280pt;}
._4_c01054{width:2.103552pt;}
._3_c01054{width:10.114048pt;}
.fs1_c01054{font-size:48.000000pt;}
.fs0_c01054{font-size:53.120000pt;}
.y0_c01054{bottom:0.000000pt;}
.y3_c01054{bottom:63.360000pt;}
.y2_c01054{bottom:78.880000pt;}
.y30_c01054{bottom:136.891360pt;}
.y2f_c01054{bottom:156.412960pt;}
.y2e_c01054{bottom:175.934560pt;}
.y2d_c01054{bottom:195.456160pt;}
.y2c_c01054{bottom:214.977760pt;}
.y2b_c01054{bottom:234.658720pt;}
.y2a_c01054{bottom:254.180320pt;}
.y29_c01054{bottom:273.701920pt;}
.y28_c01054{bottom:293.223520pt;}
.y27_c01054{bottom:312.745120pt;}
.y26_c01054{bottom:332.266720pt;}
.y25_c01054{bottom:351.788320pt;}
.y24_c01054{bottom:371.309920pt;}
.y23_c01054{bottom:390.831520pt;}
.y22_c01054{bottom:410.353120pt;}
.y21_c01054{bottom:429.874720pt;}
.y20_c01054{bottom:449.396320pt;}
.y1f_c01054{bottom:468.917920pt;}
.y1e_c01054{bottom:488.439520pt;}
.y1d_c01054{bottom:507.961120pt;}
.y1c_c01054{bottom:527.642080pt;}
.y1b_c01054{bottom:547.163680pt;}
.y1a_c01054{bottom:566.685280pt;}
.y19_c01054{bottom:586.206880pt;}
.y18_c01054{bottom:605.728480pt;}
.y17_c01054{bottom:625.250080pt;}
.y16_c01054{bottom:644.771680pt;}
.y15_c01054{bottom:664.293280pt;}
.y14_c01054{bottom:683.814880pt;}
.y13_c01054{bottom:703.336480pt;}
.y12_c01054{bottom:722.858080pt;}
.y11_c01054{bottom:742.379680pt;}
.y10_c01054{bottom:761.901280pt;}
.yf_c01054{bottom:781.422880pt;}
.ye_c01054{bottom:801.103840pt;}
.yd_c01054{bottom:820.625440pt;}
.yc_c01054{bottom:840.147040pt;}
.yb_c01054{bottom:859.668640pt;}
.ya_c01054{bottom:879.190240pt;}
.y9_c01054{bottom:898.711840pt;}
.y8_c01054{bottom:918.233440pt;}
.y7_c01054{bottom:937.755040pt;}
.y6_c01054{bottom:957.276640pt;}
.y5_c01054{bottom:976.798240pt;}
.y4_c01054{bottom:996.319840pt;}
.y1_c01054{bottom:1034.240000pt;}
.h3_c01054{height:31.992188pt;}
.h4_c01054{height:38.128125pt;}
.h2_c01054{height:38.569063pt;}
.h0_c01054{height:1122.560000pt;}
.h1_c01054{height:1122.666667pt;}
.w0_c01054{width:793.760000pt;}
.w1_c01054{width:794.000000pt;}
.x0_c01054{left:0.000000pt;}
.x1_c01054{left:75.520000pt;}
.x4_c01054{left:88.810080pt;}
.x3_c01054{left:393.440000pt;}
.x2_c01054{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_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_f0b02611d701ab0d53d546c8.woff2')format("woff");}.ff1_c01055{font-family:ff1_c01055;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01055;src:url('chunks/assets/font_234ebebf681843bbf7c208ad.woff2')format("woff");}.ff2_c01055{font-family:ff2_c01055;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01055;src:url('chunks/assets/font_ba6ba92562abaf71f62d0786.woff2')format("woff");}.ff3_c01055{font-family:ff3_c01055;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01055{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01055{vertical-align:0.000000px;}
.ls1d_c01055{letter-spacing:-0.868320px;}
.ls18_c01055{letter-spacing:-0.675360px;}
.ls1b_c01055{letter-spacing:-0.627120px;}
.ls1c_c01055{letter-spacing:-0.530640px;}
.ls12_c01055{letter-spacing:-0.482400px;}
.ls14_c01055{letter-spacing:-0.337680px;}
.ls16_c01055{letter-spacing:-0.289440px;}
.ls15_c01055{letter-spacing:-0.241200px;}
.ls22_c01055{letter-spacing:-0.239040px;}
.ls11_c01055{letter-spacing:-0.216000px;}
.ls19_c01055{letter-spacing:-0.192960px;}
.ls17_c01055{letter-spacing:-0.144720px;}
.ls21_c01055{letter-spacing:-0.059760px;}
.ls1e_c01055{letter-spacing:-0.048240px;}
.ls10_c01055{letter-spacing:0.000000px;}
.ls6_c01055{letter-spacing:0.024120px;}
.ls13_c01055{letter-spacing:0.048240px;}
.ls0_c01055{letter-spacing:0.096480px;}
.ls23_c01055{letter-spacing:0.119520px;}
.ls1f_c01055{letter-spacing:0.144000px;}
.lse_c01055{letter-spacing:0.179280px;}
.ls4_c01055{letter-spacing:0.192960px;}
.ls20_c01055{letter-spacing:0.216000px;}
.ls24_c01055{letter-spacing:0.239040px;}
.lsa_c01055{letter-spacing:0.298800px;}
.ls1_c01055{letter-spacing:0.337680px;}
.ls3_c01055{letter-spacing:0.347328px;}
.lsf_c01055{letter-spacing:0.358560px;}
.ls1a_c01055{letter-spacing:0.771840px;}
.ls9_c01055{letter-spacing:1.613520px;}
.lsb_c01055{letter-spacing:2.330640px;}
.ls5_c01055{letter-spacing:4.920480px;}
.lsd_c01055{letter-spacing:6.633360px;}
.lsc_c01055{letter-spacing:6.776784px;}
.ls2_c01055{letter-spacing:9.262080px;}
.ls7_c01055{letter-spacing:38.061360px;}
.ls8_c01055{letter-spacing:38.085480px;}
.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;}
}
.wsd_c01055{word-spacing:-16.416000px;}
.ws10_c01055{word-spacing:-13.804560px;}
.ws11_c01055{word-spacing:-13.744800px;}
.wsf_c01055{word-spacing:-13.685040px;}
.ws0_c01055{word-spacing:-13.505760px;}
.wse_c01055{word-spacing:-13.446000px;}
.wsb_c01055{word-spacing:-11.095200px;}
.ws8_c01055{word-spacing:-10.998720px;}
.ws6_c01055{word-spacing:-10.950480px;}
.wsa_c01055{word-spacing:-10.902240px;}
.wsc_c01055{word-spacing:-10.854000px;}
.ws3_c01055{word-spacing:-10.757520px;}
.ws5_c01055{word-spacing:-10.661040px;}
.ws7_c01055{word-spacing:-10.612800px;}
.ws2_c01055{word-spacing:-10.564560px;}
.ws1_c01055{word-spacing:-10.419840px;}
.ws9_c01055{word-spacing:-10.275120px;}
.ws4_c01055{word-spacing:-10.226880px;}
.ws20_c01055{word-spacing:-0.771840px;}
.ws1e_c01055{word-spacing:-0.192960px;}
.ws12_c01055{word-spacing:-0.179280px;}
.ws19_c01055{word-spacing:-0.144720px;}
.ws37_c01055{word-spacing:-0.119520px;}
.ws21_c01055{word-spacing:-0.048240px;}
.ws13_c01055{word-spacing:0.000000px;}
.ws26_c01055{word-spacing:0.048240px;}
.ws32_c01055{word-spacing:0.072000px;}
.ws1b_c01055{word-spacing:0.144720px;}
.ws36_c01055{word-spacing:0.239040px;}
.ws1d_c01055{word-spacing:0.241200px;}
.ws2f_c01055{word-spacing:0.289440px;}
.ws3c_c01055{word-spacing:0.418320px;}
.ws22_c01055{word-spacing:0.434160px;}
.ws14_c01055{word-spacing:0.504000px;}
.ws25_c01055{word-spacing:0.530640px;}
.ws24_c01055{word-spacing:0.578880px;}
.ws29_c01055{word-spacing:0.675360px;}
.ws23_c01055{word-spacing:0.868320px;}
.ws27_c01055{word-spacing:0.916560px;}
.ws28_c01055{word-spacing:1.157760px;}
.ws34_c01055{word-spacing:1.314720px;}
.ws35_c01055{word-spacing:1.434240px;}
.ws2a_c01055{word-spacing:1.495440px;}
.ws2b_c01055{word-spacing:1.591920px;}
.ws2c_c01055{word-spacing:1.640160px;}
.ws33_c01055{word-spacing:1.673280px;}
.ws1a_c01055{word-spacing:4.727520px;}
.ws1c_c01055{word-spacing:5.113440px;}
.ws1f_c01055{word-spacing:5.258160px;}
.ws3b_c01055{word-spacing:6.334560px;}
.ws38_c01055{word-spacing:6.693120px;}
.ws39_c01055{word-spacing:6.872400px;}
.ws3a_c01055{word-spacing:7.410240px;}
.ws15_c01055{word-spacing:9.213840px;}
.ws17_c01055{word-spacing:9.503280px;}
.ws18_c01055{word-spacing:9.551520px;}
.ws16_c01055{word-spacing:9.599760px;}
.ws30_c01055{word-spacing:38.206080px;}
.ws2d_c01055{word-spacing:38.302560px;}
.ws31_c01055{word-spacing:38.350800px;}
.ws2e_c01055{word-spacing:38.399040px;}
._0_c01055{margin-left:-1.231056px;}
._1_c01055{width:1.224000px;}
._3_c01055{width:4.993776px;}
._2_c01055{width:9.841680px;}
._4_c01055{width:38.381040px;}
.fc1_c01055{color:rgb(0,0,0);}
.fc0_c01055{color:rgb(0,0,255);}
.fs3_c01055{font-size:48.240000px;}
.fs1_c01055{font-size:54.000000px;}
.fs0_c01055{font-size:59.760000px;}
.fs2_c01055{font-size:72.000000px;}
.y0_c01055{bottom:0.000000px;}
.y3_c01055{bottom:67.680000px;}
.y2_c01055{bottom:85.680000px;}
.y14_c01055{bottom:799.374600px;}
.y13_c01055{bottom:821.336400px;}
.y12_c01055{bottom:843.298200px;}
.y11_c01055{bottom:865.260000px;}
.y10_c01055{bottom:894.960000px;}
.yf_c01055{bottom:919.620000px;}
.ye_c01055{bottom:941.758380px;}
.yd_c01055{bottom:956.338920px;}
.yc_c01055{bottom:971.100360px;}
.yb_c01055{bottom:990.179280px;}
.ya_c01055{bottom:1009.439100px;}
.y9_c01055{bottom:1024.019640px;}
.y8_c01055{bottom:1043.098560px;}
.y7_c01055{bottom:1057.860000px;}
.y6_c01055{bottom:1076.939460px;}
.y5_c01055{bottom:1091.520000px;}
.y4_c01055{bottom:1118.160000px;}
.y1_c01055{bottom:1163.520000px;}
.h5_c01055{height:34.625391px;}
.h6_c01055{height:34.627551px;}
.h7_c01055{height:34.631871px;}
.h3_c01055{height:38.759766px;}
.h8_c01055{height:42.894141px;}
.h2_c01055{height:43.390195px;}
.h4_c01055{height:52.277344px;}
.h0_c01055{height:1262.880000px;}
.h1_c01055{height:1263.000000px;}
.w0_c01055{width:892.980000px;}
.w1_c01055{width:893.250000px;}
.x0_c01055{left:0.000000px;}
.x1_c01055{left:84.960000px;}
.x5_c01055{left:99.900000px;}
.x4_c01055{left:106.197660px;}
.x3_c01055{left:442.620000px;}
.x2_c01055{left:446.400000px;}
@media print{
.v0_c01055{vertical-align:0.000000pt;}
.ls1d_c01055{letter-spacing:-0.771840pt;}
.ls18_c01055{letter-spacing:-0.600320pt;}
.ls1b_c01055{letter-spacing:-0.557440pt;}
.ls1c_c01055{letter-spacing:-0.471680pt;}
.ls12_c01055{letter-spacing:-0.428800pt;}
.ls14_c01055{letter-spacing:-0.300160pt;}
.ls16_c01055{letter-spacing:-0.257280pt;}
.ls15_c01055{letter-spacing:-0.214400pt;}
.ls22_c01055{letter-spacing:-0.212480pt;}
.ls11_c01055{letter-spacing:-0.192000pt;}
.ls19_c01055{letter-spacing:-0.171520pt;}
.ls17_c01055{letter-spacing:-0.128640pt;}
.ls21_c01055{letter-spacing:-0.053120pt;}
.ls1e_c01055{letter-spacing:-0.042880pt;}
.ls10_c01055{letter-spacing:0.000000pt;}
.ls6_c01055{letter-spacing:0.021440pt;}
.ls13_c01055{letter-spacing:0.042880pt;}
.ls0_c01055{letter-spacing:0.085760pt;}
.ls23_c01055{letter-spacing:0.106240pt;}
.ls1f_c01055{letter-spacing:0.128000pt;}
.lse_c01055{letter-spacing:0.159360pt;}
.ls4_c01055{letter-spacing:0.171520pt;}
.ls20_c01055{letter-spacing:0.192000pt;}
.ls24_c01055{letter-spacing:0.212480pt;}
.lsa_c01055{letter-spacing:0.265600pt;}
.ls1_c01055{letter-spacing:0.300160pt;}
.ls3_c01055{letter-spacing:0.308736pt;}
.lsf_c01055{letter-spacing:0.318720pt;}
.ls1a_c01055{letter-spacing:0.686080pt;}
.ls9_c01055{letter-spacing:1.434240pt;}
.lsb_c01055{letter-spacing:2.071680pt;}
.ls5_c01055{letter-spacing:4.373760pt;}
.lsd_c01055{letter-spacing:5.896320pt;}
.lsc_c01055{letter-spacing:6.023808pt;}
.ls2_c01055{letter-spacing:8.232960pt;}
.ls7_c01055{letter-spacing:33.832320pt;}
.ls8_c01055{letter-spacing:33.853760pt;}
.wsd_c01055{word-spacing:-14.592000pt;}
.ws10_c01055{word-spacing:-12.270720pt;}
.ws11_c01055{word-spacing:-12.217600pt;}
.wsf_c01055{word-spacing:-12.164480pt;}
.ws0_c01055{word-spacing:-12.005120pt;}
.wse_c01055{word-spacing:-11.952000pt;}
.wsb_c01055{word-spacing:-9.862400pt;}
.ws8_c01055{word-spacing:-9.776640pt;}
.ws6_c01055{word-spacing:-9.733760pt;}
.wsa_c01055{word-spacing:-9.690880pt;}
.wsc_c01055{word-spacing:-9.648000pt;}
.ws3_c01055{word-spacing:-9.562240pt;}
.ws5_c01055{word-spacing:-9.476480pt;}
.ws7_c01055{word-spacing:-9.433600pt;}
.ws2_c01055{word-spacing:-9.390720pt;}
.ws1_c01055{word-spacing:-9.262080pt;}
.ws9_c01055{word-spacing:-9.133440pt;}
.ws4_c01055{word-spacing:-9.090560pt;}
.ws20_c01055{word-spacing:-0.686080pt;}
.ws1e_c01055{word-spacing:-0.171520pt;}
.ws12_c01055{word-spacing:-0.159360pt;}
.ws19_c01055{word-spacing:-0.128640pt;}
.ws37_c01055{word-spacing:-0.106240pt;}
.ws21_c01055{word-spacing:-0.042880pt;}
.ws13_c01055{word-spacing:0.000000pt;}
.ws26_c01055{word-spacing:0.042880pt;}
.ws32_c01055{word-spacing:0.064000pt;}
.ws1b_c01055{word-spacing:0.128640pt;}
.ws36_c01055{word-spacing:0.212480pt;}
.ws1d_c01055{word-spacing:0.214400pt;}
.ws2f_c01055{word-spacing:0.257280pt;}
.ws3c_c01055{word-spacing:0.371840pt;}
.ws22_c01055{word-spacing:0.385920pt;}
.ws14_c01055{word-spacing:0.448000pt;}
.ws25_c01055{word-spacing:0.471680pt;}
.ws24_c01055{word-spacing:0.514560pt;}
.ws29_c01055{word-spacing:0.600320pt;}
.ws23_c01055{word-spacing:0.771840pt;}
.ws27_c01055{word-spacing:0.814720pt;}
.ws28_c01055{word-spacing:1.029120pt;}
.ws34_c01055{word-spacing:1.168640pt;}
.ws35_c01055{word-spacing:1.274880pt;}
.ws2a_c01055{word-spacing:1.329280pt;}
.ws2b_c01055{word-spacing:1.415040pt;}
.ws2c_c01055{word-spacing:1.457920pt;}
.ws33_c01055{word-spacing:1.487360pt;}
.ws1a_c01055{word-spacing:4.202240pt;}
.ws1c_c01055{word-spacing:4.545280pt;}
.ws1f_c01055{word-spacing:4.673920pt;}
.ws3b_c01055{word-spacing:5.630720pt;}
.ws38_c01055{word-spacing:5.949440pt;}
.ws39_c01055{word-spacing:6.108800pt;}
.ws3a_c01055{word-spacing:6.586880pt;}
.ws15_c01055{word-spacing:8.190080pt;}
.ws17_c01055{word-spacing:8.447360pt;}
.ws18_c01055{word-spacing:8.490240pt;}
.ws16_c01055{word-spacing:8.533120pt;}
.ws30_c01055{word-spacing:33.960960pt;}
.ws2d_c01055{word-spacing:34.046720pt;}
.ws31_c01055{word-spacing:34.089600pt;}
.ws2e_c01055{word-spacing:34.132480pt;}
._0_c01055{margin-left:-1.094272pt;}
._1_c01055{width:1.088000pt;}
._3_c01055{width:4.438912pt;}
._2_c01055{width:8.748160pt;}
._4_c01055{width:34.116480pt;}
.fs3_c01055{font-size:42.880000pt;}
.fs1_c01055{font-size:48.000000pt;}
.fs0_c01055{font-size:53.120000pt;}
.fs2_c01055{font-size:64.000000pt;}
.y0_c01055{bottom:0.000000pt;}
.y3_c01055{bottom:60.160000pt;}
.y2_c01055{bottom:76.160000pt;}
.y14_c01055{bottom:710.555200pt;}
.y13_c01055{bottom:730.076800pt;}
.y12_c01055{bottom:749.598400pt;}
.y11_c01055{bottom:769.120000pt;}
.y10_c01055{bottom:795.520000pt;}
.yf_c01055{bottom:817.440000pt;}
.ye_c01055{bottom:837.118560pt;}
.yd_c01055{bottom:850.079040pt;}
.yc_c01055{bottom:863.200320pt;}
.yb_c01055{bottom:880.159360pt;}
.ya_c01055{bottom:897.279200pt;}
.y9_c01055{bottom:910.239680pt;}
.y8_c01055{bottom:927.198720pt;}
.y7_c01055{bottom:940.320000pt;}
.y6_c01055{bottom:957.279520pt;}
.y5_c01055{bottom:970.240000pt;}
.y4_c01055{bottom:993.920000pt;}
.y1_c01055{bottom:1034.240000pt;}
.h5_c01055{height:30.778125pt;}
.h6_c01055{height:30.780045pt;}
.h7_c01055{height:30.783885pt;}
.h3_c01055{height:34.453125pt;}
.h8_c01055{height:38.128125pt;}
.h2_c01055{height:38.569063pt;}
.h4_c01055{height:46.468750pt;}
.h0_c01055{height:1122.560000pt;}
.h1_c01055{height:1122.666667pt;}
.w0_c01055{width:793.760000pt;}
.w1_c01055{width:794.000000pt;}
.x0_c01055{left:0.000000pt;}
.x1_c01055{left:75.520000pt;}
.x5_c01055{left:88.800000pt;}
.x4_c01055{left:94.397920pt;}
.x3_c01055{left:393.440000pt;}
.x2_c01055{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_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_13b4983f20886fe4fd74ccbb.woff2')format("woff");}.ff1_c01056{font-family:ff1_c01056;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01056;src:url('chunks/assets/font_96da8dda20a62f9f0be6fcc7.woff2')format("woff");}.ff2_c01056{font-family:ff2_c01056;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01056;src:url('chunks/assets/font_129f69fb4bacad7876b53023.woff2')format("woff");}.ff3_c01056{font-family:ff3_c01056;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01056;src:url('chunks/assets/font_91e85cbbc26c8c0b171cf812.woff2')format("woff");}.ff4_c01056{font-family:ff4_c01056;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01056{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01056{vertical-align:0.000000px;}
.v1_c01056{vertical-align:20.880000px;}
.ls19_c01056{letter-spacing:-0.675360px;}
.ls26_c01056{letter-spacing:-0.600000px;}
.ls21_c01056{letter-spacing:-0.504000px;}
.ls1c_c01056{letter-spacing:-0.480960px;}
.ls24_c01056{letter-spacing:-0.360000px;}
.ls18_c01056{letter-spacing:-0.337680px;}
.ls14_c01056{letter-spacing:-0.289440px;}
.ls28_c01056{letter-spacing:-0.288000px;}
.ls13_c01056{letter-spacing:-0.241200px;}
.ls1a_c01056{letter-spacing:-0.240480px;}
.ls22_c01056{letter-spacing:-0.240000px;}
.ls2b_c01056{letter-spacing:-0.239040px;}
.ls12_c01056{letter-spacing:-0.216000px;}
.ls16_c01056{letter-spacing:-0.144720px;}
.ls25_c01056{letter-spacing:-0.120000px;}
.ls1f_c01056{letter-spacing:-0.119520px;}
.ls23_c01056{letter-spacing:-0.060000px;}
.ls1d_c01056{letter-spacing:-0.059760px;}
.ls11_c01056{letter-spacing:0.000000px;}
.lsc_c01056{letter-spacing:0.030480px;}
.ls15_c01056{letter-spacing:0.048240px;}
.lse_c01056{letter-spacing:0.060000px;}
.ls27_c01056{letter-spacing:0.072000px;}
.ls29_c01056{letter-spacing:0.084240px;}
.lsa_c01056{letter-spacing:0.089520px;}
.ls6_c01056{letter-spacing:0.096480px;}
.ls9_c01056{letter-spacing:0.120000px;}
.ls1b_c01056{letter-spacing:0.120240px;}
.ls4_c01056{letter-spacing:0.144720px;}
.ls20_c01056{letter-spacing:0.179280px;}
.ls8_c01056{letter-spacing:0.180000px;}
.ls17_c01056{letter-spacing:0.192960px;}
.lsd_c01056{letter-spacing:0.216000px;}
.ls1e_c01056{letter-spacing:0.239040px;}
.ls5_c01056{letter-spacing:0.240480px;}
.ls2a_c01056{letter-spacing:0.298800px;}
.ls7_c01056{letter-spacing:0.300000px;}
.lsb_c01056{letter-spacing:0.329991px;}
.ls0_c01056{letter-spacing:0.337680px;}
.lsf_c01056{letter-spacing:2.330640px;}
.ls10_c01056{letter-spacing:2.342592px;}
.ls3_c01056{letter-spacing:4.196880px;}
.ls1_c01056{letter-spacing:91.318320px;}
.ls2_c01056{letter-spacing:305.166240px;}
.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;}
}
.ws9_c01056{word-spacing:-27.174240px;}
.ws15_c01056{word-spacing:-19.122480px;}
.ws0_c01056{word-spacing:-16.056000px;}
.wsd_c01056{word-spacing:-15.768000px;}
.ws13_c01056{word-spacing:-13.835751px;}
.wse_c01056{word-spacing:-13.805760px;}
.ws11_c01056{word-spacing:-13.685760px;}
.ws12_c01056{word-spacing:-13.625760px;}
.ws14_c01056{word-spacing:-13.565760px;}
.ws8_c01056{word-spacing:-13.505760px;}
.wsa_c01056{word-spacing:-13.446000px;}
.ws10_c01056{word-spacing:-13.445760px;}
.wsb_c01056{word-spacing:-13.386240px;}
.wsf_c01056{word-spacing:-13.265760px;}
.ws6_c01056{word-spacing:-11.095200px;}
.ws5_c01056{word-spacing:-10.950480px;}
.ws3_c01056{word-spacing:-10.902240px;}
.ws2_c01056{word-spacing:-10.757520px;}
.ws1_c01056{word-spacing:-10.661040px;}
.wsc_c01056{word-spacing:-10.612800px;}
.ws4_c01056{word-spacing:-10.564560px;}
.ws7_c01056{word-spacing:-10.226880px;}
.wsca_c01056{word-spacing:-0.972000px;}
.wsb9_c01056{word-spacing:-0.954000px;}
.wsd2_c01056{word-spacing:-0.750000px;}
.wsd1_c01056{word-spacing:-0.672000px;}
.wsc2_c01056{word-spacing:-0.660000px;}
.wsb8_c01056{word-spacing:-0.642000px;}
.wsd5_c01056{word-spacing:-0.582000px;}
.wsbe_c01056{word-spacing:-0.480000px;}
.ws24_c01056{word-spacing:-0.289440px;}
.ws27_c01056{word-spacing:-0.240480px;}
.ws29_c01056{word-spacing:-0.239040px;}
.wsd4_c01056{word-spacing:-0.216000px;}
.ws87_c01056{word-spacing:-0.210000px;}
.wsd3_c01056{word-spacing:-0.198000px;}
.ws1f_c01056{word-spacing:-0.192960px;}
.ws2a_c01056{word-spacing:-0.179280px;}
.ws83_c01056{word-spacing:-0.162000px;}
.ws19_c01056{word-spacing:-0.144720px;}
.wsce_c01056{word-spacing:-0.126000px;}
.ws26_c01056{word-spacing:-0.120240px;}
.ws84_c01056{word-spacing:-0.120000px;}
.wsd6_c01056{word-spacing:-0.072000px;}
.ws21_c01056{word-spacing:-0.048240px;}
.wsd9_c01056{word-spacing:-0.048000px;}
.ws17_c01056{word-spacing:0.000000px;}
.wsc0_c01056{word-spacing:0.030000px;}
.wscd_c01056{word-spacing:0.048000px;}
.ws1c_c01056{word-spacing:0.048240px;}
.wsc1_c01056{word-spacing:0.054000px;}
.ws9b_c01056{word-spacing:0.060000px;}
.ws16_c01056{word-spacing:0.072000px;}
.ws82_c01056{word-spacing:0.108000px;}
.wsba_c01056{word-spacing:0.120000px;}
.ws9e_c01056{word-spacing:0.126000px;}
.ws1b_c01056{word-spacing:0.144720px;}
.ws86_c01056{word-spacing:0.186000px;}
.ws18_c01056{word-spacing:0.192960px;}
.ws85_c01056{word-spacing:0.210000px;}
.ws41_c01056{word-spacing:0.216000px;}
.ws95_c01056{word-spacing:0.228000px;}
.ws3a_c01056{word-spacing:0.240000px;}
.ws25_c01056{word-spacing:0.240480px;}
.ws1a_c01056{word-spacing:0.241200px;}
.wsd8_c01056{word-spacing:0.288000px;}
.ws23_c01056{word-spacing:0.289440px;}
.wsbf_c01056{word-spacing:0.294000px;}
.ws80_c01056{word-spacing:0.312000px;}
.ws3b_c01056{word-spacing:0.324000px;}
.ws4e_c01056{word-spacing:0.360000px;}
.wsd0_c01056{word-spacing:0.372000px;}
.ws40_c01056{word-spacing:0.420000px;}
.ws7a_c01056{word-spacing:0.432000px;}
.ws97_c01056{word-spacing:0.438000px;}
.ws3f_c01056{word-spacing:0.444000px;}
.ws9a_c01056{word-spacing:0.468000px;}
.ws99_c01056{word-spacing:0.480000px;}
.ws28_c01056{word-spacing:0.480960px;}
.ws3e_c01056{word-spacing:0.486000px;}
.ws7d_c01056{word-spacing:0.534000px;}
.ws3c_c01056{word-spacing:0.588000px;}
.ws96_c01056{word-spacing:0.600000px;}
.ws39_c01056{word-spacing:0.606000px;}
.wsb6_c01056{word-spacing:0.612000px;}
.wsdb_c01056{word-spacing:0.654000px;}
.wscf_c01056{word-spacing:0.666000px;}
.ws7b_c01056{word-spacing:0.672000px;}
.ws98_c01056{word-spacing:0.684000px;}
.ws3d_c01056{word-spacing:0.690000px;}
.ws7e_c01056{word-spacing:0.714000px;}
.ws2b_c01056{word-spacing:0.720000px;}
.wsd7_c01056{word-spacing:0.726000px;}
.wsb5_c01056{word-spacing:0.768000px;}
.ws9d_c01056{word-spacing:0.774000px;}
.wscb_c01056{word-spacing:0.780000px;}
.wsb7_c01056{word-spacing:0.792000px;}
.ws81_c01056{word-spacing:0.822000px;}
.ws79_c01056{word-spacing:0.828000px;}
.wsda_c01056{word-spacing:0.834000px;}
.ws7f_c01056{word-spacing:0.840000px;}
.wsbd_c01056{word-spacing:0.852000px;}
.ws7c_c01056{word-spacing:0.930000px;}
.wsbc_c01056{word-spacing:0.960000px;}
.ws9c_c01056{word-spacing:0.966000px;}
.wsb3_c01056{word-spacing:1.038000px;}
.wsbb_c01056{word-spacing:1.050000px;}
.wsb0_c01056{word-spacing:1.152000px;}
.wsb1_c01056{word-spacing:1.188000px;}
.wsaf_c01056{word-spacing:1.194000px;}
.wsb2_c01056{word-spacing:1.200000px;}
.wsae_c01056{word-spacing:1.314000px;}
.wscc_c01056{word-spacing:1.320000px;}
.wsad_c01056{word-spacing:1.410000px;}
.ws78_c01056{word-spacing:1.518000px;}
.wsb4_c01056{word-spacing:1.728000px;}
.ws77_c01056{word-spacing:1.770000px;}
.ws48_c01056{word-spacing:1.872000px;}
.wsdc_c01056{word-spacing:2.031840px;}
.wsdd_c01056{word-spacing:2.151360px;}
.ws4a_c01056{word-spacing:2.214000px;}
.ws4b_c01056{word-spacing:2.328000px;}
.ws4c_c01056{word-spacing:2.472000px;}
.ws42_c01056{word-spacing:2.706000px;}
.ws49_c01056{word-spacing:2.748000px;}
.ws4d_c01056{word-spacing:2.838000px;}
.ws43_c01056{word-spacing:3.108000px;}
.ws45_c01056{word-spacing:3.234000px;}
.ws46_c01056{word-spacing:3.312000px;}
.ws47_c01056{word-spacing:3.372000px;}
.ws20_c01056{word-spacing:3.425040px;}
.ws44_c01056{word-spacing:3.474000px;}
.ws1e_c01056{word-spacing:3.714480px;}
.ws22_c01056{word-spacing:3.810960px;}
.ws1d_c01056{word-spacing:4.148640px;}
.ws2d_c01056{word-spacing:4.362000px;}
.ws2f_c01056{word-spacing:4.374000px;}
.wsc9_c01056{word-spacing:4.548000px;}
.ws34_c01056{word-spacing:4.626000px;}
.ws2c_c01056{word-spacing:4.704000px;}
.ws33_c01056{word-spacing:4.746000px;}
.ws31_c01056{word-spacing:4.770000px;}
.ws2e_c01056{word-spacing:4.902000px;}
.wsc6_c01056{word-spacing:4.950000px;}
.ws32_c01056{word-spacing:4.998000px;}
.wsc4_c01056{word-spacing:5.082000px;}
.ws88_c01056{word-spacing:5.088000px;}
.wsc8_c01056{word-spacing:5.268000px;}
.wsc3_c01056{word-spacing:5.310000px;}
.ws63_c01056{word-spacing:5.430000px;}
.ws36_c01056{word-spacing:5.436000px;}
.wsdf_c01056{word-spacing:5.617440px;}
.ws92_c01056{word-spacing:5.622000px;}
.ws90_c01056{word-spacing:5.634000px;}
.ws8d_c01056{word-spacing:5.700000px;}
.ws8f_c01056{word-spacing:5.736000px;}
.ws30_c01056{word-spacing:5.814000px;}
.wsc5_c01056{word-spacing:5.820000px;}
.wsc7_c01056{word-spacing:5.856000px;}
.ws37_c01056{word-spacing:5.862000px;}
.ws89_c01056{word-spacing:5.922000px;}
.ws93_c01056{word-spacing:5.964000px;}
.ws8e_c01056{word-spacing:5.970000px;}
.ws38_c01056{word-spacing:5.982000px;}
.ws8a_c01056{word-spacing:5.988000px;}
.ws59_c01056{word-spacing:6.048000px;}
.ws35_c01056{word-spacing:6.072000px;}
.wsde_c01056{word-spacing:6.155280px;}
.ws8b_c01056{word-spacing:6.162000px;}
.ws91_c01056{word-spacing:6.342000px;}
.ws5c_c01056{word-spacing:6.456000px;}
.ws62_c01056{word-spacing:6.516000px;}
.ws94_c01056{word-spacing:6.534000px;}
.ws8c_c01056{word-spacing:6.540000px;}
.ws58_c01056{word-spacing:6.588000px;}
.ws61_c01056{word-spacing:6.696000px;}
.ws5b_c01056{word-spacing:6.750000px;}
.ws5d_c01056{word-spacing:6.774000px;}
.ws54_c01056{word-spacing:6.870000px;}
.ws56_c01056{word-spacing:6.900000px;}
.ws57_c01056{word-spacing:6.954000px;}
.ws60_c01056{word-spacing:7.020000px;}
.ws50_c01056{word-spacing:7.044000px;}
.ws5a_c01056{word-spacing:7.074000px;}
.ws5f_c01056{word-spacing:7.110000px;}
.wsa1_c01056{word-spacing:7.230000px;}
.ws4f_c01056{word-spacing:7.290000px;}
.ws55_c01056{word-spacing:7.356000px;}
.ws5e_c01056{word-spacing:7.386000px;}
.ws53_c01056{word-spacing:7.416000px;}
.ws52_c01056{word-spacing:7.506000px;}
.ws51_c01056{word-spacing:7.590000px;}
.ws9f_c01056{word-spacing:7.608000px;}
.wsa0_c01056{word-spacing:7.770000px;}
.wsa4_c01056{word-spacing:7.950000px;}
.wsa2_c01056{word-spacing:8.130000px;}
.wsa3_c01056{word-spacing:8.250000px;}
.wsa5_c01056{word-spacing:8.310000px;}
.wsac_c01056{word-spacing:8.544000px;}
.wsa7_c01056{word-spacing:8.568000px;}
.ws68_c01056{word-spacing:8.676000px;}
.wsa6_c01056{word-spacing:8.718000px;}
.ws66_c01056{word-spacing:8.736000px;}
.wsaa_c01056{word-spacing:8.850000px;}
.wsa8_c01056{word-spacing:8.856000px;}
.ws65_c01056{word-spacing:8.868000px;}
.wsa9_c01056{word-spacing:8.940000px;}
.ws64_c01056{word-spacing:9.102000px;}
.ws76_c01056{word-spacing:9.144000px;}
.ws75_c01056{word-spacing:9.234000px;}
.ws67_c01056{word-spacing:9.264000px;}
.ws6b_c01056{word-spacing:9.384000px;}
.ws6c_c01056{word-spacing:9.396000px;}
.ws6a_c01056{word-spacing:9.510000px;}
.ws6d_c01056{word-spacing:9.528000px;}
.wsab_c01056{word-spacing:9.570000px;}
.ws69_c01056{word-spacing:9.756000px;}
.ws6f_c01056{word-spacing:9.768000px;}
.ws70_c01056{word-spacing:9.798000px;}
.ws71_c01056{word-spacing:9.996000px;}
.ws6e_c01056{word-spacing:10.098000px;}
.ws73_c01056{word-spacing:10.152000px;}
.ws72_c01056{word-spacing:10.188000px;}
.ws74_c01056{word-spacing:10.260000px;}
._0_c01056{margin-left:-1.512000px;}
._1_c01056{width:1.296000px;}
._5_c01056{width:2.812320px;}
._6_c01056{width:4.052160px;}
._8_c01056{width:6.207840px;}
._3_c01056{width:9.509760px;}
._7_c01056{width:108.164160px;}
._2_c01056{width:261.949680px;}
._4_c01056{width:329.623920px;}
.fc1_c01056{color:rgb(0,0,0);}
.fc0_c01056{color:rgb(0,0,255);}
.fs4_c01056{font-size:38.880000px;}
.fs1_c01056{font-size:48.240000px;}
.fs2_c01056{font-size:59.760000px;}
.fs0_c01056{font-size:72.000000px;}
.fs5_c01056{font-size:84.240000px;}
.fs3_c01056{font-size:120.240000px;}
.y0_c01056{bottom:0.000000px;}
.y2_c01056{bottom:15.300000px;}
.yb_c01056{bottom:67.680000px;}
.ya_c01056{bottom:85.320000px;}
.y9_c01056{bottom:100.080000px;}
.y8_c01056{bottom:114.660000px;}
.y7_c01056{bottom:129.240000px;}
.y2a_c01056{bottom:196.558200px;}
.y29_c01056{bottom:218.520000px;}
.y28_c01056{bottom:249.660000px;}
.y27_c01056{bottom:298.266000px;}
.y26_c01056{bottom:327.966000px;}
.y25_c01056{bottom:369.876000px;}
.y24_c01056{bottom:391.848000px;}
.y23_c01056{bottom:413.820000px;}
.y22_c01056{bottom:435.792000px;}
.y21_c01056{bottom:457.764000px;}
.y20_c01056{bottom:479.736000px;}
.y1f_c01056{bottom:501.708000px;}
.y1e_c01056{bottom:523.680000px;}
.y1d_c01056{bottom:545.652000px;}
.y1c_c01056{bottom:567.624000px;}
.y1b_c01056{bottom:589.596000px;}
.y1a_c01056{bottom:611.568000px;}
.y19_c01056{bottom:633.540000px;}
.y18_c01056{bottom:655.512000px;}
.y17_c01056{bottom:677.484000px;}
.y16_c01056{bottom:699.456000px;}
.y15_c01056{bottom:721.428000px;}
.y14_c01056{bottom:743.400000px;}
.y13_c01056{bottom:773.100000px;}
.y12_c01056{bottom:863.097480px;}
.y11_c01056{bottom:877.858920px;}
.y10_c01056{bottom:892.439400px;}
.yf_c01056{bottom:921.780000px;}
.ye_c01056{bottom:936.360000px;}
.yd_c01056{bottom:954.360000px;}
.yc_c01056{bottom:1006.380000px;}
.y6_c01056{bottom:1075.496040px;}
.y5_c01056{bottom:1090.257480px;}
.y4_c01056{bottom:1104.838020px;}
.y3_c01056{bottom:1119.418500px;}
.y1_c01056{bottom:1145.520000px;}
.h2_c01056{height:32.400000px;}
.h5_c01056{height:34.625391px;}
.h4_c01056{height:34.625631px;}
.hb_c01056{height:34.635471px;}
.h6_c01056{height:35.025820px;}
.ha_c01056{height:41.522695px;}
.hc_c01056{height:42.894141px;}
.h7_c01056{height:43.390195px;}
.h9_c01056{height:48.787031px;}
.h3_c01056{height:52.277344px;}
.hd_c01056{height:61.164492px;}
.h8_c01056{height:87.303164px;}
.h0_c01056{height:1262.880000px;}
.h1_c01056{height:1263.000000px;}
.w2_c01056{width:739.078500px;}
.w0_c01056{width:892.980000px;}
.w1_c01056{width:893.250000px;}
.x0_c01056{left:0.000000px;}
.x2_c01056{left:7.920000px;}
.x1_c01056{left:77.040000px;}
.x3_c01056{left:84.960000px;}
.x4_c01056{left:442.620000px;}
@media print{
.v0_c01056{vertical-align:0.000000pt;}
.v1_c01056{vertical-align:18.560000pt;}
.ls19_c01056{letter-spacing:-0.600320pt;}
.ls26_c01056{letter-spacing:-0.533333pt;}
.ls21_c01056{letter-spacing:-0.448000pt;}
.ls1c_c01056{letter-spacing:-0.427520pt;}
.ls24_c01056{letter-spacing:-0.320000pt;}
.ls18_c01056{letter-spacing:-0.300160pt;}
.ls14_c01056{letter-spacing:-0.257280pt;}
.ls28_c01056{letter-spacing:-0.256000pt;}
.ls13_c01056{letter-spacing:-0.214400pt;}
.ls1a_c01056{letter-spacing:-0.213760pt;}
.ls22_c01056{letter-spacing:-0.213333pt;}
.ls2b_c01056{letter-spacing:-0.212480pt;}
.ls12_c01056{letter-spacing:-0.192000pt;}
.ls16_c01056{letter-spacing:-0.128640pt;}
.ls25_c01056{letter-spacing:-0.106667pt;}
.ls1f_c01056{letter-spacing:-0.106240pt;}
.ls23_c01056{letter-spacing:-0.053333pt;}
.ls1d_c01056{letter-spacing:-0.053120pt;}
.ls11_c01056{letter-spacing:0.000000pt;}
.lsc_c01056{letter-spacing:0.027093pt;}
.ls15_c01056{letter-spacing:0.042880pt;}
.lse_c01056{letter-spacing:0.053333pt;}
.ls27_c01056{letter-spacing:0.064000pt;}
.ls29_c01056{letter-spacing:0.074880pt;}
.lsa_c01056{letter-spacing:0.079573pt;}
.ls6_c01056{letter-spacing:0.085760pt;}
.ls9_c01056{letter-spacing:0.106667pt;}
.ls1b_c01056{letter-spacing:0.106880pt;}
.ls4_c01056{letter-spacing:0.128640pt;}
.ls20_c01056{letter-spacing:0.159360pt;}
.ls8_c01056{letter-spacing:0.160000pt;}
.ls17_c01056{letter-spacing:0.171520pt;}
.lsd_c01056{letter-spacing:0.192000pt;}
.ls1e_c01056{letter-spacing:0.212480pt;}
.ls5_c01056{letter-spacing:0.213760pt;}
.ls2a_c01056{letter-spacing:0.265600pt;}
.ls7_c01056{letter-spacing:0.266667pt;}
.lsb_c01056{letter-spacing:0.293325pt;}
.ls0_c01056{letter-spacing:0.300160pt;}
.lsf_c01056{letter-spacing:2.071680pt;}
.ls10_c01056{letter-spacing:2.082304pt;}
.ls3_c01056{letter-spacing:3.730560pt;}
.ls1_c01056{letter-spacing:81.171840pt;}
.ls2_c01056{letter-spacing:271.258880pt;}
.ws9_c01056{word-spacing:-24.154880pt;}
.ws15_c01056{word-spacing:-16.997760pt;}
.ws0_c01056{word-spacing:-14.272000pt;}
.wsd_c01056{word-spacing:-14.016000pt;}
.ws13_c01056{word-spacing:-12.298445pt;}
.wse_c01056{word-spacing:-12.271787pt;}
.ws11_c01056{word-spacing:-12.165120pt;}
.ws12_c01056{word-spacing:-12.111787pt;}
.ws14_c01056{word-spacing:-12.058453pt;}
.ws8_c01056{word-spacing:-12.005120pt;}
.wsa_c01056{word-spacing:-11.952000pt;}
.ws10_c01056{word-spacing:-11.951787pt;}
.wsb_c01056{word-spacing:-11.898880pt;}
.wsf_c01056{word-spacing:-11.791787pt;}
.ws6_c01056{word-spacing:-9.862400pt;}
.ws5_c01056{word-spacing:-9.733760pt;}
.ws3_c01056{word-spacing:-9.690880pt;}
.ws2_c01056{word-spacing:-9.562240pt;}
.ws1_c01056{word-spacing:-9.476480pt;}
.wsc_c01056{word-spacing:-9.433600pt;}
.ws4_c01056{word-spacing:-9.390720pt;}
.ws7_c01056{word-spacing:-9.090560pt;}
.wsca_c01056{word-spacing:-0.864000pt;}
.wsb9_c01056{word-spacing:-0.848000pt;}
.wsd2_c01056{word-spacing:-0.666667pt;}
.wsd1_c01056{word-spacing:-0.597333pt;}
.wsc2_c01056{word-spacing:-0.586667pt;}
.wsb8_c01056{word-spacing:-0.570667pt;}
.wsd5_c01056{word-spacing:-0.517333pt;}
.wsbe_c01056{word-spacing:-0.426667pt;}
.ws24_c01056{word-spacing:-0.257280pt;}
.ws27_c01056{word-spacing:-0.213760pt;}
.ws29_c01056{word-spacing:-0.212480pt;}
.wsd4_c01056{word-spacing:-0.192000pt;}
.ws87_c01056{word-spacing:-0.186667pt;}
.wsd3_c01056{word-spacing:-0.176000pt;}
.ws1f_c01056{word-spacing:-0.171520pt;}
.ws2a_c01056{word-spacing:-0.159360pt;}
.ws83_c01056{word-spacing:-0.144000pt;}
.ws19_c01056{word-spacing:-0.128640pt;}
.wsce_c01056{word-spacing:-0.112000pt;}
.ws26_c01056{word-spacing:-0.106880pt;}
.ws84_c01056{word-spacing:-0.106667pt;}
.wsd6_c01056{word-spacing:-0.064000pt;}
.ws21_c01056{word-spacing:-0.042880pt;}
.wsd9_c01056{word-spacing:-0.042667pt;}
.ws17_c01056{word-spacing:0.000000pt;}
.wsc0_c01056{word-spacing:0.026667pt;}
.wscd_c01056{word-spacing:0.042667pt;}
.ws1c_c01056{word-spacing:0.042880pt;}
.wsc1_c01056{word-spacing:0.048000pt;}
.ws9b_c01056{word-spacing:0.053333pt;}
.ws16_c01056{word-spacing:0.064000pt;}
.ws82_c01056{word-spacing:0.096000pt;}
.wsba_c01056{word-spacing:0.106667pt;}
.ws9e_c01056{word-spacing:0.112000pt;}
.ws1b_c01056{word-spacing:0.128640pt;}
.ws86_c01056{word-spacing:0.165333pt;}
.ws18_c01056{word-spacing:0.171520pt;}
.ws85_c01056{word-spacing:0.186667pt;}
.ws41_c01056{word-spacing:0.192000pt;}
.ws95_c01056{word-spacing:0.202667pt;}
.ws3a_c01056{word-spacing:0.213333pt;}
.ws25_c01056{word-spacing:0.213760pt;}
.ws1a_c01056{word-spacing:0.214400pt;}
.wsd8_c01056{word-spacing:0.256000pt;}
.ws23_c01056{word-spacing:0.257280pt;}
.wsbf_c01056{word-spacing:0.261333pt;}
.ws80_c01056{word-spacing:0.277333pt;}
.ws3b_c01056{word-spacing:0.288000pt;}
.ws4e_c01056{word-spacing:0.320000pt;}
.wsd0_c01056{word-spacing:0.330667pt;}
.ws40_c01056{word-spacing:0.373333pt;}
.ws7a_c01056{word-spacing:0.384000pt;}
.ws97_c01056{word-spacing:0.389333pt;}
.ws3f_c01056{word-spacing:0.394667pt;}
.ws9a_c01056{word-spacing:0.416000pt;}
.ws99_c01056{word-spacing:0.426667pt;}
.ws28_c01056{word-spacing:0.427520pt;}
.ws3e_c01056{word-spacing:0.432000pt;}
.ws7d_c01056{word-spacing:0.474667pt;}
.ws3c_c01056{word-spacing:0.522667pt;}
.ws96_c01056{word-spacing:0.533333pt;}
.ws39_c01056{word-spacing:0.538667pt;}
.wsb6_c01056{word-spacing:0.544000pt;}
.wsdb_c01056{word-spacing:0.581333pt;}
.wscf_c01056{word-spacing:0.592000pt;}
.ws7b_c01056{word-spacing:0.597333pt;}
.ws98_c01056{word-spacing:0.608000pt;}
.ws3d_c01056{word-spacing:0.613333pt;}
.ws7e_c01056{word-spacing:0.634667pt;}
.ws2b_c01056{word-spacing:0.640000pt;}
.wsd7_c01056{word-spacing:0.645333pt;}
.wsb5_c01056{word-spacing:0.682667pt;}
.ws9d_c01056{word-spacing:0.688000pt;}
.wscb_c01056{word-spacing:0.693333pt;}
.wsb7_c01056{word-spacing:0.704000pt;}
.ws81_c01056{word-spacing:0.730667pt;}
.ws79_c01056{word-spacing:0.736000pt;}
.wsda_c01056{word-spacing:0.741333pt;}
.ws7f_c01056{word-spacing:0.746667pt;}
.wsbd_c01056{word-spacing:0.757333pt;}
.ws7c_c01056{word-spacing:0.826667pt;}
.wsbc_c01056{word-spacing:0.853333pt;}
.ws9c_c01056{word-spacing:0.858667pt;}
.wsb3_c01056{word-spacing:0.922667pt;}
.wsbb_c01056{word-spacing:0.933333pt;}
.wsb0_c01056{word-spacing:1.024000pt;}
.wsb1_c01056{word-spacing:1.056000pt;}
.wsaf_c01056{word-spacing:1.061333pt;}
.wsb2_c01056{word-spacing:1.066667pt;}
.wsae_c01056{word-spacing:1.168000pt;}
.wscc_c01056{word-spacing:1.173333pt;}
.wsad_c01056{word-spacing:1.253333pt;}
.ws78_c01056{word-spacing:1.349333pt;}
.wsb4_c01056{word-spacing:1.536000pt;}
.ws77_c01056{word-spacing:1.573333pt;}
.ws48_c01056{word-spacing:1.664000pt;}
.wsdc_c01056{word-spacing:1.806080pt;}
.wsdd_c01056{word-spacing:1.912320pt;}
.ws4a_c01056{word-spacing:1.968000pt;}
.ws4b_c01056{word-spacing:2.069333pt;}
.ws4c_c01056{word-spacing:2.197333pt;}
.ws42_c01056{word-spacing:2.405333pt;}
.ws49_c01056{word-spacing:2.442667pt;}
.ws4d_c01056{word-spacing:2.522667pt;}
.ws43_c01056{word-spacing:2.762667pt;}
.ws45_c01056{word-spacing:2.874667pt;}
.ws46_c01056{word-spacing:2.944000pt;}
.ws47_c01056{word-spacing:2.997333pt;}
.ws20_c01056{word-spacing:3.044480pt;}
.ws44_c01056{word-spacing:3.088000pt;}
.ws1e_c01056{word-spacing:3.301760pt;}
.ws22_c01056{word-spacing:3.387520pt;}
.ws1d_c01056{word-spacing:3.687680pt;}
.ws2d_c01056{word-spacing:3.877333pt;}
.ws2f_c01056{word-spacing:3.888000pt;}
.wsc9_c01056{word-spacing:4.042667pt;}
.ws34_c01056{word-spacing:4.112000pt;}
.ws2c_c01056{word-spacing:4.181333pt;}
.ws33_c01056{word-spacing:4.218667pt;}
.ws31_c01056{word-spacing:4.240000pt;}
.ws2e_c01056{word-spacing:4.357333pt;}
.wsc6_c01056{word-spacing:4.400000pt;}
.ws32_c01056{word-spacing:4.442667pt;}
.wsc4_c01056{word-spacing:4.517333pt;}
.ws88_c01056{word-spacing:4.522667pt;}
.wsc8_c01056{word-spacing:4.682667pt;}
.wsc3_c01056{word-spacing:4.720000pt;}
.ws63_c01056{word-spacing:4.826667pt;}
.ws36_c01056{word-spacing:4.832000pt;}
.wsdf_c01056{word-spacing:4.993280pt;}
.ws92_c01056{word-spacing:4.997333pt;}
.ws90_c01056{word-spacing:5.008000pt;}
.ws8d_c01056{word-spacing:5.066667pt;}
.ws8f_c01056{word-spacing:5.098667pt;}
.ws30_c01056{word-spacing:5.168000pt;}
.wsc5_c01056{word-spacing:5.173333pt;}
.wsc7_c01056{word-spacing:5.205333pt;}
.ws37_c01056{word-spacing:5.210667pt;}
.ws89_c01056{word-spacing:5.264000pt;}
.ws93_c01056{word-spacing:5.301333pt;}
.ws8e_c01056{word-spacing:5.306667pt;}
.ws38_c01056{word-spacing:5.317333pt;}
.ws8a_c01056{word-spacing:5.322667pt;}
.ws59_c01056{word-spacing:5.376000pt;}
.ws35_c01056{word-spacing:5.397333pt;}
.wsde_c01056{word-spacing:5.471360pt;}
.ws8b_c01056{word-spacing:5.477333pt;}
.ws91_c01056{word-spacing:5.637333pt;}
.ws5c_c01056{word-spacing:5.738667pt;}
.ws62_c01056{word-spacing:5.792000pt;}
.ws94_c01056{word-spacing:5.808000pt;}
.ws8c_c01056{word-spacing:5.813333pt;}
.ws58_c01056{word-spacing:5.856000pt;}
.ws61_c01056{word-spacing:5.952000pt;}
.ws5b_c01056{word-spacing:6.000000pt;}
.ws5d_c01056{word-spacing:6.021333pt;}
.ws54_c01056{word-spacing:6.106667pt;}
.ws56_c01056{word-spacing:6.133333pt;}
.ws57_c01056{word-spacing:6.181333pt;}
.ws60_c01056{word-spacing:6.240000pt;}
.ws50_c01056{word-spacing:6.261333pt;}
.ws5a_c01056{word-spacing:6.288000pt;}
.ws5f_c01056{word-spacing:6.320000pt;}
.wsa1_c01056{word-spacing:6.426667pt;}
.ws4f_c01056{word-spacing:6.480000pt;}
.ws55_c01056{word-spacing:6.538667pt;}
.ws5e_c01056{word-spacing:6.565333pt;}
.ws53_c01056{word-spacing:6.592000pt;}
.ws52_c01056{word-spacing:6.672000pt;}
.ws51_c01056{word-spacing:6.746667pt;}
.ws9f_c01056{word-spacing:6.762667pt;}
.wsa0_c01056{word-spacing:6.906667pt;}
.wsa4_c01056{word-spacing:7.066667pt;}
.wsa2_c01056{word-spacing:7.226667pt;}
.wsa3_c01056{word-spacing:7.333333pt;}
.wsa5_c01056{word-spacing:7.386667pt;}
.wsac_c01056{word-spacing:7.594667pt;}
.wsa7_c01056{word-spacing:7.616000pt;}
.ws68_c01056{word-spacing:7.712000pt;}
.wsa6_c01056{word-spacing:7.749333pt;}
.ws66_c01056{word-spacing:7.765333pt;}
.wsaa_c01056{word-spacing:7.866667pt;}
.wsa8_c01056{word-spacing:7.872000pt;}
.ws65_c01056{word-spacing:7.882667pt;}
.wsa9_c01056{word-spacing:7.946667pt;}
.ws64_c01056{word-spacing:8.090667pt;}
.ws76_c01056{word-spacing:8.128000pt;}
.ws75_c01056{word-spacing:8.208000pt;}
.ws67_c01056{word-spacing:8.234667pt;}
.ws6b_c01056{word-spacing:8.341333pt;}
.ws6c_c01056{word-spacing:8.352000pt;}
.ws6a_c01056{word-spacing:8.453333pt;}
.ws6d_c01056{word-spacing:8.469333pt;}
.wsab_c01056{word-spacing:8.506667pt;}
.ws69_c01056{word-spacing:8.672000pt;}
.ws6f_c01056{word-spacing:8.682667pt;}
.ws70_c01056{word-spacing:8.709333pt;}
.ws71_c01056{word-spacing:8.885333pt;}
.ws6e_c01056{word-spacing:8.976000pt;}
.ws73_c01056{word-spacing:9.024000pt;}
.ws72_c01056{word-spacing:9.056000pt;}
.ws74_c01056{word-spacing:9.120000pt;}
._0_c01056{margin-left:-1.344000pt;}
._1_c01056{width:1.152000pt;}
._5_c01056{width:2.499840pt;}
._6_c01056{width:3.601920pt;}
._8_c01056{width:5.518080pt;}
._3_c01056{width:8.453120pt;}
._7_c01056{width:96.145920pt;}
._2_c01056{width:232.844160pt;}
._4_c01056{width:292.999040pt;}
.fs4_c01056{font-size:34.560000pt;}
.fs1_c01056{font-size:42.880000pt;}
.fs2_c01056{font-size:53.120000pt;}
.fs0_c01056{font-size:64.000000pt;}
.fs5_c01056{font-size:74.880000pt;}
.fs3_c01056{font-size:106.880000pt;}
.y0_c01056{bottom:0.000000pt;}
.y2_c01056{bottom:13.600000pt;}
.yb_c01056{bottom:60.160000pt;}
.ya_c01056{bottom:75.840000pt;}
.y9_c01056{bottom:88.960000pt;}
.y8_c01056{bottom:101.920000pt;}
.y7_c01056{bottom:114.880000pt;}
.y2a_c01056{bottom:174.718400pt;}
.y29_c01056{bottom:194.240000pt;}
.y28_c01056{bottom:221.920000pt;}
.y27_c01056{bottom:265.125333pt;}
.y26_c01056{bottom:291.525333pt;}
.y25_c01056{bottom:328.778667pt;}
.y24_c01056{bottom:348.309333pt;}
.y23_c01056{bottom:367.840000pt;}
.y22_c01056{bottom:387.370667pt;}
.y21_c01056{bottom:406.901333pt;}
.y20_c01056{bottom:426.432000pt;}
.y1f_c01056{bottom:445.962667pt;}
.y1e_c01056{bottom:465.493333pt;}
.y1d_c01056{bottom:485.024000pt;}
.y1c_c01056{bottom:504.554667pt;}
.y1b_c01056{bottom:524.085333pt;}
.y1a_c01056{bottom:543.616000pt;}
.y19_c01056{bottom:563.146667pt;}
.y18_c01056{bottom:582.677333pt;}
.y17_c01056{bottom:602.208000pt;}
.y16_c01056{bottom:621.738667pt;}
.y15_c01056{bottom:641.269333pt;}
.y14_c01056{bottom:660.800000pt;}
.y13_c01056{bottom:687.200000pt;}
.y12_c01056{bottom:767.197760pt;}
.y11_c01056{bottom:780.319040pt;}
.y10_c01056{bottom:793.279467pt;}
.yf_c01056{bottom:819.360000pt;}
.ye_c01056{bottom:832.320000pt;}
.yd_c01056{bottom:848.320000pt;}
.yc_c01056{bottom:894.560000pt;}
.y6_c01056{bottom:955.996480pt;}
.y5_c01056{bottom:969.117760pt;}
.y4_c01056{bottom:982.078240pt;}
.y3_c01056{bottom:995.038667pt;}
.y1_c01056{bottom:1018.240000pt;}
.h2_c01056{height:28.800000pt;}
.h5_c01056{height:30.778125pt;}
.h4_c01056{height:30.778338pt;}
.hb_c01056{height:30.787085pt;}
.h6_c01056{height:31.134062pt;}
.ha_c01056{height:36.909063pt;}
.hc_c01056{height:38.128125pt;}
.h7_c01056{height:38.569063pt;}
.h9_c01056{height:43.366250pt;}
.h3_c01056{height:46.468750pt;}
.hd_c01056{height:54.368437pt;}
.h8_c01056{height:77.602812pt;}
.h0_c01056{height:1122.560000pt;}
.h1_c01056{height:1122.666667pt;}
.w2_c01056{width:656.958667pt;}
.w0_c01056{width:793.760000pt;}
.w1_c01056{width:794.000000pt;}
.x0_c01056{left:0.000000pt;}
.x2_c01056{left:7.040000pt;}
.x1_c01056{left:68.480000pt;}
.x3_c01056{left:75.520000pt;}
.x4_c01056{left:393.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9126fb2f513569aec9a435da.woff2')format("woff");}.ff1_c01057{font-family:ff1_c01057;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01057;src:url('chunks/assets/font_b181fd72286118386849ea8d.woff2')format("woff");}.ff2_c01057{font-family:ff2_c01057;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01057;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff3_c01057{font-family:ff3_c01057;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls12_c01057{letter-spacing:-0.298800px;}
.lse_c01057{letter-spacing:-0.239040px;}
.lsd_c01057{letter-spacing:-0.119520px;}
.lsf_c01057{letter-spacing:-0.059760px;}
.lsc_c01057{letter-spacing:0.000000px;}
.ls2_c01057{letter-spacing:0.053784px;}
.ls11_c01057{letter-spacing:0.059760px;}
.ls10_c01057{letter-spacing:0.084240px;}
.ls13_c01057{letter-spacing:0.168480px;}
.ls0_c01057{letter-spacing:0.179280px;}
.ls14_c01057{letter-spacing:0.239040px;}
.ls9_c01057{letter-spacing:0.298800px;}
.lsb_c01057{letter-spacing:0.358560px;}
.ls3_c01057{letter-spacing:2.330640px;}
.ls8_c01057{letter-spacing:2.336616px;}
.ls7_c01057{letter-spacing:3.047760px;}
.ls4_c01057{letter-spacing:3.764880px;}
.ls1_c01057{letter-spacing:4.482000px;}
.ls6_c01057{letter-spacing:5.199120px;}
.lsa_c01057{letter-spacing:6.633360px;}
.ls5_c01057{letter-spacing:8.067600px;}
.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;}
}
.ws6_c01057{word-spacing:-19.206720px;}
.ws3_c01057{word-spacing:-19.122480px;}
.ws5_c01057{word-spacing:-13.565520px;}
.ws0_c01057{word-spacing:-13.505760px;}
.ws2_c01057{word-spacing:-13.446000px;}
.ws1_c01057{word-spacing:-13.386240px;}
.ws4_c01057{word-spacing:-13.266720px;}
.wsb_c01057{word-spacing:-0.298800px;}
.ws29_c01057{word-spacing:-0.239040px;}
.ws8_c01057{word-spacing:-0.179280px;}
.ws11_c01057{word-spacing:-0.119520px;}
.ws7_c01057{word-spacing:0.000000px;}
.wse_c01057{word-spacing:0.059760px;}
.ws14_c01057{word-spacing:0.119520px;}
.ws1f_c01057{word-spacing:0.239040px;}
.ws1a_c01057{word-spacing:0.298800px;}
.wsc_c01057{word-spacing:0.418320px;}
.ws28_c01057{word-spacing:0.537840px;}
.ws27_c01057{word-spacing:0.597600px;}
.ws26_c01057{word-spacing:1.135440px;}
.ws25_c01057{word-spacing:1.314720px;}
.ws10_c01057{word-spacing:2.031840px;}
.ws1d_c01057{word-spacing:2.390400px;}
.wsf_c01057{word-spacing:2.569680px;}
.wsd_c01057{word-spacing:2.748960px;}
.ws1e_c01057{word-spacing:3.107520px;}
.ws1c_c01057{word-spacing:3.286800px;}
.ws12_c01057{word-spacing:3.466080px;}
.ws1b_c01057{word-spacing:3.824640px;}
.ws13_c01057{word-spacing:4.003920px;}
.ws9_c01057{word-spacing:4.183200px;}
.ws19_c01057{word-spacing:4.541760px;}
.wsa_c01057{word-spacing:4.721040px;}
.ws24_c01057{word-spacing:5.438160px;}
.ws23_c01057{word-spacing:6.334560px;}
.ws22_c01057{word-spacing:6.454080px;}
.ws20_c01057{word-spacing:6.872400px;}
.ws15_c01057{word-spacing:7.768800px;}
.ws17_c01057{word-spacing:8.127360px;}
.ws18_c01057{word-spacing:8.306640px;}
.ws16_c01057{word-spacing:8.844480px;}
.ws21_c01057{word-spacing:9.800640px;}
._0_c01057{margin-left:-1.231056px;}
._1_c01057{width:1.308744px;}
._2_c01057{width:2.611512px;}
._4_c01057{width:4.201128px;}
._3_c01057{width:108.164160px;}
.fc1_c01057{color:rgb(0,0,255);}
.fc0_c01057{color:rgb(0,0,0);}
.fs1_c01057{font-size:54.000000px;}
.fs0_c01057{font-size:59.760000px;}
.fs2_c01057{font-size:84.240000px;}
.y0_c01057{bottom:0.000000px;}
.y3_c01057{bottom:71.280000px;}
.y2_c01057{bottom:88.740000px;}
.y2f_c01057{bottom:138.953520px;}
.y2e_c01057{bottom:161.094600px;}
.y2d_c01057{bottom:183.056400px;}
.y2c_c01057{bottom:205.018200px;}
.y2b_c01057{bottom:226.980000px;}
.y2a_c01057{bottom:258.120000px;}
.y29_c01057{bottom:285.626520px;}
.y28_c01057{bottom:307.588320px;}
.y27_c01057{bottom:329.550120px;}
.y26_c01057{bottom:351.511920px;}
.y25_c01057{bottom:373.473720px;}
.y24_c01057{bottom:395.435520px;}
.y23_c01057{bottom:417.397320px;}
.y22_c01057{bottom:439.538400px;}
.y21_c01057{bottom:461.500200px;}
.y20_c01057{bottom:483.462000px;}
.y1f_c01057{bottom:505.423800px;}
.y1e_c01057{bottom:527.385600px;}
.y1d_c01057{bottom:549.347400px;}
.y1c_c01057{bottom:571.309200px;}
.y1b_c01057{bottom:593.271000px;}
.y1a_c01057{bottom:615.232800px;}
.y19_c01057{bottom:637.194600px;}
.y18_c01057{bottom:659.156400px;}
.y17_c01057{bottom:681.118200px;}
.y16_c01057{bottom:703.080000px;}
.y15_c01057{bottom:734.400000px;}
.y14_c01057{bottom:758.331000px;}
.y13_c01057{bottom:780.113520px;}
.y12_c01057{bottom:802.075320px;}
.y11_c01057{bottom:824.216400px;}
.y10_c01057{bottom:846.178200px;}
.yf_c01057{bottom:868.140000px;}
.ye_c01057{bottom:899.280000px;}
.yd_c01057{bottom:923.203620px;}
.yc_c01057{bottom:945.165420px;}
.yb_c01057{bottom:967.127220px;}
.ya_c01057{bottom:989.089020px;}
.y9_c01057{bottom:1011.050820px;}
.y8_c01057{bottom:1033.012620px;}
.y7_c01057{bottom:1054.974420px;}
.y6_c01057{bottom:1076.936220px;}
.y5_c01057{bottom:1098.898020px;}
.y4_c01057{bottom:1120.859820px;}
.y1_c01057{bottom:1163.520000px;}
.h3_c01057{height:35.991211px;}
.h4_c01057{height:42.894141px;}
.h2_c01057{height:43.390195px;}
.h5_c01057{height:61.164492px;}
.h0_c01057{height:1262.880000px;}
.h1_c01057{height:1263.000000px;}
.w0_c01057{width:892.980000px;}
.w1_c01057{width:893.250000px;}
.x0_c01057{left:0.000000px;}
.x1_c01057{left:84.960000px;}
.x4_c01057{left:99.866520px;}
.x3_c01057{left:442.620000px;}
.x2_c01057{left:446.400000px;}
@media print{
.v0_c01057{vertical-align:0.000000pt;}
.ls12_c01057{letter-spacing:-0.265600pt;}
.lse_c01057{letter-spacing:-0.212480pt;}
.lsd_c01057{letter-spacing:-0.106240pt;}
.lsf_c01057{letter-spacing:-0.053120pt;}
.lsc_c01057{letter-spacing:0.000000pt;}
.ls2_c01057{letter-spacing:0.047808pt;}
.ls11_c01057{letter-spacing:0.053120pt;}
.ls10_c01057{letter-spacing:0.074880pt;}
.ls13_c01057{letter-spacing:0.149760pt;}
.ls0_c01057{letter-spacing:0.159360pt;}
.ls14_c01057{letter-spacing:0.212480pt;}
.ls9_c01057{letter-spacing:0.265600pt;}
.lsb_c01057{letter-spacing:0.318720pt;}
.ls3_c01057{letter-spacing:2.071680pt;}
.ls8_c01057{letter-spacing:2.076992pt;}
.ls7_c01057{letter-spacing:2.709120pt;}
.ls4_c01057{letter-spacing:3.346560pt;}
.ls1_c01057{letter-spacing:3.984000pt;}
.ls6_c01057{letter-spacing:4.621440pt;}
.lsa_c01057{letter-spacing:5.896320pt;}
.ls5_c01057{letter-spacing:7.171200pt;}
.ws6_c01057{word-spacing:-17.072640pt;}
.ws3_c01057{word-spacing:-16.997760pt;}
.ws5_c01057{word-spacing:-12.058240pt;}
.ws0_c01057{word-spacing:-12.005120pt;}
.ws2_c01057{word-spacing:-11.952000pt;}
.ws1_c01057{word-spacing:-11.898880pt;}
.ws4_c01057{word-spacing:-11.792640pt;}
.wsb_c01057{word-spacing:-0.265600pt;}
.ws29_c01057{word-spacing:-0.212480pt;}
.ws8_c01057{word-spacing:-0.159360pt;}
.ws11_c01057{word-spacing:-0.106240pt;}
.ws7_c01057{word-spacing:0.000000pt;}
.wse_c01057{word-spacing:0.053120pt;}
.ws14_c01057{word-spacing:0.106240pt;}
.ws1f_c01057{word-spacing:0.212480pt;}
.ws1a_c01057{word-spacing:0.265600pt;}
.wsc_c01057{word-spacing:0.371840pt;}
.ws28_c01057{word-spacing:0.478080pt;}
.ws27_c01057{word-spacing:0.531200pt;}
.ws26_c01057{word-spacing:1.009280pt;}
.ws25_c01057{word-spacing:1.168640pt;}
.ws10_c01057{word-spacing:1.806080pt;}
.ws1d_c01057{word-spacing:2.124800pt;}
.wsf_c01057{word-spacing:2.284160pt;}
.wsd_c01057{word-spacing:2.443520pt;}
.ws1e_c01057{word-spacing:2.762240pt;}
.ws1c_c01057{word-spacing:2.921600pt;}
.ws12_c01057{word-spacing:3.080960pt;}
.ws1b_c01057{word-spacing:3.399680pt;}
.ws13_c01057{word-spacing:3.559040pt;}
.ws9_c01057{word-spacing:3.718400pt;}
.ws19_c01057{word-spacing:4.037120pt;}
.wsa_c01057{word-spacing:4.196480pt;}
.ws24_c01057{word-spacing:4.833920pt;}
.ws23_c01057{word-spacing:5.630720pt;}
.ws22_c01057{word-spacing:5.736960pt;}
.ws20_c01057{word-spacing:6.108800pt;}
.ws15_c01057{word-spacing:6.905600pt;}
.ws17_c01057{word-spacing:7.224320pt;}
.ws18_c01057{word-spacing:7.383680pt;}
.ws16_c01057{word-spacing:7.861760pt;}
.ws21_c01057{word-spacing:8.711680pt;}
._0_c01057{margin-left:-1.094272pt;}
._1_c01057{width:1.163328pt;}
._2_c01057{width:2.321344pt;}
._4_c01057{width:3.734336pt;}
._3_c01057{width:96.145920pt;}
.fs1_c01057{font-size:48.000000pt;}
.fs0_c01057{font-size:53.120000pt;}
.fs2_c01057{font-size:74.880000pt;}
.y0_c01057{bottom:0.000000pt;}
.y3_c01057{bottom:63.360000pt;}
.y2_c01057{bottom:78.880000pt;}
.y2f_c01057{bottom:123.514240pt;}
.y2e_c01057{bottom:143.195200pt;}
.y2d_c01057{bottom:162.716800pt;}
.y2c_c01057{bottom:182.238400pt;}
.y2b_c01057{bottom:201.760000pt;}
.y2a_c01057{bottom:229.440000pt;}
.y29_c01057{bottom:253.890240pt;}
.y28_c01057{bottom:273.411840pt;}
.y27_c01057{bottom:292.933440pt;}
.y26_c01057{bottom:312.455040pt;}
.y25_c01057{bottom:331.976640pt;}
.y24_c01057{bottom:351.498240pt;}
.y23_c01057{bottom:371.019840pt;}
.y22_c01057{bottom:390.700800pt;}
.y21_c01057{bottom:410.222400pt;}
.y20_c01057{bottom:429.744000pt;}
.y1f_c01057{bottom:449.265600pt;}
.y1e_c01057{bottom:468.787200pt;}
.y1d_c01057{bottom:488.308800pt;}
.y1c_c01057{bottom:507.830400pt;}
.y1b_c01057{bottom:527.352000pt;}
.y1a_c01057{bottom:546.873600pt;}
.y19_c01057{bottom:566.395200pt;}
.y18_c01057{bottom:585.916800pt;}
.y17_c01057{bottom:605.438400pt;}
.y16_c01057{bottom:624.960000pt;}
.y15_c01057{bottom:652.800000pt;}
.y14_c01057{bottom:674.072000pt;}
.y13_c01057{bottom:693.434240pt;}
.y12_c01057{bottom:712.955840pt;}
.y11_c01057{bottom:732.636800pt;}
.y10_c01057{bottom:752.158400pt;}
.yf_c01057{bottom:771.680000pt;}
.ye_c01057{bottom:799.360000pt;}
.yd_c01057{bottom:820.625440pt;}
.yc_c01057{bottom:840.147040pt;}
.yb_c01057{bottom:859.668640pt;}
.ya_c01057{bottom:879.190240pt;}
.y9_c01057{bottom:898.711840pt;}
.y8_c01057{bottom:918.233440pt;}
.y7_c01057{bottom:937.755040pt;}
.y6_c01057{bottom:957.276640pt;}
.y5_c01057{bottom:976.798240pt;}
.y4_c01057{bottom:996.319840pt;}
.y1_c01057{bottom:1034.240000pt;}
.h3_c01057{height:31.992188pt;}
.h4_c01057{height:38.128125pt;}
.h2_c01057{height:38.569063pt;}
.h5_c01057{height:54.368437pt;}
.h0_c01057{height:1122.560000pt;}
.h1_c01057{height:1122.666667pt;}
.w0_c01057{width:793.760000pt;}
.w1_c01057{width:794.000000pt;}
.x0_c01057{left:0.000000pt;}
.x1_c01057{left:75.520000pt;}
.x4_c01057{left:88.770240pt;}
.x3_c01057{left:393.440000pt;}
.x2_c01057{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_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_8dad38ddd8b18fda777ef825.woff2')format("woff");}.ff1_c01058{font-family:ff1_c01058;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01058;src:url('chunks/assets/font_9945b5ae856dbceab04d484b.woff2')format("woff");}.ff2_c01058{font-family:ff2_c01058;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01058;src:url('chunks/assets/font_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff3_c01058{font-family:ff3_c01058;line-height:0.910645;font-style: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;}
.lsf_c01058{letter-spacing:-0.298800px;}
.ls9_c01058{letter-spacing:-0.239040px;}
.lsc_c01058{letter-spacing:-0.119520px;}
.lsb_c01058{letter-spacing:-0.059760px;}
.ls8_c01058{letter-spacing:0.000000px;}
.lsa_c01058{letter-spacing:0.059760px;}
.lse_c01058{letter-spacing:0.119520px;}
.ls1_c01058{letter-spacing:0.179280px;}
.lsd_c01058{letter-spacing:0.298800px;}
.ls7_c01058{letter-spacing:0.358560px;}
.ls5_c01058{letter-spacing:0.896400px;}
.ls4_c01058{letter-spacing:1.613520px;}
.ls3_c01058{letter-spacing:5.199120px;}
.ls2_c01058{letter-spacing:5.916240px;}
.ls0_c01058{letter-spacing:43.385760px;}
.ls6_c01058{letter-spacing:849.070080px;}
.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;}
}
.ws2_c01058{word-spacing:-13.565520px;}
.ws0_c01058{word-spacing:-13.505760px;}
.ws3_c01058{word-spacing:-13.446000px;}
.ws1_c01058{word-spacing:-13.386240px;}
.ws4_c01058{word-spacing:-13.266720px;}
.ws5_c01058{word-spacing:-0.179280px;}
.ws12_c01058{word-spacing:-0.119520px;}
.ws6_c01058{word-spacing:0.000000px;}
.ws8_c01058{word-spacing:0.119520px;}
.wsa_c01058{word-spacing:0.179280px;}
.ws9_c01058{word-spacing:0.239040px;}
.ws7_c01058{word-spacing:0.418320px;}
.ws13_c01058{word-spacing:0.478080px;}
.ws10_c01058{word-spacing:0.597600px;}
.ws11_c01058{word-spacing:0.776880px;}
.wsf_c01058{word-spacing:1.135440px;}
.wsd_c01058{word-spacing:5.258880px;}
.wse_c01058{word-spacing:5.438160px;}
.wsc_c01058{word-spacing:5.736960px;}
.wsb_c01058{word-spacing:6.155280px;}
._0_c01058{margin-left:-1.231056px;}
._1_c01058{width:1.123488px;}
._2_c01058{width:5.246928px;}
.fc1_c01058{color:rgb(0,0,0);}
.fc0_c01058{color:rgb(0,0,255);}
.fs1_c01058{font-size:54.000000px;}
.fs0_c01058{font-size:59.760000px;}
.y0_c01058{bottom:0.000000px;}
.y3_c01058{bottom:67.680000px;}
.y2_c01058{bottom:85.680000px;}
.yf_c01058{bottom:229.300920px;}
.ye_c01058{bottom:251.262720px;}
.yd_c01058{bottom:273.224520px;}
.yc_c01058{bottom:295.186320px;}
.yb_c01058{bottom:317.148120px;}
.ya_c01058{bottom:339.109920px;}
.y9_c01058{bottom:361.071720px;}
.y8_c01058{bottom:379.432980px;}
.y7_c01058{bottom:397.435680px;}
.y6_c01058{bottom:841.676580px;}
.y5_c01058{bottom:860.037840px;}
.y4_c01058{bottom:877.861260px;}
.y1_c01058{bottom:1163.520000px;}
.h3_c01058{height:38.759766px;}
.h4_c01058{height:42.894141px;}
.h2_c01058{height:43.390195px;}
.h0_c01058{height:1262.880000px;}
.h1_c01058{height:1263.000000px;}
.w0_c01058{width:892.980000px;}
.w1_c01058{width:893.250000px;}
.x0_c01058{left:0.000000px;}
.x1_c01058{left:84.960000px;}
.x5_c01058{left:99.896400px;}
.x3_c01058{left:442.620000px;}
.x2_c01058{left:446.400000px;}
.x4_c01058{left:807.126120px;}
@media print{
.v0_c01058{vertical-align:0.000000pt;}
.lsf_c01058{letter-spacing:-0.265600pt;}
.ls9_c01058{letter-spacing:-0.212480pt;}
.lsc_c01058{letter-spacing:-0.106240pt;}
.lsb_c01058{letter-spacing:-0.053120pt;}
.ls8_c01058{letter-spacing:0.000000pt;}
.lsa_c01058{letter-spacing:0.053120pt;}
.lse_c01058{letter-spacing:0.106240pt;}
.ls1_c01058{letter-spacing:0.159360pt;}
.lsd_c01058{letter-spacing:0.265600pt;}
.ls7_c01058{letter-spacing:0.318720pt;}
.ls5_c01058{letter-spacing:0.796800pt;}
.ls4_c01058{letter-spacing:1.434240pt;}
.ls3_c01058{letter-spacing:4.621440pt;}
.ls2_c01058{letter-spacing:5.258880pt;}
.ls0_c01058{letter-spacing:38.565120pt;}
.ls6_c01058{letter-spacing:754.728960pt;}
.ws2_c01058{word-spacing:-12.058240pt;}
.ws0_c01058{word-spacing:-12.005120pt;}
.ws3_c01058{word-spacing:-11.952000pt;}
.ws1_c01058{word-spacing:-11.898880pt;}
.ws4_c01058{word-spacing:-11.792640pt;}
.ws5_c01058{word-spacing:-0.159360pt;}
.ws12_c01058{word-spacing:-0.106240pt;}
.ws6_c01058{word-spacing:0.000000pt;}
.ws8_c01058{word-spacing:0.106240pt;}
.wsa_c01058{word-spacing:0.159360pt;}
.ws9_c01058{word-spacing:0.212480pt;}
.ws7_c01058{word-spacing:0.371840pt;}
.ws13_c01058{word-spacing:0.424960pt;}
.ws10_c01058{word-spacing:0.531200pt;}
.ws11_c01058{word-spacing:0.690560pt;}
.wsf_c01058{word-spacing:1.009280pt;}
.wsd_c01058{word-spacing:4.674560pt;}
.wse_c01058{word-spacing:4.833920pt;}
.wsc_c01058{word-spacing:5.099520pt;}
.wsb_c01058{word-spacing:5.471360pt;}
._0_c01058{margin-left:-1.094272pt;}
._1_c01058{width:0.998656pt;}
._2_c01058{width:4.663936pt;}
.fs1_c01058{font-size:48.000000pt;}
.fs0_c01058{font-size:53.120000pt;}
.y0_c01058{bottom:0.000000pt;}
.y3_c01058{bottom:60.160000pt;}
.y2_c01058{bottom:76.160000pt;}
.yf_c01058{bottom:203.823040pt;}
.ye_c01058{bottom:223.344640pt;}
.yd_c01058{bottom:242.866240pt;}
.yc_c01058{bottom:262.387840pt;}
.yb_c01058{bottom:281.909440pt;}
.ya_c01058{bottom:301.431040pt;}
.y9_c01058{bottom:320.952640pt;}
.y8_c01058{bottom:337.273760pt;}
.y7_c01058{bottom:353.276160pt;}
.y6_c01058{bottom:748.156960pt;}
.y5_c01058{bottom:764.478080pt;}
.y4_c01058{bottom:780.321120pt;}
.y1_c01058{bottom:1034.240000pt;}
.h3_c01058{height:34.453125pt;}
.h4_c01058{height:38.128125pt;}
.h2_c01058{height:38.569063pt;}
.h0_c01058{height:1122.560000pt;}
.h1_c01058{height:1122.666667pt;}
.w0_c01058{width:793.760000pt;}
.w1_c01058{width:794.000000pt;}
.x0_c01058{left:0.000000pt;}
.x1_c01058{left:75.520000pt;}
.x5_c01058{left:88.796800pt;}
.x3_c01058{left:393.440000pt;}
.x2_c01058{left:396.800000pt;}
.x4_c01058{left:717.445440pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f66806e77b87e999be1b3192.woff2')format("woff");}.ff1_c01059{font-family:ff1_c01059;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01059;src:url('chunks/assets/font_b8c56e8a043e6e5b83038e61.woff2')format("woff");}.ff2_c01059{font-family:ff2_c01059;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01059;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff3_c01059{font-family:ff3_c01059;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01059;src:url('chunks/assets/font_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff4_c01059{font-family:ff4_c01059;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01059{vertical-align:0.000000px;}
.ls17_c01059{letter-spacing:-0.776880px;}
.ls16_c01059{letter-spacing:-0.478080px;}
.lsd_c01059{letter-spacing:-0.298800px;}
.lse_c01059{letter-spacing:-0.239040px;}
.ls15_c01059{letter-spacing:-0.179280px;}
.ls14_c01059{letter-spacing:-0.119520px;}
.lsf_c01059{letter-spacing:-0.059760px;}
.lsc_c01059{letter-spacing:0.000000px;}
.ls3_c01059{letter-spacing:0.119520px;}
.ls6_c01059{letter-spacing:0.174240px;}
.ls0_c01059{letter-spacing:0.179280px;}
.ls10_c01059{letter-spacing:0.239040px;}
.ls11_c01059{letter-spacing:0.298800px;}
.lsb_c01059{letter-spacing:0.358560px;}
.ls12_c01059{letter-spacing:0.418320px;}
.ls13_c01059{letter-spacing:0.657360px;}
.ls2_c01059{letter-spacing:0.794808px;}
.ls5_c01059{letter-spacing:1.613520px;}
.ls4_c01059{letter-spacing:2.334240px;}
.ls9_c01059{letter-spacing:5.199120px;}
.ls7_c01059{letter-spacing:5.916240px;}
.ls8_c01059{letter-spacing:31.134240px;}
.ls1_c01059{letter-spacing:61.373520px;}
.lsa_c01059{letter-spacing:849.060000px;}
.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;}
}
.ws2_c01059{word-spacing:-14.163120px;}
.ws1_c01059{word-spacing:-13.804560px;}
.ws6_c01059{word-spacing:-13.744800px;}
.ws8_c01059{word-spacing:-13.685040px;}
.ws0_c01059{word-spacing:-13.505760px;}
.ws4_c01059{word-spacing:-13.446000px;}
.ws3_c01059{word-spacing:-13.386240px;}
.ws5_c01059{word-spacing:-13.326480px;}
.ws7_c01059{word-spacing:-13.266720px;}
.ws20_c01059{word-spacing:-0.298800px;}
.ws13_c01059{word-spacing:-0.239040px;}
.wsa_c01059{word-spacing:-0.179280px;}
.ws17_c01059{word-spacing:-0.119520px;}
.ws9_c01059{word-spacing:0.000000px;}
.ws12_c01059{word-spacing:0.059760px;}
.ws1b_c01059{word-spacing:0.119520px;}
.wsd_c01059{word-spacing:0.239040px;}
.wsc_c01059{word-spacing:0.418320px;}
.wsb_c01059{word-spacing:0.478080px;}
.ws29_c01059{word-spacing:0.597600px;}
.ws34_c01059{word-spacing:0.776880px;}
.ws28_c01059{word-spacing:1.135440px;}
.ws18_c01059{word-spacing:1.314720px;}
.ws1d_c01059{word-spacing:1.673280px;}
.ws39_c01059{word-spacing:1.852560px;}
.wse_c01059{word-spacing:1.972080px;}
.wsf_c01059{word-spacing:2.151360px;}
.ws16_c01059{word-spacing:2.390400px;}
.ws2a_c01059{word-spacing:3.286800px;}
.ws22_c01059{word-spacing:4.302720px;}
.ws2c_c01059{word-spacing:4.541760px;}
.ws35_c01059{word-spacing:5.258880px;}
.ws15_c01059{word-spacing:5.438160px;}
.ws2f_c01059{word-spacing:5.736960px;}
.ws2e_c01059{word-spacing:5.976000px;}
.ws38_c01059{word-spacing:6.155280px;}
.ws24_c01059{word-spacing:6.334560px;}
.ws25_c01059{word-spacing:6.693120px;}
.ws30_c01059{word-spacing:7.589520px;}
.ws37_c01059{word-spacing:8.127360px;}
.ws36_c01059{word-spacing:8.187120px;}
.ws33_c01059{word-spacing:8.306640px;}
.ws19_c01059{word-spacing:8.844480px;}
.ws23_c01059{word-spacing:9.800640px;}
.ws21_c01059{word-spacing:10.697040px;}
.ws2d_c01059{word-spacing:11.414160px;}
.ws10_c01059{word-spacing:12.967920px;}
.ws1c_c01059{word-spacing:13.924080px;}
.ws1a_c01059{word-spacing:14.103360px;}
.ws14_c01059{word-spacing:14.641200px;}
.ws11_c01059{word-spacing:14.820480px;}
.ws1f_c01059{word-spacing:16.434000px;}
.ws2b_c01059{word-spacing:21.095280px;}
.ws1e_c01059{word-spacing:21.812400px;}
.ws32_c01059{word-spacing:30.836160px;}
.ws31_c01059{word-spacing:31.374000px;}
.ws26_c01059{word-spacing:36.573120px;}
.ws27_c01059{word-spacing:36.991440px;}
._0_c01059{margin-left:-1.231056px;}
._1_c01059{width:1.141416px;}
._3_c01059{width:2.549088px;}
._9_c01059{width:4.051728px;}
._a_c01059{width:6.065640px;}
._7_c01059{width:7.709040px;}
._2_c01059{width:14.987808px;}
._4_c01059{width:16.768656px;}
._6_c01059{width:21.131136px;}
._8_c01059{width:31.032504px;}
._5_c01059{width:37.170720px;}
.fc1_c01059{color:rgb(0,0,255);}
.fc0_c01059{color:rgb(0,0,0);}
.fs1_c01059{font-size:54.000000px;}
.fs0_c01059{font-size:59.760000px;}
.fs2_c01059{font-size:84.240000px;}
.y0_c01059{bottom:0.000000px;}
.y6_c01059{bottom:29.520000px;}
.y9_c01059{bottom:51.480000px;}
.y15_c01059{bottom:51.659850px;}
.y3_c01059{bottom:71.280000px;}
.y2_c01059{bottom:88.740000px;}
.yf_c01059{bottom:95.400000px;}
.y33_c01059{bottom:178.908300px;}
.y32_c01059{bottom:206.442720px;}
.y31_c01059{bottom:228.404520px;}
.y30_c01059{bottom:250.366320px;}
.y2f_c01059{bottom:272.328120px;}
.y2e_c01059{bottom:294.289920px;}
.y2d_c01059{bottom:316.251720px;}
.y2c_c01059{bottom:338.213520px;}
.y2b_c01059{bottom:360.175320px;}
.y2a_c01059{bottom:382.137120px;}
.y29_c01059{bottom:404.278200px;}
.y28_c01059{bottom:426.240000px;}
.y26_c01059{bottom:442.800000px;}
.y27_c01059{bottom:450.360000px;}
.y21_c01059{bottom:488.340000px;}
.y25_c01059{bottom:495.894600px;}
.y24_c01059{bottom:517.856400px;}
.y23_c01059{bottom:539.818200px;}
.y22_c01059{bottom:561.780000px;}
.y1e_c01059{bottom:599.580000px;}
.y20_c01059{bottom:607.138200px;}
.y1f_c01059{bottom:629.100000px;}
.y18_c01059{bottom:667.080000px;}
.y1d_c01059{bottom:674.634600px;}
.y1c_c01059{bottom:696.596400px;}
.y1b_c01059{bottom:718.558200px;}
.y1a_c01059{bottom:718.560000px;}
.y19_c01059{bottom:740.520000px;}
.y14_c01059{bottom:778.320000px;}
.y17_c01059{bottom:786.058200px;}
.y16_c01059{bottom:808.020000px;}
.ye_c01059{bottom:845.820000px;}
.y13_c01059{bottom:853.374600px;}
.y12_c01059{bottom:875.336400px;}
.y11_c01059{bottom:897.298200px;}
.y10_c01059{bottom:919.260000px;}
.yc_c01059{bottom:957.240000px;}
.yd_c01059{bottom:964.800000px;}
.y8_c01059{bottom:1002.600000px;}
.yb_c01059{bottom:1010.158200px;}
.ya_c01059{bottom:1032.120000px;}
.y5_c01059{bottom:1070.820000px;}
.y7_c01059{bottom:1078.380000px;}
.y4_c01059{bottom:1121.039100px;}
.y1_c01059{bottom:1163.520000px;}
.h3_c01059{height:35.991211px;}
.h5_c01059{height:42.894141px;}
.h2_c01059{height:43.390195px;}
.h4_c01059{height:43.920000px;}
.h9_c01059{height:61.211292px;}
.h6_c01059{height:65.880000px;}
.h8_c01059{height:66.061500px;}
.h7_c01059{height:109.801500px;}
.h0_c01059{height:1262.880000px;}
.h1_c01059{height:1263.000000px;}
.w2_c01059{width:368.638500px;}
.w3_c01059{width:368.820000px;}
.w4_c01059{width:369.360000px;}
.w5_c01059{width:369.718500px;}
.w0_c01059{width:892.980000px;}
.w1_c01059{width:893.250000px;}
.x0_c01059{left:0.000000px;}
.x5_c01059{left:7.920000px;}
.x4_c01059{left:77.040000px;}
.x1_c01059{left:84.960000px;}
.x7_c01059{left:99.900000px;}
.x3_c01059{left:442.620000px;}
.x2_c01059{left:446.400000px;}
.x6_c01059{left:454.500000px;}
@media print{
.v0_c01059{vertical-align:0.000000pt;}
.ls17_c01059{letter-spacing:-0.690560pt;}
.ls16_c01059{letter-spacing:-0.424960pt;}
.lsd_c01059{letter-spacing:-0.265600pt;}
.lse_c01059{letter-spacing:-0.212480pt;}
.ls15_c01059{letter-spacing:-0.159360pt;}
.ls14_c01059{letter-spacing:-0.106240pt;}
.lsf_c01059{letter-spacing:-0.053120pt;}
.lsc_c01059{letter-spacing:0.000000pt;}
.ls3_c01059{letter-spacing:0.106240pt;}
.ls6_c01059{letter-spacing:0.154880pt;}
.ls0_c01059{letter-spacing:0.159360pt;}
.ls10_c01059{letter-spacing:0.212480pt;}
.ls11_c01059{letter-spacing:0.265600pt;}
.lsb_c01059{letter-spacing:0.318720pt;}
.ls12_c01059{letter-spacing:0.371840pt;}
.ls13_c01059{letter-spacing:0.584320pt;}
.ls2_c01059{letter-spacing:0.706496pt;}
.ls5_c01059{letter-spacing:1.434240pt;}
.ls4_c01059{letter-spacing:2.074880pt;}
.ls9_c01059{letter-spacing:4.621440pt;}
.ls7_c01059{letter-spacing:5.258880pt;}
.ls8_c01059{letter-spacing:27.674880pt;}
.ls1_c01059{letter-spacing:54.554240pt;}
.lsa_c01059{letter-spacing:754.720000pt;}
.ws2_c01059{word-spacing:-12.589440pt;}
.ws1_c01059{word-spacing:-12.270720pt;}
.ws6_c01059{word-spacing:-12.217600pt;}
.ws8_c01059{word-spacing:-12.164480pt;}
.ws0_c01059{word-spacing:-12.005120pt;}
.ws4_c01059{word-spacing:-11.952000pt;}
.ws3_c01059{word-spacing:-11.898880pt;}
.ws5_c01059{word-spacing:-11.845760pt;}
.ws7_c01059{word-spacing:-11.792640pt;}
.ws20_c01059{word-spacing:-0.265600pt;}
.ws13_c01059{word-spacing:-0.212480pt;}
.wsa_c01059{word-spacing:-0.159360pt;}
.ws17_c01059{word-spacing:-0.106240pt;}
.ws9_c01059{word-spacing:0.000000pt;}
.ws12_c01059{word-spacing:0.053120pt;}
.ws1b_c01059{word-spacing:0.106240pt;}
.wsd_c01059{word-spacing:0.212480pt;}
.wsc_c01059{word-spacing:0.371840pt;}
.wsb_c01059{word-spacing:0.424960pt;}
.ws29_c01059{word-spacing:0.531200pt;}
.ws34_c01059{word-spacing:0.690560pt;}
.ws28_c01059{word-spacing:1.009280pt;}
.ws18_c01059{word-spacing:1.168640pt;}
.ws1d_c01059{word-spacing:1.487360pt;}
.ws39_c01059{word-spacing:1.646720pt;}
.wse_c01059{word-spacing:1.752960pt;}
.wsf_c01059{word-spacing:1.912320pt;}
.ws16_c01059{word-spacing:2.124800pt;}
.ws2a_c01059{word-spacing:2.921600pt;}
.ws22_c01059{word-spacing:3.824640pt;}
.ws2c_c01059{word-spacing:4.037120pt;}
.ws35_c01059{word-spacing:4.674560pt;}
.ws15_c01059{word-spacing:4.833920pt;}
.ws2f_c01059{word-spacing:5.099520pt;}
.ws2e_c01059{word-spacing:5.312000pt;}
.ws38_c01059{word-spacing:5.471360pt;}
.ws24_c01059{word-spacing:5.630720pt;}
.ws25_c01059{word-spacing:5.949440pt;}
.ws30_c01059{word-spacing:6.746240pt;}
.ws37_c01059{word-spacing:7.224320pt;}
.ws36_c01059{word-spacing:7.277440pt;}
.ws33_c01059{word-spacing:7.383680pt;}
.ws19_c01059{word-spacing:7.861760pt;}
.ws23_c01059{word-spacing:8.711680pt;}
.ws21_c01059{word-spacing:9.508480pt;}
.ws2d_c01059{word-spacing:10.145920pt;}
.ws10_c01059{word-spacing:11.527040pt;}
.ws1c_c01059{word-spacing:12.376960pt;}
.ws1a_c01059{word-spacing:12.536320pt;}
.ws14_c01059{word-spacing:13.014400pt;}
.ws11_c01059{word-spacing:13.173760pt;}
.ws1f_c01059{word-spacing:14.608000pt;}
.ws2b_c01059{word-spacing:18.751360pt;}
.ws1e_c01059{word-spacing:19.388800pt;}
.ws32_c01059{word-spacing:27.409920pt;}
.ws31_c01059{word-spacing:27.888000pt;}
.ws26_c01059{word-spacing:32.509440pt;}
.ws27_c01059{word-spacing:32.881280pt;}
._0_c01059{margin-left:-1.094272pt;}
._1_c01059{width:1.014592pt;}
._3_c01059{width:2.265856pt;}
._9_c01059{width:3.601536pt;}
._a_c01059{width:5.391680pt;}
._7_c01059{width:6.852480pt;}
._2_c01059{width:13.322496pt;}
._4_c01059{width:14.905472pt;}
._6_c01059{width:18.783232pt;}
._8_c01059{width:27.584448pt;}
._5_c01059{width:33.040640pt;}
.fs1_c01059{font-size:48.000000pt;}
.fs0_c01059{font-size:53.120000pt;}
.fs2_c01059{font-size:74.880000pt;}
.y0_c01059{bottom:0.000000pt;}
.y6_c01059{bottom:26.240000pt;}
.y9_c01059{bottom:45.760000pt;}
.y15_c01059{bottom:45.919867pt;}
.y3_c01059{bottom:63.360000pt;}
.y2_c01059{bottom:78.880000pt;}
.yf_c01059{bottom:84.800000pt;}
.y33_c01059{bottom:159.029600pt;}
.y32_c01059{bottom:183.504640pt;}
.y31_c01059{bottom:203.026240pt;}
.y30_c01059{bottom:222.547840pt;}
.y2f_c01059{bottom:242.069440pt;}
.y2e_c01059{bottom:261.591040pt;}
.y2d_c01059{bottom:281.112640pt;}
.y2c_c01059{bottom:300.634240pt;}
.y2b_c01059{bottom:320.155840pt;}
.y2a_c01059{bottom:339.677440pt;}
.y29_c01059{bottom:359.358400pt;}
.y28_c01059{bottom:378.880000pt;}
.y26_c01059{bottom:393.600000pt;}
.y27_c01059{bottom:400.320000pt;}
.y21_c01059{bottom:434.080000pt;}
.y25_c01059{bottom:440.795200pt;}
.y24_c01059{bottom:460.316800pt;}
.y23_c01059{bottom:479.838400pt;}
.y22_c01059{bottom:499.360000pt;}
.y1e_c01059{bottom:532.960000pt;}
.y20_c01059{bottom:539.678400pt;}
.y1f_c01059{bottom:559.200000pt;}
.y18_c01059{bottom:592.960000pt;}
.y1d_c01059{bottom:599.675200pt;}
.y1c_c01059{bottom:619.196800pt;}
.y1b_c01059{bottom:638.718400pt;}
.y1a_c01059{bottom:638.720000pt;}
.y19_c01059{bottom:658.240000pt;}
.y14_c01059{bottom:691.840000pt;}
.y17_c01059{bottom:698.718400pt;}
.y16_c01059{bottom:718.240000pt;}
.ye_c01059{bottom:751.840000pt;}
.y13_c01059{bottom:758.555200pt;}
.y12_c01059{bottom:778.076800pt;}
.y11_c01059{bottom:797.598400pt;}
.y10_c01059{bottom:817.120000pt;}
.yc_c01059{bottom:850.880000pt;}
.yd_c01059{bottom:857.600000pt;}
.y8_c01059{bottom:891.200000pt;}
.yb_c01059{bottom:897.918400pt;}
.ya_c01059{bottom:917.440000pt;}
.y5_c01059{bottom:951.840000pt;}
.y7_c01059{bottom:958.560000pt;}
.y4_c01059{bottom:996.479200pt;}
.y1_c01059{bottom:1034.240000pt;}
.h3_c01059{height:31.992188pt;}
.h5_c01059{height:38.128125pt;}
.h2_c01059{height:38.569063pt;}
.h4_c01059{height:39.040000pt;}
.h9_c01059{height:54.410038pt;}
.h6_c01059{height:58.560000pt;}
.h8_c01059{height:58.721333pt;}
.h7_c01059{height:97.601333pt;}
.h0_c01059{height:1122.560000pt;}
.h1_c01059{height:1122.666667pt;}
.w2_c01059{width:327.678667pt;}
.w3_c01059{width:327.840000pt;}
.w4_c01059{width:328.320000pt;}
.w5_c01059{width:328.638667pt;}
.w0_c01059{width:793.760000pt;}
.w1_c01059{width:794.000000pt;}
.x0_c01059{left:0.000000pt;}
.x5_c01059{left:7.040000pt;}
.x4_c01059{left:68.480000pt;}
.x1_c01059{left:75.520000pt;}
.x7_c01059{left:88.800000pt;}
.x3_c01059{left:393.440000pt;}
.x2_c01059{left:396.800000pt;}
.x6_c01059{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_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_2a7a88857d6025931040f10d.woff2')format("woff");}.ff1_c01060{font-family:ff1_c01060;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01060;src:url('chunks/assets/font_8f457d23a5d8253b5e35ad1c.woff2')format("woff");}.ff2_c01060{font-family:ff2_c01060;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01060;src:url('chunks/assets/font_94530780b70e0f081ae6b9f8.woff2')format("woff");}.ff3_c01060{font-family:ff3_c01060;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c01060{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01060{vertical-align:0.000000px;}
.ls32_c01060{letter-spacing:-0.964800px;}
.ls2b_c01060{letter-spacing:-0.723600px;}
.ls2c_c01060{letter-spacing:-0.675360px;}
.ls30_c01060{letter-spacing:-0.635040px;}
.ls20_c01060{letter-spacing:-0.576000px;}
.ls27_c01060{letter-spacing:-0.530640px;}
.ls2e_c01060{letter-spacing:-0.385920px;}
.ls2d_c01060{letter-spacing:-0.337680px;}
.ls1f_c01060{letter-spacing:-0.298800px;}
.ls29_c01060{letter-spacing:-0.289440px;}
.ls28_c01060{letter-spacing:-0.241200px;}
.ls1b_c01060{letter-spacing:-0.239040px;}
.ls22_c01060{letter-spacing:-0.216000px;}
.ls2a_c01060{letter-spacing:-0.144720px;}
.ls21_c01060{letter-spacing:-0.119520px;}
.ls1c_c01060{letter-spacing:-0.059760px;}
.ls31_c01060{letter-spacing:-0.048240px;}
.ls19_c01060{letter-spacing:0.000000px;}
.lsc_c01060{letter-spacing:0.024120px;}
.ls26_c01060{letter-spacing:0.048240px;}
.ls1e_c01060{letter-spacing:0.059760px;}
.ls24_c01060{letter-spacing:0.119520px;}
.ls2f_c01060{letter-spacing:0.144720px;}
.ls1a_c01060{letter-spacing:0.168480px;}
.lsa_c01060{letter-spacing:0.179280px;}
.ls17_c01060{letter-spacing:0.192960px;}
.ls5_c01060{letter-spacing:0.216000px;}
.ls16_c01060{letter-spacing:0.241200px;}
.ls4_c01060{letter-spacing:0.288000px;}
.ls15_c01060{letter-spacing:0.289440px;}
.ls1d_c01060{letter-spacing:0.298800px;}
.ls13_c01060{letter-spacing:0.303912px;}
.ls10_c01060{letter-spacing:0.318384px;}
.lsb_c01060{letter-spacing:0.337680px;}
.ls14_c01060{letter-spacing:0.352152px;}
.ls18_c01060{letter-spacing:0.358560px;}
.lse_c01060{letter-spacing:0.361800px;}
.lsd_c01060{letter-spacing:0.395568px;}
.lsf_c01060{letter-spacing:0.405216px;}
.ls23_c01060{letter-spacing:0.418320px;}
.ls12_c01060{letter-spacing:0.448632px;}
.ls11_c01060{letter-spacing:0.578880px;}
.ls25_c01060{letter-spacing:0.896400px;}
.ls0_c01060{letter-spacing:1.613520px;}
.ls1_c01060{letter-spacing:1.625472px;}
.ls3_c01060{letter-spacing:3.764880px;}
.ls2_c01060{letter-spacing:4.482000px;}
.ls9_c01060{letter-spacing:5.916240px;}
.ls7_c01060{letter-spacing:62.807760px;}
.ls8_c01060{letter-spacing:73.624320px;}
.ls6_c01060{letter-spacing:99.560160px;}
.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:-16.488000px;}
.ws6_c01060{word-spacing:-16.056000px;}
.ws4_c01060{word-spacing:-15.696000px;}
.wsc_c01060{word-spacing:-14.402160px;}
.wsb_c01060{word-spacing:-13.804560px;}
.ws8_c01060{word-spacing:-13.685040px;}
.wsa_c01060{word-spacing:-13.625280px;}
.ws1_c01060{word-spacing:-13.565520px;}
.ws0_c01060{word-spacing:-13.505760px;}
.ws9_c01060{word-spacing:-13.446000px;}
.ws5_c01060{word-spacing:-13.386240px;}
.ws2_c01060{word-spacing:-13.266720px;}
.ws7_c01060{word-spacing:-13.206960px;}
.ws14_c01060{word-spacing:-11.239920px;}
.ws15_c01060{word-spacing:-11.095200px;}
.wse_c01060{word-spacing:-10.950480px;}
.ws17_c01060{word-spacing:-10.926360px;}
.wsd_c01060{word-spacing:-10.902240px;}
.ws11_c01060{word-spacing:-10.757520px;}
.ws10_c01060{word-spacing:-10.661040px;}
.wsf_c01060{word-spacing:-10.612800px;}
.ws16_c01060{word-spacing:-10.564560px;}
.ws18_c01060{word-spacing:-10.516320px;}
.ws19_c01060{word-spacing:-10.371600px;}
.ws13_c01060{word-spacing:-10.226880px;}
.ws12_c01060{word-spacing:-10.178640px;}
.ws1a_c01060{word-spacing:-9.937440px;}
.ws3b_c01060{word-spacing:-0.578880px;}
.ws39_c01060{word-spacing:-0.530640px;}
.ws1d_c01060{word-spacing:-0.505440px;}
.ws2e_c01060{word-spacing:-0.418320px;}
.ws34_c01060{word-spacing:-0.289440px;}
.ws1b_c01060{word-spacing:-0.179280px;}
.ws30_c01060{word-spacing:-0.144720px;}
.ws2c_c01060{word-spacing:-0.119520px;}
.ws37_c01060{word-spacing:-0.096480px;}
.ws2f_c01060{word-spacing:-0.059760px;}
.ws33_c01060{word-spacing:-0.048240px;}
.ws1c_c01060{word-spacing:0.000000px;}
.ws38_c01060{word-spacing:0.048240px;}
.ws2a_c01060{word-spacing:0.059760px;}
.ws32_c01060{word-spacing:0.144720px;}
.ws35_c01060{word-spacing:0.192960px;}
.ws29_c01060{word-spacing:0.239040px;}
.ws36_c01060{word-spacing:0.241200px;}
.ws3e_c01060{word-spacing:0.289440px;}
.ws3a_c01060{word-spacing:0.337680px;}
.ws2b_c01060{word-spacing:0.418320px;}
.ws31_c01060{word-spacing:0.434160px;}
.ws3c_c01060{word-spacing:0.635040px;}
.ws3d_c01060{word-spacing:0.675360px;}
.ws21_c01060{word-spacing:1.314720px;}
.ws20_c01060{word-spacing:1.673280px;}
.ws1f_c01060{word-spacing:1.852560px;}
.ws25_c01060{word-spacing:2.390400px;}
.ws1e_c01060{word-spacing:2.569680px;}
.ws26_c01060{word-spacing:3.466080px;}
.ws28_c01060{word-spacing:3.585600px;}
.ws27_c01060{word-spacing:3.705120px;}
.ws24_c01060{word-spacing:4.302720px;}
.ws23_c01060{word-spacing:4.721040px;}
.ws22_c01060{word-spacing:4.780800px;}
.ws2d_c01060{word-spacing:5.617440px;}
._0_c01060{margin-left:-1.231056px;}
._2_c01060{width:1.386432px;}
._3_c01060{width:4.446144px;}
._4_c01060{width:39.680640px;}
._5_c01060{width:74.281680px;}
._1_c01060{width:108.164160px;}
.fc2_c01060{color:rgb(68,114,196);}
.fc1_c01060{color:rgb(0,0,0);}
.fc0_c01060{color:rgb(0,0,255);}
.fs5_c01060{font-size:45.360000px;}
.fs4_c01060{font-size:48.240000px;}
.fs1_c01060{font-size:54.000000px;}
.fs0_c01060{font-size:59.760000px;}
.fs3_c01060{font-size:72.000000px;}
.fs2_c01060{font-size:84.240000px;}
.y0_c01060{bottom:0.000000px;}
.y3_c01060{bottom:67.680000px;}
.y2_c01060{bottom:85.680000px;}
.y35_c01060{bottom:152.459460px;}
.y34_c01060{bottom:167.040000px;}
.y33_c01060{bottom:186.118560px;}
.y32_c01060{bottom:200.880000px;}
.y31_c01060{bottom:219.957300px;}
.y30_c01060{bottom:234.718740px;}
.y2f_c01060{bottom:253.797660px;}
.y2e_c01060{bottom:268.378200px;}
.y2d_c01060{bottom:287.638020px;}
.y2c_c01060{bottom:302.218560px;}
.y2b_c01060{bottom:316.980000px;}
.y2a_c01060{bottom:336.059460px;}
.y29_c01060{bottom:350.640000px;}
.y28_c01060{bottom:369.900000px;}
.y27_c01060{bottom:384.480000px;}
.y26_c01060{bottom:403.558560px;}
.y25_c01060{bottom:418.320000px;}
.y24_c01060{bottom:437.400000px;}
.y23_c01060{bottom:452.159460px;}
.y22_c01060{bottom:466.740000px;}
.y21_c01060{bottom:485.820000px;}
.y20_c01060{bottom:500.579460px;}
.y1f_c01060{bottom:515.160000px;}
.y1e_c01060{bottom:534.240000px;}
.y1d_c01060{bottom:548.999640px;}
.y1c_c01060{bottom:563.580180px;}
.y1b_c01060{bottom:582.840000px;}
.y1a_c01060{bottom:601.919460px;}
.y19_c01060{bottom:616.500000px;}
.y18_c01060{bottom:643.140000px;}
.y17_c01060{bottom:667.796400px;}
.y16_c01060{bottom:689.758200px;}
.y15_c01060{bottom:711.720000px;}
.y14_c01060{bottom:741.420000px;}
.y13_c01060{bottom:766.071720px;}
.y12_c01060{bottom:788.033520px;}
.y11_c01060{bottom:809.995320px;}
.y10_c01060{bottom:831.957120px;}
.yf_c01060{bottom:854.098200px;}
.ye_c01060{bottom:876.060000px;}
.yd_c01060{bottom:905.580000px;}
.yc_c01060{bottom:930.407400px;}
.yb_c01060{bottom:952.369200px;}
.ya_c01060{bottom:974.331000px;}
.y9_c01060{bottom:996.292800px;}
.y8_c01060{bottom:1018.254600px;}
.y7_c01060{bottom:1040.216400px;}
.y6_c01060{bottom:1062.178200px;}
.y5_c01060{bottom:1084.140000px;}
.y4_c01060{bottom:1115.280000px;}
.y1_c01060{bottom:1163.520000px;}
.h7_c01060{height:34.625391px;}
.h9_c01060{height:34.626831px;}
.h8_c01060{height:34.627551px;}
.ha_c01060{height:34.631151px;}
.hb_c01060{height:34.636191px;}
.h3_c01060{height:38.759766px;}
.h5_c01060{height:42.894141px;}
.h2_c01060{height:43.390195px;}
.h6_c01060{height:52.277344px;}
.h4_c01060{height:61.164492px;}
.h0_c01060{height:1262.880000px;}
.h1_c01060{height:1263.000000px;}
.w0_c01060{width:892.980000px;}
.w1_c01060{width:893.250000px;}
.x0_c01060{left:0.000000px;}
.x1_c01060{left:84.960000px;}
.x4_c01060{left:99.914940px;}
.x5_c01060{left:106.209720px;}
.x3_c01060{left:442.620000px;}
.x2_c01060{left:446.400000px;}
@media print{
.v0_c01060{vertical-align:0.000000pt;}
.ls32_c01060{letter-spacing:-0.857600pt;}
.ls2b_c01060{letter-spacing:-0.643200pt;}
.ls2c_c01060{letter-spacing:-0.600320pt;}
.ls30_c01060{letter-spacing:-0.564480pt;}
.ls20_c01060{letter-spacing:-0.512000pt;}
.ls27_c01060{letter-spacing:-0.471680pt;}
.ls2e_c01060{letter-spacing:-0.343040pt;}
.ls2d_c01060{letter-spacing:-0.300160pt;}
.ls1f_c01060{letter-spacing:-0.265600pt;}
.ls29_c01060{letter-spacing:-0.257280pt;}
.ls28_c01060{letter-spacing:-0.214400pt;}
.ls1b_c01060{letter-spacing:-0.212480pt;}
.ls22_c01060{letter-spacing:-0.192000pt;}
.ls2a_c01060{letter-spacing:-0.128640pt;}
.ls21_c01060{letter-spacing:-0.106240pt;}
.ls1c_c01060{letter-spacing:-0.053120pt;}
.ls31_c01060{letter-spacing:-0.042880pt;}
.ls19_c01060{letter-spacing:0.000000pt;}
.lsc_c01060{letter-spacing:0.021440pt;}
.ls26_c01060{letter-spacing:0.042880pt;}
.ls1e_c01060{letter-spacing:0.053120pt;}
.ls24_c01060{letter-spacing:0.106240pt;}
.ls2f_c01060{letter-spacing:0.128640pt;}
.ls1a_c01060{letter-spacing:0.149760pt;}
.lsa_c01060{letter-spacing:0.159360pt;}
.ls17_c01060{letter-spacing:0.171520pt;}
.ls5_c01060{letter-spacing:0.192000pt;}
.ls16_c01060{letter-spacing:0.214400pt;}
.ls4_c01060{letter-spacing:0.256000pt;}
.ls15_c01060{letter-spacing:0.257280pt;}
.ls1d_c01060{letter-spacing:0.265600pt;}
.ls13_c01060{letter-spacing:0.270144pt;}
.ls10_c01060{letter-spacing:0.283008pt;}
.lsb_c01060{letter-spacing:0.300160pt;}
.ls14_c01060{letter-spacing:0.313024pt;}
.ls18_c01060{letter-spacing:0.318720pt;}
.lse_c01060{letter-spacing:0.321600pt;}
.lsd_c01060{letter-spacing:0.351616pt;}
.lsf_c01060{letter-spacing:0.360192pt;}
.ls23_c01060{letter-spacing:0.371840pt;}
.ls12_c01060{letter-spacing:0.398784pt;}
.ls11_c01060{letter-spacing:0.514560pt;}
.ls25_c01060{letter-spacing:0.796800pt;}
.ls0_c01060{letter-spacing:1.434240pt;}
.ls1_c01060{letter-spacing:1.444864pt;}
.ls3_c01060{letter-spacing:3.346560pt;}
.ls2_c01060{letter-spacing:3.984000pt;}
.ls9_c01060{letter-spacing:5.258880pt;}
.ls7_c01060{letter-spacing:55.829120pt;}
.ls8_c01060{letter-spacing:65.443840pt;}
.ls6_c01060{letter-spacing:88.497920pt;}
.ws3_c01060{word-spacing:-14.656000pt;}
.ws6_c01060{word-spacing:-14.272000pt;}
.ws4_c01060{word-spacing:-13.952000pt;}
.wsc_c01060{word-spacing:-12.801920pt;}
.wsb_c01060{word-spacing:-12.270720pt;}
.ws8_c01060{word-spacing:-12.164480pt;}
.wsa_c01060{word-spacing:-12.111360pt;}
.ws1_c01060{word-spacing:-12.058240pt;}
.ws0_c01060{word-spacing:-12.005120pt;}
.ws9_c01060{word-spacing:-11.952000pt;}
.ws5_c01060{word-spacing:-11.898880pt;}
.ws2_c01060{word-spacing:-11.792640pt;}
.ws7_c01060{word-spacing:-11.739520pt;}
.ws14_c01060{word-spacing:-9.991040pt;}
.ws15_c01060{word-spacing:-9.862400pt;}
.wse_c01060{word-spacing:-9.733760pt;}
.ws17_c01060{word-spacing:-9.712320pt;}
.wsd_c01060{word-spacing:-9.690880pt;}
.ws11_c01060{word-spacing:-9.562240pt;}
.ws10_c01060{word-spacing:-9.476480pt;}
.wsf_c01060{word-spacing:-9.433600pt;}
.ws16_c01060{word-spacing:-9.390720pt;}
.ws18_c01060{word-spacing:-9.347840pt;}
.ws19_c01060{word-spacing:-9.219200pt;}
.ws13_c01060{word-spacing:-9.090560pt;}
.ws12_c01060{word-spacing:-9.047680pt;}
.ws1a_c01060{word-spacing:-8.833280pt;}
.ws3b_c01060{word-spacing:-0.514560pt;}
.ws39_c01060{word-spacing:-0.471680pt;}
.ws1d_c01060{word-spacing:-0.449280pt;}
.ws2e_c01060{word-spacing:-0.371840pt;}
.ws34_c01060{word-spacing:-0.257280pt;}
.ws1b_c01060{word-spacing:-0.159360pt;}
.ws30_c01060{word-spacing:-0.128640pt;}
.ws2c_c01060{word-spacing:-0.106240pt;}
.ws37_c01060{word-spacing:-0.085760pt;}
.ws2f_c01060{word-spacing:-0.053120pt;}
.ws33_c01060{word-spacing:-0.042880pt;}
.ws1c_c01060{word-spacing:0.000000pt;}
.ws38_c01060{word-spacing:0.042880pt;}
.ws2a_c01060{word-spacing:0.053120pt;}
.ws32_c01060{word-spacing:0.128640pt;}
.ws35_c01060{word-spacing:0.171520pt;}
.ws29_c01060{word-spacing:0.212480pt;}
.ws36_c01060{word-spacing:0.214400pt;}
.ws3e_c01060{word-spacing:0.257280pt;}
.ws3a_c01060{word-spacing:0.300160pt;}
.ws2b_c01060{word-spacing:0.371840pt;}
.ws31_c01060{word-spacing:0.385920pt;}
.ws3c_c01060{word-spacing:0.564480pt;}
.ws3d_c01060{word-spacing:0.600320pt;}
.ws21_c01060{word-spacing:1.168640pt;}
.ws20_c01060{word-spacing:1.487360pt;}
.ws1f_c01060{word-spacing:1.646720pt;}
.ws25_c01060{word-spacing:2.124800pt;}
.ws1e_c01060{word-spacing:2.284160pt;}
.ws26_c01060{word-spacing:3.080960pt;}
.ws28_c01060{word-spacing:3.187200pt;}
.ws27_c01060{word-spacing:3.293440pt;}
.ws24_c01060{word-spacing:3.824640pt;}
.ws23_c01060{word-spacing:4.196480pt;}
.ws22_c01060{word-spacing:4.249600pt;}
.ws2d_c01060{word-spacing:4.993280pt;}
._0_c01060{margin-left:-1.094272pt;}
._2_c01060{width:1.232384pt;}
._3_c01060{width:3.952128pt;}
._4_c01060{width:35.271680pt;}
._5_c01060{width:66.028160pt;}
._1_c01060{width:96.145920pt;}
.fs5_c01060{font-size:40.320000pt;}
.fs4_c01060{font-size:42.880000pt;}
.fs1_c01060{font-size:48.000000pt;}
.fs0_c01060{font-size:53.120000pt;}
.fs3_c01060{font-size:64.000000pt;}
.fs2_c01060{font-size:74.880000pt;}
.y0_c01060{bottom:0.000000pt;}
.y3_c01060{bottom:60.160000pt;}
.y2_c01060{bottom:76.160000pt;}
.y35_c01060{bottom:135.519520pt;}
.y34_c01060{bottom:148.480000pt;}
.y33_c01060{bottom:165.438720pt;}
.y32_c01060{bottom:178.560000pt;}
.y31_c01060{bottom:195.517600pt;}
.y30_c01060{bottom:208.638880pt;}
.y2f_c01060{bottom:225.597920pt;}
.y2e_c01060{bottom:238.558400pt;}
.y2d_c01060{bottom:255.678240pt;}
.y2c_c01060{bottom:268.638720pt;}
.y2b_c01060{bottom:281.760000pt;}
.y2a_c01060{bottom:298.719520pt;}
.y29_c01060{bottom:311.680000pt;}
.y28_c01060{bottom:328.800000pt;}
.y27_c01060{bottom:341.760000pt;}
.y26_c01060{bottom:358.718720pt;}
.y25_c01060{bottom:371.840000pt;}
.y24_c01060{bottom:388.800000pt;}
.y23_c01060{bottom:401.919520pt;}
.y22_c01060{bottom:414.880000pt;}
.y21_c01060{bottom:431.840000pt;}
.y20_c01060{bottom:444.959520pt;}
.y1f_c01060{bottom:457.920000pt;}
.y1e_c01060{bottom:474.880000pt;}
.y1d_c01060{bottom:487.999680pt;}
.y1c_c01060{bottom:500.960160pt;}
.y1b_c01060{bottom:518.080000pt;}
.y1a_c01060{bottom:535.039520pt;}
.y19_c01060{bottom:548.000000pt;}
.y18_c01060{bottom:571.680000pt;}
.y17_c01060{bottom:593.596800pt;}
.y16_c01060{bottom:613.118400pt;}
.y15_c01060{bottom:632.640000pt;}
.y14_c01060{bottom:659.040000pt;}
.y13_c01060{bottom:680.952640pt;}
.y12_c01060{bottom:700.474240pt;}
.y11_c01060{bottom:719.995840pt;}
.y10_c01060{bottom:739.517440pt;}
.yf_c01060{bottom:759.198400pt;}
.ye_c01060{bottom:778.720000pt;}
.yd_c01060{bottom:804.960000pt;}
.yc_c01060{bottom:827.028800pt;}
.yb_c01060{bottom:846.550400pt;}
.ya_c01060{bottom:866.072000pt;}
.y9_c01060{bottom:885.593600pt;}
.y8_c01060{bottom:905.115200pt;}
.y7_c01060{bottom:924.636800pt;}
.y6_c01060{bottom:944.158400pt;}
.y5_c01060{bottom:963.680000pt;}
.y4_c01060{bottom:991.360000pt;}
.y1_c01060{bottom:1034.240000pt;}
.h7_c01060{height:30.778125pt;}
.h9_c01060{height:30.779405pt;}
.h8_c01060{height:30.780045pt;}
.ha_c01060{height:30.783245pt;}
.hb_c01060{height:30.787725pt;}
.h3_c01060{height:34.453125pt;}
.h5_c01060{height:38.128125pt;}
.h2_c01060{height:38.569063pt;}
.h6_c01060{height:46.468750pt;}
.h4_c01060{height:54.368437pt;}
.h0_c01060{height:1122.560000pt;}
.h1_c01060{height:1122.666667pt;}
.w0_c01060{width:793.760000pt;}
.w1_c01060{width:794.000000pt;}
.x0_c01060{left:0.000000pt;}
.x1_c01060{left:75.520000pt;}
.x4_c01060{left:88.813280pt;}
.x5_c01060{left:94.408640pt;}
.x3_c01060{left:393.440000pt;}
.x2_c01060{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_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_6a9b21e550fbce881ead50c9.woff2')format("woff");}.ff1_c01061{font-family:ff1_c01061;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01061;src:url('chunks/assets/font_44fe3a0e147dc7ab90bca702.woff2')format("woff");}.ff2_c01061{font-family:ff2_c01061;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01061;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff3_c01061{font-family:ff3_c01061;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01061;src:url('chunks/assets/font_f524d52c6a892de0e8eda760.woff2')format("woff");}.ff4_c01061{font-family:ff4_c01061;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c01061{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01061{vertical-align:0.000000px;}
.lsd_c01061{letter-spacing:-0.675360px;}
.lse_c01061{letter-spacing:-0.530640px;}
.lsb_c01061{letter-spacing:-0.337680px;}
.lsc_c01061{letter-spacing:-0.289440px;}
.ls9_c01061{letter-spacing:-0.241200px;}
.lsf_c01061{letter-spacing:-0.192960px;}
.lsa_c01061{letter-spacing:-0.144720px;}
.ls7_c01061{letter-spacing:0.000000px;}
.ls3_c01061{letter-spacing:0.024120px;}
.ls8_c01061{letter-spacing:0.048240px;}
.ls1_c01061{letter-spacing:0.096480px;}
.ls0_c01061{letter-spacing:0.179280px;}
.ls5_c01061{letter-spacing:0.192960px;}
.ls4_c01061{letter-spacing:0.289440px;}
.ls2_c01061{letter-spacing:0.337680px;}
.ls6_c01061{letter-spacing:0.358560px;}
.sc__c01061{text-shadow:none;}
.sc0_c01061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01061{-webkit-text-stroke:0px transparent;}
.sc0_c01061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01061{word-spacing:-13.505760px;}
.ws7_c01061{word-spacing:-11.239920px;}
.ws2_c01061{word-spacing:-11.095200px;}
.ws4_c01061{word-spacing:-10.950480px;}
.ws1_c01061{word-spacing:-10.902240px;}
.ws5_c01061{word-spacing:-10.757520px;}
.ws9_c01061{word-spacing:-10.709280px;}
.ws8_c01061{word-spacing:-10.661040px;}
.ws6_c01061{word-spacing:-10.612800px;}
.ws3_c01061{word-spacing:-10.564560px;}
.ws15_c01061{word-spacing:-1.013040px;}
.ws17_c01061{word-spacing:-0.868320px;}
.ws12_c01061{word-spacing:-0.289440px;}
.ws16_c01061{word-spacing:-0.192960px;}
.wsb_c01061{word-spacing:-0.179280px;}
.wsc_c01061{word-spacing:-0.144720px;}
.ws11_c01061{word-spacing:-0.096480px;}
.wse_c01061{word-spacing:-0.048240px;}
.wsa_c01061{word-spacing:0.000000px;}
.wsd_c01061{word-spacing:0.144720px;}
.wsf_c01061{word-spacing:0.192960px;}
.ws10_c01061{word-spacing:0.241200px;}
.ws14_c01061{word-spacing:0.530640px;}
.ws13_c01061{word-spacing:0.578880px;}
._0_c01061{margin-left:-1.231056px;}
._1_c01061{width:1.352592px;}
.fc1_c01061{color:rgb(0,0,255);}
.fc0_c01061{color:rgb(0,0,0);}
.fs2_c01061{font-size:48.240000px;}
.fs1_c01061{font-size:54.000000px;}
.fs0_c01061{font-size:59.760000px;}
.y0_c01061{bottom:0.000000px;}
.y3_c01061{bottom:71.280000px;}
.y2_c01061{bottom:88.740000px;}
.yb_c01061{bottom:1007.999460px;}
.ya_c01061{bottom:1022.580000px;}
.y9_c01061{bottom:1041.660000px;}
.y8_c01061{bottom:1056.420000px;}
.y7_c01061{bottom:1075.499460px;}
.y6_c01061{bottom:1090.080000px;}
.y5_c01061{bottom:1109.339460px;}
.y4_c01061{bottom:1123.920000px;}
.y1_c01061{bottom:1163.520000px;}
.h4_c01061{height:34.625391px;}
.h5_c01061{height:34.627551px;}
.h3_c01061{height:35.991211px;}
.h2_c01061{height:43.390195px;}
.h0_c01061{height:1262.880000px;}
.h1_c01061{height:1263.000000px;}
.w0_c01061{width:892.980000px;}
.w1_c01061{width:893.250000px;}
.x0_c01061{left:0.000000px;}
.x1_c01061{left:84.960000px;}
.x4_c01061{left:106.221780px;}
.x3_c01061{left:442.620000px;}
.x2_c01061{left:446.400000px;}
@media print{
.v0_c01061{vertical-align:0.000000pt;}
.lsd_c01061{letter-spacing:-0.600320pt;}
.lse_c01061{letter-spacing:-0.471680pt;}
.lsb_c01061{letter-spacing:-0.300160pt;}
.lsc_c01061{letter-spacing:-0.257280pt;}
.ls9_c01061{letter-spacing:-0.214400pt;}
.lsf_c01061{letter-spacing:-0.171520pt;}
.lsa_c01061{letter-spacing:-0.128640pt;}
.ls7_c01061{letter-spacing:0.000000pt;}
.ls3_c01061{letter-spacing:0.021440pt;}
.ls8_c01061{letter-spacing:0.042880pt;}
.ls1_c01061{letter-spacing:0.085760pt;}
.ls0_c01061{letter-spacing:0.159360pt;}
.ls5_c01061{letter-spacing:0.171520pt;}
.ls4_c01061{letter-spacing:0.257280pt;}
.ls2_c01061{letter-spacing:0.300160pt;}
.ls6_c01061{letter-spacing:0.318720pt;}
.ws0_c01061{word-spacing:-12.005120pt;}
.ws7_c01061{word-spacing:-9.991040pt;}
.ws2_c01061{word-spacing:-9.862400pt;}
.ws4_c01061{word-spacing:-9.733760pt;}
.ws1_c01061{word-spacing:-9.690880pt;}
.ws5_c01061{word-spacing:-9.562240pt;}
.ws9_c01061{word-spacing:-9.519360pt;}
.ws8_c01061{word-spacing:-9.476480pt;}
.ws6_c01061{word-spacing:-9.433600pt;}
.ws3_c01061{word-spacing:-9.390720pt;}
.ws15_c01061{word-spacing:-0.900480pt;}
.ws17_c01061{word-spacing:-0.771840pt;}
.ws12_c01061{word-spacing:-0.257280pt;}
.ws16_c01061{word-spacing:-0.171520pt;}
.wsb_c01061{word-spacing:-0.159360pt;}
.wsc_c01061{word-spacing:-0.128640pt;}
.ws11_c01061{word-spacing:-0.085760pt;}
.wse_c01061{word-spacing:-0.042880pt;}
.wsa_c01061{word-spacing:0.000000pt;}
.wsd_c01061{word-spacing:0.128640pt;}
.wsf_c01061{word-spacing:0.171520pt;}
.ws10_c01061{word-spacing:0.214400pt;}
.ws14_c01061{word-spacing:0.471680pt;}
.ws13_c01061{word-spacing:0.514560pt;}
._0_c01061{margin-left:-1.094272pt;}
._1_c01061{width:1.202304pt;}
.fs2_c01061{font-size:42.880000pt;}
.fs1_c01061{font-size:48.000000pt;}
.fs0_c01061{font-size:53.120000pt;}
.y0_c01061{bottom:0.000000pt;}
.y3_c01061{bottom:63.360000pt;}
.y2_c01061{bottom:78.880000pt;}
.yb_c01061{bottom:895.999520pt;}
.ya_c01061{bottom:908.960000pt;}
.y9_c01061{bottom:925.920000pt;}
.y8_c01061{bottom:939.040000pt;}
.y7_c01061{bottom:955.999520pt;}
.y6_c01061{bottom:968.960000pt;}
.y5_c01061{bottom:986.079520pt;}
.y4_c01061{bottom:999.040000pt;}
.y1_c01061{bottom:1034.240000pt;}
.h4_c01061{height:30.778125pt;}
.h5_c01061{height:30.780045pt;}
.h3_c01061{height:31.992188pt;}
.h2_c01061{height:38.569063pt;}
.h0_c01061{height:1122.560000pt;}
.h1_c01061{height:1122.666667pt;}
.w0_c01061{width:793.760000pt;}
.w1_c01061{width:794.000000pt;}
.x0_c01061{left:0.000000pt;}
.x1_c01061{left:75.520000pt;}
.x4_c01061{left:94.419360pt;}
.x3_c01061{left:393.440000pt;}
.x2_c01061{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_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_d2adf7bb74dc46024e6a3811.woff2')format("woff");}.ff1_c01062{font-family:ff1_c01062;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01062;src:url('chunks/assets/font_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff2_c01062{font-family:ff2_c01062;line-height:0.625000;font-style:normal;font-weight:normal;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_91f0fd6d3de7cd8bba7252ec.woff2')format("woff");}.ff3_c01062{font-family:ff3_c01062;line-height:0.896000;font-style:normal;font-weight:normal;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_cbf0c9e5932657a9c4230c11.woff2')format("woff");}.ff4_c01062{font-family:ff4_c01062;line-height:0.862000;font-style:normal;font-weight:normal;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_efcab4bb56736f1843ae5f9b.woff2')format("woff");}.ff5_c01062{font-family:ff5_c01062;line-height:0.636000;font-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_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);}
.m0_c01062{transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);}
.v0_c01062{vertical-align:0.000000px;}
.ls9_c01062{letter-spacing:-3.816000px;}
.ls8_c01062{letter-spacing:-3.750000px;}
.lsf_c01062{letter-spacing:-3.678000px;}
.lsd_c01062{letter-spacing:-2.718000px;}
.ls10_c01062{letter-spacing:-1.380000px;}
.lse_c01062{letter-spacing:-0.270000px;}
.ls3_c01062{letter-spacing:-0.234000px;}
.ls7_c01062{letter-spacing:-0.204000px;}
.ls6_c01062{letter-spacing:-0.180000px;}
.lsa_c01062{letter-spacing:-0.144000px;}
.ls13_c01062{letter-spacing:-0.010800px;}
.ls5_c01062{letter-spacing:0.000000px;}
.ls11_c01062{letter-spacing:0.108000px;}
.lsc_c01062{letter-spacing:0.162000px;}
.ls4_c01062{letter-spacing:0.288000px;}
.ls1_c01062{letter-spacing:0.302400px;}
.lsb_c01062{letter-spacing:0.372000px;}
.ls12_c01062{letter-spacing:0.408000px;}
.ls2_c01062{letter-spacing:24.732000px;}
.ls0_c01062{letter-spacing:70.200000px;}
.sc__c01062{text-shadow:none;}
.sc1_c01062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c01062{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01062{-webkit-text-stroke:0px transparent;}
.sc1_c01062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c01062{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
}
.ws0_c01062{word-spacing:-53.176896px;}
.ws2_c01062{word-spacing:-49.498896px;}
.ws1_c01062{word-spacing:-49.360896px;}
.ws5_c01062{word-spacing:-5.058000px;}
.ws6_c01062{word-spacing:-4.800000px;}
.ws4_c01062{word-spacing:-3.072000px;}
.ws3_c01062{word-spacing:0.000000px;}
._0_c01062{margin-left:-10.640112px;}
._3_c01062{margin-left:-8.673417px;}
._1_c01062{margin-left:-2.277783px;}
._2_c01062{width:1.134000px;}
.fc0_c01062{color:rgb(255,255,255);}
.fs1_c01062{font-size:108.000000px;}
.fs0_c01062{font-size:235.296000px;}
.y0_c01062{bottom:0.000000px;}
.y6_c01062{bottom:252.342000px;}
.y5_c01062{bottom:366.471000px;}
.y4_c01062{bottom:405.351000px;}
.y3_c01062{bottom:442.800000px;}
.y2_c01062{bottom:517.639500px;}
.y1_c01062{bottom:582.051000px;}
.h3_c01062{height:73.872000px;}
.h2_c01062{height:77.544000px;}
.h1_c01062{height:167.855203px;}
.h0_c01062{height:810.000000px;}
.w0_c01062{width:1440.000000px;}
.x0_c01062{left:0.000000px;}
.x1_c01062{left:104.847000px;}
.x2_c01062{left:105.942750px;}
@media print{
.v0_c01062{vertical-align:0.000000pt;}
.ls9_c01062{letter-spacing:-3.392000pt;}
.ls8_c01062{letter-spacing:-3.333333pt;}
.lsf_c01062{letter-spacing:-3.269333pt;}
.lsd_c01062{letter-spacing:-2.416000pt;}
.ls10_c01062{letter-spacing:-1.226667pt;}
.lse_c01062{letter-spacing:-0.240000pt;}
.ls3_c01062{letter-spacing:-0.208000pt;}
.ls7_c01062{letter-spacing:-0.181333pt;}
.ls6_c01062{letter-spacing:-0.160000pt;}
.lsa_c01062{letter-spacing:-0.128000pt;}
.ls13_c01062{letter-spacing:-0.009600pt;}
.ls5_c01062{letter-spacing:0.000000pt;}
.ls11_c01062{letter-spacing:0.096000pt;}
.lsc_c01062{letter-spacing:0.144000pt;}
.ls4_c01062{letter-spacing:0.256000pt;}
.ls1_c01062{letter-spacing:0.268800pt;}
.lsb_c01062{letter-spacing:0.330667pt;}
.ls12_c01062{letter-spacing:0.362667pt;}
.ls2_c01062{letter-spacing:21.984000pt;}
.ls0_c01062{letter-spacing:62.400000pt;}
.ws0_c01062{word-spacing:-47.268352pt;}
.ws2_c01062{word-spacing:-43.999019pt;}
.ws1_c01062{word-spacing:-43.876352pt;}
.ws5_c01062{word-spacing:-4.496000pt;}
.ws6_c01062{word-spacing:-4.266667pt;}
.ws4_c01062{word-spacing:-2.730667pt;}
.ws3_c01062{word-spacing:0.000000pt;}
._0_c01062{margin-left:-9.457878pt;}
._3_c01062{margin-left:-7.709704pt;}
._1_c01062{margin-left:-2.024696pt;}
._2_c01062{width:1.008000pt;}
.fs1_c01062{font-size:96.000000pt;}
.fs0_c01062{font-size:209.152000pt;}
.y0_c01062{bottom:0.000000pt;}
.y6_c01062{bottom:224.304000pt;}
.y5_c01062{bottom:325.752000pt;}
.y4_c01062{bottom:360.312000pt;}
.y3_c01062{bottom:393.600000pt;}
.y2_c01062{bottom:460.124000pt;}
.y1_c01062{bottom:517.378667pt;}
.h3_c01062{height:65.664000pt;}
.h2_c01062{height:68.928000pt;}
.h1_c01062{height:149.204625pt;}
.h0_c01062{height:720.000000pt;}
.w0_c01062{width:1280.000000pt;}
.x0_c01062{left:0.000000pt;}
.x1_c01062{left:93.197333pt;}
.x2_c01062{left:94.171333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b5295a8e824f0b3106403dcf.woff2')format("woff");}.ff1_c01063{font-family:ff1_c01063;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01063;src:url('chunks/assets/font_91f0fd6d3de7cd8bba7252ec.woff2')format("woff");}.ff2_c01063{font-family:ff2_c01063;line-height:0.896000;font-style:normal;font-weight:normal;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_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff3_c01063{font-family:ff3_c01063;line-height:0.625000;font-style:normal;font-weight:normal;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_dd1e005e920f13e321e3e178.woff2')format("woff");}.ff4_c01063{font-family:ff4_c01063;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01063{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01063{vertical-align:0.000000px;}
.ls7_c01063{letter-spacing:-3.897600px;}
.ls8_c01063{letter-spacing:-2.030400px;}
.ls14_c01063{letter-spacing:-0.957600px;}
.lsf_c01063{letter-spacing:-0.280800px;}
.ls12_c01063{letter-spacing:-0.248400px;}
.lsd_c01063{letter-spacing:-0.216000px;}
.ls11_c01063{letter-spacing:-0.205200px;}
.lse_c01063{letter-spacing:-0.086400px;}
.lsa_c01063{letter-spacing:-0.075600px;}
.lsb_c01063{letter-spacing:-0.021600px;}
.ls9_c01063{letter-spacing:-0.010800px;}
.ls10_c01063{letter-spacing:0.000000px;}
.ls1_c01063{letter-spacing:0.096000px;}
.ls15_c01063{letter-spacing:0.115200px;}
.lsc_c01063{letter-spacing:0.183600px;}
.ls5_c01063{letter-spacing:0.223200px;}
.ls6_c01063{letter-spacing:0.244800px;}
.ls13_c01063{letter-spacing:0.309600px;}
.ls4_c01063{letter-spacing:0.388800px;}
.ls3_c01063{letter-spacing:24.948000px;}
.ls0_c01063{letter-spacing:43.200000px;}
.ls2_c01063{letter-spacing:97.200000px;}
.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;}
}
.ws2_c01063{word-spacing:-24.796800px;}
.ws7_c01063{word-spacing:-0.316800px;}
.ws8_c01063{word-spacing:-0.187200px;}
.ws6_c01063{word-spacing:-0.072000px;}
.ws9_c01063{word-spacing:0.000000px;}
.ws1_c01063{word-spacing:0.540000px;}
.ws5_c01063{word-spacing:0.885600px;}
.ws3_c01063{word-spacing:15.660000px;}
.ws4_c01063{word-spacing:15.969600px;}
.ws0_c01063{word-spacing:55.652400px;}
._6_c01063{margin-left:-5.472000px;}
._5_c01063{margin-left:-3.240000px;}
._4_c01063{margin-left:-2.196000px;}
._1_c01063{margin-left:-1.152000px;}
._3_c01063{width:1.440000px;}
._2_c01063{width:2.880000px;}
._0_c01063{width:4.224000px;}
.fc2_c01063{color:rgb(5,99,193);}
.fc1_c01063{color:rgb(0,0,0);}
.fc0_c01063{color:rgb(68,84,106);}
.fs2_c01063{font-size:72.000000px;}
.fs1_c01063{font-size:108.000000px;}
.fs0_c01063{font-size:192.000000px;}
.y0_c01063{bottom:0.000000px;}
.ye_c01063{bottom:57.600000px;}
.yd_c01063{bottom:144.018000px;}
.yc_c01063{bottom:176.769000px;}
.yb_c01063{bottom:208.440000px;}
.ya_c01063{bottom:241.569000px;}
.y9_c01063{bottom:272.889000px;}
.y8_c01063{bottom:306.018000px;}
.y7_c01063{bottom:338.769000px;}
.y6_c01063{bottom:403.569000px;}
.y5_c01063{bottom:434.889000px;}
.y4_c01063{bottom:468.018000px;}
.y3_c01063{bottom:500.769000px;}
.y2_c01063{bottom:532.440000px;}
.y1_c01063{bottom:635.040000px;}
.h3_c01063{height:51.696000px;}
.h2_c01063{height:77.544000px;}
.h1_c01063{height:136.968750px;}
.h0_c01063{height:810.000000px;}
.w0_c01063{width:1440.000000px;}
.x0_c01063{left:0.000000px;}
.x2_c01063{left:273.388200px;}
.x3_c01063{left:280.800000px;}
.x1_c01063{left:393.203850px;}
@media print{
.v0_c01063{vertical-align:0.000000pt;}
.ls7_c01063{letter-spacing:-3.464533pt;}
.ls8_c01063{letter-spacing:-1.804800pt;}
.ls14_c01063{letter-spacing:-0.851200pt;}
.lsf_c01063{letter-spacing:-0.249600pt;}
.ls12_c01063{letter-spacing:-0.220800pt;}
.lsd_c01063{letter-spacing:-0.192000pt;}
.ls11_c01063{letter-spacing:-0.182400pt;}
.lse_c01063{letter-spacing:-0.076800pt;}
.lsa_c01063{letter-spacing:-0.067200pt;}
.lsb_c01063{letter-spacing:-0.019200pt;}
.ls9_c01063{letter-spacing:-0.009600pt;}
.ls10_c01063{letter-spacing:0.000000pt;}
.ls1_c01063{letter-spacing:0.085333pt;}
.ls15_c01063{letter-spacing:0.102400pt;}
.lsc_c01063{letter-spacing:0.163200pt;}
.ls5_c01063{letter-spacing:0.198400pt;}
.ls6_c01063{letter-spacing:0.217600pt;}
.ls13_c01063{letter-spacing:0.275200pt;}
.ls4_c01063{letter-spacing:0.345600pt;}
.ls3_c01063{letter-spacing:22.176000pt;}
.ls0_c01063{letter-spacing:38.400000pt;}
.ls2_c01063{letter-spacing:86.400000pt;}
.ws2_c01063{word-spacing:-22.041600pt;}
.ws7_c01063{word-spacing:-0.281600pt;}
.ws8_c01063{word-spacing:-0.166400pt;}
.ws6_c01063{word-spacing:-0.064000pt;}
.ws9_c01063{word-spacing:0.000000pt;}
.ws1_c01063{word-spacing:0.480000pt;}
.ws5_c01063{word-spacing:0.787200pt;}
.ws3_c01063{word-spacing:13.920000pt;}
.ws4_c01063{word-spacing:14.195200pt;}
.ws0_c01063{word-spacing:49.468800pt;}
._6_c01063{margin-left:-4.864000pt;}
._5_c01063{margin-left:-2.880000pt;}
._4_c01063{margin-left:-1.952000pt;}
._1_c01063{margin-left:-1.024000pt;}
._3_c01063{width:1.280000pt;}
._2_c01063{width:2.560000pt;}
._0_c01063{width:3.754667pt;}
.fs2_c01063{font-size:64.000000pt;}
.fs1_c01063{font-size:96.000000pt;}
.fs0_c01063{font-size:170.666667pt;}
.y0_c01063{bottom:0.000000pt;}
.ye_c01063{bottom:51.200000pt;}
.yd_c01063{bottom:128.016000pt;}
.yc_c01063{bottom:157.128000pt;}
.yb_c01063{bottom:185.280000pt;}
.ya_c01063{bottom:214.728000pt;}
.y9_c01063{bottom:242.568000pt;}
.y8_c01063{bottom:272.016000pt;}
.y7_c01063{bottom:301.128000pt;}
.y6_c01063{bottom:358.728000pt;}
.y5_c01063{bottom:386.568000pt;}
.y4_c01063{bottom:416.016000pt;}
.y3_c01063{bottom:445.128000pt;}
.y2_c01063{bottom:473.280000pt;}
.y1_c01063{bottom:564.480000pt;}
.h3_c01063{height:45.952000pt;}
.h2_c01063{height:68.928000pt;}
.h1_c01063{height:121.750000pt;}
.h0_c01063{height:720.000000pt;}
.w0_c01063{width:1280.000000pt;}
.x0_c01063{left:0.000000pt;}
.x2_c01063{left:243.011733pt;}
.x3_c01063{left:249.600000pt;}
.x1_c01063{left:349.514533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ebfeff81c75896ff0c801007.woff2')format("woff");}.ff1_c01064{font-family:ff1_c01064;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01064;src:url('chunks/assets/font_91f0fd6d3de7cd8bba7252ec.woff2')format("woff");}.ff2_c01064{font-family:ff2_c01064;line-height:0.896000;font-style:normal;font-weight:normal;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_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff3_c01064{font-family:ff3_c01064;line-height:0.625000;font-style:normal;font-weight:normal;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_dd1e005e920f13e321e3e178.woff2')format("woff");}.ff4_c01064{font-family:ff4_c01064;line-height:0.896000;font-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_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);}
.m0_c01064{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);}
.m2_c01064{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01064{vertical-align:0.000000px;}
.ls8_c01064{letter-spacing:-1.598400px;}
.lsc_c01064{letter-spacing:-1.231200px;}
.ls11_c01064{letter-spacing:-0.957600px;}
.lse_c01064{letter-spacing:-0.324000px;}
.lsb_c01064{letter-spacing:-0.248400px;}
.ls6_c01064{letter-spacing:-0.086400px;}
.ls7_c01064{letter-spacing:-0.010800px;}
.ls9_c01064{letter-spacing:0.000000px;}
.ls2_c01064{letter-spacing:0.021600px;}
.lsd_c01064{letter-spacing:0.086400px;}
.ls12_c01064{letter-spacing:0.115200px;}
.ls3_c01064{letter-spacing:0.223200px;}
.ls4_c01064{letter-spacing:0.244800px;}
.lsf_c01064{letter-spacing:0.280800px;}
.lsa_c01064{letter-spacing:0.302400px;}
.ls10_c01064{letter-spacing:0.309600px;}
.ls5_c01064{letter-spacing:0.381176px;}
.ls1_c01064{letter-spacing:24.948000px;}
.ls0_c01064{letter-spacing:97.200000px;}
.sc__c01064{text-shadow:none;}
.sc1_c01064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c01064{text-shadow:-0.015em 0 rgb(68,84,106),0 0.015em rgb(68,84,106),0.015em 0 rgb(68,84,106),0 -0.015em  rgb(68,84,106);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01064{-webkit-text-stroke:0px transparent;}
.sc1_c01064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c01064{-webkit-text-stroke:0.015em rgb(68,84,106);text-shadow:none;}
}
.ws1_c01064{word-spacing:-24.688800px;}
.ws2_c01064{word-spacing:-24.429600px;}
.ws7_c01064{word-spacing:-0.316800px;}
.ws8_c01064{word-spacing:-0.187200px;}
.ws6_c01064{word-spacing:-0.072000px;}
.ws9_c01064{word-spacing:0.000000px;}
.ws0_c01064{word-spacing:0.021600px;}
.ws5_c01064{word-spacing:0.885600px;}
.ws3_c01064{word-spacing:15.660000px;}
.ws4_c01064{word-spacing:15.969600px;}
._3_c01064{margin-left:-4.658821px;}
._2_c01064{margin-left:-3.176469px;}
._1_c01064{margin-left:-2.117646px;}
._0_c01064{margin-left:-1.058823px;}
._4_c01064{width:1.037646px;}
._5_c01064{width:2.903508px;}
.fc2_c01064{color:rgb(5,99,193);}
.fc1_c01064{color:rgb(0,0,0);}
.fc0_c01064{color:rgb(68,84,106);}
.fs2_c01064{font-size:72.000000px;}
.fs1_c01064{font-size:108.000000px;}
.fs0_c01064{font-size:211.764600px;}
.y0_c01064{bottom:0.000000px;}
.y7_c01064{bottom:57.600000px;}
.y6_c01064{bottom:272.880000px;}
.y5_c01064{bottom:338.760000px;}
.y4_c01064{bottom:403.551000px;}
.y3_c01064{bottom:467.991000px;}
.y2_c01064{bottom:532.440000px;}
.y1_c01064{bottom:634.577700px;}
.h4_c01064{height:51.696000px;}
.h2_c01064{height:77.544000px;}
.h3_c01064{height:77.580000px;}
.h1_c01064{height:151.068399px;}
.h0_c01064{height:810.000000px;}
.w0_c01064{width:1440.000000px;}
.x0_c01064{left:0.000000px;}
.x2_c01064{left:273.388200px;}
.x3_c01064{left:280.800000px;}
.x1_c01064{left:466.550100px;}
@media print{
.v0_c01064{vertical-align:0.000000pt;}
.ls8_c01064{letter-spacing:-1.420800pt;}
.lsc_c01064{letter-spacing:-1.094400pt;}
.ls11_c01064{letter-spacing:-0.851200pt;}
.lse_c01064{letter-spacing:-0.288000pt;}
.lsb_c01064{letter-spacing:-0.220800pt;}
.ls6_c01064{letter-spacing:-0.076800pt;}
.ls7_c01064{letter-spacing:-0.009600pt;}
.ls9_c01064{letter-spacing:0.000000pt;}
.ls2_c01064{letter-spacing:0.019200pt;}
.lsd_c01064{letter-spacing:0.076800pt;}
.ls12_c01064{letter-spacing:0.102400pt;}
.ls3_c01064{letter-spacing:0.198400pt;}
.ls4_c01064{letter-spacing:0.217600pt;}
.lsf_c01064{letter-spacing:0.249600pt;}
.lsa_c01064{letter-spacing:0.268800pt;}
.ls10_c01064{letter-spacing:0.275200pt;}
.ls5_c01064{letter-spacing:0.338823pt;}
.ls1_c01064{letter-spacing:22.176000pt;}
.ls0_c01064{letter-spacing:86.400000pt;}
.ws1_c01064{word-spacing:-21.945600pt;}
.ws2_c01064{word-spacing:-21.715200pt;}
.ws7_c01064{word-spacing:-0.281600pt;}
.ws8_c01064{word-spacing:-0.166400pt;}
.ws6_c01064{word-spacing:-0.064000pt;}
.ws9_c01064{word-spacing:0.000000pt;}
.ws0_c01064{word-spacing:0.019200pt;}
.ws5_c01064{word-spacing:0.787200pt;}
.ws3_c01064{word-spacing:13.920000pt;}
.ws4_c01064{word-spacing:14.195200pt;}
._3_c01064{margin-left:-4.141174pt;}
._2_c01064{margin-left:-2.823528pt;}
._1_c01064{margin-left:-1.882352pt;}
._0_c01064{margin-left:-0.941176pt;}
._4_c01064{width:0.922352pt;}
._5_c01064{width:2.580896pt;}
.fs2_c01064{font-size:64.000000pt;}
.fs1_c01064{font-size:96.000000pt;}
.fs0_c01064{font-size:188.235200pt;}
.y0_c01064{bottom:0.000000pt;}
.y7_c01064{bottom:51.200000pt;}
.y6_c01064{bottom:242.560000pt;}
.y5_c01064{bottom:301.120000pt;}
.y4_c01064{bottom:358.712000pt;}
.y3_c01064{bottom:415.992000pt;}
.y2_c01064{bottom:473.280000pt;}
.y1_c01064{bottom:564.069067pt;}
.h4_c01064{height:45.952000pt;}
.h2_c01064{height:68.928000pt;}
.h3_c01064{height:68.960000pt;}
.h1_c01064{height:134.283021pt;}
.h0_c01064{height:720.000000pt;}
.w0_c01064{width:1280.000000pt;}
.x0_c01064{left:0.000000pt;}
.x2_c01064{left:243.011733pt;}
.x3_c01064{left:249.600000pt;}
.x1_c01064{left:414.711200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_91f0fd6d3de7cd8bba7252ec.woff2')format("woff");}.ff1_c01065{font-family:ff1_c01065;line-height:0.896000;font-style:normal;font-weight:normal;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_450059ab8bfc715b2db0b220.woff2')format("woff");}.ff2_c01065{font-family:ff2_c01065;line-height:0.650000;font-style:normal;font-weight:normal;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_e2ea344e8d23787d6ebd1ea3.woff2')format("woff");}.ff3_c01065{font-family:ff3_c01065;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01065{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01065{vertical-align:0.000000px;}
.lsc_c01065{letter-spacing:-4.082400px;}
.lsa_c01065{letter-spacing:-0.972000px;}
.ls12_c01065{letter-spacing:-0.378000px;}
.ls1_c01065{letter-spacing:-0.334800px;}
.ls7_c01065{letter-spacing:-0.280800px;}
.ls13_c01065{letter-spacing:-0.102600px;}
.lsb_c01065{letter-spacing:-0.086400px;}
.ls4_c01065{letter-spacing:-0.075600px;}
.ls6_c01065{letter-spacing:-0.010800px;}
.ls3_c01065{letter-spacing:0.000000px;}
.ls10_c01065{letter-spacing:0.140400px;}
.ls11_c01065{letter-spacing:0.151200px;}
.ls2_c01065{letter-spacing:0.183600px;}
.lsf_c01065{letter-spacing:0.232200px;}
.ls5_c01065{letter-spacing:0.248400px;}
.ls8_c01065{letter-spacing:0.302400px;}
.lse_c01065{letter-spacing:0.319200px;}
.ls9_c01065{letter-spacing:0.334800px;}
.lsd_c01065{letter-spacing:0.388800px;}
.ls0_c01065{letter-spacing:24.732000px;}
.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;}
}
.ws3_c01065{word-spacing:-24.796800px;}
.ws1_c01065{word-spacing:-24.710400px;}
.ws6_c01065{word-spacing:-0.205200px;}
.ws8_c01065{word-spacing:0.000000px;}
.ws7_c01065{word-spacing:0.048600px;}
.ws0_c01065{word-spacing:0.324000px;}
.ws2_c01065{word-spacing:0.540000px;}
.ws4_c01065{word-spacing:11.367000px;}
.ws5_c01065{word-spacing:11.863200px;}
._3_c01065{margin-left:-5.076000px;}
._1_c01065{margin-left:-2.592000px;}
._2_c01065{margin-left:-1.080000px;}
._0_c01065{width:1.080000px;}
._4_c01065{width:3.780000px;}
._5_c01065{width:4.860000px;}
.fc2_c01065{color:rgb(5,99,193);}
.fc1_c01065{color:rgb(255,0,0);}
.fc0_c01065{color:rgb(0,0,0);}
.fs2_c01065{font-size:54.000000px;}
.fs0_c01065{font-size:108.000000px;}
.fs1_c01065{font-size:168.000000px;}
.y0_c01065{bottom:0.000000px;}
.y21_c01065{bottom:20.160000px;}
.y1c_c01065{bottom:37.080000px;}
.y1f_c01065{bottom:77.040000px;}
.ye_c01065{bottom:104.040000px;}
.y2_c01065{bottom:104.400000px;}
.y1e_c01065{bottom:110.160000px;}
.y1d_c01065{bottom:141.480000px;}
.y1b_c01065{bottom:184.680000px;}
.y3_c01065{bottom:200.880000px;}
.y11_c01065{bottom:202.320000px;}
.y1a_c01065{bottom:217.800000px;}
.yf_c01065{bottom:232.200000px;}
.y10_c01065{bottom:234.000000px;}
.y15_c01065{bottom:242.280000px;}
.y19_c01065{bottom:249.120000px;}
.y18_c01065{bottom:282.240000px;}
.y14_c01065{bottom:286.200000px;}
.y17_c01065{bottom:315.360000px;}
.y16_c01065{bottom:346.680000px;}
.y12_c01065{bottom:361.800000px;}
.ya_c01065{bottom:395.640000px;}
.yd_c01065{bottom:405.720000px;}
.y8_c01065{bottom:428.760000px;}
.yc_c01065{bottom:449.280000px;}
.y6_c01065{bottom:461.880000px;}
.y13_c01065{bottom:466.200000px;}
.y4_c01065{bottom:493.200000px;}
.y1_c01065{bottom:589.680000px;}
.yb_c01065{bottom:596.520000px;}
.y9_c01065{bottom:629.640000px;}
.y7_c01065{bottom:662.760000px;}
.y5_c01065{bottom:694.080000px;}
.y20_c01065{bottom:752.760000px;}
.h8_c01065{height:38.772000px;}
.h2_c01065{height:77.544000px;}
.h7_c01065{height:107.688000px;}
.h1_c01065{height:220.320000px;}
.h4_c01065{height:227.160000px;}
.h5_c01065{height:453.960000px;}
.h6_c01065{height:458.640000px;}
.h3_c01065{height:609.120000px;}
.h0_c01065{height:810.000000px;}
.w1_c01065{width:480.240000px;}
.w0_c01065{width:1440.000000px;}
.x0_c01065{left:0.000000px;}
.x2_c01065{left:10.884150px;}
.x1_c01065{left:239.760000px;}
.x13_c01065{left:250.800000px;}
.x12_c01065{left:611.584050px;}
.x3_c01065{left:720.000000px;}
.xe_c01065{left:793.800000px;}
.x11_c01065{left:799.050000px;}
.xa_c01065{left:824.010000px;}
.xc_c01065{left:840.750000px;}
.x5_c01065{left:848.550000px;}
.x8_c01065{left:849.675000px;}
.x10_c01065{left:855.637500px;}
.xd_c01065{left:864.495000px;}
.x9_c01065{left:880.402500px;}
.x7_c01065{left:883.552500px;}
.xf_c01065{left:906.802500px;}
.x4_c01065{left:933.615000px;}
.xb_c01065{left:951.052500px;}
.x6_c01065{left:958.035000px;}
@media print{
.v0_c01065{vertical-align:0.000000pt;}
.lsc_c01065{letter-spacing:-3.628800pt;}
.lsa_c01065{letter-spacing:-0.864000pt;}
.ls12_c01065{letter-spacing:-0.336000pt;}
.ls1_c01065{letter-spacing:-0.297600pt;}
.ls7_c01065{letter-spacing:-0.249600pt;}
.ls13_c01065{letter-spacing:-0.091200pt;}
.lsb_c01065{letter-spacing:-0.076800pt;}
.ls4_c01065{letter-spacing:-0.067200pt;}
.ls6_c01065{letter-spacing:-0.009600pt;}
.ls3_c01065{letter-spacing:0.000000pt;}
.ls10_c01065{letter-spacing:0.124800pt;}
.ls11_c01065{letter-spacing:0.134400pt;}
.ls2_c01065{letter-spacing:0.163200pt;}
.lsf_c01065{letter-spacing:0.206400pt;}
.ls5_c01065{letter-spacing:0.220800pt;}
.ls8_c01065{letter-spacing:0.268800pt;}
.lse_c01065{letter-spacing:0.283733pt;}
.ls9_c01065{letter-spacing:0.297600pt;}
.lsd_c01065{letter-spacing:0.345600pt;}
.ls0_c01065{letter-spacing:21.984000pt;}
.ws3_c01065{word-spacing:-22.041600pt;}
.ws1_c01065{word-spacing:-21.964800pt;}
.ws6_c01065{word-spacing:-0.182400pt;}
.ws8_c01065{word-spacing:0.000000pt;}
.ws7_c01065{word-spacing:0.043200pt;}
.ws0_c01065{word-spacing:0.288000pt;}
.ws2_c01065{word-spacing:0.480000pt;}
.ws4_c01065{word-spacing:10.104000pt;}
.ws5_c01065{word-spacing:10.545067pt;}
._3_c01065{margin-left:-4.512000pt;}
._1_c01065{margin-left:-2.304000pt;}
._2_c01065{margin-left:-0.960000pt;}
._0_c01065{width:0.960000pt;}
._4_c01065{width:3.360000pt;}
._5_c01065{width:4.320000pt;}
.fs2_c01065{font-size:48.000000pt;}
.fs0_c01065{font-size:96.000000pt;}
.fs1_c01065{font-size:149.333333pt;}
.y0_c01065{bottom:0.000000pt;}
.y21_c01065{bottom:17.920000pt;}
.y1c_c01065{bottom:32.960000pt;}
.y1f_c01065{bottom:68.480000pt;}
.ye_c01065{bottom:92.480000pt;}
.y2_c01065{bottom:92.800000pt;}
.y1e_c01065{bottom:97.920000pt;}
.y1d_c01065{bottom:125.760000pt;}
.y1b_c01065{bottom:164.160000pt;}
.y3_c01065{bottom:178.560000pt;}
.y11_c01065{bottom:179.840000pt;}
.y1a_c01065{bottom:193.600000pt;}
.yf_c01065{bottom:206.400000pt;}
.y10_c01065{bottom:208.000000pt;}
.y15_c01065{bottom:215.360000pt;}
.y19_c01065{bottom:221.440000pt;}
.y18_c01065{bottom:250.880000pt;}
.y14_c01065{bottom:254.400000pt;}
.y17_c01065{bottom:280.320000pt;}
.y16_c01065{bottom:308.160000pt;}
.y12_c01065{bottom:321.600000pt;}
.ya_c01065{bottom:351.680000pt;}
.yd_c01065{bottom:360.640000pt;}
.y8_c01065{bottom:381.120000pt;}
.yc_c01065{bottom:399.360000pt;}
.y6_c01065{bottom:410.560000pt;}
.y13_c01065{bottom:414.400000pt;}
.y4_c01065{bottom:438.400000pt;}
.y1_c01065{bottom:524.160000pt;}
.yb_c01065{bottom:530.240000pt;}
.y9_c01065{bottom:559.680000pt;}
.y7_c01065{bottom:589.120000pt;}
.y5_c01065{bottom:616.960000pt;}
.y20_c01065{bottom:669.120000pt;}
.h8_c01065{height:34.464000pt;}
.h2_c01065{height:68.928000pt;}
.h7_c01065{height:95.722667pt;}
.h1_c01065{height:195.840000pt;}
.h4_c01065{height:201.920000pt;}
.h5_c01065{height:403.520000pt;}
.h6_c01065{height:407.680000pt;}
.h3_c01065{height:541.440000pt;}
.h0_c01065{height:720.000000pt;}
.w1_c01065{width:426.880000pt;}
.w0_c01065{width:1280.000000pt;}
.x0_c01065{left:0.000000pt;}
.x2_c01065{left:9.674800pt;}
.x1_c01065{left:213.120000pt;}
.x13_c01065{left:222.933333pt;}
.x12_c01065{left:543.630267pt;}
.x3_c01065{left:640.000000pt;}
.xe_c01065{left:705.600000pt;}
.x11_c01065{left:710.266667pt;}
.xa_c01065{left:732.453333pt;}
.xc_c01065{left:747.333333pt;}
.x5_c01065{left:754.266667pt;}
.x8_c01065{left:755.266667pt;}
.x10_c01065{left:760.566667pt;}
.xd_c01065{left:768.440000pt;}
.x9_c01065{left:782.580000pt;}
.x7_c01065{left:785.380000pt;}
.xf_c01065{left:806.046667pt;}
.x4_c01065{left:829.880000pt;}
.xb_c01065{left:845.380000pt;}
.x6_c01065{left:851.586667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_91f0fd6d3de7cd8bba7252ec.woff2')format("woff");}.ff1_c01066{font-family:ff1_c01066;line-height:0.896000;font-style:normal;font-weight:normal;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_dd1e005e920f13e321e3e178.woff2')format("woff");}.ff2_c01066{font-family:ff2_c01066;line-height:0.896000;font-style:normal;font-weight:normal;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_19e47cc1aedca0444ccba81e.woff2')format("woff");}.ff3_c01066{font-family:ff3_c01066;line-height:0.858000;font-style: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);}
.v1_c01066{vertical-align:-30.240000px;}
.v0_c01066{vertical-align:0.000000px;}
.lse_c01066{letter-spacing:-8.283600px;}
.ls17_c01066{letter-spacing:-5.734800px;}
.ls16_c01066{letter-spacing:-1.036800px;}
.ls19_c01066{letter-spacing:-0.460800px;}
.ls7_c01066{letter-spacing:-0.334800px;}
.ls13_c01066{letter-spacing:-0.324000px;}
.ls9_c01066{letter-spacing:-0.302400px;}
.ls6_c01066{letter-spacing:-0.259200px;}
.ls5_c01066{letter-spacing:-0.216000px;}
.lsd_c01066{letter-spacing:-0.183600px;}
.lsc_c01066{letter-spacing:-0.097200px;}
.ls12_c01066{letter-spacing:-0.086400px;}
.ls1a_c01066{letter-spacing:-0.075600px;}
.ls8_c01066{letter-spacing:-0.021600px;}
.ls11_c01066{letter-spacing:-0.010800px;}
.lsa_c01066{letter-spacing:0.000000px;}
.ls18_c01066{letter-spacing:0.021600px;}
.lsf_c01066{letter-spacing:0.050400px;}
.ls14_c01066{letter-spacing:0.097200px;}
.ls10_c01066{letter-spacing:0.183600px;}
.ls1_c01066{letter-spacing:0.216000px;}
.ls2_c01066{letter-spacing:0.280800px;}
.ls15_c01066{letter-spacing:0.302400px;}
.lsb_c01066{letter-spacing:0.334800px;}
.ls3_c01066{letter-spacing:24.732000px;}
.ls0_c01066{letter-spacing:24.948000px;}
.ls4_c01066{letter-spacing:49.464000px;}
.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;}
}
.ws5_c01066{word-spacing:-24.710400px;}
.ws2_c01066{word-spacing:-24.591600px;}
.ws6_c01066{word-spacing:-24.429600px;}
.ws3_c01066{word-spacing:-24.397200px;}
.ws4_c01066{word-spacing:-24.084000px;}
.ws8_c01066{word-spacing:0.000000px;}
.ws0_c01066{word-spacing:0.230400px;}
.ws1_c01066{word-spacing:0.324000px;}
.ws7_c01066{word-spacing:25.478400px;}
._3_c01066{margin-left:-3.456000px;}
._2_c01066{margin-left:-2.376000px;}
._1_c01066{margin-left:-1.188000px;}
._0_c01066{width:1.188000px;}
._9_c01066{width:2.268000px;}
._4_c01066{width:4.320000px;}
._7_c01066{width:5.724000px;}
._8_c01066{width:6.912000px;}
._5_c01066{width:7.992000px;}
._6_c01066{width:9.612000px;}
._a_c01066{width:380.419200px;}
.fc1_c01066{color:rgb(255,0,0);}
.fc0_c01066{color:rgb(0,0,0);}
.fs1_c01066{font-size:72.000000px;}
.fs0_c01066{font-size:108.000000px;}
.y0_c01066{bottom:0.000000px;}
.y18_c01066{bottom:49.320000px;}
.y13_c01066{bottom:60.120000px;}
.y9_c01066{bottom:104.040000px;}
.y2_c01066{bottom:104.400000px;}
.y11_c01066{bottom:135.720000px;}
.y19_c01066{bottom:160.920000px;}
.y17_c01066{bottom:196.560000px;}
.y6_c01066{bottom:202.320000px;}
.y16_c01066{bottom:229.320000px;}
.y5_c01066{bottom:233.640000px;}
.y15_c01066{bottom:262.440000px;}
.y14_c01066{bottom:293.760000px;}
.ya_c01066{bottom:340.920000px;}
.y12_c01066{bottom:369.360000px;}
.y10_c01066{bottom:412.560000px;}
.y4_c01066{bottom:416.520000px;}
.yf_c01066{bottom:445.680000px;}
.ye_c01066{bottom:477.360000px;}
.yd_c01066{bottom:510.120000px;}
.yb_c01066{bottom:543.240000px;}
.y8_c01066{bottom:546.120000px;}
.yc_c01066{bottom:574.560000px;}
.y1_c01066{bottom:589.680000px;}
.y7_c01066{bottom:618.840000px;}
.y3_c01066{bottom:694.080000px;}
.h7_c01066{height:51.696000px;}
.h2_c01066{height:77.544000px;}
.h1_c01066{height:220.320000px;}
.h4_c01066{height:227.160000px;}
.h3_c01066{height:393.480000px;}
.h5_c01066{height:453.960000px;}
.h6_c01066{height:708.480000px;}
.h0_c01066{height:810.000000px;}
.w1_c01066{width:480.240000px;}
.w0_c01066{width:1440.000000px;}
.x0_c01066{left:0.000000px;}
.x2_c01066{left:11.040000px;}
.x1_c01066{left:239.760000px;}
.x6_c01066{left:270.487500px;}
.xd_c01066{left:381.405000px;}
.x3_c01066{left:386.115000px;}
.x5_c01066{left:425.955000px;}
.xb_c01066{left:494.812500px;}
.x11_c01066{left:506.167500px;}
.x4_c01066{left:720.000000px;}
.xc_c01066{left:736.987500px;}
.xf_c01066{left:766.935000px;}
.xe_c01066{left:787.492500px;}
.x7_c01066{left:805.117500px;}
.x10_c01066{left:818.782500px;}
.x8_c01066{left:911.790000px;}
.xa_c01066{left:922.800000px;}
.x9_c01066{left:972.427500px;}
@media print{
.v1_c01066{vertical-align:-26.880000pt;}
.v0_c01066{vertical-align:0.000000pt;}
.lse_c01066{letter-spacing:-7.363200pt;}
.ls17_c01066{letter-spacing:-5.097600pt;}
.ls16_c01066{letter-spacing:-0.921600pt;}
.ls19_c01066{letter-spacing:-0.409600pt;}
.ls7_c01066{letter-spacing:-0.297600pt;}
.ls13_c01066{letter-spacing:-0.288000pt;}
.ls9_c01066{letter-spacing:-0.268800pt;}
.ls6_c01066{letter-spacing:-0.230400pt;}
.ls5_c01066{letter-spacing:-0.192000pt;}
.lsd_c01066{letter-spacing:-0.163200pt;}
.lsc_c01066{letter-spacing:-0.086400pt;}
.ls12_c01066{letter-spacing:-0.076800pt;}
.ls1a_c01066{letter-spacing:-0.067200pt;}
.ls8_c01066{letter-spacing:-0.019200pt;}
.ls11_c01066{letter-spacing:-0.009600pt;}
.lsa_c01066{letter-spacing:0.000000pt;}
.ls18_c01066{letter-spacing:0.019200pt;}
.lsf_c01066{letter-spacing:0.044800pt;}
.ls14_c01066{letter-spacing:0.086400pt;}
.ls10_c01066{letter-spacing:0.163200pt;}
.ls1_c01066{letter-spacing:0.192000pt;}
.ls2_c01066{letter-spacing:0.249600pt;}
.ls15_c01066{letter-spacing:0.268800pt;}
.lsb_c01066{letter-spacing:0.297600pt;}
.ls3_c01066{letter-spacing:21.984000pt;}
.ls0_c01066{letter-spacing:22.176000pt;}
.ls4_c01066{letter-spacing:43.968000pt;}
.ws5_c01066{word-spacing:-21.964800pt;}
.ws2_c01066{word-spacing:-21.859200pt;}
.ws6_c01066{word-spacing:-21.715200pt;}
.ws3_c01066{word-spacing:-21.686400pt;}
.ws4_c01066{word-spacing:-21.408000pt;}
.ws8_c01066{word-spacing:0.000000pt;}
.ws0_c01066{word-spacing:0.204800pt;}
.ws1_c01066{word-spacing:0.288000pt;}
.ws7_c01066{word-spacing:22.647467pt;}
._3_c01066{margin-left:-3.072000pt;}
._2_c01066{margin-left:-2.112000pt;}
._1_c01066{margin-left:-1.056000pt;}
._0_c01066{width:1.056000pt;}
._9_c01066{width:2.016000pt;}
._4_c01066{width:3.840000pt;}
._7_c01066{width:5.088000pt;}
._8_c01066{width:6.144000pt;}
._5_c01066{width:7.104000pt;}
._6_c01066{width:8.544000pt;}
._a_c01066{width:338.150400pt;}
.fs1_c01066{font-size:64.000000pt;}
.fs0_c01066{font-size:96.000000pt;}
.y0_c01066{bottom:0.000000pt;}
.y18_c01066{bottom:43.840000pt;}
.y13_c01066{bottom:53.440000pt;}
.y9_c01066{bottom:92.480000pt;}
.y2_c01066{bottom:92.800000pt;}
.y11_c01066{bottom:120.640000pt;}
.y19_c01066{bottom:143.040000pt;}
.y17_c01066{bottom:174.720000pt;}
.y6_c01066{bottom:179.840000pt;}
.y16_c01066{bottom:203.840000pt;}
.y5_c01066{bottom:207.680000pt;}
.y15_c01066{bottom:233.280000pt;}
.y14_c01066{bottom:261.120000pt;}
.ya_c01066{bottom:303.040000pt;}
.y12_c01066{bottom:328.320000pt;}
.y10_c01066{bottom:366.720000pt;}
.y4_c01066{bottom:370.240000pt;}
.yf_c01066{bottom:396.160000pt;}
.ye_c01066{bottom:424.320000pt;}
.yd_c01066{bottom:453.440000pt;}
.yb_c01066{bottom:482.880000pt;}
.y8_c01066{bottom:485.440000pt;}
.yc_c01066{bottom:510.720000pt;}
.y1_c01066{bottom:524.160000pt;}
.y7_c01066{bottom:550.080000pt;}
.y3_c01066{bottom:616.960000pt;}
.h7_c01066{height:45.952000pt;}
.h2_c01066{height:68.928000pt;}
.h1_c01066{height:195.840000pt;}
.h4_c01066{height:201.920000pt;}
.h3_c01066{height:349.760000pt;}
.h5_c01066{height:403.520000pt;}
.h6_c01066{height:629.760000pt;}
.h0_c01066{height:720.000000pt;}
.w1_c01066{width:426.880000pt;}
.w0_c01066{width:1280.000000pt;}
.x0_c01066{left:0.000000pt;}
.x2_c01066{left:9.813333pt;}
.x1_c01066{left:213.120000pt;}
.x6_c01066{left:240.433333pt;}
.xd_c01066{left:339.026667pt;}
.x3_c01066{left:343.213333pt;}
.x5_c01066{left:378.626667pt;}
.xb_c01066{left:439.833333pt;}
.x11_c01066{left:449.926667pt;}
.x4_c01066{left:640.000000pt;}
.xc_c01066{left:655.100000pt;}
.xf_c01066{left:681.720000pt;}
.xe_c01066{left:699.993333pt;}
.x7_c01066{left:715.660000pt;}
.x10_c01066{left:727.806667pt;}
.x8_c01066{left:810.480000pt;}
.xa_c01066{left:820.266667pt;}
.x9_c01066{left:864.380000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_91f0fd6d3de7cd8bba7252ec.woff2')format("woff");}.ff1_c01067{font-family:ff1_c01067;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01067{vertical-align:0.000000px;}
.ls6_c01067{letter-spacing:-2.721600px;}
.lsd_c01067{letter-spacing:-2.646000px;}
.ls9_c01067{letter-spacing:-0.280800px;}
.ls5_c01067{letter-spacing:-0.086400px;}
.ls4_c01067{letter-spacing:-0.075600px;}
.lsa_c01067{letter-spacing:0.000000px;}
.ls0_c01067{letter-spacing:0.064800px;}
.ls8_c01067{letter-spacing:0.086400px;}
.lsc_c01067{letter-spacing:0.183600px;}
.ls7_c01067{letter-spacing:0.302400px;}
.ls3_c01067{letter-spacing:0.313200px;}
.lsb_c01067{letter-spacing:0.334800px;}
.ls1_c01067{letter-spacing:24.732000px;}
.ls2_c01067{letter-spacing:24.948000px;}
.sc__c01067{text-shadow:none;}
.sc0_c01067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01067{-webkit-text-stroke:0px transparent;}
.sc0_c01067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01067{word-spacing:-24.710400px;}
.ws1_c01067{word-spacing:0.000000px;}
._4_c01067{margin-left:-5.076000px;}
._2_c01067{margin-left:-2.160000px;}
._0_c01067{margin-left:-1.080000px;}
._1_c01067{width:1.296000px;}
._3_c01067{width:3.240000px;}
.fc0_c01067{color:rgb(0,0,0);}
.fs0_c01067{font-size:108.000000px;}
.y0_c01067{bottom:0.000000px;}
.y19_c01067{bottom:23.400000px;}
.y18_c01067{bottom:66.960000px;}
.ye_c01067{bottom:104.400000px;}
.yf_c01067{bottom:114.120000px;}
.y17_c01067{bottom:142.920000px;}
.y16_c01067{bottom:176.040000px;}
.y11_c01067{bottom:202.320000px;}
.y3_c01067{bottom:202.680000px;}
.y15_c01067{bottom:207.360000px;}
.y10_c01067{bottom:233.640000px;}
.y2_c01067{bottom:234.000000px;}
.y14_c01067{bottom:283.320000px;}
.yd_c01067{bottom:287.280000px;}
.y13_c01067{bottom:316.440000px;}
.y12_c01067{bottom:347.760000px;}
.yc_c01067{bottom:434.520000px;}
.y1_c01067{bottom:460.080000px;}
.yb_c01067{bottom:467.640000px;}
.ya_c01067{bottom:500.760000px;}
.y9_c01067{bottom:532.080000px;}
.y8_c01067{bottom:565.200000px;}
.y7_c01067{bottom:596.520000px;}
.y6_c01067{bottom:629.640000px;}
.y5_c01067{bottom:662.760000px;}
.y4_c01067{bottom:694.080000px;}
.h2_c01067{height:77.544000px;}
.h9_c01067{height:146.160000px;}
.h8_c01067{height:190.080000px;}
.h3_c01067{height:227.160000px;}
.h1_c01067{height:349.920000px;}
.h6_c01067{height:427.680000px;}
.h4_c01067{height:453.960000px;}
.h7_c01067{height:622.080000px;}
.h5_c01067{height:762.480000px;}
.h0_c01067{height:810.000000px;}
.w1_c01067{width:480.240000px;}
.w0_c01067{width:1440.000000px;}
.x0_c01067{left:0.000000px;}
.x2_c01067{left:11.040000px;}
.x1_c01067{left:239.760000px;}
.x3_c01067{left:720.000000px;}
.x5_c01067{left:799.612500px;}
.x6_c01067{left:826.800000px;}
.x4_c01067{left:1115.415000px;}
@media print{
.v0_c01067{vertical-align:0.000000pt;}
.ls6_c01067{letter-spacing:-2.419200pt;}
.lsd_c01067{letter-spacing:-2.352000pt;}
.ls9_c01067{letter-spacing:-0.249600pt;}
.ls5_c01067{letter-spacing:-0.076800pt;}
.ls4_c01067{letter-spacing:-0.067200pt;}
.lsa_c01067{letter-spacing:0.000000pt;}
.ls0_c01067{letter-spacing:0.057600pt;}
.ls8_c01067{letter-spacing:0.076800pt;}
.lsc_c01067{letter-spacing:0.163200pt;}
.ls7_c01067{letter-spacing:0.268800pt;}
.ls3_c01067{letter-spacing:0.278400pt;}
.lsb_c01067{letter-spacing:0.297600pt;}
.ls1_c01067{letter-spacing:21.984000pt;}
.ls2_c01067{letter-spacing:22.176000pt;}
.ws0_c01067{word-spacing:-21.964800pt;}
.ws1_c01067{word-spacing:0.000000pt;}
._4_c01067{margin-left:-4.512000pt;}
._2_c01067{margin-left:-1.920000pt;}
._0_c01067{margin-left:-0.960000pt;}
._1_c01067{width:1.152000pt;}
._3_c01067{width:2.880000pt;}
.fs0_c01067{font-size:96.000000pt;}
.y0_c01067{bottom:0.000000pt;}
.y19_c01067{bottom:20.800000pt;}
.y18_c01067{bottom:59.520000pt;}
.ye_c01067{bottom:92.800000pt;}
.yf_c01067{bottom:101.440000pt;}
.y17_c01067{bottom:127.040000pt;}
.y16_c01067{bottom:156.480000pt;}
.y11_c01067{bottom:179.840000pt;}
.y3_c01067{bottom:180.160000pt;}
.y15_c01067{bottom:184.320000pt;}
.y10_c01067{bottom:207.680000pt;}
.y2_c01067{bottom:208.000000pt;}
.y14_c01067{bottom:251.840000pt;}
.yd_c01067{bottom:255.360000pt;}
.y13_c01067{bottom:281.280000pt;}
.y12_c01067{bottom:309.120000pt;}
.yc_c01067{bottom:386.240000pt;}
.y1_c01067{bottom:408.960000pt;}
.yb_c01067{bottom:415.680000pt;}
.ya_c01067{bottom:445.120000pt;}
.y9_c01067{bottom:472.960000pt;}
.y8_c01067{bottom:502.400000pt;}
.y7_c01067{bottom:530.240000pt;}
.y6_c01067{bottom:559.680000pt;}
.y5_c01067{bottom:589.120000pt;}
.y4_c01067{bottom:616.960000pt;}
.h2_c01067{height:68.928000pt;}
.h9_c01067{height:129.920000pt;}
.h8_c01067{height:168.960000pt;}
.h3_c01067{height:201.920000pt;}
.h1_c01067{height:311.040000pt;}
.h6_c01067{height:380.160000pt;}
.h4_c01067{height:403.520000pt;}
.h7_c01067{height:552.960000pt;}
.h5_c01067{height:677.760000pt;}
.h0_c01067{height:720.000000pt;}
.w1_c01067{width:426.880000pt;}
.w0_c01067{width:1280.000000pt;}
.x0_c01067{left:0.000000pt;}
.x2_c01067{left:9.813333pt;}
.x1_c01067{left:213.120000pt;}
.x3_c01067{left:640.000000pt;}
.x5_c01067{left:710.766667pt;}
.x6_c01067{left:734.933333pt;}
.x4_c01067{left:991.480000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_726df341ead4d3bcb409feac.woff2')format("woff");}.ff1_c01068{font-family:ff1_c01068;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01068;src:url('chunks/assets/font_ceab08ca1e13f68948d74eac.woff2')format("woff");}.ff2_c01068{font-family:ff2_c01068;line-height:0.861000;font-style:normal;font-weight:normal;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_201f49eaacd794574e3c104d.woff2')format("woff");}.ff3_c01068{font-family:ff3_c01068;line-height:0.896000;font-style:normal;font-weight:normal;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_cefc86d8bad7b942b7bb7c7b.woff2')format("woff");}.ff4_c01068{font-family:ff4_c01068;line-height:0.723000;font-style: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;}
.v1_c01068{vertical-align:33.120000px;}
.ls7_c01068{letter-spacing:-5.649600px;}
.ls17_c01068{letter-spacing:-5.522400px;}
.ls15_c01068{letter-spacing:-4.341600px;}
.ls12_c01068{letter-spacing:-1.339200px;}
.ls8_c01068{letter-spacing:-1.166400px;}
.ls14_c01068{letter-spacing:-0.813600px;}
.ls18_c01068{letter-spacing:-0.648000px;}
.ls16_c01068{letter-spacing:-0.352800px;}
.lse_c01068{letter-spacing:-0.057600px;}
.ls13_c01068{letter-spacing:-0.050400px;}
.lsb_c01068{letter-spacing:-0.021600px;}
.lsd_c01068{letter-spacing:-0.014400px;}
.lsa_c01068{letter-spacing:-0.007200px;}
.ls9_c01068{letter-spacing:0.000000px;}
.ls5_c01068{letter-spacing:0.014400px;}
.lsc_c01068{letter-spacing:0.021600px;}
.ls0_c01068{letter-spacing:0.028800px;}
.ls4_c01068{letter-spacing:0.036000px;}
.ls1_c01068{letter-spacing:0.043200px;}
.ls3_c01068{letter-spacing:0.050400px;}
.ls10_c01068{letter-spacing:0.302400px;}
.ls11_c01068{letter-spacing:0.338400px;}
.lsf_c01068{letter-spacing:0.345600px;}
.ls6_c01068{letter-spacing:16.200000px;}
.ls2_c01068{letter-spacing:16.300800px;}
.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;}
}
.wsd_c01068{word-spacing:-16.617600px;}
.ws9_c01068{word-spacing:-16.574400px;}
.ws7_c01068{word-spacing:-16.322400px;}
.ws2_c01068{word-spacing:-16.315200px;}
.ws4_c01068{word-spacing:-16.293600px;}
.ws8_c01068{word-spacing:-16.286400px;}
.wsc_c01068{word-spacing:-16.272000px;}
.ws3_c01068{word-spacing:-16.264800px;}
.wsa_c01068{word-spacing:-14.932800px;}
.ws5_c01068{word-spacing:-0.057600px;}
.ws6_c01068{word-spacing:-0.014400px;}
.wse_c01068{word-spacing:0.000000px;}
.wsb_c01068{word-spacing:0.057600px;}
.ws0_c01068{word-spacing:1.094400px;}
.ws1_c01068{word-spacing:279.291600px;}
._6_c01068{margin-left:-3.564000px;}
._5_c01068{margin-left:-2.361600px;}
._4_c01068{margin-left:-1.267200px;}
._3_c01068{width:1.056000px;}
._1_c01068{width:2.640000px;}
._2_c01068{width:4.488000px;}
._0_c01068{width:6.072000px;}
.fc1_c01068{color:rgb(0,0,0);}
.fc0_c01068{color:rgb(255,255,255);}
.fs1_c01068{font-size:72.000000px;}
.fs0_c01068{font-size:264.000000px;}
.y0_c01068{bottom:0.000000px;}
.y2b_c01068{bottom:109.080000px;}
.y33_c01068{bottom:112.680000px;}
.y2f_c01068{bottom:129.960000px;}
.y2a_c01068{bottom:130.320000px;}
.y32_c01068{bottom:133.560000px;}
.y25_c01068{bottom:140.040000px;}
.y2e_c01068{bottom:150.840000px;}
.y29_c01068{bottom:151.200000px;}
.y31_c01068{bottom:154.800000px;}
.y24_c01068{bottom:161.280000px;}
.y2d_c01068{bottom:172.080000px;}
.y28_c01068{bottom:173.520000px;}
.y30_c01068{bottom:177.120000px;}
.y23_c01068{bottom:183.600000px;}
.y2c_c01068{bottom:194.400000px;}
.y27_c01068{bottom:212.040000px;}
.y26_c01068{bottom:234.360000px;}
.y1b_c01068{bottom:254.880000px;}
.y34_c01068{bottom:256.680000px;}
.y16_c01068{bottom:263.520000px;}
.y1f_c01068{bottom:268.200000px;}
.y1a_c01068{bottom:274.320000px;}
.y15_c01068{bottom:284.400000px;}
.y1e_c01068{bottom:289.080000px;}
.y19_c01068{bottom:293.760000px;}
.y14_c01068{bottom:303.840000px;}
.y1d_c01068{bottom:308.520000px;}
.yd_c01068{bottom:315.360000px;}
.y13_c01068{bottom:323.640000px;}
.y8_c01068{bottom:326.880000px;}
.y1c_c01068{bottom:327.960000px;}
.y11_c01068{bottom:332.640000px;}
.yc_c01068{bottom:334.800000px;}
.y7_c01068{bottom:347.760000px;}
.y10_c01068{bottom:353.520000px;}
.yb_c01068{bottom:356.040000px;}
.y6_c01068{bottom:367.200000px;}
.y22_c01068{bottom:367.920000px;}
.y18_c01068{bottom:369.360000px;}
.yf_c01068{bottom:372.960000px;}
.ya_c01068{bottom:375.480000px;}
.y5_c01068{bottom:378.360000px;}
.y21_c01068{bottom:387.360000px;}
.y17_c01068{bottom:388.800000px;}
.ye_c01068{bottom:392.400000px;}
.y9_c01068{bottom:394.920000px;}
.y4_c01068{bottom:398.160000px;}
.y20_c01068{bottom:406.800000px;}
.y3_c01068{bottom:417.600000px;}
.y12_c01068{bottom:437.760000px;}
.y2_c01068{bottom:445.680000px;}
.y1_c01068{bottom:661.680000px;}
.h2_c01068{height:49.248000px;}
.h3_c01068{height:51.696000px;}
.h4_c01068{height:85.176000px;}
.h1_c01068{height:188.332031px;}
.h0_c01068{height:810.000000px;}
.w0_c01068{width:1440.000000px;}
.x0_c01068{left:0.000000px;}
.x2b_c01068{left:111.039750px;}
.x3_c01068{left:114.285600px;}
.x4_c01068{left:119.073600px;}
.x5_c01068{left:143.589600px;}
.x7_c01068{left:264.258900px;}
.x8_c01068{left:275.238900px;}
.x2a_c01068{left:277.253100px;}
.x6_c01068{left:286.542900px;}
.x2_c01068{left:338.057100px;}
.x1_c01068{left:432.372000px;}
.xb_c01068{left:444.224250px;}
.xa_c01068{left:447.716250px;}
.x9_c01068{left:449.804250px;}
.xc_c01068{left:458.912250px;}
.xd_c01068{left:549.253950px;}
.xf_c01068{left:564.913950px;}
.x24_c01068{left:567.158850px;}
.x23_c01068{left:568.832850px;}
.x26_c01068{left:571.964850px;}
.x25_c01068{left:575.276850px;}
.x10_c01068{left:577.477950px;}
.xe_c01068{left:585.559950px;}
.x14_c01068{left:715.159650px;}
.x12_c01068{left:719.119650px;}
.x13_c01068{left:737.893650px;}
.x15_c01068{left:774.210600px;}
.x16_c01068{left:777.000600px;}
.x17_c01068{left:922.930200px;}
.x18_c01068{left:925.738200px;}
.x22_c01068{left:953.613450px;}
.x20_c01068{left:959.697450px;}
.x19_c01068{left:972.430200px;}
.x21_c01068{left:973.557450px;}
.x11_c01068{left:1009.457700px;}
.x1a_c01068{left:1114.351050px;}
.x1b_c01068{left:1129.525050px;}
.x1c_c01068{left:1148.317050px;}
.x1e_c01068{left:1229.308200px;}
.x1d_c01068{left:1246.426200px;}
.x29_c01068{left:1247.814900px;}
.x28_c01068{left:1250.874900px;}
.x27_c01068{left:1256.058900px;}
.x1f_c01068{left:1260.178200px;}
@media print{
.v0_c01068{vertical-align:0.000000pt;}
.v1_c01068{vertical-align:29.440000pt;}
.ls7_c01068{letter-spacing:-5.021867pt;}
.ls17_c01068{letter-spacing:-4.908800pt;}
.ls15_c01068{letter-spacing:-3.859200pt;}
.ls12_c01068{letter-spacing:-1.190400pt;}
.ls8_c01068{letter-spacing:-1.036800pt;}
.ls14_c01068{letter-spacing:-0.723200pt;}
.ls18_c01068{letter-spacing:-0.576000pt;}
.ls16_c01068{letter-spacing:-0.313600pt;}
.lse_c01068{letter-spacing:-0.051200pt;}
.ls13_c01068{letter-spacing:-0.044800pt;}
.lsb_c01068{letter-spacing:-0.019200pt;}
.lsd_c01068{letter-spacing:-0.012800pt;}
.lsa_c01068{letter-spacing:-0.006400pt;}
.ls9_c01068{letter-spacing:0.000000pt;}
.ls5_c01068{letter-spacing:0.012800pt;}
.lsc_c01068{letter-spacing:0.019200pt;}
.ls0_c01068{letter-spacing:0.025600pt;}
.ls4_c01068{letter-spacing:0.032000pt;}
.ls1_c01068{letter-spacing:0.038400pt;}
.ls3_c01068{letter-spacing:0.044800pt;}
.ls10_c01068{letter-spacing:0.268800pt;}
.ls11_c01068{letter-spacing:0.300800pt;}
.lsf_c01068{letter-spacing:0.307200pt;}
.ls6_c01068{letter-spacing:14.400000pt;}
.ls2_c01068{letter-spacing:14.489600pt;}
.wsd_c01068{word-spacing:-14.771200pt;}
.ws9_c01068{word-spacing:-14.732800pt;}
.ws7_c01068{word-spacing:-14.508800pt;}
.ws2_c01068{word-spacing:-14.502400pt;}
.ws4_c01068{word-spacing:-14.483200pt;}
.ws8_c01068{word-spacing:-14.476800pt;}
.wsc_c01068{word-spacing:-14.464000pt;}
.ws3_c01068{word-spacing:-14.457600pt;}
.wsa_c01068{word-spacing:-13.273600pt;}
.ws5_c01068{word-spacing:-0.051200pt;}
.ws6_c01068{word-spacing:-0.012800pt;}
.wse_c01068{word-spacing:0.000000pt;}
.wsb_c01068{word-spacing:0.051200pt;}
.ws0_c01068{word-spacing:0.972800pt;}
.ws1_c01068{word-spacing:248.259200pt;}
._6_c01068{margin-left:-3.168000pt;}
._5_c01068{margin-left:-2.099200pt;}
._4_c01068{margin-left:-1.126400pt;}
._3_c01068{width:0.938667pt;}
._1_c01068{width:2.346667pt;}
._2_c01068{width:3.989333pt;}
._0_c01068{width:5.397333pt;}
.fs1_c01068{font-size:64.000000pt;}
.fs0_c01068{font-size:234.666667pt;}
.y0_c01068{bottom:0.000000pt;}
.y2b_c01068{bottom:96.960000pt;}
.y33_c01068{bottom:100.160000pt;}
.y2f_c01068{bottom:115.520000pt;}
.y2a_c01068{bottom:115.840000pt;}
.y32_c01068{bottom:118.720000pt;}
.y25_c01068{bottom:124.480000pt;}
.y2e_c01068{bottom:134.080000pt;}
.y29_c01068{bottom:134.400000pt;}
.y31_c01068{bottom:137.600000pt;}
.y24_c01068{bottom:143.360000pt;}
.y2d_c01068{bottom:152.960000pt;}
.y28_c01068{bottom:154.240000pt;}
.y30_c01068{bottom:157.440000pt;}
.y23_c01068{bottom:163.200000pt;}
.y2c_c01068{bottom:172.800000pt;}
.y27_c01068{bottom:188.480000pt;}
.y26_c01068{bottom:208.320000pt;}
.y1b_c01068{bottom:226.560000pt;}
.y34_c01068{bottom:228.160000pt;}
.y16_c01068{bottom:234.240000pt;}
.y1f_c01068{bottom:238.400000pt;}
.y1a_c01068{bottom:243.840000pt;}
.y15_c01068{bottom:252.800000pt;}
.y1e_c01068{bottom:256.960000pt;}
.y19_c01068{bottom:261.120000pt;}
.y14_c01068{bottom:270.080000pt;}
.y1d_c01068{bottom:274.240000pt;}
.yd_c01068{bottom:280.320000pt;}
.y13_c01068{bottom:287.680000pt;}
.y8_c01068{bottom:290.560000pt;}
.y1c_c01068{bottom:291.520000pt;}
.y11_c01068{bottom:295.680000pt;}
.yc_c01068{bottom:297.600000pt;}
.y7_c01068{bottom:309.120000pt;}
.y10_c01068{bottom:314.240000pt;}
.yb_c01068{bottom:316.480000pt;}
.y6_c01068{bottom:326.400000pt;}
.y22_c01068{bottom:327.040000pt;}
.y18_c01068{bottom:328.320000pt;}
.yf_c01068{bottom:331.520000pt;}
.ya_c01068{bottom:333.760000pt;}
.y5_c01068{bottom:336.320000pt;}
.y21_c01068{bottom:344.320000pt;}
.y17_c01068{bottom:345.600000pt;}
.ye_c01068{bottom:348.800000pt;}
.y9_c01068{bottom:351.040000pt;}
.y4_c01068{bottom:353.920000pt;}
.y20_c01068{bottom:361.600000pt;}
.y3_c01068{bottom:371.200000pt;}
.y12_c01068{bottom:389.120000pt;}
.y2_c01068{bottom:396.160000pt;}
.y1_c01068{bottom:588.160000pt;}
.h2_c01068{height:43.776000pt;}
.h3_c01068{height:45.952000pt;}
.h4_c01068{height:75.712000pt;}
.h1_c01068{height:167.406250pt;}
.h0_c01068{height:720.000000pt;}
.w0_c01068{width:1280.000000pt;}
.x0_c01068{left:0.000000pt;}
.x2b_c01068{left:98.702000pt;}
.x3_c01068{left:101.587200pt;}
.x4_c01068{left:105.843200pt;}
.x5_c01068{left:127.635200pt;}
.x7_c01068{left:234.896800pt;}
.x8_c01068{left:244.656800pt;}
.x2a_c01068{left:246.447200pt;}
.x6_c01068{left:254.704800pt;}
.x2_c01068{left:300.495200pt;}
.x1_c01068{left:384.330667pt;}
.xb_c01068{left:394.866000pt;}
.xa_c01068{left:397.970000pt;}
.x9_c01068{left:399.826000pt;}
.xc_c01068{left:407.922000pt;}
.xd_c01068{left:488.225733pt;}
.xf_c01068{left:502.145733pt;}
.x24_c01068{left:504.141200pt;}
.x23_c01068{left:505.629200pt;}
.x26_c01068{left:508.413200pt;}
.x25_c01068{left:511.357200pt;}
.x10_c01068{left:513.313733pt;}
.xe_c01068{left:520.497733pt;}
.x14_c01068{left:635.697467pt;}
.x12_c01068{left:639.217467pt;}
.x13_c01068{left:655.905467pt;}
.x15_c01068{left:688.187200pt;}
.x16_c01068{left:690.667200pt;}
.x17_c01068{left:820.382400pt;}
.x18_c01068{left:822.878400pt;}
.x22_c01068{left:847.656400pt;}
.x20_c01068{left:853.064400pt;}
.x19_c01068{left:864.382400pt;}
.x21_c01068{left:865.384400pt;}
.x11_c01068{left:897.295733pt;}
.x1a_c01068{left:990.534267pt;}
.x1b_c01068{left:1004.022267pt;}
.x1c_c01068{left:1020.726267pt;}
.x1e_c01068{left:1092.718400pt;}
.x1d_c01068{left:1107.934400pt;}
.x29_c01068{left:1109.168800pt;}
.x28_c01068{left:1111.888800pt;}
.x27_c01068{left:1116.496800pt;}
.x1f_c01068{left:1120.158400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_694f0080edc47688dfa95b03.woff2')format("woff");}.ff1_c01069{font-family:ff1_c01069;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01069;src:url('chunks/assets/font_76070ca71422f88497b3dd6d.woff2')format("woff");}.ff2_c01069{font-family:ff2_c01069;line-height:0.904000;font-style:normal;font-weight:normal;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_91f0fd6d3de7cd8bba7252ec.woff2')format("woff");}.ff3_c01069{font-family:ff3_c01069;line-height:0.896000;font-style:normal;font-weight:normal;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_cefc86d8bad7b942b7bb7c7b.woff2')format("woff");}.ff4_c01069{font-family:ff4_c01069;line-height:0.723000;font-style:normal;font-weight:normal;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_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff5_c01069{font-family:ff5_c01069;line-height:0.625000;font-style: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;}
.ls17_c01069{letter-spacing:-6.782400px;}
.ls1a_c01069{letter-spacing:-5.108400px;}
.ls3_c01069{letter-spacing:-3.013200px;}
.lsb_c01069{letter-spacing:-1.425600px;}
.ls14_c01069{letter-spacing:-0.831600px;}
.ls11_c01069{letter-spacing:-0.334800px;}
.ls18_c01069{letter-spacing:-0.280800px;}
.ls8_c01069{letter-spacing:-0.248400px;}
.lse_c01069{letter-spacing:-0.216000px;}
.lsa_c01069{letter-spacing:-0.205200px;}
.ls4_c01069{letter-spacing:-0.194400px;}
.ls5_c01069{letter-spacing:-0.129600px;}
.ls19_c01069{letter-spacing:-0.086400px;}
.lsc_c01069{letter-spacing:-0.075600px;}
.ls7_c01069{letter-spacing:-0.043200px;}
.lsd_c01069{letter-spacing:-0.021600px;}
.ls12_c01069{letter-spacing:0.000000px;}
.ls10_c01069{letter-spacing:0.021600px;}
.ls2_c01069{letter-spacing:0.129600px;}
.ls13_c01069{letter-spacing:0.183600px;}
.ls9_c01069{letter-spacing:0.216000px;}
.ls15_c01069{letter-spacing:0.280800px;}
.lsf_c01069{letter-spacing:0.302400px;}
.ls6_c01069{letter-spacing:0.334800px;}
.ls16_c01069{letter-spacing:0.388800px;}
.ls0_c01069{letter-spacing:24.732000px;}
.ls1_c01069{letter-spacing:24.948000px;}
.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:-216.129600px;}
.ws3_c01069{word-spacing:-24.742800px;}
.ws6_c01069{word-spacing:-24.710400px;}
.ws7_c01069{word-spacing:-24.591600px;}
.wsa_c01069{word-spacing:-24.429600px;}
.ws4_c01069{word-spacing:-24.364800px;}
.ws5_c01069{word-spacing:-24.332400px;}
.ws2_c01069{word-spacing:-24.278400px;}
.ws9_c01069{word-spacing:-24.127200px;}
.ws1_c01069{word-spacing:-21.394800px;}
.ws8_c01069{word-spacing:-17.625600px;}
.wsb_c01069{word-spacing:0.000000px;}
._7_c01069{margin-left:-9.018000px;}
._4_c01069{margin-left:-4.752000px;}
._3_c01069{margin-left:-2.592000px;}
._0_c01069{margin-left:-1.080000px;}
._2_c01069{width:1.728000px;}
._1_c01069{width:2.916000px;}
._5_c01069{width:4.428000px;}
._8_c01069{width:5.616000px;}
._6_c01069{width:6.804000px;}
._9_c01069{width:7.992000px;}
.fc3_c01069{color:transparent;}
.fc2_c01069{color:rgb(0,0,0);}
.fc1_c01069{color:rgb(255,255,255);}
.fc0_c01069{color:rgb(68,84,106);}
.fs1_c01069{font-size:108.000000px;}
.fs0_c01069{font-size:216.000000px;}
.y0_c01069{bottom:0.000000px;}
.y20_c01069{bottom:54.720000px;}
.y16_c01069{bottom:57.600000px;}
.y1b_c01069{bottom:79.200000px;}
.y1f_c01069{bottom:86.040000px;}
.y3_c01069{bottom:104.400000px;}
.y1e_c01069{bottom:119.151000px;}
.y15_c01069{bottom:133.200000px;}
.y1d_c01069{bottom:152.280000px;}
.y1c_c01069{bottom:183.600000px;}
.y17_c01069{bottom:187.200000px;}
.y7_c01069{bottom:202.680000px;}
.y12_c01069{bottom:208.800000px;}
.y1a_c01069{bottom:227.160000px;}
.y6_c01069{bottom:234.000000px;}
.y19_c01069{bottom:260.280000px;}
.y14_c01069{bottom:262.800000px;}
.y11_c01069{bottom:284.400000px;}
.y18_c01069{bottom:291.600000px;}
.yc_c01069{bottom:299.160000px;}
.ya_c01069{bottom:332.280000px;}
.y8_c01069{bottom:338.400000px;}
.ye_c01069{bottom:360.000000px;}
.y9_c01069{bottom:363.600000px;}
.y10_c01069{bottom:414.000000px;}
.y13_c01069{bottom:442.800000px;}
.y5_c01069{bottom:468.000000px;}
.yd_c01069{bottom:489.600000px;}
.yf_c01069{bottom:594.000000px;}
.y4_c01069{bottom:597.600000px;}
.y2_c01069{bottom:641.520000px;}
.yb_c01069{bottom:670.680000px;}
.y1_c01069{bottom:689.760000px;}
.he_c01069{height:67.500000px;}
.h5_c01069{height:77.544000px;}
.hb_c01069{height:78.084000px;}
.h3_c01069{height:78.408000px;}
.h1_c01069{height:154.089844px;}
.h2_c01069{height:168.480000px;}
.h4_c01069{height:212.400000px;}
.h8_c01069{height:227.160000px;}
.h6_c01069{height:342.000000px;}
.h9_c01069{height:450.000000px;}
.ha_c01069{height:453.960000px;}
.h7_c01069{height:471.600000px;}
.hc_c01069{height:608.760000px;}
.hd_c01069{height:695.160000px;}
.h0_c01069{height:810.000000px;}
.w1_c01069{width:219.600000px;}
.w2_c01069{width:237.240000px;}
.w3_c01069{width:504.360000px;}
.w0_c01069{width:1440.000000px;}
.x0_c01069{left:0.000000px;}
.x3_c01069{left:11.020650px;}
.x2_c01069{left:227.520000px;}
.x4_c01069{left:446.760000px;}
.x1_c01069{left:584.877600px;}
.x5_c01069{left:683.640000px;}
.x9_c01069{left:728.550000px;}
.x7_c01069{left:832.687500px;}
.x8_c01069{left:950.700000px;}
.x6_c01069{left:1029.802500px;}
@media print{
.v0_c01069{vertical-align:0.000000pt;}
.ls17_c01069{letter-spacing:-6.028800pt;}
.ls1a_c01069{letter-spacing:-4.540800pt;}
.ls3_c01069{letter-spacing:-2.678400pt;}
.lsb_c01069{letter-spacing:-1.267200pt;}
.ls14_c01069{letter-spacing:-0.739200pt;}
.ls11_c01069{letter-spacing:-0.297600pt;}
.ls18_c01069{letter-spacing:-0.249600pt;}
.ls8_c01069{letter-spacing:-0.220800pt;}
.lse_c01069{letter-spacing:-0.192000pt;}
.lsa_c01069{letter-spacing:-0.182400pt;}
.ls4_c01069{letter-spacing:-0.172800pt;}
.ls5_c01069{letter-spacing:-0.115200pt;}
.ls19_c01069{letter-spacing:-0.076800pt;}
.lsc_c01069{letter-spacing:-0.067200pt;}
.ls7_c01069{letter-spacing:-0.038400pt;}
.lsd_c01069{letter-spacing:-0.019200pt;}
.ls12_c01069{letter-spacing:0.000000pt;}
.ls10_c01069{letter-spacing:0.019200pt;}
.ls2_c01069{letter-spacing:0.115200pt;}
.ls13_c01069{letter-spacing:0.163200pt;}
.ls9_c01069{letter-spacing:0.192000pt;}
.ls15_c01069{letter-spacing:0.249600pt;}
.lsf_c01069{letter-spacing:0.268800pt;}
.ls6_c01069{letter-spacing:0.297600pt;}
.ls16_c01069{letter-spacing:0.345600pt;}
.ls0_c01069{letter-spacing:21.984000pt;}
.ls1_c01069{letter-spacing:22.176000pt;}
.ws0_c01069{word-spacing:-192.115200pt;}
.ws3_c01069{word-spacing:-21.993600pt;}
.ws6_c01069{word-spacing:-21.964800pt;}
.ws7_c01069{word-spacing:-21.859200pt;}
.wsa_c01069{word-spacing:-21.715200pt;}
.ws4_c01069{word-spacing:-21.657600pt;}
.ws5_c01069{word-spacing:-21.628800pt;}
.ws2_c01069{word-spacing:-21.580800pt;}
.ws9_c01069{word-spacing:-21.446400pt;}
.ws1_c01069{word-spacing:-19.017600pt;}
.ws8_c01069{word-spacing:-15.667200pt;}
.wsb_c01069{word-spacing:0.000000pt;}
._7_c01069{margin-left:-8.016000pt;}
._4_c01069{margin-left:-4.224000pt;}
._3_c01069{margin-left:-2.304000pt;}
._0_c01069{margin-left:-0.960000pt;}
._2_c01069{width:1.536000pt;}
._1_c01069{width:2.592000pt;}
._5_c01069{width:3.936000pt;}
._8_c01069{width:4.992000pt;}
._6_c01069{width:6.048000pt;}
._9_c01069{width:7.104000pt;}
.fs1_c01069{font-size:96.000000pt;}
.fs0_c01069{font-size:192.000000pt;}
.y0_c01069{bottom:0.000000pt;}
.y20_c01069{bottom:48.640000pt;}
.y16_c01069{bottom:51.200000pt;}
.y1b_c01069{bottom:70.400000pt;}
.y1f_c01069{bottom:76.480000pt;}
.y3_c01069{bottom:92.800000pt;}
.y1e_c01069{bottom:105.912000pt;}
.y15_c01069{bottom:118.400000pt;}
.y1d_c01069{bottom:135.360000pt;}
.y1c_c01069{bottom:163.200000pt;}
.y17_c01069{bottom:166.400000pt;}
.y7_c01069{bottom:180.160000pt;}
.y12_c01069{bottom:185.600000pt;}
.y1a_c01069{bottom:201.920000pt;}
.y6_c01069{bottom:208.000000pt;}
.y19_c01069{bottom:231.360000pt;}
.y14_c01069{bottom:233.600000pt;}
.y11_c01069{bottom:252.800000pt;}
.y18_c01069{bottom:259.200000pt;}
.yc_c01069{bottom:265.920000pt;}
.ya_c01069{bottom:295.360000pt;}
.y8_c01069{bottom:300.800000pt;}
.ye_c01069{bottom:320.000000pt;}
.y9_c01069{bottom:323.200000pt;}
.y10_c01069{bottom:368.000000pt;}
.y13_c01069{bottom:393.600000pt;}
.y5_c01069{bottom:416.000000pt;}
.yd_c01069{bottom:435.200000pt;}
.yf_c01069{bottom:528.000000pt;}
.y4_c01069{bottom:531.200000pt;}
.y2_c01069{bottom:570.240000pt;}
.yb_c01069{bottom:596.160000pt;}
.y1_c01069{bottom:613.120000pt;}
.he_c01069{height:60.000000pt;}
.h5_c01069{height:68.928000pt;}
.hb_c01069{height:69.408000pt;}
.h3_c01069{height:69.696000pt;}
.h1_c01069{height:136.968750pt;}
.h2_c01069{height:149.760000pt;}
.h4_c01069{height:188.800000pt;}
.h8_c01069{height:201.920000pt;}
.h6_c01069{height:304.000000pt;}
.h9_c01069{height:400.000000pt;}
.ha_c01069{height:403.520000pt;}
.h7_c01069{height:419.200000pt;}
.hc_c01069{height:541.120000pt;}
.hd_c01069{height:617.920000pt;}
.h0_c01069{height:720.000000pt;}
.w1_c01069{width:195.200000pt;}
.w2_c01069{width:210.880000pt;}
.w3_c01069{width:448.320000pt;}
.w0_c01069{width:1280.000000pt;}
.x0_c01069{left:0.000000pt;}
.x3_c01069{left:9.796133pt;}
.x2_c01069{left:202.240000pt;}
.x4_c01069{left:397.120000pt;}
.x1_c01069{left:519.891200pt;}
.x5_c01069{left:607.680000pt;}
.x9_c01069{left:647.600000pt;}
.x7_c01069{left:740.166667pt;}
.x8_c01069{left:845.066667pt;}
.x6_c01069{left:915.380000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6560b9a7e4765e223ab9eb3b.woff2')format("woff");}.ff1_c01070{font-family:ff1_c01070;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01070;src:url('chunks/assets/font_dd1e005e920f13e321e3e178.woff2')format("woff");}.ff2_c01070{font-family:ff2_c01070;line-height:0.896000;font-style: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;}
.ls3_c01070{letter-spacing:-1.332000px;}
.ls1_c01070{letter-spacing:-0.957600px;}
.ls8_c01070{letter-spacing:-0.943200px;}
.ls4_c01070{letter-spacing:0.000000px;}
.ls5_c01070{letter-spacing:0.014400px;}
.ls6_c01070{letter-spacing:0.144000px;}
.ls0_c01070{letter-spacing:0.172800px;}
.ls7_c01070{letter-spacing:0.302400px;}
.ls2_c01070{letter-spacing:0.540000px;}
.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;}
}
.ws1_c01070{word-spacing:-0.612000px;}
.ws6_c01070{word-spacing:-0.374400px;}
.ws5_c01070{word-spacing:-0.216000px;}
.ws4_c01070{word-spacing:-0.086400px;}
.ws3_c01070{word-spacing:-0.072000px;}
.ws8_c01070{word-spacing:0.000000px;}
.ws7_c01070{word-spacing:0.871200px;}
.ws0_c01070{word-spacing:0.885600px;}
.ws2_c01070{word-spacing:1.260000px;}
._3_c01070{margin-left:-4.147200px;}
._4_c01070{margin-left:-2.232000px;}
._0_c01070{margin-left:-1.080000px;}
._2_c01070{width:1.152000px;}
._1_c01070{width:2.232000px;}
.fc1_c01070{color:rgb(0,0,0);}
.fc0_c01070{color:rgb(64,49,82);}
.fs1_c01070{font-size:72.000000px;}
.fs0_c01070{font-size:216.000000px;}
.y0_c01070{bottom:0.000000px;}
.y2_c01070{bottom:19.080000px;}
.y1_c01070{bottom:703.800000px;}
.h2_c01070{height:51.696000px;}
.h1_c01070{height:154.089844px;}
.h0_c01070{height:810.000000px;}
.w0_c01070{width:1440.000000px;}
.x0_c01070{left:0.000000px;}
.x1_c01070{left:109.800000px;}
.x2_c01070{left:338.769600px;}
@media print{
.v0_c01070{vertical-align:0.000000pt;}
.ls3_c01070{letter-spacing:-1.184000pt;}
.ls1_c01070{letter-spacing:-0.851200pt;}
.ls8_c01070{letter-spacing:-0.838400pt;}
.ls4_c01070{letter-spacing:0.000000pt;}
.ls5_c01070{letter-spacing:0.012800pt;}
.ls6_c01070{letter-spacing:0.128000pt;}
.ls0_c01070{letter-spacing:0.153600pt;}
.ls7_c01070{letter-spacing:0.268800pt;}
.ls2_c01070{letter-spacing:0.480000pt;}
.ws1_c01070{word-spacing:-0.544000pt;}
.ws6_c01070{word-spacing:-0.332800pt;}
.ws5_c01070{word-spacing:-0.192000pt;}
.ws4_c01070{word-spacing:-0.076800pt;}
.ws3_c01070{word-spacing:-0.064000pt;}
.ws8_c01070{word-spacing:0.000000pt;}
.ws7_c01070{word-spacing:0.774400pt;}
.ws0_c01070{word-spacing:0.787200pt;}
.ws2_c01070{word-spacing:1.120000pt;}
._3_c01070{margin-left:-3.686400pt;}
._4_c01070{margin-left:-1.984000pt;}
._0_c01070{margin-left:-0.960000pt;}
._2_c01070{width:1.024000pt;}
._1_c01070{width:1.984000pt;}
.fs1_c01070{font-size:64.000000pt;}
.fs0_c01070{font-size:192.000000pt;}
.y0_c01070{bottom:0.000000pt;}
.y2_c01070{bottom:16.960000pt;}
.y1_c01070{bottom:625.600000pt;}
.h2_c01070{height:45.952000pt;}
.h1_c01070{height:136.968750pt;}
.h0_c01070{height:720.000000pt;}
.w0_c01070{width:1280.000000pt;}
.x0_c01070{left:0.000000pt;}
.x1_c01070{left:97.600000pt;}
.x2_c01070{left:301.128533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c35c7df68f12c5a2e360ba70.woff2')format("woff");}.ff1_c01071{font-family:ff1_c01071;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c01071{letter-spacing:-0.343200px;}
.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:0.000000px;}
.fc0_c01071{color:rgb(0,0,0);}
.fs0_c01071{font-size:264.000000px;}
.y0_c01071{bottom:0.000000px;}
.y1_c01071{bottom:717.840000px;}
.h1_c01071{height:188.332031px;}
.h0_c01071{height:810.000000px;}
.w0_c01071{width:1440.000000px;}
.x0_c01071{left:0.000000px;}
.x1_c01071{left:315.754050px;}
@media print{
.v0_c01071{vertical-align:0.000000pt;}
.ls0_c01071{letter-spacing:-0.305067pt;}
.ws0_c01071{word-spacing:0.000000pt;}
.fs0_c01071{font-size:234.666667pt;}
.y0_c01071{bottom:0.000000pt;}
.y1_c01071{bottom:638.080000pt;}
.h1_c01071{height:167.406250pt;}
.h0_c01071{height:720.000000pt;}
.w0_c01071{width:1280.000000pt;}
.x0_c01071{left:0.000000pt;}
.x1_c01071{left:280.670267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b885c7ba25c779193527dc9d.woff2')format("woff");}.ff1_c01072{font-family:ff1_c01072;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01072;src:url('chunks/assets/font_91f0fd6d3de7cd8bba7252ec.woff2')format("woff");}.ff2_c01072{font-family:ff2_c01072;line-height:0.896000;font-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_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);}
.m0_c01072{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_c01072{vertical-align:0.000000px;}
.ls2_c01072{letter-spacing:-2.181600px;}
.ls5_c01072{letter-spacing:-1.404000px;}
.ls4_c01072{letter-spacing:-0.831600px;}
.ls6_c01072{letter-spacing:-0.270000px;}
.ls7_c01072{letter-spacing:-0.226800px;}
.ls1_c01072{letter-spacing:-0.151200px;}
.ls0_c01072{letter-spacing:-0.105882px;}
.ls3_c01072{letter-spacing:0.000000px;}
.ls8_c01072{letter-spacing:0.021600px;}
.ls9_c01072{letter-spacing:0.086400px;}
.sc__c01072{text-shadow:none;}
.sc1_c01072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c01072{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01072{-webkit-text-stroke:0px transparent;}
.sc1_c01072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c01072{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c01072{word-spacing:-23.576400px;}
.ws1_c01072{word-spacing:0.000000px;}
._2_c01072{margin-left:-2.702115px;}
._1_c01072{margin-left:-1.482352px;}
._0_c01072{width:1.058823px;}
._3_c01072{width:2.850354px;}
.fc0_c01072{color:rgb(0,0,0);}
.fs1_c01072{font-size:108.000000px;}
.fs0_c01072{font-size:211.764600px;}
.y0_c01072{bottom:0.000000px;}
.yf_c01072{bottom:22.644000px;}
.ye_c01072{bottom:55.773000px;}
.y7_c01072{bottom:66.627000px;}
.yd_c01072{bottom:87.093000px;}
.y6_c01072{bottom:99.378000px;}
.yc_c01072{bottom:120.222000px;}
.y5_c01072{bottom:131.049000px;}
.yb_c01072{bottom:151.542000px;}
.y4_c01072{bottom:164.178000px;}
.ya_c01072{bottom:184.671000px;}
.y3_c01072{bottom:196.929000px;}
.y9_c01072{bottom:217.800000px;}
.y2_c01072{bottom:228.600000px;}
.y8_c01072{bottom:249.120000px;}
.y1_c01072{bottom:722.417700px;}
.h2_c01072{height:77.544000px;}
.h1_c01072{height:151.068399px;}
.h0_c01072{height:810.000000px;}
.w0_c01072{width:1440.000000px;}
.x0_c01072{left:0.000000px;}
.x1_c01072{left:73.983450px;}
.x2_c01072{left:788.913750px;}
@media print{
.v0_c01072{vertical-align:0.000000pt;}
.ls2_c01072{letter-spacing:-1.939200pt;}
.ls5_c01072{letter-spacing:-1.248000pt;}
.ls4_c01072{letter-spacing:-0.739200pt;}
.ls6_c01072{letter-spacing:-0.240000pt;}
.ls7_c01072{letter-spacing:-0.201600pt;}
.ls1_c01072{letter-spacing:-0.134400pt;}
.ls0_c01072{letter-spacing:-0.094118pt;}
.ls3_c01072{letter-spacing:0.000000pt;}
.ls8_c01072{letter-spacing:0.019200pt;}
.ls9_c01072{letter-spacing:0.076800pt;}
.ws0_c01072{word-spacing:-20.956800pt;}
.ws1_c01072{word-spacing:0.000000pt;}
._2_c01072{margin-left:-2.401880pt;}
._1_c01072{margin-left:-1.317646pt;}
._0_c01072{width:0.941176pt;}
._3_c01072{width:2.533648pt;}
.fs1_c01072{font-size:96.000000pt;}
.fs0_c01072{font-size:188.235200pt;}
.y0_c01072{bottom:0.000000pt;}
.yf_c01072{bottom:20.128000pt;}
.ye_c01072{bottom:49.576000pt;}
.y7_c01072{bottom:59.224000pt;}
.yd_c01072{bottom:77.416000pt;}
.y6_c01072{bottom:88.336000pt;}
.yc_c01072{bottom:106.864000pt;}
.y5_c01072{bottom:116.488000pt;}
.yb_c01072{bottom:134.704000pt;}
.y4_c01072{bottom:145.936000pt;}
.ya_c01072{bottom:164.152000pt;}
.y3_c01072{bottom:175.048000pt;}
.y9_c01072{bottom:193.600000pt;}
.y2_c01072{bottom:203.200000pt;}
.y8_c01072{bottom:221.440000pt;}
.y1_c01072{bottom:642.149067pt;}
.h2_c01072{height:68.928000pt;}
.h1_c01072{height:134.283021pt;}
.h0_c01072{height:720.000000pt;}
.w0_c01072{width:1280.000000pt;}
.x0_c01072{left:0.000000pt;}
.x1_c01072{left:65.763067pt;}
.x2_c01072{left:701.256667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_76070ca71422f88497b3dd6d.woff2')format("woff");}.ff1_c01073{font-family:ff1_c01073;line-height:0.904000;font-style:normal;font-weight:normal;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_91f0fd6d3de7cd8bba7252ec.woff2')format("woff");}.ff2_c01073{font-family:ff2_c01073;line-height:0.896000;font-style:normal;font-weight:normal;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_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff3_c01073{font-family:ff3_c01073;line-height:0.625000;font-style:normal;font-weight:normal;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_201f49eaacd794574e3c104d.woff2')format("woff");}.ff4_c01073{font-family:ff4_c01073;line-height:0.896000;font-style:normal;font-weight:normal;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_cefc86d8bad7b942b7bb7c7b.woff2')format("woff");}.ff5_c01073{font-family:ff5_c01073;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01073;src:url('chunks/assets/font_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff6_c01073{font-family:ff6_c01073;line-height:0.625000;font-style: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;}
.ls16_c01073{letter-spacing:-9.698400px;}
.lsb_c01073{letter-spacing:-7.527600px;}
.ls10_c01073{letter-spacing:-6.782400px;}
.ls19_c01073{letter-spacing:-5.734800px;}
.ls1f_c01073{letter-spacing:-5.108400px;}
.ls7_c01073{letter-spacing:-3.596400px;}
.ls4_c01073{letter-spacing:-3.013200px;}
.ls23_c01073{letter-spacing:-1.569600px;}
.ls26_c01073{letter-spacing:-0.943200px;}
.lsf_c01073{letter-spacing:-0.928800px;}
.lsa_c01073{letter-spacing:-0.745200px;}
.ls14_c01073{letter-spacing:-0.334800px;}
.ls22_c01073{letter-spacing:-0.302400px;}
.lsd_c01073{letter-spacing:-0.280800px;}
.ls1d_c01073{letter-spacing:-0.226800px;}
.ls11_c01073{letter-spacing:-0.216000px;}
.ls1b_c01073{letter-spacing:-0.205200px;}
.ls5_c01073{letter-spacing:-0.194400px;}
.ls6_c01073{letter-spacing:-0.129600px;}
.ls9_c01073{letter-spacing:-0.086400px;}
.ls13_c01073{letter-spacing:-0.075600px;}
.lse_c01073{letter-spacing:-0.064800px;}
.ls27_c01073{letter-spacing:-0.050400px;}
.ls20_c01073{letter-spacing:-0.028800px;}
.ls1c_c01073{letter-spacing:-0.010800px;}
.lsc_c01073{letter-spacing:0.000000px;}
.ls24_c01073{letter-spacing:0.014400px;}
.ls1a_c01073{letter-spacing:0.021600px;}
.ls8_c01073{letter-spacing:0.064800px;}
.ls1e_c01073{letter-spacing:0.086400px;}
.ls18_c01073{letter-spacing:0.183600px;}
.ls2_c01073{letter-spacing:0.223200px;}
.ls12_c01073{letter-spacing:0.280800px;}
.ls15_c01073{letter-spacing:0.302400px;}
.ls21_c01073{letter-spacing:0.309600px;}
.ls25_c01073{letter-spacing:0.316800px;}
.ls17_c01073{letter-spacing:0.388800px;}
.ls1_c01073{letter-spacing:24.732000px;}
.ls0_c01073{letter-spacing:24.948000px;}
.ls3_c01073{letter-spacing:109.800000px;}
.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;}
}
.ws5_c01073{word-spacing:-24.710400px;}
.ws6_c01073{word-spacing:-24.688800px;}
.ws7_c01073{word-spacing:-24.494400px;}
.ws2_c01073{word-spacing:-24.472800px;}
.ws1_c01073{word-spacing:-24.278400px;}
.ws3_c01073{word-spacing:-23.662800px;}
.ws0_c01073{word-spacing:-21.394800px;}
.ws4_c01073{word-spacing:-20.811600px;}
.wsa_c01073{word-spacing:-16.286400px;}
.ws8_c01073{word-spacing:-16.207200px;}
.ws9_c01073{word-spacing:-15.969600px;}
.wsb_c01073{word-spacing:-15.328800px;}
.wsc_c01073{word-spacing:0.000000px;}
._9_c01073{margin-left:-3.888000px;}
._6_c01073{margin-left:-2.592000px;}
._2_c01073{margin-left:-1.296000px;}
._1_c01073{width:1.728000px;}
._0_c01073{width:2.916000px;}
._3_c01073{width:4.644000px;}
._5_c01073{width:6.372000px;}
._4_c01073{width:7.452000px;}
._7_c01073{width:9.612000px;}
._8_c01073{width:10.692000px;}
.fc1_c01073{color:rgb(0,0,0);}
.fc0_c01073{color:rgb(255,255,255);}
.fs1_c01073{font-size:72.000000px;}
.fs0_c01073{font-size:108.000000px;}
.y0_c01073{bottom:0.000000px;}
.y27_c01073{bottom:56.160000px;}
.y20_c01073{bottom:70.920000px;}
.y1b_c01073{bottom:104.040000px;}
.y2_c01073{bottom:104.400000px;}
.ya_c01073{bottom:124.920000px;}
.y26_c01073{bottom:131.742000px;}
.y25_c01073{bottom:164.871000px;}
.y14_c01073{bottom:178.920000px;}
.y24_c01073{bottom:196.191000px;}
.y5_c01073{bottom:202.320000px;}
.y23_c01073{bottom:229.320000px;}
.y4_c01073{bottom:233.640000px;}
.y22_c01073{bottom:262.440000px;}
.y15_c01073{bottom:265.320000px;}
.y16_c01073{bottom:276.840000px;}
.y21_c01073{bottom:293.760000px;}
.y9_c01073{bottom:298.800000px;}
.y1a_c01073{bottom:330.120000px;}
.y8_c01073{bottom:331.920000px;}
.y1f_c01073{bottom:336.600000px;}
.y6_c01073{bottom:340.920000px;}
.y7_c01073{bottom:363.240000px;}
.y1e_c01073{bottom:369.720000px;}
.y34_c01073{bottom:370.080000px;}
.y33_c01073{bottom:390.960000px;}
.y1d_c01073{bottom:402.840000px;}
.y32_c01073{bottom:413.640000px;}
.y1c_c01073{bottom:434.160000px;}
.y31_c01073{bottom:434.520000px;}
.y30_c01073{bottom:457.200000px;}
.y12_c01073{bottom:460.800000px;}
.y3_c01073{bottom:470.520000px;}
.y2f_c01073{bottom:478.080000px;}
.y19_c01073{bottom:497.160000px;}
.y2e_c01073{bottom:498.960000px;}
.yf_c01073{bottom:514.800000px;}
.y18_c01073{bottom:518.400000px;}
.y2d_c01073{bottom:521.640000px;}
.y17_c01073{bottom:542.160000px;}
.y2c_c01073{bottom:542.520000px;}
.yd_c01073{bottom:547.920000px;}
.y2b_c01073{bottom:565.200000px;}
.yb_c01073{bottom:579.240000px;}
.y13_c01073{bottom:585.720000px;}
.y2a_c01073{bottom:586.080000px;}
.y29_c01073{bottom:606.960000px;}
.y11_c01073{bottom:615.600000px;}
.y28_c01073{bottom:629.640000px;}
.y10_c01073{bottom:639.720000px;}
.y1_c01073{bottom:643.680000px;}
.ye_c01073{bottom:672.840000px;}
.yc_c01073{bottom:704.160000px;}
.h8_c01073{height:51.696000px;}
.h7_c01073{height:67.500000px;}
.h4_c01073{height:77.544000px;}
.hc_c01073{height:78.084000px;}
.h2_c01073{height:78.408000px;}
.h1_c01073{height:166.320000px;}
.hf_c01073{height:179.280000px;}
.hb_c01073{height:227.160000px;}
.h3_c01073{height:339.480000px;}
.h5_c01073{height:469.080000px;}
.ha_c01073{height:529.560000px;}
.he_c01073{height:611.280000px;}
.h9_c01073{height:631.080000px;}
.hd_c01073{height:680.760000px;}
.h6_c01073{height:685.080000px;}
.h0_c01073{height:810.000000px;}
.w1_c01073{width:163.080000px;}
.w2_c01073{width:272.520000px;}
.w3_c01073{width:525.600000px;}
.w0_c01073{width:1440.000000px;}
.x0_c01073{left:0.000000px;}
.x2_c01073{left:11.057850px;}
.x1_c01073{left:218.160000px;}
.x3_c01073{left:380.880000px;}
.x8_c01073{left:457.763250px;}
.x4_c01073{left:653.040000px;}
.x7_c01073{left:663.868650px;}
.x5_c01073{left:697.617150px;}
.x6_c01073{left:754.602150px;}
.x9_c01073{left:974.067150px;}
.xa_c01073{left:1210.020900px;}
.xb_c01073{left:1243.770900px;}
@media print{
.v0_c01073{vertical-align:0.000000pt;}
.ls16_c01073{letter-spacing:-8.620800pt;}
.lsb_c01073{letter-spacing:-6.691200pt;}
.ls10_c01073{letter-spacing:-6.028800pt;}
.ls19_c01073{letter-spacing:-5.097600pt;}
.ls1f_c01073{letter-spacing:-4.540800pt;}
.ls7_c01073{letter-spacing:-3.196800pt;}
.ls4_c01073{letter-spacing:-2.678400pt;}
.ls23_c01073{letter-spacing:-1.395200pt;}
.ls26_c01073{letter-spacing:-0.838400pt;}
.lsf_c01073{letter-spacing:-0.825600pt;}
.lsa_c01073{letter-spacing:-0.662400pt;}
.ls14_c01073{letter-spacing:-0.297600pt;}
.ls22_c01073{letter-spacing:-0.268800pt;}
.lsd_c01073{letter-spacing:-0.249600pt;}
.ls1d_c01073{letter-spacing:-0.201600pt;}
.ls11_c01073{letter-spacing:-0.192000pt;}
.ls1b_c01073{letter-spacing:-0.182400pt;}
.ls5_c01073{letter-spacing:-0.172800pt;}
.ls6_c01073{letter-spacing:-0.115200pt;}
.ls9_c01073{letter-spacing:-0.076800pt;}
.ls13_c01073{letter-spacing:-0.067200pt;}
.lse_c01073{letter-spacing:-0.057600pt;}
.ls27_c01073{letter-spacing:-0.044800pt;}
.ls20_c01073{letter-spacing:-0.025600pt;}
.ls1c_c01073{letter-spacing:-0.009600pt;}
.lsc_c01073{letter-spacing:0.000000pt;}
.ls24_c01073{letter-spacing:0.012800pt;}
.ls1a_c01073{letter-spacing:0.019200pt;}
.ls8_c01073{letter-spacing:0.057600pt;}
.ls1e_c01073{letter-spacing:0.076800pt;}
.ls18_c01073{letter-spacing:0.163200pt;}
.ls2_c01073{letter-spacing:0.198400pt;}
.ls12_c01073{letter-spacing:0.249600pt;}
.ls15_c01073{letter-spacing:0.268800pt;}
.ls21_c01073{letter-spacing:0.275200pt;}
.ls25_c01073{letter-spacing:0.281600pt;}
.ls17_c01073{letter-spacing:0.345600pt;}
.ls1_c01073{letter-spacing:21.984000pt;}
.ls0_c01073{letter-spacing:22.176000pt;}
.ls3_c01073{letter-spacing:97.600000pt;}
.ws5_c01073{word-spacing:-21.964800pt;}
.ws6_c01073{word-spacing:-21.945600pt;}
.ws7_c01073{word-spacing:-21.772800pt;}
.ws2_c01073{word-spacing:-21.753600pt;}
.ws1_c01073{word-spacing:-21.580800pt;}
.ws3_c01073{word-spacing:-21.033600pt;}
.ws0_c01073{word-spacing:-19.017600pt;}
.ws4_c01073{word-spacing:-18.499200pt;}
.wsa_c01073{word-spacing:-14.476800pt;}
.ws8_c01073{word-spacing:-14.406400pt;}
.ws9_c01073{word-spacing:-14.195200pt;}
.wsb_c01073{word-spacing:-13.625600pt;}
.wsc_c01073{word-spacing:0.000000pt;}
._9_c01073{margin-left:-3.456000pt;}
._6_c01073{margin-left:-2.304000pt;}
._2_c01073{margin-left:-1.152000pt;}
._1_c01073{width:1.536000pt;}
._0_c01073{width:2.592000pt;}
._3_c01073{width:4.128000pt;}
._5_c01073{width:5.664000pt;}
._4_c01073{width:6.624000pt;}
._7_c01073{width:8.544000pt;}
._8_c01073{width:9.504000pt;}
.fs1_c01073{font-size:64.000000pt;}
.fs0_c01073{font-size:96.000000pt;}
.y0_c01073{bottom:0.000000pt;}
.y27_c01073{bottom:49.920000pt;}
.y20_c01073{bottom:63.040000pt;}
.y1b_c01073{bottom:92.480000pt;}
.y2_c01073{bottom:92.800000pt;}
.ya_c01073{bottom:111.040000pt;}
.y26_c01073{bottom:117.104000pt;}
.y25_c01073{bottom:146.552000pt;}
.y14_c01073{bottom:159.040000pt;}
.y24_c01073{bottom:174.392000pt;}
.y5_c01073{bottom:179.840000pt;}
.y23_c01073{bottom:203.840000pt;}
.y4_c01073{bottom:207.680000pt;}
.y22_c01073{bottom:233.280000pt;}
.y15_c01073{bottom:235.840000pt;}
.y16_c01073{bottom:246.080000pt;}
.y21_c01073{bottom:261.120000pt;}
.y9_c01073{bottom:265.600000pt;}
.y1a_c01073{bottom:293.440000pt;}
.y8_c01073{bottom:295.040000pt;}
.y1f_c01073{bottom:299.200000pt;}
.y6_c01073{bottom:303.040000pt;}
.y7_c01073{bottom:322.880000pt;}
.y1e_c01073{bottom:328.640000pt;}
.y34_c01073{bottom:328.960000pt;}
.y33_c01073{bottom:347.520000pt;}
.y1d_c01073{bottom:358.080000pt;}
.y32_c01073{bottom:367.680000pt;}
.y1c_c01073{bottom:385.920000pt;}
.y31_c01073{bottom:386.240000pt;}
.y30_c01073{bottom:406.400000pt;}
.y12_c01073{bottom:409.600000pt;}
.y3_c01073{bottom:418.240000pt;}
.y2f_c01073{bottom:424.960000pt;}
.y19_c01073{bottom:441.920000pt;}
.y2e_c01073{bottom:443.520000pt;}
.yf_c01073{bottom:457.600000pt;}
.y18_c01073{bottom:460.800000pt;}
.y2d_c01073{bottom:463.680000pt;}
.y17_c01073{bottom:481.920000pt;}
.y2c_c01073{bottom:482.240000pt;}
.yd_c01073{bottom:487.040000pt;}
.y2b_c01073{bottom:502.400000pt;}
.yb_c01073{bottom:514.880000pt;}
.y13_c01073{bottom:520.640000pt;}
.y2a_c01073{bottom:520.960000pt;}
.y29_c01073{bottom:539.520000pt;}
.y11_c01073{bottom:547.200000pt;}
.y28_c01073{bottom:559.680000pt;}
.y10_c01073{bottom:568.640000pt;}
.y1_c01073{bottom:572.160000pt;}
.ye_c01073{bottom:598.080000pt;}
.yc_c01073{bottom:625.920000pt;}
.h8_c01073{height:45.952000pt;}
.h7_c01073{height:60.000000pt;}
.h4_c01073{height:68.928000pt;}
.hc_c01073{height:69.408000pt;}
.h2_c01073{height:69.696000pt;}
.h1_c01073{height:147.840000pt;}
.hf_c01073{height:159.360000pt;}
.hb_c01073{height:201.920000pt;}
.h3_c01073{height:301.760000pt;}
.h5_c01073{height:416.960000pt;}
.ha_c01073{height:470.720000pt;}
.he_c01073{height:543.360000pt;}
.h9_c01073{height:560.960000pt;}
.hd_c01073{height:605.120000pt;}
.h6_c01073{height:608.960000pt;}
.h0_c01073{height:720.000000pt;}
.w1_c01073{width:144.960000pt;}
.w2_c01073{width:242.240000pt;}
.w3_c01073{width:467.200000pt;}
.w0_c01073{width:1280.000000pt;}
.x0_c01073{left:0.000000pt;}
.x2_c01073{left:9.829200pt;}
.x1_c01073{left:193.920000pt;}
.x3_c01073{left:338.560000pt;}
.x8_c01073{left:406.900667pt;}
.x4_c01073{left:580.480000pt;}
.x7_c01073{left:590.105467pt;}
.x5_c01073{left:620.104133pt;}
.x6_c01073{left:670.757467pt;}
.x9_c01073{left:865.837467pt;}
.xa_c01073{left:1075.574133pt;}
.xb_c01073{left:1105.574133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_201f49eaacd794574e3c104d.woff2')format("woff");}.ff1_c01074{font-family:ff1_c01074;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01074{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01074{vertical-align:0.000000px;}
.ls1_c01074{letter-spacing:-0.957600px;}
.ls3_c01074{letter-spacing:-0.921600px;}
.ls0_c01074{letter-spacing:0.000000px;}
.ls4_c01074{letter-spacing:0.244800px;}
.ls2_c01074{letter-spacing:0.309600px;}
.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;}
}
.ws2_c01074{word-spacing:-16.272000px;}
.ws0_c01074{word-spacing:-15.314400px;}
.ws1_c01074{word-spacing:-0.072000px;}
.ws3_c01074{word-spacing:0.000000px;}
._0_c01074{margin-left:-7.351200px;}
._5_c01074{margin-left:-2.275200px;}
._4_c01074{margin-left:-1.000800px;}
._1_c01074{width:1.065600px;}
._3_c01074{width:2.160000px;}
._2_c01074{width:3.218400px;}
.fc1_c01074{color:rgb(5,99,193);}
.fc0_c01074{color:rgb(0,0,0);}
.fs0_c01074{font-size:72.000000px;}
.y0_c01074{bottom:0.000000px;}
.y3_c01074{bottom:20.880000px;}
.y1_c01074{bottom:21.600000px;}
.y2_c01074{bottom:43.560000px;}
.h1_c01074{height:51.696000px;}
.h0_c01074{height:810.000000px;}
.w0_c01074{width:1440.000000px;}
.x0_c01074{left:0.000000px;}
.x1_c01074{left:215.674050px;}
.x2_c01074{left:778.062150px;}
@media print{
.v0_c01074{vertical-align:0.000000pt;}
.ls1_c01074{letter-spacing:-0.851200pt;}
.ls3_c01074{letter-spacing:-0.819200pt;}
.ls0_c01074{letter-spacing:0.000000pt;}
.ls4_c01074{letter-spacing:0.217600pt;}
.ls2_c01074{letter-spacing:0.275200pt;}
.ws2_c01074{word-spacing:-14.464000pt;}
.ws0_c01074{word-spacing:-13.612800pt;}
.ws1_c01074{word-spacing:-0.064000pt;}
.ws3_c01074{word-spacing:0.000000pt;}
._0_c01074{margin-left:-6.534400pt;}
._5_c01074{margin-left:-2.022400pt;}
._4_c01074{margin-left:-0.889600pt;}
._1_c01074{width:0.947200pt;}
._3_c01074{width:1.920000pt;}
._2_c01074{width:2.860800pt;}
.fs0_c01074{font-size:64.000000pt;}
.y0_c01074{bottom:0.000000pt;}
.y3_c01074{bottom:18.560000pt;}
.y1_c01074{bottom:19.200000pt;}
.y2_c01074{bottom:38.720000pt;}
.h1_c01074{height:45.952000pt;}
.h0_c01074{height:720.000000pt;}
.w0_c01074{width:1280.000000pt;}
.x0_c01074{left:0.000000pt;}
.x1_c01074{left:191.710267pt;}
.x2_c01074{left:691.610800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d68284de71fcd357646145a.woff2')format("woff");}.ff1_c01075{font-family:ff1_c01075;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01075;src:url('chunks/assets/font_76070ca71422f88497b3dd6d.woff2')format("woff");}.ff2_c01075{font-family:ff2_c01075;line-height:0.904000;font-style:normal;font-weight:normal;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_3c75e8409722f180f7784d0a.woff2')format("woff");}.ff3_c01075{font-family:ff3_c01075;line-height:0.896000;font-style:normal;font-weight:normal;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_427d84e73158d2a05fb2de2a.woff2')format("woff");}.ff4_c01075{font-family:ff4_c01075;line-height:0.903000;font-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_c01075{transform:matrix(0.229165,-0.099917,0.099917,0.229165,0,0);-ms-transform:matrix(0.229165,-0.099917,0.099917,0.229165,0,0);-webkit-transform:matrix(0.229165,-0.099917,0.099917,0.229165,0,0);}
.m3_c01075{transform:matrix(0.232124,0.092836,-0.092836,0.232124,0,0);-ms-transform:matrix(0.232124,0.092836,-0.092836,0.232124,0,0);-webkit-transform:matrix(0.232124,0.092836,-0.092836,0.232124,0,0);}
.m4_c01075{transform:matrix(0.234206,-0.087451,0.087451,0.234206,0,0);-ms-transform:matrix(0.234206,-0.087451,0.087451,0.234206,0,0);-webkit-transform:matrix(0.234206,-0.087451,0.087451,0.234206,0,0);}
.m2_c01075{transform:matrix(0.238753,0.074143,-0.074143,0.238753,0,0);-ms-transform:matrix(0.238753,0.074143,-0.074143,0.238753,0,0);-webkit-transform:matrix(0.238753,0.074143,-0.074143,0.238753,0,0);}
.m5_c01075{transform:matrix(0.244553,-0.051904,0.051904,0.244553,0,0);-ms-transform:matrix(0.244553,-0.051904,0.051904,0.244553,0,0);-webkit-transform:matrix(0.244553,-0.051904,0.051904,0.244553,0,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;}
.lse_c01075{letter-spacing:-12.484800px;}
.ls2_c01075{letter-spacing:-3.412800px;}
.lsd_c01075{letter-spacing:-2.710800px;}
.lsf_c01075{letter-spacing:-1.447199px;}
.ls5_c01075{letter-spacing:-1.285200px;}
.ls10_c01075{letter-spacing:-1.069200px;}
.ls9_c01075{letter-spacing:-0.972000px;}
.lsb_c01075{letter-spacing:-0.334800px;}
.ls6_c01075{letter-spacing:-0.280800px;}
.ls1_c01075{letter-spacing:-0.259200px;}
.lsc_c01075{letter-spacing:-0.216000px;}
.ls3_c01075{letter-spacing:-0.129600px;}
.lsa_c01075{letter-spacing:-0.075600px;}
.ls7_c01075{letter-spacing:-0.010800px;}
.ls4_c01075{letter-spacing:0.075600px;}
.ls8_c01075{letter-spacing:0.097200px;}
.ls0_c01075{letter-spacing:48.686400px;}
.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;}
}
.ws9_c01075{word-spacing:-24.332413px;}
.wsc_c01075{word-spacing:-24.278420px;}
.ws0_c01075{word-spacing:-24.278400px;}
.wsb_c01075{word-spacing:-23.338798px;}
.ws1_c01075{word-spacing:-23.122800px;}
.wsa_c01075{word-spacing:-22.960784px;}
.ws4_c01075{word-spacing:-0.205200px;}
.ws3_c01075{word-spacing:-0.097200px;}
.ws6_c01075{word-spacing:-0.032400px;}
.wsd_c01075{word-spacing:0.000000px;}
.ws7_c01075{word-spacing:0.108000px;}
.ws2_c01075{word-spacing:0.172800px;}
.ws5_c01075{word-spacing:0.864000px;}
.ws8_c01075{word-spacing:2.602800px;}
._1_c01075{margin-left:-2.592000px;}
._4_c01075{margin-left:-1.404000px;}
._0_c01075{width:1.080000px;}
._2_c01075{width:3.240000px;}
._3_c01075{width:4.320000px;}
._6_c01075{width:10.512000px;}
._5_c01075{width:12.240000px;}
._7_c01075{width:13.680000px;}
.fc3_c01075{color:rgb(112,48,160);}
.fc2_c01075{color:rgb(0,0,0);}
.fc1_c01075{color:rgb(255,255,255);}
.fc0_c01075{color:rgb(68,84,106);}
.fs5_c01075{font-size:107.999926px;}
.fs6_c01075{font-size:107.999989px;}
.fs1_c01075{font-size:108.000000px;}
.fs3_c01075{font-size:108.000056px;}
.fs4_c01075{font-size:108.000070px;}
.fs7_c01075{font-size:108.000090px;}
.fs2_c01075{font-size:144.000000px;}
.fs0_c01075{font-size:216.000000px;}
.y0_c01075{bottom:0.000000px;}
.ye_c01075{bottom:56.880150px;}
.y8_c01075{bottom:104.040000px;}
.y3_c01075{bottom:104.400000px;}
.y12_c01075{bottom:114.480000px;}
.yc_c01075{bottom:146.520000px;}
.yd_c01075{bottom:187.560000px;}
.yb_c01075{bottom:201.960000px;}
.y6_c01075{bottom:202.680000px;}
.y5_c01075{bottom:234.000000px;}
.ya_c01075{bottom:257.400000px;}
.y9_c01075{bottom:312.840000px;}
.y4_c01075{bottom:334.080000px;}
.y7_c01075{bottom:368.280000px;}
.y2_c01075{bottom:463.680000px;}
.yf_c01075{bottom:519.120000px;}
.y1_c01075{bottom:710.280000px;}
.y11_c01075{bottom:713.160000px;}
.y10_c01075{bottom:718.920000px;}
.h5_c01075{height:77.544000px;}
.h9_c01075{height:78.407946px;}
.ha_c01075{height:78.407992px;}
.h3_c01075{height:78.408000px;}
.h7_c01075{height:78.408041px;}
.h8_c01075{height:78.408051px;}
.hb_c01075{height:78.408065px;}
.h6_c01075{height:104.544000px;}
.h1_c01075{height:154.089844px;}
.h2_c01075{height:227.160000px;}
.h4_c01075{height:453.960000px;}
.h0_c01075{height:810.000000px;}
.w1_c01075{width:126.720000px;}
.w4_c01075{width:143.280000px;}
.w2_c01075{width:323.280000px;}
.w3_c01075{width:337.320000px;}
.w0_c01075{width:1440.000000px;}
.x0_c01075{left:0.000000px;}
.x3_c01075{left:10.935000px;}
.xa_c01075{left:50.292450px;}
.x1_c01075{left:167.340900px;}
.x2_c01075{left:219.240000px;}
.x8_c01075{left:236.901450px;}
.x7_c01075{left:284.354850px;}
.x4_c01075{left:345.600000px;}
.x6_c01075{left:668.520000px;}
.x5_c01075{left:811.440000px;}
.xc_c01075{left:822.901800px;}
.x9_c01075{left:1232.023650px;}
.xb_c01075{left:1253.262000px;}
@media print{
.v0_c01075{vertical-align:0.000000pt;}
.lse_c01075{letter-spacing:-11.097600pt;}
.ls2_c01075{letter-spacing:-3.033600pt;}
.lsd_c01075{letter-spacing:-2.409600pt;}
.lsf_c01075{letter-spacing:-1.286399pt;}
.ls5_c01075{letter-spacing:-1.142400pt;}
.ls10_c01075{letter-spacing:-0.950400pt;}
.ls9_c01075{letter-spacing:-0.864000pt;}
.lsb_c01075{letter-spacing:-0.297600pt;}
.ls6_c01075{letter-spacing:-0.249600pt;}
.ls1_c01075{letter-spacing:-0.230400pt;}
.lsc_c01075{letter-spacing:-0.192000pt;}
.ls3_c01075{letter-spacing:-0.115200pt;}
.lsa_c01075{letter-spacing:-0.067200pt;}
.ls7_c01075{letter-spacing:-0.009600pt;}
.ls4_c01075{letter-spacing:0.067200pt;}
.ls8_c01075{letter-spacing:0.086400pt;}
.ls0_c01075{letter-spacing:43.276800pt;}
.ws9_c01075{word-spacing:-21.628811pt;}
.wsc_c01075{word-spacing:-21.580818pt;}
.ws0_c01075{word-spacing:-21.580800pt;}
.wsb_c01075{word-spacing:-20.745598pt;}
.ws1_c01075{word-spacing:-20.553600pt;}
.wsa_c01075{word-spacing:-20.409586pt;}
.ws4_c01075{word-spacing:-0.182400pt;}
.ws3_c01075{word-spacing:-0.086400pt;}
.ws6_c01075{word-spacing:-0.028800pt;}
.wsd_c01075{word-spacing:0.000000pt;}
.ws7_c01075{word-spacing:0.096000pt;}
.ws2_c01075{word-spacing:0.153600pt;}
.ws5_c01075{word-spacing:0.768000pt;}
.ws8_c01075{word-spacing:2.313600pt;}
._1_c01075{margin-left:-2.304000pt;}
._4_c01075{margin-left:-1.248000pt;}
._0_c01075{width:0.960000pt;}
._2_c01075{width:2.880000pt;}
._3_c01075{width:3.840000pt;}
._6_c01075{width:9.344000pt;}
._5_c01075{width:10.880000pt;}
._7_c01075{width:12.160000pt;}
.fs5_c01075{font-size:95.999934pt;}
.fs6_c01075{font-size:95.999991pt;}
.fs1_c01075{font-size:96.000000pt;}
.fs3_c01075{font-size:96.000050pt;}
.fs4_c01075{font-size:96.000063pt;}
.fs7_c01075{font-size:96.000080pt;}
.fs2_c01075{font-size:128.000000pt;}
.fs0_c01075{font-size:192.000000pt;}
.y0_c01075{bottom:0.000000pt;}
.ye_c01075{bottom:50.560133pt;}
.y8_c01075{bottom:92.480000pt;}
.y3_c01075{bottom:92.800000pt;}
.y12_c01075{bottom:101.760000pt;}
.yc_c01075{bottom:130.240000pt;}
.yd_c01075{bottom:166.720000pt;}
.yb_c01075{bottom:179.520000pt;}
.y6_c01075{bottom:180.160000pt;}
.y5_c01075{bottom:208.000000pt;}
.ya_c01075{bottom:228.800000pt;}
.y9_c01075{bottom:278.080000pt;}
.y4_c01075{bottom:296.960000pt;}
.y7_c01075{bottom:327.360000pt;}
.y2_c01075{bottom:412.160000pt;}
.yf_c01075{bottom:461.440000pt;}
.y1_c01075{bottom:631.360000pt;}
.y11_c01075{bottom:633.920000pt;}
.y10_c01075{bottom:639.040000pt;}
.h5_c01075{height:68.928000pt;}
.h9_c01075{height:69.695952pt;}
.ha_c01075{height:69.695993pt;}
.h3_c01075{height:69.696000pt;}
.h7_c01075{height:69.696036pt;}
.h8_c01075{height:69.696045pt;}
.hb_c01075{height:69.696058pt;}
.h6_c01075{height:92.928000pt;}
.h1_c01075{height:136.968750pt;}
.h2_c01075{height:201.920000pt;}
.h4_c01075{height:403.520000pt;}
.h0_c01075{height:720.000000pt;}
.w1_c01075{width:112.640000pt;}
.w4_c01075{width:127.360000pt;}
.w2_c01075{width:287.360000pt;}
.w3_c01075{width:299.840000pt;}
.w0_c01075{width:1280.000000pt;}
.x0_c01075{left:0.000000pt;}
.x3_c01075{left:9.720000pt;}
.xa_c01075{left:44.704400pt;}
.x1_c01075{left:148.747467pt;}
.x2_c01075{left:194.880000pt;}
.x8_c01075{left:210.579067pt;}
.x7_c01075{left:252.759867pt;}
.x4_c01075{left:307.200000pt;}
.x6_c01075{left:594.240000pt;}
.x5_c01075{left:721.280000pt;}
.xc_c01075{left:731.468267pt;}
.x9_c01075{left:1095.132133pt;}
.xb_c01075{left:1114.010667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bedb8c19d858d06d274fc1bb.woff2')format("woff");}.ff1_c01076{font-family:ff1_c01076;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01076;src:url('chunks/assets/font_f83618c0495ba008481f7867.woff2')format("woff");}.ff2_c01076{font-family:ff2_c01076;line-height:0.904000;font-style:normal;font-weight:normal;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_91f0fd6d3de7cd8bba7252ec.woff2')format("woff");}.ff3_c01076{font-family:ff3_c01076;line-height:0.896000;font-style: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;}
.lsc_c01076{letter-spacing:-6.782400px;}
.ls9_c01076{letter-spacing:-2.030400px;}
.lsd_c01076{letter-spacing:-1.792800px;}
.ls4_c01076{letter-spacing:-1.641600px;}
.lsb_c01076{letter-spacing:-0.745200px;}
.ls10_c01076{letter-spacing:-0.334800px;}
.ls13_c01076{letter-spacing:-0.324000px;}
.ls5_c01076{letter-spacing:-0.280800px;}
.lsa_c01076{letter-spacing:-0.248400px;}
.ls7_c01076{letter-spacing:-0.216000px;}
.ls11_c01076{letter-spacing:-0.205200px;}
.ls3_c01076{letter-spacing:-0.108000px;}
.lsf_c01076{letter-spacing:-0.075600px;}
.ls6_c01076{letter-spacing:0.000000px;}
.ls12_c01076{letter-spacing:0.021600px;}
.ls1_c01076{letter-spacing:0.064800px;}
.ls0_c01076{letter-spacing:0.075600px;}
.lse_c01076{letter-spacing:0.183600px;}
.ls8_c01076{letter-spacing:0.334800px;}
.ls2_c01076{letter-spacing:24.948000px;}
.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;}
}
.ws3_c01076{word-spacing:-24.472800px;}
.ws5_c01076{word-spacing:-24.332400px;}
.ws2_c01076{word-spacing:-24.127200px;}
.ws6_c01076{word-spacing:-24.073200px;}
.ws4_c01076{word-spacing:-22.377600px;}
.ws0_c01076{word-spacing:-0.183600px;}
.ws7_c01076{word-spacing:0.000000px;}
.ws1_c01076{word-spacing:1.533600px;}
._8_c01076{margin-left:-9.990000px;}
._3_c01076{margin-left:-5.832000px;}
._0_c01076{margin-left:-3.240000px;}
._5_c01076{margin-left:-2.160000px;}
._2_c01076{margin-left:-1.080000px;}
._1_c01076{width:1.080000px;}
._4_c01076{width:2.484000px;}
._6_c01076{width:5.184000px;}
._7_c01076{width:7.020000px;}
.fc2_c01076{color:rgb(0,0,0);}
.fc1_c01076{color:rgb(255,255,255);}
.fc0_c01076{color:rgb(68,84,106);}
.fs1_c01076{font-size:108.000000px;}
.fs0_c01076{font-size:216.000000px;}
.y0_c01076{bottom:0.000000px;}
.y13_c01076{bottom:103.320000px;}
.yd_c01076{bottom:104.040000px;}
.y3_c01076{bottom:104.400000px;}
.y12_c01076{bottom:142.920000px;}
.yf_c01076{bottom:146.880000px;}
.y11_c01076{bottom:176.040000px;}
.ye_c01076{bottom:190.800000px;}
.y6_c01076{bottom:202.680000px;}
.y10_c01076{bottom:207.360000px;}
.y9_c01076{bottom:224.280000px;}
.y5_c01076{bottom:234.000000px;}
.yc_c01076{bottom:234.720000px;}
.yb_c01076{bottom:278.280000px;}
.y4_c01076{bottom:299.880000px;}
.y8_c01076{bottom:353.880000px;}
.y7_c01076{bottom:429.480000px;}
.ya_c01076{bottom:458.280000px;}
.y2_c01076{bottom:473.400000px;}
.y14_c01076{bottom:579.960000px;}
.y1_c01076{bottom:700.560000px;}
.h5_c01076{height:77.544000px;}
.h3_c01076{height:78.408000px;}
.h1_c01076{height:154.089844px;}
.h2_c01076{height:227.160000px;}
.h4_c01076{height:453.960000px;}
.h6_c01076{height:524.880000px;}
.h0_c01076{height:810.000000px;}
.w3_c01076{width:74.160000px;}
.w1_c01076{width:84.600000px;}
.w4_c01076{width:391.680000px;}
.w2_c01076{width:411.120000px;}
.w0_c01076{width:1440.000000px;}
.x0_c01076{left:0.000000px;}
.x3_c01076{left:10.957800px;}
.x6_c01076{left:221.040000px;}
.x8_c01076{left:305.345400px;}
.x1_c01076{left:355.156950px;}
.x2_c01076{left:612.360000px;}
.x4_c01076{left:696.600000px;}
.x7_c01076{left:812.916150px;}
.x5_c01076{left:1107.360000px;}
@media print{
.v0_c01076{vertical-align:0.000000pt;}
.lsc_c01076{letter-spacing:-6.028800pt;}
.ls9_c01076{letter-spacing:-1.804800pt;}
.lsd_c01076{letter-spacing:-1.593600pt;}
.ls4_c01076{letter-spacing:-1.459200pt;}
.lsb_c01076{letter-spacing:-0.662400pt;}
.ls10_c01076{letter-spacing:-0.297600pt;}
.ls13_c01076{letter-spacing:-0.288000pt;}
.ls5_c01076{letter-spacing:-0.249600pt;}
.lsa_c01076{letter-spacing:-0.220800pt;}
.ls7_c01076{letter-spacing:-0.192000pt;}
.ls11_c01076{letter-spacing:-0.182400pt;}
.ls3_c01076{letter-spacing:-0.096000pt;}
.lsf_c01076{letter-spacing:-0.067200pt;}
.ls6_c01076{letter-spacing:0.000000pt;}
.ls12_c01076{letter-spacing:0.019200pt;}
.ls1_c01076{letter-spacing:0.057600pt;}
.ls0_c01076{letter-spacing:0.067200pt;}
.lse_c01076{letter-spacing:0.163200pt;}
.ls8_c01076{letter-spacing:0.297600pt;}
.ls2_c01076{letter-spacing:22.176000pt;}
.ws3_c01076{word-spacing:-21.753600pt;}
.ws5_c01076{word-spacing:-21.628800pt;}
.ws2_c01076{word-spacing:-21.446400pt;}
.ws6_c01076{word-spacing:-21.398400pt;}
.ws4_c01076{word-spacing:-19.891200pt;}
.ws0_c01076{word-spacing:-0.163200pt;}
.ws7_c01076{word-spacing:0.000000pt;}
.ws1_c01076{word-spacing:1.363200pt;}
._8_c01076{margin-left:-8.880000pt;}
._3_c01076{margin-left:-5.184000pt;}
._0_c01076{margin-left:-2.880000pt;}
._5_c01076{margin-left:-1.920000pt;}
._2_c01076{margin-left:-0.960000pt;}
._1_c01076{width:0.960000pt;}
._4_c01076{width:2.208000pt;}
._6_c01076{width:4.608000pt;}
._7_c01076{width:6.240000pt;}
.fs1_c01076{font-size:96.000000pt;}
.fs0_c01076{font-size:192.000000pt;}
.y0_c01076{bottom:0.000000pt;}
.y13_c01076{bottom:91.840000pt;}
.yd_c01076{bottom:92.480000pt;}
.y3_c01076{bottom:92.800000pt;}
.y12_c01076{bottom:127.040000pt;}
.yf_c01076{bottom:130.560000pt;}
.y11_c01076{bottom:156.480000pt;}
.ye_c01076{bottom:169.600000pt;}
.y6_c01076{bottom:180.160000pt;}
.y10_c01076{bottom:184.320000pt;}
.y9_c01076{bottom:199.360000pt;}
.y5_c01076{bottom:208.000000pt;}
.yc_c01076{bottom:208.640000pt;}
.yb_c01076{bottom:247.360000pt;}
.y4_c01076{bottom:266.560000pt;}
.y8_c01076{bottom:314.560000pt;}
.y7_c01076{bottom:381.760000pt;}
.ya_c01076{bottom:407.360000pt;}
.y2_c01076{bottom:420.800000pt;}
.y14_c01076{bottom:515.520000pt;}
.y1_c01076{bottom:622.720000pt;}
.h5_c01076{height:68.928000pt;}
.h3_c01076{height:69.696000pt;}
.h1_c01076{height:136.968750pt;}
.h2_c01076{height:201.920000pt;}
.h4_c01076{height:403.520000pt;}
.h6_c01076{height:466.560000pt;}
.h0_c01076{height:720.000000pt;}
.w3_c01076{width:65.920000pt;}
.w1_c01076{width:75.200000pt;}
.w4_c01076{width:348.160000pt;}
.w2_c01076{width:365.440000pt;}
.w0_c01076{width:1280.000000pt;}
.x0_c01076{left:0.000000pt;}
.x3_c01076{left:9.740267pt;}
.x6_c01076{left:196.480000pt;}
.x8_c01076{left:271.418133pt;}
.x1_c01076{left:315.695067pt;}
.x2_c01076{left:544.320000pt;}
.x4_c01076{left:619.200000pt;}
.x7_c01076{left:722.592133pt;}
.x5_c01076{left:984.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a530ada5ff662f8ca4ee9a8e.woff2')format("woff");}.ff1_c01077{font-family:ff1_c01077;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01077;src:url('chunks/assets/font_91f0fd6d3de7cd8bba7252ec.woff2')format("woff");}.ff2_c01077{font-family:ff2_c01077;line-height:0.896000;font-style:normal;font-weight:normal;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_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff3_c01077{font-family:ff3_c01077;line-height:0.625000;font-style:normal;font-weight:normal;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_201f49eaacd794574e3c104d.woff2')format("woff");}.ff4_c01077{font-family:ff4_c01077;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01077;src:url('chunks/assets/font_1692bfce9fa32c59cc9e746e.woff2')format("woff");}.ff5_c01077{font-family:ff5_c01077;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01077;src:url('chunks/assets/font_6387b5cfabaeb8a5452e9f92.woff2')format("woff");}.ff6_c01077{font-family:ff6_c01077;line-height:0.745000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01077;src:url('chunks/assets/font_2ccc71490f7261249b982624.woff2')format("woff");}.ff7_c01077{font-family:ff7_c01077;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01077{transform:matrix(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);}
.m2_c01077{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c01077{vertical-align:-17.352000px;}
.v0_c01077{vertical-align:0.000000px;}
.lsf_c01077{letter-spacing:-3.153600px;}
.ls4_c01077{letter-spacing:-2.721600px;}
.ls8_c01077{letter-spacing:-2.646000px;}
.lse_c01077{letter-spacing:-1.371600px;}
.lsd_c01077{letter-spacing:-0.777600px;}
.ls5_c01077{letter-spacing:-0.280800px;}
.ls7_c01077{letter-spacing:-0.248400px;}
.ls14_c01077{letter-spacing:-0.240000px;}
.ls12_c01077{letter-spacing:-0.205200px;}
.ls17_c01077{letter-spacing:-0.120000px;}
.ls3_c01077{letter-spacing:-0.064800px;}
.lsa_c01077{letter-spacing:-0.021600px;}
.lsc_c01077{letter-spacing:0.000000px;}
.ls15_c01077{letter-spacing:0.060000px;}
.ls16_c01077{letter-spacing:0.120000px;}
.ls13_c01077{letter-spacing:0.150000px;}
.lsb_c01077{letter-spacing:0.183600px;}
.ls10_c01077{letter-spacing:0.216000px;}
.ls6_c01077{letter-spacing:0.302400px;}
.ls18_c01077{letter-spacing:0.330000px;}
.ls11_c01077{letter-spacing:0.334800px;}
.ls9_c01077{letter-spacing:0.388800px;}
.ls2_c01077{letter-spacing:24.732000px;}
.ls1_c01077{letter-spacing:24.948000px;}
.ls0_c01077{letter-spacing:97.200000px;}
.sc__c01077{text-shadow:none;}
.sc1_c01077{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1_c01077{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01077{word-spacing:-24.386400px;}
.ws1_c01077{word-spacing:-24.159600px;}
.ws3_c01077{word-spacing:-0.210000px;}
.ws7_c01077{word-spacing:-0.180000px;}
.ws5_c01077{word-spacing:-0.120000px;}
.ws2_c01077{word-spacing:-0.060000px;}
.ws8_c01077{word-spacing:0.000000px;}
.ws6_c01077{word-spacing:0.060000px;}
.ws4_c01077{word-spacing:0.180000px;}
._5_c01077{margin-left:-5.832000px;}
._1_c01077{margin-left:-3.024000px;}
._0_c01077{margin-left:-1.944000px;}
._2_c01077{width:1.080000px;}
._4_c01077{width:2.268000px;}
._3_c01077{width:3.456000px;}
.fc3_c01077{color:rgb(5,99,193);}
.fc2_c01077{color:rgb(255,0,0);}
.fc1_c01077{color:rgb(0,0,0);}
.fc0_c01077{color:rgb(68,84,106);}
.fs5_c01077{font-size:60.000000px;}
.fs3_c01077{font-size:70.588200px;}
.fs2_c01077{font-size:72.000000px;}
.fs4_c01077{font-size:105.882600px;}
.fs1_c01077{font-size:108.000000px;}
.fs0_c01077{font-size:216.000000px;}
.y0_c01077{bottom:0.000000px;}
.y19_c01077{bottom:45.720000px;}
.y17_c01077{bottom:84.240000px;}
.y18_c01077{bottom:84.592800px;}
.y15_c01077{bottom:117.000000px;}
.y16_c01077{bottom:117.352800px;}
.y13_c01077{bottom:148.680000px;}
.y14_c01077{bottom:149.032800px;}
.y11_c01077{bottom:181.440000px;}
.y12_c01077{bottom:181.792800px;}
.yf_c01077{bottom:214.560000px;}
.y10_c01077{bottom:214.824600px;}
.yd_c01077{bottom:246.240000px;}
.ye_c01077{bottom:246.504600px;}
.yb_c01077{bottom:279.018000px;}
.yc_c01077{bottom:279.264600px;}
.ya_c01077{bottom:310.689000px;}
.y9_c01077{bottom:343.440000px;}
.y8_c01077{bottom:376.578000px;}
.y7_c01077{bottom:408.249000px;}
.y6_c01077{bottom:441.018000px;}
.y5_c01077{bottom:472.689000px;}
.y4_c01077{bottom:505.440000px;}
.y3_c01077{bottom:538.569000px;}
.y2_c01077{bottom:570.240000px;}
.y1_c01077{bottom:700.560000px;}
.h6_c01077{height:43.080000px;}
.h4_c01077{height:50.258798px;}
.h3_c01077{height:77.472000px;}
.h2_c01077{height:77.544000px;}
.h5_c01077{height:78.353124px;}
.h1_c01077{height:154.089844px;}
.h0_c01077{height:810.000000px;}
.w0_c01077{width:1440.000000px;}
.x0_c01077{left:0.000000px;}
.xa_c01077{left:159.300000px;}
.x2_c01077{left:232.410300px;}
.x1_c01077{left:525.841950px;}
.x6_c01077{left:872.962800px;}
.x9_c01077{left:880.605300px;}
.x7_c01077{left:921.967800px;}
.x4_c01077{left:929.887800px;}
.x8_c01077{left:1057.815300px;}
.x5_c01077{left:1083.982800px;}
.x3_c01077{left:1097.505300px;}
@media print{
.v1_c01077{vertical-align:-15.424000pt;}
.v0_c01077{vertical-align:0.000000pt;}
.lsf_c01077{letter-spacing:-2.803200pt;}
.ls4_c01077{letter-spacing:-2.419200pt;}
.ls8_c01077{letter-spacing:-2.352000pt;}
.lse_c01077{letter-spacing:-1.219200pt;}
.lsd_c01077{letter-spacing:-0.691200pt;}
.ls5_c01077{letter-spacing:-0.249600pt;}
.ls7_c01077{letter-spacing:-0.220800pt;}
.ls14_c01077{letter-spacing:-0.213333pt;}
.ls12_c01077{letter-spacing:-0.182400pt;}
.ls17_c01077{letter-spacing:-0.106667pt;}
.ls3_c01077{letter-spacing:-0.057600pt;}
.lsa_c01077{letter-spacing:-0.019200pt;}
.lsc_c01077{letter-spacing:0.000000pt;}
.ls15_c01077{letter-spacing:0.053333pt;}
.ls16_c01077{letter-spacing:0.106667pt;}
.ls13_c01077{letter-spacing:0.133333pt;}
.lsb_c01077{letter-spacing:0.163200pt;}
.ls10_c01077{letter-spacing:0.192000pt;}
.ls6_c01077{letter-spacing:0.268800pt;}
.ls18_c01077{letter-spacing:0.293333pt;}
.ls11_c01077{letter-spacing:0.297600pt;}
.ls9_c01077{letter-spacing:0.345600pt;}
.ls2_c01077{letter-spacing:21.984000pt;}
.ls1_c01077{letter-spacing:22.176000pt;}
.ls0_c01077{letter-spacing:86.400000pt;}
.ws0_c01077{word-spacing:-21.676800pt;}
.ws1_c01077{word-spacing:-21.475200pt;}
.ws3_c01077{word-spacing:-0.186667pt;}
.ws7_c01077{word-spacing:-0.160000pt;}
.ws5_c01077{word-spacing:-0.106667pt;}
.ws2_c01077{word-spacing:-0.053333pt;}
.ws8_c01077{word-spacing:0.000000pt;}
.ws6_c01077{word-spacing:0.053333pt;}
.ws4_c01077{word-spacing:0.160000pt;}
._5_c01077{margin-left:-5.184000pt;}
._1_c01077{margin-left:-2.688000pt;}
._0_c01077{margin-left:-1.728000pt;}
._2_c01077{width:0.960000pt;}
._4_c01077{width:2.016000pt;}
._3_c01077{width:3.072000pt;}
.fs5_c01077{font-size:53.333333pt;}
.fs3_c01077{font-size:62.745067pt;}
.fs2_c01077{font-size:64.000000pt;}
.fs4_c01077{font-size:94.117867pt;}
.fs1_c01077{font-size:96.000000pt;}
.fs0_c01077{font-size:192.000000pt;}
.y0_c01077{bottom:0.000000pt;}
.y19_c01077{bottom:40.640000pt;}
.y17_c01077{bottom:74.880000pt;}
.y18_c01077{bottom:75.193600pt;}
.y15_c01077{bottom:104.000000pt;}
.y16_c01077{bottom:104.313600pt;}
.y13_c01077{bottom:132.160000pt;}
.y14_c01077{bottom:132.473600pt;}
.y11_c01077{bottom:161.280000pt;}
.y12_c01077{bottom:161.593600pt;}
.yf_c01077{bottom:190.720000pt;}
.y10_c01077{bottom:190.955200pt;}
.yd_c01077{bottom:218.880000pt;}
.ye_c01077{bottom:219.115200pt;}
.yb_c01077{bottom:248.016000pt;}
.yc_c01077{bottom:248.235200pt;}
.ya_c01077{bottom:276.168000pt;}
.y9_c01077{bottom:305.280000pt;}
.y8_c01077{bottom:334.736000pt;}
.y7_c01077{bottom:362.888000pt;}
.y6_c01077{bottom:392.016000pt;}
.y5_c01077{bottom:420.168000pt;}
.y4_c01077{bottom:449.280000pt;}
.y3_c01077{bottom:478.728000pt;}
.y2_c01077{bottom:506.880000pt;}
.y1_c01077{bottom:622.720000pt;}
.h6_c01077{height:38.293333pt;}
.h4_c01077{height:44.674487pt;}
.h3_c01077{height:68.864000pt;}
.h2_c01077{height:68.928000pt;}
.h5_c01077{height:69.647221pt;}
.h1_c01077{height:136.968750pt;}
.h0_c01077{height:720.000000pt;}
.w0_c01077{width:1280.000000pt;}
.x0_c01077{left:0.000000pt;}
.xa_c01077{left:141.600000pt;}
.x2_c01077{left:206.586933pt;}
.x1_c01077{left:467.415067pt;}
.x6_c01077{left:775.966933pt;}
.x9_c01077{left:782.760267pt;}
.x7_c01077{left:819.526933pt;}
.x4_c01077{left:826.566933pt;}
.x8_c01077{left:940.280267pt;}
.x5_c01077{left:963.540267pt;}
.x3_c01077{left:975.560267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_40f0a7a86a9dd6e58a255a13.woff2')format("woff");}.ff1_c01078{font-family:ff1_c01078;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01078;src:url('chunks/assets/font_71c23c884ab471d2ca33e102.woff2')format("woff");}.ff2_c01078{font-family:ff2_c01078;line-height:0.936000;font-style:normal;font-weight:normal;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_c802ed55e97ff3fe844d3bbf.woff2')format("woff");}.ff3_c01078{font-family:ff3_c01078;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01078;src:url('chunks/assets/font_56336b13b8b79fcf598ccf8e.woff2')format("woff");}.ff4_c01078{font-family:ff4_c01078;line-height:0.938000;font-style: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);}
.m1_c01078{transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);}
.v0_c01078{vertical-align:0.000000px;}
.ls2_c01078{letter-spacing:-0.064800px;}
.ls4_c01078{letter-spacing:-0.032400px;}
.ls5_c01078{letter-spacing:-0.021600px;}
.ls3_c01078{letter-spacing:0.000000px;}
.ls0_c01078{letter-spacing:0.010800px;}
.ls1_c01078{letter-spacing:0.021600px;}
.ls6_c01078{letter-spacing:0.032400px;}
.sc__c01078{text-shadow:none;}
.sc1_c01078{text-shadow:-0.015em 0 rgb(255,134,0),0 0.015em rgb(255,134,0),0.015em 0 rgb(255,134,0),0 -0.015em  rgb(255,134,0);}
.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;}
.sc1_c01078{-webkit-text-stroke:0.015em rgb(255,134,0);text-shadow:none;}
.sc0_c01078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01078{word-spacing:-215.935200px;}
.ws1_c01078{word-spacing:0.000000px;}
._0_c01078{margin-left:-1.080000px;}
.fc4_c01078{color:transparent;}
.fc3_c01078{color:rgb(46,117,182);}
.fc2_c01078{color:rgb(255,134,0);}
.fc1_c01078{color:rgb(237,125,49);}
.fc0_c01078{color:rgb(68,84,106);}
.fs2_c01078{font-size:103.806000px;}
.fs1_c01078{font-size:108.000000px;}
.fs0_c01078{font-size:216.000000px;}
.y0_c01078{bottom:0.000000px;}
.y16_c01078{bottom:128.880000px;}
.y15_c01078{bottom:129.578850px;}
.y14_c01078{bottom:177.120000px;}
.y13_c01078{bottom:177.818850px;}
.y12_c01078{bottom:226.440000px;}
.y11_c01078{bottom:227.138700px;}
.y10_c01078{bottom:274.320000px;}
.yf_c01078{bottom:275.018700px;}
.ye_c01078{bottom:322.560000px;}
.yd_c01078{bottom:323.258700px;}
.yc_c01078{bottom:371.880000px;}
.yb_c01078{bottom:372.578700px;}
.ya_c01078{bottom:420.120000px;}
.y9_c01078{bottom:420.818700px;}
.y8_c01078{bottom:469.440000px;}
.y7_c01078{bottom:470.138700px;}
.y6_c01078{bottom:517.320000px;}
.y5_c01078{bottom:518.018700px;}
.y4_c01078{bottom:565.560000px;}
.y3_c01078{bottom:566.258700px;}
.y2_c01078{bottom:609.120000px;}
.y1_c01078{bottom:698.400000px;}
.h2_c01078{height:78.624000px;}
.h3_c01078{height:103.806000px;}
.h1_c01078{height:154.089844px;}
.h0_c01078{height:810.000000px;}
.w0_c01078{width:1440.000000px;}
.x0_c01078{left:0.000000px;}
.x2_c01078{left:215.685900px;}
.x3_c01078{left:250.185750px;}
.x1_c01078{left:587.058750px;}
@media print{
.v0_c01078{vertical-align:0.000000pt;}
.ls2_c01078{letter-spacing:-0.057600pt;}
.ls4_c01078{letter-spacing:-0.028800pt;}
.ls5_c01078{letter-spacing:-0.019200pt;}
.ls3_c01078{letter-spacing:0.000000pt;}
.ls0_c01078{letter-spacing:0.009600pt;}
.ls1_c01078{letter-spacing:0.019200pt;}
.ls6_c01078{letter-spacing:0.028800pt;}
.ws0_c01078{word-spacing:-191.942400pt;}
.ws1_c01078{word-spacing:0.000000pt;}
._0_c01078{margin-left:-0.960000pt;}
.fs2_c01078{font-size:92.272000pt;}
.fs1_c01078{font-size:96.000000pt;}
.fs0_c01078{font-size:192.000000pt;}
.y0_c01078{bottom:0.000000pt;}
.y16_c01078{bottom:114.560000pt;}
.y15_c01078{bottom:115.181200pt;}
.y14_c01078{bottom:157.440000pt;}
.y13_c01078{bottom:158.061200pt;}
.y12_c01078{bottom:201.280000pt;}
.y11_c01078{bottom:201.901067pt;}
.y10_c01078{bottom:243.840000pt;}
.yf_c01078{bottom:244.461067pt;}
.ye_c01078{bottom:286.720000pt;}
.yd_c01078{bottom:287.341067pt;}
.yc_c01078{bottom:330.560000pt;}
.yb_c01078{bottom:331.181067pt;}
.ya_c01078{bottom:373.440000pt;}
.y9_c01078{bottom:374.061067pt;}
.y8_c01078{bottom:417.280000pt;}
.y7_c01078{bottom:417.901067pt;}
.y6_c01078{bottom:459.840000pt;}
.y5_c01078{bottom:460.461067pt;}
.y4_c01078{bottom:502.720000pt;}
.y3_c01078{bottom:503.341067pt;}
.y2_c01078{bottom:541.440000pt;}
.y1_c01078{bottom:620.800000pt;}
.h2_c01078{height:69.888000pt;}
.h3_c01078{height:92.272000pt;}
.h1_c01078{height:136.968750pt;}
.h0_c01078{height:720.000000pt;}
.w0_c01078{width:1280.000000pt;}
.x0_c01078{left:0.000000pt;}
.x2_c01078{left:191.720800pt;}
.x3_c01078{left:222.387333pt;}
.x1_c01078{left:521.830000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2de8ce087aaab7ebc45ea75b.woff2')format("woff");}.ff1_c01079{font-family:ff1_c01079;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01079;src:url('chunks/assets/font_798788113d436b3f10864306.woff2')format("woff");}.ff2_c01079{font-family:ff2_c01079;line-height:0.871000;font-style: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);}
.m1_c01079{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01079{vertical-align:0.000000px;}
.ls4_c01079{letter-spacing:-0.268800px;}
.ls6_c01079{letter-spacing:-0.076800px;}
.ls2_c01079{letter-spacing:0.000000px;}
.ls3_c01079{letter-spacing:0.096000px;}
.ls1_c01079{letter-spacing:0.153600px;}
.ls0_c01079{letter-spacing:0.364800px;}
.ls5_c01079{letter-spacing:0.710400px;}
.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:-44.102400px;}
.ws1_c01079{word-spacing:-43.315200px;}
.ws2_c01079{word-spacing:0.000000px;}
._3_c01079{margin-left:-17.258400px;}
._4_c01079{margin-left:-13.056000px;}
._1_c01079{margin-left:-3.648000px;}
._0_c01079{margin-left:-2.052000px;}
._5_c01079{margin-left:-1.020000px;}
._2_c01079{width:1.092000px;}
.fc1_c01079{color:rgb(5,99,193);}
.fc0_c01079{color:rgb(68,84,106);}
.fs1_c01079{font-size:192.000000px;}
.fs0_c01079{font-size:216.000000px;}
.y0_c01079{bottom:0.000000px;}
.y8_c01079{bottom:226.440000px;}
.y7_c01079{bottom:284.760000px;}
.y6_c01079{bottom:341.688000px;}
.y5_c01079{bottom:398.904000px;}
.y4_c01079{bottom:457.224000px;}
.y3_c01079{bottom:514.440000px;}
.y2_c01079{bottom:572.760000px;}
.y1_c01079{bottom:698.400000px;}
.h2_c01079{height:133.056000px;}
.h1_c01079{height:154.089844px;}
.h0_c01079{height:810.000000px;}
.w0_c01079{width:1440.000000px;}
.x0_c01079{left:0.000000px;}
.x4_c01079{left:368.196000px;}
.x3_c01079{left:405.156000px;}
.x7_c01079{left:420.156000px;}
.x6_c01079{left:440.964000px;}
.x5_c01079{left:495.300000px;}
.x8_c01079{left:508.176000px;}
.x2_c01079{left:536.676000px;}
.x1_c01079{left:594.045000px;}
@media print{
.v0_c01079{vertical-align:0.000000pt;}
.ls4_c01079{letter-spacing:-0.238933pt;}
.ls6_c01079{letter-spacing:-0.068267pt;}
.ls2_c01079{letter-spacing:0.000000pt;}
.ls3_c01079{letter-spacing:0.085333pt;}
.ls1_c01079{letter-spacing:0.136533pt;}
.ls0_c01079{letter-spacing:0.324267pt;}
.ls5_c01079{letter-spacing:0.631467pt;}
.ws0_c01079{word-spacing:-39.202133pt;}
.ws1_c01079{word-spacing:-38.502400pt;}
.ws2_c01079{word-spacing:0.000000pt;}
._3_c01079{margin-left:-15.340800pt;}
._4_c01079{margin-left:-11.605333pt;}
._1_c01079{margin-left:-3.242667pt;}
._0_c01079{margin-left:-1.824000pt;}
._5_c01079{margin-left:-0.906667pt;}
._2_c01079{width:0.970667pt;}
.fs1_c01079{font-size:170.666667pt;}
.fs0_c01079{font-size:192.000000pt;}
.y0_c01079{bottom:0.000000pt;}
.y8_c01079{bottom:201.280000pt;}
.y7_c01079{bottom:253.120000pt;}
.y6_c01079{bottom:303.722667pt;}
.y5_c01079{bottom:354.581333pt;}
.y4_c01079{bottom:406.421333pt;}
.y3_c01079{bottom:457.280000pt;}
.y2_c01079{bottom:509.120000pt;}
.y1_c01079{bottom:620.800000pt;}
.h2_c01079{height:118.272000pt;}
.h1_c01079{height:136.968750pt;}
.h0_c01079{height:720.000000pt;}
.w0_c01079{width:1280.000000pt;}
.x0_c01079{left:0.000000pt;}
.x4_c01079{left:327.285333pt;}
.x3_c01079{left:360.138667pt;}
.x7_c01079{left:373.472000pt;}
.x6_c01079{left:391.968000pt;}
.x5_c01079{left:440.266667pt;}
.x8_c01079{left:451.712000pt;}
.x2_c01079{left:477.045333pt;}
.x1_c01079{left:528.040000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0b01af55ec0f21b5ac96a9fc.woff2')format("woff");}.ff1_c01080{font-family:ff1_c01080;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01080;src:url('chunks/assets/font_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff2_c01080{font-family:ff2_c01080;line-height:0.625000;font-style:normal;font-weight:normal;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_6069867948a7a80083dc58de.woff2')format("woff");}.ff3_c01080{font-family:ff3_c01080;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01080;src:url('chunks/assets/font_cbf0c9e5932657a9c4230c11.woff2')format("woff");}.ff4_c01080{font-family:ff4_c01080;line-height:0.862000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01080;src:url('chunks/assets/font_efcab4bb56736f1843ae5f9b.woff2')format("woff");}.ff5_c01080{font-family:ff5_c01080;line-height:0.636000;font-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_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);}
.m0_c01080{transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);}
.v0_c01080{vertical-align:0.000000px;}
.lsb_c01080{letter-spacing:-5.430000px;}
.lse_c01080{letter-spacing:-2.316000px;}
.ls11_c01080{letter-spacing:-1.932000px;}
.ls10_c01080{letter-spacing:-1.512000px;}
.lsa_c01080{letter-spacing:-0.996000px;}
.lsc_c01080{letter-spacing:-0.612000px;}
.ls8_c01080{letter-spacing:-0.246000px;}
.ls5_c01080{letter-spacing:-0.234000px;}
.ls6_c01080{letter-spacing:-0.210000px;}
.ls7_c01080{letter-spacing:-0.192000px;}
.lsd_c01080{letter-spacing:-0.174000px;}
.lsf_c01080{letter-spacing:-0.126000px;}
.ls4_c01080{letter-spacing:-0.090000px;}
.ls13_c01080{letter-spacing:-0.084000px;}
.ls9_c01080{letter-spacing:-0.072000px;}
.ls12_c01080{letter-spacing:0.000000px;}
.ls0_c01080{letter-spacing:0.047604px;}
.ls2_c01080{letter-spacing:0.096000px;}
.ls3_c01080{letter-spacing:27.012000px;}
.ls1_c01080{letter-spacing:66.000000px;}
.sc__c01080{text-shadow:none;}
.sc1_c01080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c01080{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01080{-webkit-text-stroke:0px transparent;}
.sc1_c01080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c01080{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
}
.ws3_c01080{word-spacing:-8.052000px;}
.ws4_c01080{word-spacing:-7.704000px;}
.ws1_c01080{word-spacing:-7.530000px;}
.ws2_c01080{word-spacing:-3.678000px;}
.ws0_c01080{word-spacing:0.000000px;}
._4_c01080{margin-left:-11.028000px;}
._2_c01080{margin-left:-8.544000px;}
._1_c01080{margin-left:-2.724000px;}
._3_c01080{margin-left:-1.680000px;}
._0_c01080{width:1.020000px;}
.fc0_c01080{color:rgb(255,255,255);}
.fs1_c01080{font-size:120.000000px;}
.fs0_c01080{font-size:170.586000px;}
.y0_c01080{bottom:0.000000px;}
.y8_c01080{bottom:247.680000px;}
.y7_c01080{bottom:289.800000px;}
.y6_c01080{bottom:414.360000px;}
.y5_c01080{bottom:454.680000px;}
.y4_c01080{bottom:496.800000px;}
.y3_c01080{bottom:538.560000px;}
.y2_c01080{bottom:653.172000px;}
.y1_c01080{bottom:699.955500px;}
.h3_c01080{height:82.080000px;}
.h2_c01080{height:86.160000px;}
.h1_c01080{height:121.692454px;}
.h0_c01080{height:810.000000px;}
.w0_c01080{width:1440.000000px;}
.x0_c01080{left:0.000000px;}
.x2_c01080{left:792.351450px;}
.x3_c01080{left:819.351450px;}
.x1_c01080{left:837.084000px;}
@media print{
.v0_c01080{vertical-align:0.000000pt;}
.lsb_c01080{letter-spacing:-4.826667pt;}
.lse_c01080{letter-spacing:-2.058667pt;}
.ls11_c01080{letter-spacing:-1.717333pt;}
.ls10_c01080{letter-spacing:-1.344000pt;}
.lsa_c01080{letter-spacing:-0.885333pt;}
.lsc_c01080{letter-spacing:-0.544000pt;}
.ls8_c01080{letter-spacing:-0.218667pt;}
.ls5_c01080{letter-spacing:-0.208000pt;}
.ls6_c01080{letter-spacing:-0.186667pt;}
.ls7_c01080{letter-spacing:-0.170667pt;}
.lsd_c01080{letter-spacing:-0.154667pt;}
.lsf_c01080{letter-spacing:-0.112000pt;}
.ls4_c01080{letter-spacing:-0.080000pt;}
.ls13_c01080{letter-spacing:-0.074667pt;}
.ls9_c01080{letter-spacing:-0.064000pt;}
.ls12_c01080{letter-spacing:0.000000pt;}
.ls0_c01080{letter-spacing:0.042314pt;}
.ls2_c01080{letter-spacing:0.085333pt;}
.ls3_c01080{letter-spacing:24.010667pt;}
.ls1_c01080{letter-spacing:58.666667pt;}
.ws3_c01080{word-spacing:-7.157333pt;}
.ws4_c01080{word-spacing:-6.848000pt;}
.ws1_c01080{word-spacing:-6.693333pt;}
.ws2_c01080{word-spacing:-3.269333pt;}
.ws0_c01080{word-spacing:0.000000pt;}
._4_c01080{margin-left:-9.802667pt;}
._2_c01080{margin-left:-7.594667pt;}
._1_c01080{margin-left:-2.421333pt;}
._3_c01080{margin-left:-1.493333pt;}
._0_c01080{width:0.906667pt;}
.fs1_c01080{font-size:106.666667pt;}
.fs0_c01080{font-size:151.632000pt;}
.y0_c01080{bottom:0.000000pt;}
.y8_c01080{bottom:220.160000pt;}
.y7_c01080{bottom:257.600000pt;}
.y6_c01080{bottom:368.320000pt;}
.y5_c01080{bottom:404.160000pt;}
.y4_c01080{bottom:441.600000pt;}
.y3_c01080{bottom:478.720000pt;}
.y2_c01080{bottom:580.597333pt;}
.y1_c01080{bottom:622.182667pt;}
.h3_c01080{height:72.960000pt;}
.h2_c01080{height:76.586667pt;}
.h1_c01080{height:108.171070pt;}
.h0_c01080{height:720.000000pt;}
.w0_c01080{width:1280.000000pt;}
.x0_c01080{left:0.000000pt;}
.x2_c01080{left:704.312400pt;}
.x3_c01080{left:728.312400pt;}
.x1_c01080{left:744.074667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0bc5b13bfa9b251c684a0e3d.woff2')format("woff");}.ff1_c01081{font-family:ff1_c01081;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01081;src:url('chunks/assets/font_3e18e12cb3568c73d813e5f3.woff2')format("woff");}.ff2_c01081{font-family:ff2_c01081;line-height:0.896000;font-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_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);}
.m0_c01081{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_c01081{vertical-align:0.000000px;}
.ls6_c01081{letter-spacing:-0.378000px;}
.ls2_c01081{letter-spacing:-0.361800px;}
.ls1_c01081{letter-spacing:-0.178200px;}
.ls5_c01081{letter-spacing:0.000000px;}
.ls7_c01081{letter-spacing:0.108000px;}
.ls4_c01081{letter-spacing:0.151200px;}
.ls3_c01081{letter-spacing:0.156600px;}
.ls0_c01081{letter-spacing:0.432941px;}
.sc__c01081{text-shadow:none;}
.sc1_c01081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c01081{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01081{-webkit-text-stroke:0px transparent;}
.sc1_c01081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c01081{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c01081{word-spacing:-12.360600px;}
.ws2_c01081{word-spacing:-12.355200px;}
.ws3_c01081{word-spacing:-12.312000px;}
.ws4_c01081{word-spacing:-12.204000px;}
.ws0_c01081{word-spacing:-11.842200px;}
.ws5_c01081{word-spacing:0.000000px;}
._2_c01081{margin-left:-4.141170px;}
._1_c01081{margin-left:-2.635290px;}
._0_c01081{margin-left:-1.317645px;}
._3_c01081{width:1.080000px;}
.fc0_c01081{color:rgb(0,0,0);}
.fs1_c01081{font-size:54.000000px;}
.fs0_c01081{font-size:188.235000px;}
.y0_c01081{bottom:0.000000px;}
.y3_c01081{bottom:372.235500px;}
.y2_c01081{bottom:388.800000px;}
.y1_c01081{bottom:685.998750px;}
.h2_c01081{height:38.772000px;}
.h1_c01081{height:134.282878px;}
.h0_c01081{height:810.000000px;}
.w0_c01081{width:1440.000000px;}
.x0_c01081{left:0.000000px;}
.x1_c01081{left:466.004550px;}
.x2_c01081{left:927.150450px;}
@media print{
.v0_c01081{vertical-align:0.000000pt;}
.ls6_c01081{letter-spacing:-0.336000pt;}
.ls2_c01081{letter-spacing:-0.321600pt;}
.ls1_c01081{letter-spacing:-0.158400pt;}
.ls5_c01081{letter-spacing:0.000000pt;}
.ls7_c01081{letter-spacing:0.096000pt;}
.ls4_c01081{letter-spacing:0.134400pt;}
.ls3_c01081{letter-spacing:0.139200pt;}
.ls0_c01081{letter-spacing:0.384836pt;}
.ws1_c01081{word-spacing:-10.987200pt;}
.ws2_c01081{word-spacing:-10.982400pt;}
.ws3_c01081{word-spacing:-10.944000pt;}
.ws4_c01081{word-spacing:-10.848000pt;}
.ws0_c01081{word-spacing:-10.526400pt;}
.ws5_c01081{word-spacing:0.000000pt;}
._2_c01081{margin-left:-3.681040pt;}
._1_c01081{margin-left:-2.342480pt;}
._0_c01081{margin-left:-1.171240pt;}
._3_c01081{width:0.960000pt;}
.fs1_c01081{font-size:48.000000pt;}
.fs0_c01081{font-size:167.320000pt;}
.y0_c01081{bottom:0.000000pt;}
.y3_c01081{bottom:330.876000pt;}
.y2_c01081{bottom:345.600000pt;}
.y1_c01081{bottom:609.776667pt;}
.h2_c01081{height:34.464000pt;}
.h1_c01081{height:119.362559pt;}
.h0_c01081{height:720.000000pt;}
.w0_c01081{width:1280.000000pt;}
.x0_c01081{left:0.000000pt;}
.x1_c01081{left:414.226267pt;}
.x2_c01081{left:824.133733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a64ec668bc1bb6d37ebb2b36.woff2')format("woff");}.ff1_c01082{font-family:ff1_c01082;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01082;src:url('chunks/assets/font_6b4a1d9de371344377062b15.woff2')format("woff");}.ff2_c01082{font-family:ff2_c01082;line-height:0.896000;font-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_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);}
.m0_c01082{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_c01082{vertical-align:0.000000px;}
.ls4_c01082{letter-spacing:-0.210000px;}
.ls3_c01082{letter-spacing:-0.120000px;}
.ls1_c01082{letter-spacing:0.000000px;}
.ls2_c01082{letter-spacing:0.120000px;}
.ls0_c01082{letter-spacing:0.432941px;}
.sc__c01082{text-shadow:none;}
.sc1_c01082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c01082{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01082{-webkit-text-stroke:0px transparent;}
.sc1_c01082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c01082{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1_c01082{word-spacing:-0.180000px;}
.ws0_c01082{word-spacing:-0.060000px;}
.ws4_c01082{word-spacing:0.000000px;}
.ws2_c01082{word-spacing:0.060000px;}
.ws3_c01082{word-spacing:0.150000px;}
._0_c01082{margin-left:-1.317645px;}
._1_c01082{width:1.132935px;}
.fc0_c01082{color:rgb(0,0,0);}
.fs1_c01082{font-size:60.000000px;}
.fs0_c01082{font-size:188.235000px;}
.y0_c01082{bottom:0.000000px;}
.y2_c01082{bottom:89.280000px;}
.y1_c01082{bottom:692.838750px;}
.h2_c01082{height:43.080000px;}
.h1_c01082{height:134.282878px;}
.h0_c01082{height:810.000000px;}
.w0_c01082{width:1440.000000px;}
.x0_c01082{left:0.000000px;}
.x2_c01082{left:426.753600px;}
.x1_c01082{left:503.353650px;}
@media print{
.v0_c01082{vertical-align:0.000000pt;}
.ls4_c01082{letter-spacing:-0.186667pt;}
.ls3_c01082{letter-spacing:-0.106667pt;}
.ls1_c01082{letter-spacing:0.000000pt;}
.ls2_c01082{letter-spacing:0.106667pt;}
.ls0_c01082{letter-spacing:0.384836pt;}
.ws1_c01082{word-spacing:-0.160000pt;}
.ws0_c01082{word-spacing:-0.053333pt;}
.ws4_c01082{word-spacing:0.000000pt;}
.ws2_c01082{word-spacing:0.053333pt;}
.ws3_c01082{word-spacing:0.133333pt;}
._0_c01082{margin-left:-1.171240pt;}
._1_c01082{width:1.007053pt;}
.fs1_c01082{font-size:53.333333pt;}
.fs0_c01082{font-size:167.320000pt;}
.y0_c01082{bottom:0.000000pt;}
.y2_c01082{bottom:79.360000pt;}
.y1_c01082{bottom:615.856667pt;}
.h2_c01082{height:38.293333pt;}
.h1_c01082{height:119.362559pt;}
.h0_c01082{height:720.000000pt;}
.w0_c01082{width:1280.000000pt;}
.x0_c01082{left:0.000000pt;}
.x2_c01082{left:379.336533pt;}
.x1_c01082{left:447.425467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e393d2af7146dff8eec6a216.woff2')format("woff");}.ff1_c01083{font-family:ff1_c01083;line-height:0.861000;font-style:normal;font-weight:normal;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_a061fed7f09d7a747ffb2ed4.woff2')format("woff");}.ff2_c01083{font-family:ff2_c01083;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01083;src:url('chunks/assets/font_1a16b9a888d7defc96354aa0.woff2')format("woff");}.ff3_c01083{font-family:ff3_c01083;line-height:0.858000;font-style:normal;font-weight:normal;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_fcb658119a4e1624cb2de354.woff2')format("woff");}.ff4_c01083{font-family:ff4_c01083;line-height:0.896000;font-style:normal;font-weight:normal;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_25bb36342033b89d68c26b3c.woff2')format("woff");}.ff5_c01083{font-family:ff5_c01083;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01083{vertical-align:0.000000px;}
.ls6_c01083{letter-spacing:-4.368000px;}
.ls3_c01083{letter-spacing:-2.270400px;}
.ls2_c01083{letter-spacing:-0.259200px;}
.ls5_c01083{letter-spacing:-0.218400px;}
.ls4_c01083{letter-spacing:-0.043200px;}
.ls1_c01083{letter-spacing:0.000000px;}
.ls0_c01083{letter-spacing:0.021600px;}
.ls7_c01083{letter-spacing:0.302400px;}
.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;}
}
.ws1_c01083{word-spacing:-261.729600px;}
.ws0_c01083{word-spacing:-155.131200px;}
.ws3_c01083{word-spacing:-0.410400px;}
.ws2_c01083{word-spacing:-0.129600px;}
.ws4_c01083{word-spacing:0.000000px;}
._3_c01083{margin-left:-3.024000px;}
._2_c01083{margin-left:-1.944000px;}
._1_c01083{width:1.416000px;}
._0_c01083{width:3.072000px;}
._4_c01083{width:4.200000px;}
._5_c01083{width:5.280000px;}
.fc1_c01083{color:rgb(64,49,82);}
.fc0_c01083{color:rgb(0,0,0);}
.fs0_c01083{font-size:108.000000px;}
.fs3_c01083{font-size:168.000000px;}
.fs1_c01083{font-size:216.000000px;}
.fs2_c01083{font-size:264.000000px;}
.y0_c01083{bottom:0.000000px;}
.y13_c01083{bottom:93.240000px;}
.y16_c01083{bottom:98.640000px;}
.yd_c01083{bottom:159.132000px;}
.y9_c01083{bottom:242.244000px;}
.yc_c01083{bottom:251.280000px;}
.y12_c01083{bottom:252.000000px;}
.y8_c01083{bottom:280.773000px;}
.y11_c01083{bottom:290.529000px;}
.y7_c01083{bottom:319.302000px;}
.y10_c01083{bottom:328.680000px;}
.y6_c01083{bottom:357.453000px;}
.yf_c01083{bottom:367.209000px;}
.y5_c01083{bottom:395.982000px;}
.ye_c01083{bottom:405.360000px;}
.y4_c01083{bottom:434.511000px;}
.yb_c01083{bottom:444.600000px;}
.y3_c01083{bottom:473.040000px;}
.y2_c01083{bottom:511.191000px;}
.y1_c01083{bottom:549.720000px;}
.y15_c01083{bottom:602.649000px;}
.y14_c01083{bottom:611.640000px;}
.ya_c01083{bottom:670.320000px;}
.h1_c01083{height:73.872000px;}
.h5_c01083{height:77.544000px;}
.h4_c01083{height:120.624000px;}
.h3_c01083{height:146.880000px;}
.h2_c01083{height:188.332031px;}
.h0_c01083{height:810.000000px;}
.w0_c01083{width:1440.000000px;}
.x0_c01083{left:0.000000px;}
.x4_c01083{left:109.800000px;}
.xb_c01083{left:205.247250px;}
.xd_c01083{left:209.999250px;}
.x2_c01083{left:240.747900px;}
.x3_c01083{left:242.259900px;}
.x1_c01083{left:243.744900px;}
.x5_c01083{left:486.790800px;}
.x6_c01083{left:561.518100px;}
.x7_c01083{left:588.650100px;}
.xc_c01083{left:1184.537250px;}
.xe_c01083{left:1195.553250px;}
.x9_c01083{left:1207.568250px;}
.xa_c01083{left:1209.080250px;}
.x8_c01083{left:1212.077250px;}
@media print{
.v0_c01083{vertical-align:0.000000pt;}
.ls6_c01083{letter-spacing:-3.882667pt;}
.ls3_c01083{letter-spacing:-2.018133pt;}
.ls2_c01083{letter-spacing:-0.230400pt;}
.ls5_c01083{letter-spacing:-0.194133pt;}
.ls4_c01083{letter-spacing:-0.038400pt;}
.ls1_c01083{letter-spacing:0.000000pt;}
.ls0_c01083{letter-spacing:0.019200pt;}
.ls7_c01083{letter-spacing:0.268800pt;}
.ws1_c01083{word-spacing:-232.648533pt;}
.ws0_c01083{word-spacing:-137.894400pt;}
.ws3_c01083{word-spacing:-0.364800pt;}
.ws2_c01083{word-spacing:-0.115200pt;}
.ws4_c01083{word-spacing:0.000000pt;}
._3_c01083{margin-left:-2.688000pt;}
._2_c01083{margin-left:-1.728000pt;}
._1_c01083{width:1.258667pt;}
._0_c01083{width:2.730667pt;}
._4_c01083{width:3.733333pt;}
._5_c01083{width:4.693333pt;}
.fs0_c01083{font-size:96.000000pt;}
.fs3_c01083{font-size:149.333333pt;}
.fs1_c01083{font-size:192.000000pt;}
.fs2_c01083{font-size:234.666667pt;}
.y0_c01083{bottom:0.000000pt;}
.y13_c01083{bottom:82.880000pt;}
.y16_c01083{bottom:87.680000pt;}
.yd_c01083{bottom:141.450667pt;}
.y9_c01083{bottom:215.328000pt;}
.yc_c01083{bottom:223.360000pt;}
.y12_c01083{bottom:224.000000pt;}
.y8_c01083{bottom:249.576000pt;}
.y11_c01083{bottom:258.248000pt;}
.y7_c01083{bottom:283.824000pt;}
.y10_c01083{bottom:292.160000pt;}
.y6_c01083{bottom:317.736000pt;}
.yf_c01083{bottom:326.408000pt;}
.y5_c01083{bottom:351.984000pt;}
.ye_c01083{bottom:360.320000pt;}
.y4_c01083{bottom:386.232000pt;}
.yb_c01083{bottom:395.200000pt;}
.y3_c01083{bottom:420.480000pt;}
.y2_c01083{bottom:454.392000pt;}
.y1_c01083{bottom:488.640000pt;}
.y15_c01083{bottom:535.688000pt;}
.y14_c01083{bottom:543.680000pt;}
.ya_c01083{bottom:595.840000pt;}
.h1_c01083{height:65.664000pt;}
.h5_c01083{height:68.928000pt;}
.h4_c01083{height:107.221333pt;}
.h3_c01083{height:130.560000pt;}
.h2_c01083{height:167.406250pt;}
.h0_c01083{height:720.000000pt;}
.w0_c01083{width:1280.000000pt;}
.x0_c01083{left:0.000000pt;}
.x4_c01083{left:97.600000pt;}
.xb_c01083{left:182.442000pt;}
.xd_c01083{left:186.666000pt;}
.x2_c01083{left:213.998133pt;}
.x3_c01083{left:215.342133pt;}
.x1_c01083{left:216.662133pt;}
.x5_c01083{left:432.702933pt;}
.x6_c01083{left:499.127200pt;}
.x7_c01083{left:523.244533pt;}
.xc_c01083{left:1052.922000pt;}
.xe_c01083{left:1062.714000pt;}
.x9_c01083{left:1073.394000pt;}
.xa_c01083{left:1074.738000pt;}
.x8_c01083{left:1077.402000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1840ff7d18e0467afba3ef3c.woff2')format("woff");}.ff1_c01084{font-family:ff1_c01084;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01084{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_c01084{vertical-align:0.000000px;}
.ls0_c01084{letter-spacing:-0.131765px;}
.sc__c01084{text-shadow:none;}
.sc0_c01084{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01084{-webkit-text-stroke:0px transparent;}
.sc0_c01084{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c01084{word-spacing:0.000000px;}
._1_c01084{margin-left:-1.882350px;}
._0_c01084{width:1.129410px;}
.fc0_c01084{color:rgb(0,0,0);}
.fs0_c01084{font-size:188.235000px;}
.y0_c01084{bottom:0.000000px;}
.y1_c01084{bottom:679.158750px;}
.h1_c01084{height:134.282878px;}
.h0_c01084{height:810.000000px;}
.w0_c01084{width:1440.000000px;}
.x0_c01084{left:0.000000px;}
.x1_c01084{left:553.892850px;}
@media print{
.v0_c01084{vertical-align:0.000000pt;}
.ls0_c01084{letter-spacing:-0.117124pt;}
.ws0_c01084{word-spacing:0.000000pt;}
._1_c01084{margin-left:-1.673200pt;}
._0_c01084{width:1.003920pt;}
.fs0_c01084{font-size:167.320000pt;}
.y0_c01084{bottom:0.000000pt;}
.y1_c01084{bottom:603.696667pt;}
.h1_c01084{height:119.362559pt;}
.h0_c01084{height:720.000000pt;}
.w0_c01084{width:1280.000000pt;}
.x0_c01084{left:0.000000pt;}
.x1_c01084{left:492.349200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3db86f530b3a760774c25f40.woff2')format("woff");}.ff1_c01085{font-family:ff1_c01085;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01085;src:url('chunks/assets/font_25de04920de769ea87c2576e.woff2')format("woff");}.ff2_c01085{font-family:ff2_c01085;line-height:0.904000;font-style:normal;font-weight:normal;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_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff3_c01085{font-family:ff3_c01085;line-height:0.625000;font-style:normal;font-weight:normal;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_41c28666652ca739a3c56205.woff2')format("woff");}.ff4_c01085{font-family:ff4_c01085;line-height:0.896000;font-style:normal;font-weight:normal;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_7f7fd38d759c92fdaec0fd3c.woff2')format("woff");}.ff5_c01085{font-family:ff5_c01085;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01085;src:url('chunks/assets/font_3e18e12cb3568c73d813e5f3.woff2')format("woff");}.ff6_c01085{font-family:ff6_c01085;line-height:0.896000;font-style:normal;font-weight: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_c01085;src:url('chunks/assets/font_64572131640da2664e6fdcd3.woff2')format("woff");}.ff7_c01085{font-family:ff7_c01085;line-height:0.896000;font-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_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);}
.m0_c01085{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);}
.m2_c01085{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c01085{vertical-align:-18.756000px;}
.v0_c01085{vertical-align:0.000000px;}
.lsd_c01085{letter-spacing:-6.984000px;}
.lse_c01085{letter-spacing:-5.108400px;}
.lsb_c01085{letter-spacing:-1.792800px;}
.lsc_c01085{letter-spacing:-1.393200px;}
.lsf_c01085{letter-spacing:-0.820800px;}
.ls16_c01085{letter-spacing:-0.330000px;}
.ls8_c01085{letter-spacing:-0.280800px;}
.ls10_c01085{letter-spacing:-0.226800px;}
.ls7_c01085{letter-spacing:-0.205200px;}
.ls15_c01085{letter-spacing:-0.167400px;}
.ls9_c01085{letter-spacing:-0.075600px;}
.ls14_c01085{letter-spacing:-0.070200px;}
.lsa_c01085{letter-spacing:-0.010800px;}
.ls5_c01085{letter-spacing:0.000000px;}
.ls12_c01085{letter-spacing:0.021600px;}
.ls4_c01085{letter-spacing:0.037647px;}
.ls6_c01085{letter-spacing:0.183600px;}
.ls13_c01085{letter-spacing:0.216000px;}
.ls3_c01085{letter-spacing:0.246000px;}
.ls11_c01085{letter-spacing:0.302400px;}
.ls1_c01085{letter-spacing:24.948000px;}
.ls0_c01085{letter-spacing:70.200000px;}
.ls2_c01085{letter-spacing:97.200000px;}
.sc__c01085{text-shadow:none;}
.sc1_c01085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c01085{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01085{-webkit-text-stroke:0px transparent;}
.sc1_c01085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c01085{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c01085{word-spacing:-32.544000px;}
.ws1_c01085{word-spacing:-24.591600px;}
.ws2_c01085{word-spacing:-19.299600px;}
.ws5_c01085{word-spacing:-13.560000px;}
.ws6_c01085{word-spacing:0.000000px;}
.ws4_c01085{word-spacing:0.021600px;}
.ws3_c01085{word-spacing:0.054000px;}
._9_c01085{margin-left:-13.826970px;}
._b_c01085{margin-left:-10.228950px;}
._a_c01085{margin-left:-7.408800px;}
._3_c01085{margin-left:-5.774400px;}
._2_c01085{margin-left:-4.141170px;}
._0_c01085{margin-left:-2.258820px;}
._4_c01085{margin-left:-1.012230px;}
._1_c01085{width:1.129410px;}
._5_c01085{width:2.224800px;}
._8_c01085{width:3.985200px;}
._7_c01085{width:5.616000px;}
._6_c01085{width:7.344000px;}
._c_c01085{width:13.292910px;}
.fc2_c01085{color:rgb(5,99,193);}
.fc1_c01085{color:rgb(89,89,89);}
.fc0_c01085{color:rgb(0,0,0);}
.fs4_c01085{font-size:54.000000px;}
.fs5_c01085{font-size:60.000000px;}
.fs3_c01085{font-size:72.000000px;}
.fs2_c01085{font-size:108.000000px;}
.fs1_c01085{font-size:144.000000px;}
.fs0_c01085{font-size:188.235000px;}
.y0_c01085{bottom:0.000000px;}
.y12_c01085{bottom:57.240000px;}
.y11_c01085{bottom:75.235500px;}
.y10_c01085{bottom:91.800000px;}
.ye_c01085{bottom:201.258000px;}
.yd_c01085{bottom:231.147000px;}
.yc_c01085{bottom:259.578000px;}
.yf_c01085{bottom:288.720000px;}
.yb_c01085{bottom:297.378000px;}
.ya_c01085{bottom:325.809000px;}
.y9_c01085{bottom:355.698000px;}
.y8_c01085{bottom:384.129000px;}
.y7_c01085{bottom:412.560000px;}
.y5_c01085{bottom:412.569000px;}
.y4_c01085{bottom:442.809000px;}
.y6_c01085{bottom:450.369000px;}
.y3_c01085{bottom:486.360000px;}
.y2_c01085{bottom:528.480000px;}
.y1_c01085{bottom:672.678750px;}
.h4_c01085{height:38.772000px;}
.h5_c01085{height:43.080000px;}
.h3_c01085{height:77.544000px;}
.h2_c01085{height:104.544000px;}
.h1_c01085{height:134.282878px;}
.h0_c01085{height:810.000000px;}
.w0_c01085{width:1440.000000px;}
.x0_c01085{left:0.000000px;}
.x2_c01085{left:109.987500px;}
.x3_c01085{left:143.764500px;}
.x1_c01085{left:309.581250px;}
.x7_c01085{left:464.691900px;}
.x8_c01085{left:695.286450px;}
.x4_c01085{left:739.800000px;}
.x5_c01085{left:793.827000px;}
.x6_c01085{left:820.795500px;}
@media print{
.v1_c01085{vertical-align:-16.672000pt;}
.v0_c01085{vertical-align:0.000000pt;}
.lsd_c01085{letter-spacing:-6.208000pt;}
.lse_c01085{letter-spacing:-4.540800pt;}
.lsb_c01085{letter-spacing:-1.593600pt;}
.lsc_c01085{letter-spacing:-1.238400pt;}
.lsf_c01085{letter-spacing:-0.729600pt;}
.ls16_c01085{letter-spacing:-0.293333pt;}
.ls8_c01085{letter-spacing:-0.249600pt;}
.ls10_c01085{letter-spacing:-0.201600pt;}
.ls7_c01085{letter-spacing:-0.182400pt;}
.ls15_c01085{letter-spacing:-0.148800pt;}
.ls9_c01085{letter-spacing:-0.067200pt;}
.ls14_c01085{letter-spacing:-0.062400pt;}
.lsa_c01085{letter-spacing:-0.009600pt;}
.ls5_c01085{letter-spacing:0.000000pt;}
.ls12_c01085{letter-spacing:0.019200pt;}
.ls4_c01085{letter-spacing:0.033464pt;}
.ls6_c01085{letter-spacing:0.163200pt;}
.ls13_c01085{letter-spacing:0.192000pt;}
.ls3_c01085{letter-spacing:0.218667pt;}
.ls11_c01085{letter-spacing:0.268800pt;}
.ls1_c01085{letter-spacing:22.176000pt;}
.ls0_c01085{letter-spacing:62.400000pt;}
.ls2_c01085{letter-spacing:86.400000pt;}
.ws0_c01085{word-spacing:-28.928000pt;}
.ws1_c01085{word-spacing:-21.859200pt;}
.ws2_c01085{word-spacing:-17.155200pt;}
.ws5_c01085{word-spacing:-12.053333pt;}
.ws6_c01085{word-spacing:0.000000pt;}
.ws4_c01085{word-spacing:0.019200pt;}
.ws3_c01085{word-spacing:0.048000pt;}
._9_c01085{margin-left:-12.290640pt;}
._b_c01085{margin-left:-9.092400pt;}
._a_c01085{margin-left:-6.585600pt;}
._3_c01085{margin-left:-5.132800pt;}
._2_c01085{margin-left:-3.681040pt;}
._0_c01085{margin-left:-2.007840pt;}
._4_c01085{margin-left:-0.899760pt;}
._1_c01085{width:1.003920pt;}
._5_c01085{width:1.977600pt;}
._8_c01085{width:3.542400pt;}
._7_c01085{width:4.992000pt;}
._6_c01085{width:6.528000pt;}
._c_c01085{width:11.815920pt;}
.fs4_c01085{font-size:48.000000pt;}
.fs5_c01085{font-size:53.333333pt;}
.fs3_c01085{font-size:64.000000pt;}
.fs2_c01085{font-size:96.000000pt;}
.fs1_c01085{font-size:128.000000pt;}
.fs0_c01085{font-size:167.320000pt;}
.y0_c01085{bottom:0.000000pt;}
.y12_c01085{bottom:50.880000pt;}
.y11_c01085{bottom:66.876000pt;}
.y10_c01085{bottom:81.600000pt;}
.ye_c01085{bottom:178.896000pt;}
.yd_c01085{bottom:205.464000pt;}
.yc_c01085{bottom:230.736000pt;}
.yf_c01085{bottom:256.640000pt;}
.yb_c01085{bottom:264.336000pt;}
.ya_c01085{bottom:289.608000pt;}
.y9_c01085{bottom:316.176000pt;}
.y8_c01085{bottom:341.448000pt;}
.y7_c01085{bottom:366.720000pt;}
.y5_c01085{bottom:366.728000pt;}
.y4_c01085{bottom:393.608000pt;}
.y6_c01085{bottom:400.328000pt;}
.y3_c01085{bottom:432.320000pt;}
.y2_c01085{bottom:469.760000pt;}
.y1_c01085{bottom:597.936667pt;}
.h4_c01085{height:34.464000pt;}
.h5_c01085{height:38.293333pt;}
.h3_c01085{height:68.928000pt;}
.h2_c01085{height:92.928000pt;}
.h1_c01085{height:119.362559pt;}
.h0_c01085{height:720.000000pt;}
.w0_c01085{width:1280.000000pt;}
.x0_c01085{left:0.000000pt;}
.x2_c01085{left:97.766667pt;}
.x3_c01085{left:127.790667pt;}
.x1_c01085{left:275.183333pt;}
.x7_c01085{left:413.059467pt;}
.x8_c01085{left:618.032400pt;}
.x4_c01085{left:657.600000pt;}
.x5_c01085{left:705.624000pt;}
.x6_c01085{left:729.596000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c6b745f4b2bead6837f603a5.woff2')format("woff");}.ff1_c01086{font-family:ff1_c01086;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01086;src:url('chunks/assets/font_81d35b44c71c07939c501f7b.woff2')format("woff");}.ff2_c01086{font-family:ff2_c01086;line-height:0.862000;font-style:normal;font-weight:normal;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_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff3_c01086{font-family:ff3_c01086;line-height:0.625000;font-style:normal;font-weight:normal;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_41c28666652ca739a3c56205.woff2')format("woff");}.ff4_c01086{font-family:ff4_c01086;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01086;src:url('chunks/assets/font_7f7fd38d759c92fdaec0fd3c.woff2')format("woff");}.ff5_c01086{font-family:ff5_c01086;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01086;src:url('chunks/assets/font_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff6_c01086{font-family:ff6_c01086;line-height:0.625000;font-style:normal;font-weight: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_c01086;src:url('chunks/assets/font_69fab6390d33dbcf96830c58.woff2')format("woff");}.ff7_c01086{font-family:ff7_c01086;line-height:0.862000;font-style:normal;font-weight: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_c01086;src:url('chunks/assets/font_cefc86d8bad7b942b7bb7c7b.woff2')format("woff");}.ff8_c01086{font-family:ff8_c01086;line-height:0.723000;font-style:normal;font-weight: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_c01086;src:url('chunks/assets/font_d2a571ab965541b893fa1eb4.woff2')format("woff");}.ff9_c01086{font-family:ff9_c01086;line-height:0.862000;font-style:normal;font-weight: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_c01086;src:url('chunks/assets/font_b5c082e18d017422c5c4cffd.woff2')format("woff");}.ffa_c01086{font-family:ffa_c01086;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01086;src:url('chunks/assets/font_3aac6be29fce5b645f592165.woff2')format("woff");}.ffb_c01086{font-family:ffb_c01086;line-height:0.896000;font-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_c01086{transform:matrix(0.218734,-0.121060,0.121060,0.218734,0,0);-ms-transform:matrix(0.218734,-0.121060,0.121060,0.218734,0,0);-webkit-transform:matrix(0.218734,-0.121060,0.121060,0.218734,0,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;}
.v1_c01086{vertical-align:28.764000px;}
.v2_c01086{vertical-align:30.204000px;}
.ls11_c01086{letter-spacing:-7.131600px;}
.ls6_c01086{letter-spacing:-4.972800px;}
.ls16_c01086{letter-spacing:-3.705000px;}
.ls1a_c01086{letter-spacing:-2.030400px;}
.ls1b_c01086{letter-spacing:-0.334800px;}
.ls17_c01086{letter-spacing:-0.250800px;}
.lsd_c01086{letter-spacing:-0.216000px;}
.ls14_c01086{letter-spacing:-0.086400px;}
.lsc_c01086{letter-spacing:-0.084000px;}
.ls9_c01086{letter-spacing:-0.060000px;}
.ls8_c01086{letter-spacing:0.000000px;}
.ls1d_c01086{letter-spacing:0.021600px;}
.lsa_c01086{letter-spacing:0.036000px;}
.ls18_c01086{letter-spacing:0.064800px;}
.ls1c_c01086{letter-spacing:0.086400px;}
.ls5_c01086{letter-spacing:0.096000px;}
.ls10_c01086{letter-spacing:0.144000px;}
.ls15_c01086{letter-spacing:0.151200px;}
.ls13_c01086{letter-spacing:0.168000px;}
.lse_c01086{letter-spacing:0.216000px;}
.lsb_c01086{letter-spacing:0.240000px;}
.ls4_c01086{letter-spacing:0.252000px;}
.ls12_c01086{letter-spacing:0.260400px;}
.ls7_c01086{letter-spacing:0.276000px;}
.ls19_c01086{letter-spacing:0.280800px;}
.lsf_c01086{letter-spacing:0.313200px;}
.ls3_c01086{letter-spacing:18.984000px;}
.ls0_c01086{letter-spacing:27.000000px;}
.ls1_c01086{letter-spacing:70.200000px;}
.ls2_c01086{letter-spacing:78.624000px;}
.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:-27.396000px;}
.ws3_c01086{word-spacing:-24.191947px;}
.ws1_c01086{word-spacing:-16.272000px;}
.ws2_c01086{word-spacing:-0.066000px;}
.ws4_c01086{word-spacing:0.000000px;}
._5_c01086{margin-left:-3.858000px;}
._4_c01086{margin-left:-2.472000px;}
._3_c01086{margin-left:-1.032000px;}
._1_c01086{width:1.344000px;}
._8_c01086{width:2.736000px;}
._2_c01086{width:3.840000px;}
._0_c01086{width:5.376000px;}
._7_c01086{width:6.384000px;}
._6_c01086{width:7.560000px;}
.fc1_c01086{color:rgb(255,0,0);}
.fc0_c01086{color:rgb(0,0,0);}
.fs7_c01086{font-size:66.000000px;}
.fs3_c01086{font-size:72.000000px;}
.fs4_c01086{font-size:84.000000px;}
.fs6_c01086{font-size:96.000000px;}
.fs8_c01086{font-size:107.999765px;}
.fs2_c01086{font-size:108.000000px;}
.fs5_c01086{font-size:114.000000px;}
.fs1_c01086{font-size:120.000000px;}
.fs0_c01086{font-size:192.000000px;}
.y0_c01086{bottom:0.000000px;}
.y1b_c01086{bottom:33.489000px;}
.y1a_c01086{bottom:65.160000px;}
.y16_c01086{bottom:113.394386px;}
.y15_c01086{bottom:141.120000px;}
.ye_c01086{bottom:144.730500px;}
.y18_c01086{bottom:145.800000px;}
.yd_c01086{bottom:171.720000px;}
.y17_c01086{bottom:177.120000px;}
.yc_c01086{bottom:260.280000px;}
.yb_c01086{bottom:288.729000px;}
.y13_c01086{bottom:322.200000px;}
.ya_c01086{bottom:329.040000px;}
.y20_c01086{bottom:331.218000px;}
.y1f_c01086{bottom:362.889000px;}
.y1e_c01086{bottom:396.018000px;}
.y9_c01086{bottom:396.726000px;}
.y8_c01086{bottom:425.160000px;}
.y1d_c01086{bottom:428.769000px;}
.y7_c01086{bottom:452.160000px;}
.y1c_c01086{bottom:460.440000px;}
.y11_c01086{bottom:465.840000px;}
.y14_c01086{bottom:475.560000px;}
.y6_c01086{bottom:485.289000px;}
.y5_c01086{bottom:512.289000px;}
.y12_c01086{bottom:515.160000px;}
.y4_c01086{bottom:552.600000px;}
.y19_c01086{bottom:571.680000px;}
.y3_c01086{bottom:608.760000px;}
.y10_c01086{bottom:612.720000px;}
.y2_c01086{bottom:653.760000px;}
.yf_c01086{bottom:657.720000px;}
.y1_c01086{bottom:723.240000px;}
.h5_c01086{height:51.696000px;}
.h7_c01086{height:57.456000px;}
.h6_c01086{height:60.732000px;}
.hb_c01086{height:77.543831px;}
.h3_c01086{height:77.544000px;}
.ha_c01086{height:77.628000px;}
.h9_c01086{height:77.976000px;}
.h4_c01086{height:80.460000px;}
.h8_c01086{height:81.900000px;}
.h2_c01086{height:82.080000px;}
.h1_c01086{height:136.968750px;}
.h0_c01086{height:810.000000px;}
.w0_c01086{width:1440.000000px;}
.x0_c01086{left:0.000000px;}
.x4_c01086{left:109.987500px;}
.x2_c01086{left:113.812500px;}
.x8_c01086{left:134.746500px;}
.x5_c01086{left:136.987500px;}
.x6_c01086{left:138.862500px;}
.x7_c01086{left:163.987500px;}
.x3_c01086{left:211.012500px;}
.x1_c01086{left:546.435000px;}
.xa_c01086{left:776.272500px;}
.xd_c01086{left:777.643050px;}
.x13_c01086{left:783.839850px;}
.xb_c01086{left:800.131500px;}
.xc_c01086{left:832.497750px;}
.xf_c01086{left:895.306950px;}
.x10_c01086{left:910.559336px;}
.x9_c01086{left:932.722500px;}
.xe_c01086{left:953.407350px;}
.x12_c01086{left:1069.472850px;}
.x11_c01086{left:1098.820650px;}
.x14_c01086{left:1259.012850px;}
@media print{
.v0_c01086{vertical-align:0.000000pt;}
.v1_c01086{vertical-align:25.568000pt;}
.v2_c01086{vertical-align:26.848000pt;}
.ls11_c01086{letter-spacing:-6.339200pt;}
.ls6_c01086{letter-spacing:-4.420267pt;}
.ls16_c01086{letter-spacing:-3.293333pt;}
.ls1a_c01086{letter-spacing:-1.804800pt;}
.ls1b_c01086{letter-spacing:-0.297600pt;}
.ls17_c01086{letter-spacing:-0.222933pt;}
.lsd_c01086{letter-spacing:-0.192000pt;}
.ls14_c01086{letter-spacing:-0.076800pt;}
.lsc_c01086{letter-spacing:-0.074667pt;}
.ls9_c01086{letter-spacing:-0.053333pt;}
.ls8_c01086{letter-spacing:0.000000pt;}
.ls1d_c01086{letter-spacing:0.019200pt;}
.lsa_c01086{letter-spacing:0.032000pt;}
.ls18_c01086{letter-spacing:0.057600pt;}
.ls1c_c01086{letter-spacing:0.076800pt;}
.ls5_c01086{letter-spacing:0.085333pt;}
.ls10_c01086{letter-spacing:0.128000pt;}
.ls15_c01086{letter-spacing:0.134400pt;}
.ls13_c01086{letter-spacing:0.149333pt;}
.lse_c01086{letter-spacing:0.192000pt;}
.lsb_c01086{letter-spacing:0.213333pt;}
.ls4_c01086{letter-spacing:0.224000pt;}
.ls12_c01086{letter-spacing:0.231467pt;}
.ls7_c01086{letter-spacing:0.245333pt;}
.ls19_c01086{letter-spacing:0.249600pt;}
.lsf_c01086{letter-spacing:0.278400pt;}
.ls3_c01086{letter-spacing:16.874667pt;}
.ls0_c01086{letter-spacing:24.000000pt;}
.ls1_c01086{letter-spacing:62.400000pt;}
.ls2_c01086{letter-spacing:69.888000pt;}
.ws0_c01086{word-spacing:-24.352000pt;}
.ws3_c01086{word-spacing:-21.503953pt;}
.ws1_c01086{word-spacing:-14.464000pt;}
.ws2_c01086{word-spacing:-0.058667pt;}
.ws4_c01086{word-spacing:0.000000pt;}
._5_c01086{margin-left:-3.429333pt;}
._4_c01086{margin-left:-2.197333pt;}
._3_c01086{margin-left:-0.917333pt;}
._1_c01086{width:1.194667pt;}
._8_c01086{width:2.432000pt;}
._2_c01086{width:3.413333pt;}
._0_c01086{width:4.778667pt;}
._7_c01086{width:5.674667pt;}
._6_c01086{width:6.720000pt;}
.fs7_c01086{font-size:58.666667pt;}
.fs3_c01086{font-size:64.000000pt;}
.fs4_c01086{font-size:74.666667pt;}
.fs6_c01086{font-size:85.333333pt;}
.fs8_c01086{font-size:95.999791pt;}
.fs2_c01086{font-size:96.000000pt;}
.fs5_c01086{font-size:101.333333pt;}
.fs1_c01086{font-size:106.666667pt;}
.fs0_c01086{font-size:170.666667pt;}
.y0_c01086{bottom:0.000000pt;}
.y1b_c01086{bottom:29.768000pt;}
.y1a_c01086{bottom:57.920000pt;}
.y16_c01086{bottom:100.795010pt;}
.y15_c01086{bottom:125.440000pt;}
.ye_c01086{bottom:128.649333pt;}
.y18_c01086{bottom:129.600000pt;}
.yd_c01086{bottom:152.640000pt;}
.y17_c01086{bottom:157.440000pt;}
.yc_c01086{bottom:231.360000pt;}
.yb_c01086{bottom:256.648000pt;}
.y13_c01086{bottom:286.400000pt;}
.ya_c01086{bottom:292.480000pt;}
.y20_c01086{bottom:294.416000pt;}
.y1f_c01086{bottom:322.568000pt;}
.y1e_c01086{bottom:352.016000pt;}
.y9_c01086{bottom:352.645333pt;}
.y8_c01086{bottom:377.920000pt;}
.y1d_c01086{bottom:381.128000pt;}
.y7_c01086{bottom:401.920000pt;}
.y1c_c01086{bottom:409.280000pt;}
.y11_c01086{bottom:414.080000pt;}
.y14_c01086{bottom:422.720000pt;}
.y6_c01086{bottom:431.368000pt;}
.y5_c01086{bottom:455.368000pt;}
.y12_c01086{bottom:457.920000pt;}
.y4_c01086{bottom:491.200000pt;}
.y19_c01086{bottom:508.160000pt;}
.y3_c01086{bottom:541.120000pt;}
.y10_c01086{bottom:544.640000pt;}
.y2_c01086{bottom:581.120000pt;}
.yf_c01086{bottom:584.640000pt;}
.y1_c01086{bottom:642.880000pt;}
.h5_c01086{height:45.952000pt;}
.h7_c01086{height:51.072000pt;}
.h6_c01086{height:53.984000pt;}
.hb_c01086{height:68.927850pt;}
.h3_c01086{height:68.928000pt;}
.ha_c01086{height:69.002667pt;}
.h9_c01086{height:69.312000pt;}
.h4_c01086{height:71.520000pt;}
.h8_c01086{height:72.800000pt;}
.h2_c01086{height:72.960000pt;}
.h1_c01086{height:121.750000pt;}
.h0_c01086{height:720.000000pt;}
.w0_c01086{width:1280.000000pt;}
.x0_c01086{left:0.000000pt;}
.x4_c01086{left:97.766667pt;}
.x2_c01086{left:101.166667pt;}
.x8_c01086{left:119.774667pt;}
.x5_c01086{left:121.766667pt;}
.x6_c01086{left:123.433333pt;}
.x7_c01086{left:145.766667pt;}
.x3_c01086{left:187.566667pt;}
.x1_c01086{left:485.720000pt;}
.xa_c01086{left:690.020000pt;}
.xd_c01086{left:691.238267pt;}
.x13_c01086{left:696.746533pt;}
.xb_c01086{left:711.228000pt;}
.xc_c01086{left:739.998000pt;}
.xf_c01086{left:795.828400pt;}
.x10_c01086{left:809.386076pt;}
.x9_c01086{left:829.086667pt;}
.xe_c01086{left:847.473200pt;}
.x12_c01086{left:950.642533pt;}
.x11_c01086{left:976.729467pt;}
.x14_c01086{left:1119.122533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8994fe6017d962290c19409d.woff2')format("woff");}.ff1_c01087{font-family:ff1_c01087;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01087;src:url('chunks/assets/font_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff2_c01087{font-family:ff2_c01087;line-height:0.625000;font-style:normal;font-weight:normal;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_41c28666652ca739a3c56205.woff2')format("woff");}.ff3_c01087{font-family:ff3_c01087;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01087{vertical-align:0.000000px;}
.lsb_c01087{letter-spacing:-2.494800px;}
.lse_c01087{letter-spacing:-0.831600px;}
.ls4_c01087{letter-spacing:-0.248400px;}
.lsc_c01087{letter-spacing:-0.216000px;}
.ls9_c01087{letter-spacing:-0.086400px;}
.lsa_c01087{letter-spacing:-0.075600px;}
.ls3_c01087{letter-spacing:-0.017400px;}
.ls8_c01087{letter-spacing:-0.010800px;}
.ls7_c01087{letter-spacing:0.000000px;}
.lsd_c01087{letter-spacing:0.021600px;}
.ls6_c01087{letter-spacing:0.216000px;}
.ls5_c01087{letter-spacing:0.302400px;}
.ls1_c01087{letter-spacing:24.732000px;}
.ls2_c01087{letter-spacing:24.948000px;}
.ls0_c01087{letter-spacing:97.200000px;}
.sc__c01087{text-shadow:none;}
.sc0_c01087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01087{-webkit-text-stroke:0px transparent;}
.sc0_c01087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01087{word-spacing:0.000000px;}
._4_c01087{margin-left:-5.568000px;}
._3_c01087{margin-left:-4.524000px;}
._0_c01087{margin-left:-2.784000px;}
._2_c01087{margin-left:-1.218000px;}
._1_c01087{width:1.044000px;}
._5_c01087{width:2.700000px;}
.fc1_c01087{color:rgb(89,89,89);}
.fc0_c01087{color:rgb(0,0,0);}
.fs1_c01087{font-size:108.000000px;}
.fs0_c01087{font-size:174.000000px;}
.y0_c01087{bottom:0.000000px;}
.yd_c01087{bottom:149.409000px;}
.yc_c01087{bottom:179.298000px;}
.yb_c01087{bottom:222.849000px;}
.ya_c01087{bottom:252.738000px;}
.y9_c01087{bottom:296.289000px;}
.y8_c01087{bottom:341.298000px;}
.y7_c01087{bottom:377.289000px;}
.y6_c01087{bottom:414.738000px;}
.y5_c01087{bottom:450.729000px;}
.y4_c01087{bottom:486.720000px;}
.y3_c01087{bottom:524.169000px;}
.y2_c01087{bottom:560.160000px;}
.y1_c01087{bottom:648.720000px;}
.h2_c01087{height:77.544000px;}
.h1_c01087{height:124.127930px;}
.h0_c01087{height:810.000000px;}
.w0_c01087{width:1440.000000px;}
.x0_c01087{left:0.000000px;}
.x2_c01087{left:169.881150px;}
.x4_c01087{left:203.631150px;}
.x3_c01087{left:223.881150px;}
.x1_c01087{left:339.174150px;}
@media print{
.v0_c01087{vertical-align:0.000000pt;}
.lsb_c01087{letter-spacing:-2.217600pt;}
.lse_c01087{letter-spacing:-0.739200pt;}
.ls4_c01087{letter-spacing:-0.220800pt;}
.lsc_c01087{letter-spacing:-0.192000pt;}
.ls9_c01087{letter-spacing:-0.076800pt;}
.lsa_c01087{letter-spacing:-0.067200pt;}
.ls3_c01087{letter-spacing:-0.015467pt;}
.ls8_c01087{letter-spacing:-0.009600pt;}
.ls7_c01087{letter-spacing:0.000000pt;}
.lsd_c01087{letter-spacing:0.019200pt;}
.ls6_c01087{letter-spacing:0.192000pt;}
.ls5_c01087{letter-spacing:0.268800pt;}
.ls1_c01087{letter-spacing:21.984000pt;}
.ls2_c01087{letter-spacing:22.176000pt;}
.ls0_c01087{letter-spacing:86.400000pt;}
.ws0_c01087{word-spacing:0.000000pt;}
._4_c01087{margin-left:-4.949333pt;}
._3_c01087{margin-left:-4.021333pt;}
._0_c01087{margin-left:-2.474667pt;}
._2_c01087{margin-left:-1.082667pt;}
._1_c01087{width:0.928000pt;}
._5_c01087{width:2.400000pt;}
.fs1_c01087{font-size:96.000000pt;}
.fs0_c01087{font-size:154.666667pt;}
.y0_c01087{bottom:0.000000pt;}
.yd_c01087{bottom:132.808000pt;}
.yc_c01087{bottom:159.376000pt;}
.yb_c01087{bottom:198.088000pt;}
.ya_c01087{bottom:224.656000pt;}
.y9_c01087{bottom:263.368000pt;}
.y8_c01087{bottom:303.376000pt;}
.y7_c01087{bottom:335.368000pt;}
.y6_c01087{bottom:368.656000pt;}
.y5_c01087{bottom:400.648000pt;}
.y4_c01087{bottom:432.640000pt;}
.y3_c01087{bottom:465.928000pt;}
.y2_c01087{bottom:497.920000pt;}
.y1_c01087{bottom:576.640000pt;}
.h2_c01087{height:68.928000pt;}
.h1_c01087{height:110.335938pt;}
.h0_c01087{height:720.000000pt;}
.w0_c01087{width:1280.000000pt;}
.x0_c01087{left:0.000000pt;}
.x2_c01087{left:151.005467pt;}
.x4_c01087{left:181.005467pt;}
.x3_c01087{left:199.005467pt;}
.x1_c01087{left:301.488133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9593a1dc9272d9a5e6d9a2d0.woff2')format("woff");}.ff1_c01088{font-family:ff1_c01088;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01088;src:url('chunks/assets/font_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff2_c01088{font-family:ff2_c01088;line-height:0.625000;font-style:normal;font-weight:normal;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_3a5973c4723bae044f6b8c63.woff2')format("woff");}.ff3_c01088{font-family:ff3_c01088;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01088;src:url('chunks/assets/font_de510ad2579db4104028777f.woff2')format("woff");}.ff4_c01088{font-family:ff4_c01088;line-height:0.862000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01088{vertical-align:0.000000px;}
.ls2_c01088{letter-spacing:-1.426800px;}
.lsb_c01088{letter-spacing:-1.095600px;}
.lsa_c01088{letter-spacing:-0.306000px;}
.ls9_c01088{letter-spacing:-0.214200px;}
.ls4_c01088{letter-spacing:-0.208800px;}
.ls7_c01088{letter-spacing:-0.173400px;}
.ls6_c01088{letter-spacing:-0.091800px;}
.ls8_c01088{letter-spacing:-0.020400px;}
.ls3_c01088{letter-spacing:0.000000px;}
.ls5_c01088{letter-spacing:0.193800px;}
.ls1_c01088{letter-spacing:0.306000px;}
.ls0_c01088{letter-spacing:99.348000px;}
.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;}
._6_c01088{margin-left:-8.547600px;}
._8_c01088{margin-left:-6.772200px;}
._5_c01088{margin-left:-5.545800px;}
._3_c01088{margin-left:-4.002000px;}
._7_c01088{margin-left:-2.726400px;}
._1_c01088{margin-left:-1.392000px;}
._2_c01088{width:1.218000px;}
._0_c01088{width:2.610000px;}
._4_c01088{width:24.178800px;}
._a_c01088{width:30.882600px;}
._9_c01088{width:47.610000px;}
.fc1_c01088{color:rgb(89,89,89);}
.fc0_c01088{color:rgb(0,0,0);}
.fs1_c01088{font-size:102.000000px;}
.fs2_c01088{font-size:132.000000px;}
.fs0_c01088{font-size:174.000000px;}
.y0_c01088{bottom:0.000000px;}
.yd_c01088{bottom:148.320000px;}
.yc_c01088{bottom:197.980500px;}
.yb_c01088{bottom:240.106500px;}
.ya_c01088{bottom:268.539000px;}
.y9_c01088{bottom:310.308000px;}
.y8_c01088{bottom:337.312500px;}
.y7_c01088{bottom:380.866500px;}
.y6_c01088{bottom:422.992500px;}
.y5_c01088{bottom:449.997000px;}
.y4_c01088{bottom:493.551000px;}
.y3_c01088{bottom:535.320000px;}
.y2_c01088{bottom:638.982000px;}
.y1_c01088{bottom:685.440000px;}
.h2_c01088{height:73.236000px;}
.h3_c01088{height:90.288000px;}
.h1_c01088{height:124.127930px;}
.h0_c01088{height:810.000000px;}
.w0_c01088{width:1440.000000px;}
.x0_c01088{left:0.000000px;}
.x3_c01088{left:169.881150px;}
.x4_c01088{left:203.668650px;}
.x5_c01088{left:310.633650px;}
.x1_c01088{left:321.556950px;}
.x2_c01088{left:560.110950px;}
@media print{
.v0_c01088{vertical-align:0.000000pt;}
.ls2_c01088{letter-spacing:-1.268267pt;}
.lsb_c01088{letter-spacing:-0.973867pt;}
.lsa_c01088{letter-spacing:-0.272000pt;}
.ls9_c01088{letter-spacing:-0.190400pt;}
.ls4_c01088{letter-spacing:-0.185600pt;}
.ls7_c01088{letter-spacing:-0.154133pt;}
.ls6_c01088{letter-spacing:-0.081600pt;}
.ls8_c01088{letter-spacing:-0.018133pt;}
.ls3_c01088{letter-spacing:0.000000pt;}
.ls5_c01088{letter-spacing:0.172267pt;}
.ls1_c01088{letter-spacing:0.272000pt;}
.ls0_c01088{letter-spacing:88.309333pt;}
.ws0_c01088{word-spacing:0.000000pt;}
._6_c01088{margin-left:-7.597867pt;}
._8_c01088{margin-left:-6.019733pt;}
._5_c01088{margin-left:-4.929600pt;}
._3_c01088{margin-left:-3.557333pt;}
._7_c01088{margin-left:-2.423467pt;}
._1_c01088{margin-left:-1.237333pt;}
._2_c01088{width:1.082667pt;}
._0_c01088{width:2.320000pt;}
._4_c01088{width:21.492267pt;}
._a_c01088{width:27.451200pt;}
._9_c01088{width:42.320000pt;}
.fs1_c01088{font-size:90.666667pt;}
.fs2_c01088{font-size:117.333333pt;}
.fs0_c01088{font-size:154.666667pt;}
.y0_c01088{bottom:0.000000pt;}
.yd_c01088{bottom:131.840000pt;}
.yc_c01088{bottom:175.982667pt;}
.yb_c01088{bottom:213.428000pt;}
.ya_c01088{bottom:238.701333pt;}
.y9_c01088{bottom:275.829333pt;}
.y8_c01088{bottom:299.833333pt;}
.y7_c01088{bottom:338.548000pt;}
.y6_c01088{bottom:375.993333pt;}
.y5_c01088{bottom:399.997333pt;}
.y4_c01088{bottom:438.712000pt;}
.y3_c01088{bottom:475.840000pt;}
.y2_c01088{bottom:567.984000pt;}
.y1_c01088{bottom:609.280000pt;}
.h2_c01088{height:65.098667pt;}
.h3_c01088{height:80.256000pt;}
.h1_c01088{height:110.335938pt;}
.h0_c01088{height:720.000000pt;}
.w0_c01088{width:1280.000000pt;}
.x0_c01088{left:0.000000pt;}
.x3_c01088{left:151.005467pt;}
.x4_c01088{left:181.038800pt;}
.x5_c01088{left:276.118800pt;}
.x1_c01088{left:285.828400pt;}
.x2_c01088{left:497.876400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a6e56608f3a39f9b33e93b5d.woff2')format("woff");}.ff1_c01089{font-family:ff1_c01089;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01089;src:url('chunks/assets/font_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff2_c01089{font-family:ff2_c01089;line-height:0.625000;font-style:normal;font-weight:normal;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_3a5973c4723bae044f6b8c63.woff2')format("woff");}.ff3_c01089{font-family:ff3_c01089;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01089;src:url('chunks/assets/font_41c28666652ca739a3c56205.woff2')format("woff");}.ff4_c01089{font-family:ff4_c01089;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01089;src:url('chunks/assets/font_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff5_c01089{font-family:ff5_c01089;line-height:0.625000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01089;src:url('chunks/assets/font_a1b5ad9c4993580556ad37f1.woff2')format("woff");}.ff6_c01089{font-family:ff6_c01089;line-height:0.862000;font-style: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;}
.ls13_c01089{letter-spacing:-2.721600px;}
.ls15_c01089{letter-spacing:-2.181600px;}
.lsd_c01089{letter-spacing:-1.683000px;}
.ls12_c01089{letter-spacing:-0.280800px;}
.ls8_c01089{letter-spacing:-0.275400px;}
.ls6_c01089{letter-spacing:-0.234600px;}
.ls9_c01089{letter-spacing:-0.214200px;}
.lse_c01089{letter-spacing:-0.204000px;}
.ls4_c01089{letter-spacing:-0.096000px;}
.ls16_c01089{letter-spacing:-0.075600px;}
.lsc_c01089{letter-spacing:-0.020400px;}
.ls5_c01089{letter-spacing:0.000000px;}
.ls3_c01089{letter-spacing:0.021600px;}
.ls14_c01089{letter-spacing:0.097200px;}
.lsf_c01089{letter-spacing:0.183600px;}
.lsb_c01089{letter-spacing:0.193800px;}
.ls7_c01089{letter-spacing:0.204000px;}
.lsa_c01089{letter-spacing:0.265200px;}
.ls11_c01089{letter-spacing:0.280800px;}
.ls10_c01089{letter-spacing:0.334800px;}
.ls1_c01089{letter-spacing:23.562000px;}
.ls2_c01089{letter-spacing:97.200000px;}
.ls0_c01089{letter-spacing:99.348000px;}
.sc__c01089{text-shadow:none;}
.sc0_c01089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01089{-webkit-text-stroke:0px transparent;}
.sc0_c01089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01089{word-spacing:-24.688800px;}
.ws1_c01089{word-spacing:-24.429600px;}
.ws2_c01089{word-spacing:-22.226400px;}
.ws3_c01089{word-spacing:0.000000px;}
._6_c01089{margin-left:-7.981200px;}
._2_c01089{margin-left:-5.184000px;}
._1_c01089{margin-left:-2.880000px;}
._0_c01089{margin-left:-1.728000px;}
._3_c01089{width:1.113600px;}
._4_c01089{width:2.456400px;}
._5_c01089{width:3.607200px;}
.fc1_c01089{color:rgb(89,89,89);}
.fc0_c01089{color:rgb(0,0,0);}
.fs1_c01089{font-size:102.000000px;}
.fs2_c01089{font-size:108.000000px;}
.fs0_c01089{font-size:192.000000px;}
.y0_c01089{bottom:0.000000px;}
.y1c_c01089{bottom:83.880000px;}
.y1b_c01089{bottom:117.009000px;}
.y1a_c01089{bottom:148.329000px;}
.yd_c01089{bottom:235.050000px;}
.y18_c01089{bottom:258.840000px;}
.yc_c01089{bottom:271.056000px;}
.y17_c01089{bottom:291.969000px;}
.yb_c01089{bottom:308.490000px;}
.y16_c01089{bottom:323.289000px;}
.ya_c01089{bottom:344.496000px;}
.y15_c01089{bottom:356.418000px;}
.y9_c01089{bottom:380.502000px;}
.y14_c01089{bottom:389.169000px;}
.y19_c01089{bottom:389.520000px;}
.y8_c01089{bottom:417.936000px;}
.y13_c01089{bottom:420.840000px;}
.y7_c01089{bottom:453.942000px;}
.y12_c01089{bottom:453.969000px;}
.y11_c01089{bottom:485.289000px;}
.y6_c01089{bottom:489.948000px;}
.y10_c01089{bottom:518.418000px;}
.y5_c01089{bottom:525.954000px;}
.yf_c01089{bottom:551.169000px;}
.y4_c01089{bottom:563.388000px;}
.ye_c01089{bottom:582.840000px;}
.y3_c01089{bottom:599.394000px;}
.y2_c01089{bottom:635.400000px;}
.y1_c01089{bottom:703.080000px;}
.h2_c01089{height:73.236000px;}
.h4_c01089{height:73.872000px;}
.h3_c01089{height:77.544000px;}
.h1_c01089{height:136.968750px;}
.h0_c01089{height:810.000000px;}
.w0_c01089{width:1440.000000px;}
.x0_c01089{left:0.000000px;}
.x2_c01089{left:87.250800px;}
.x7_c01089{left:93.302850px;}
.x3_c01089{left:122.134800px;}
.x8_c01089{left:130.427850px;}
.x1_c01089{left:319.317600px;}
.x6_c01089{left:736.199850px;}
.x4_c01089{left:1033.853400px;}
.x5_c01089{left:1067.603400px;}
@media print{
.v0_c01089{vertical-align:0.000000pt;}
.ls13_c01089{letter-spacing:-2.419200pt;}
.ls15_c01089{letter-spacing:-1.939200pt;}
.lsd_c01089{letter-spacing:-1.496000pt;}
.ls12_c01089{letter-spacing:-0.249600pt;}
.ls8_c01089{letter-spacing:-0.244800pt;}
.ls6_c01089{letter-spacing:-0.208533pt;}
.ls9_c01089{letter-spacing:-0.190400pt;}
.lse_c01089{letter-spacing:-0.181333pt;}
.ls4_c01089{letter-spacing:-0.085333pt;}
.ls16_c01089{letter-spacing:-0.067200pt;}
.lsc_c01089{letter-spacing:-0.018133pt;}
.ls5_c01089{letter-spacing:0.000000pt;}
.ls3_c01089{letter-spacing:0.019200pt;}
.ls14_c01089{letter-spacing:0.086400pt;}
.lsf_c01089{letter-spacing:0.163200pt;}
.lsb_c01089{letter-spacing:0.172267pt;}
.ls7_c01089{letter-spacing:0.181333pt;}
.lsa_c01089{letter-spacing:0.235733pt;}
.ls11_c01089{letter-spacing:0.249600pt;}
.ls10_c01089{letter-spacing:0.297600pt;}
.ls1_c01089{letter-spacing:20.944000pt;}
.ls2_c01089{letter-spacing:86.400000pt;}
.ls0_c01089{letter-spacing:88.309333pt;}
.ws0_c01089{word-spacing:-21.945600pt;}
.ws1_c01089{word-spacing:-21.715200pt;}
.ws2_c01089{word-spacing:-19.756800pt;}
.ws3_c01089{word-spacing:0.000000pt;}
._6_c01089{margin-left:-7.094400pt;}
._2_c01089{margin-left:-4.608000pt;}
._1_c01089{margin-left:-2.560000pt;}
._0_c01089{margin-left:-1.536000pt;}
._3_c01089{width:0.989867pt;}
._4_c01089{width:2.183467pt;}
._5_c01089{width:3.206400pt;}
.fs1_c01089{font-size:90.666667pt;}
.fs2_c01089{font-size:96.000000pt;}
.fs0_c01089{font-size:170.666667pt;}
.y0_c01089{bottom:0.000000pt;}
.y1c_c01089{bottom:74.560000pt;}
.y1b_c01089{bottom:104.008000pt;}
.y1a_c01089{bottom:131.848000pt;}
.yd_c01089{bottom:208.933333pt;}
.y18_c01089{bottom:230.080000pt;}
.yc_c01089{bottom:240.938667pt;}
.y17_c01089{bottom:259.528000pt;}
.yb_c01089{bottom:274.213333pt;}
.y16_c01089{bottom:287.368000pt;}
.ya_c01089{bottom:306.218667pt;}
.y15_c01089{bottom:316.816000pt;}
.y9_c01089{bottom:338.224000pt;}
.y14_c01089{bottom:345.928000pt;}
.y19_c01089{bottom:346.240000pt;}
.y8_c01089{bottom:371.498667pt;}
.y13_c01089{bottom:374.080000pt;}
.y7_c01089{bottom:403.504000pt;}
.y12_c01089{bottom:403.528000pt;}
.y11_c01089{bottom:431.368000pt;}
.y6_c01089{bottom:435.509333pt;}
.y10_c01089{bottom:460.816000pt;}
.y5_c01089{bottom:467.514667pt;}
.yf_c01089{bottom:489.928000pt;}
.y4_c01089{bottom:500.789333pt;}
.ye_c01089{bottom:518.080000pt;}
.y3_c01089{bottom:532.794667pt;}
.y2_c01089{bottom:564.800000pt;}
.y1_c01089{bottom:624.960000pt;}
.h2_c01089{height:65.098667pt;}
.h4_c01089{height:65.664000pt;}
.h3_c01089{height:68.928000pt;}
.h1_c01089{height:121.750000pt;}
.h0_c01089{height:720.000000pt;}
.w0_c01089{width:1280.000000pt;}
.x0_c01089{left:0.000000pt;}
.x2_c01089{left:77.556267pt;}
.x7_c01089{left:82.935867pt;}
.x3_c01089{left:108.564267pt;}
.x8_c01089{left:115.935867pt;}
.x1_c01089{left:283.837867pt;}
.x6_c01089{left:654.399867pt;}
.x4_c01089{left:918.980800pt;}
.x5_c01089{left:948.980800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_37e7328461cfd8766d0aebdb.woff2')format("woff");}.ff1_c01090{font-family:ff1_c01090;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01090;src:url('chunks/assets/font_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff2_c01090{font-family:ff2_c01090;line-height:0.625000;font-style:normal;font-weight:normal;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_41c28666652ca739a3c56205.woff2')format("woff");}.ff3_c01090{font-family:ff3_c01090;line-height:0.896000;font-style:normal;font-weight:normal;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_7f7fd38d759c92fdaec0fd3c.woff2')format("woff");}.ff4_c01090{font-family:ff4_c01090;line-height:0.896000;font-style: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;}
.ls6_c01090{letter-spacing:-5.108400px;}
.lsb_c01090{letter-spacing:-0.777600px;}
.ls10_c01090{letter-spacing:-0.334800px;}
.lsc_c01090{letter-spacing:-0.280800px;}
.ls9_c01090{letter-spacing:-0.248400px;}
.ls5_c01090{letter-spacing:-0.205200px;}
.ls8_c01090{letter-spacing:-0.183600px;}
.lsd_c01090{letter-spacing:-0.075600px;}
.lse_c01090{letter-spacing:-0.021600px;}
.lsa_c01090{letter-spacing:-0.010800px;}
.ls4_c01090{letter-spacing:0.000000px;}
.ls7_c01090{letter-spacing:0.216000px;}
.lsf_c01090{letter-spacing:0.302400px;}
.ls3_c01090{letter-spacing:24.732000px;}
.ls1_c01090{letter-spacing:24.948000px;}
.ls0_c01090{letter-spacing:97.200000px;}
.ls2_c01090{letter-spacing:121.932000px;}
.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:-24.332400px;}
.ws1_c01090{word-spacing:-24.073200px;}
.ws2_c01090{word-spacing:0.000000px;}
._7_c01090{margin-left:-8.550000px;}
._6_c01090{margin-left:-6.117600px;}
._5_c01090{margin-left:-3.900000px;}
._0_c01090{margin-left:-2.880000px;}
._2_c01090{margin-left:-1.392000px;}
._1_c01090{width:1.248000px;}
._4_c01090{width:4.096800px;}
._3_c01090{width:5.306400px;}
.fc1_c01090{color:rgb(255,0,0);}
.fc3_c01090{color:rgb(89,89,89);}
.fc2_c01090{color:rgb(127,127,127);}
.fc0_c01090{color:rgb(0,0,0);}
.fs2_c01090{font-size:72.000000px;}
.fs1_c01090{font-size:108.000000px;}
.fs0_c01090{font-size:192.000000px;}
.y0_c01090{bottom:0.000000px;}
.ya_c01090{bottom:98.649000px;}
.y9_c01090{bottom:187.209000px;}
.y8_c01090{bottom:230.760000px;}
.y7_c01090{bottom:275.769000px;}
.y6_c01090{bottom:319.320000px;}
.y5_c01090{bottom:362.871000px;}
.y4_c01090{bottom:407.880000px;}
.y3_c01090{bottom:481.311000px;}
.y2_c01090{bottom:518.760000px;}
.y1_c01090{bottom:634.320000px;}
.h2_c01090{height:77.544000px;}
.h1_c01090{height:136.968750px;}
.h0_c01090{height:810.000000px;}
.w0_c01090{width:1440.000000px;}
.x0_c01090{left:0.000000px;}
.x2_c01090{left:166.719000px;}
.x4_c01090{left:172.902000px;}
.x3_c01090{left:220.719000px;}
.x1_c01090{left:481.915350px;}
@media print{
.v0_c01090{vertical-align:0.000000pt;}
.ls6_c01090{letter-spacing:-4.540800pt;}
.lsb_c01090{letter-spacing:-0.691200pt;}
.ls10_c01090{letter-spacing:-0.297600pt;}
.lsc_c01090{letter-spacing:-0.249600pt;}
.ls9_c01090{letter-spacing:-0.220800pt;}
.ls5_c01090{letter-spacing:-0.182400pt;}
.ls8_c01090{letter-spacing:-0.163200pt;}
.lsd_c01090{letter-spacing:-0.067200pt;}
.lse_c01090{letter-spacing:-0.019200pt;}
.lsa_c01090{letter-spacing:-0.009600pt;}
.ls4_c01090{letter-spacing:0.000000pt;}
.ls7_c01090{letter-spacing:0.192000pt;}
.lsf_c01090{letter-spacing:0.268800pt;}
.ls3_c01090{letter-spacing:21.984000pt;}
.ls1_c01090{letter-spacing:22.176000pt;}
.ls0_c01090{letter-spacing:86.400000pt;}
.ls2_c01090{letter-spacing:108.384000pt;}
.ws0_c01090{word-spacing:-21.628800pt;}
.ws1_c01090{word-spacing:-21.398400pt;}
.ws2_c01090{word-spacing:0.000000pt;}
._7_c01090{margin-left:-7.600000pt;}
._6_c01090{margin-left:-5.437867pt;}
._5_c01090{margin-left:-3.466667pt;}
._0_c01090{margin-left:-2.560000pt;}
._2_c01090{margin-left:-1.237333pt;}
._1_c01090{width:1.109333pt;}
._4_c01090{width:3.641600pt;}
._3_c01090{width:4.716800pt;}
.fs2_c01090{font-size:64.000000pt;}
.fs1_c01090{font-size:96.000000pt;}
.fs0_c01090{font-size:170.666667pt;}
.y0_c01090{bottom:0.000000pt;}
.ya_c01090{bottom:87.688000pt;}
.y9_c01090{bottom:166.408000pt;}
.y8_c01090{bottom:205.120000pt;}
.y7_c01090{bottom:245.128000pt;}
.y6_c01090{bottom:283.840000pt;}
.y5_c01090{bottom:322.552000pt;}
.y4_c01090{bottom:362.560000pt;}
.y3_c01090{bottom:427.832000pt;}
.y2_c01090{bottom:461.120000pt;}
.y1_c01090{bottom:563.840000pt;}
.h2_c01090{height:68.928000pt;}
.h1_c01090{height:121.750000pt;}
.h0_c01090{height:720.000000pt;}
.w0_c01090{width:1280.000000pt;}
.x0_c01090{left:0.000000pt;}
.x2_c01090{left:148.194667pt;}
.x4_c01090{left:153.690667pt;}
.x3_c01090{left:196.194667pt;}
.x1_c01090{left:428.369200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_048517944e2cdd932c5ecd18.woff2')format("woff");}.ff1_c01091{font-family:ff1_c01091;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01091;src:url('chunks/assets/font_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff2_c01091{font-family:ff2_c01091;line-height:0.625000;font-style:normal;font-weight:normal;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_41c28666652ca739a3c56205.woff2')format("woff");}.ff3_c01091{font-family:ff3_c01091;line-height:0.896000;font-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_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);}
.m0_c01091{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_c01091{vertical-align:0.000000px;}
.ls2_c01091{letter-spacing:-4.178817px;}
.ls8_c01091{letter-spacing:-1.231200px;}
.ls4_c01091{letter-spacing:-0.280800px;}
.ls7_c01091{letter-spacing:-0.183600px;}
.ls3_c01091{letter-spacing:0.000000px;}
.ls6_c01091{letter-spacing:0.021600px;}
.ls5_c01091{letter-spacing:0.216000px;}
.ls1_c01091{letter-spacing:0.324000px;}
.ls0_c01091{letter-spacing:97.200000px;}
.sc__c01091{text-shadow:none;}
.sc1_c01091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c01091{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01091{-webkit-text-stroke:0px transparent;}
.sc1_c01091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c01091{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c01091{word-spacing:-184.056183px;}
.ws1_c01091{word-spacing:0.000000px;}
._4_c01091{margin-left:-10.281600px;}
._6_c01091{margin-left:-8.715600px;}
._7_c01091{margin-left:-7.138800px;}
._8_c01091{margin-left:-4.989600px;}
._5_c01091{margin-left:-2.408400px;}
._2_c01091{margin-left:-1.198800px;}
._3_c01091{width:1.134000px;}
._0_c01091{width:2.635290px;}
._1_c01091{width:4.141170px;}
.fc3_c01091{color:rgb(255,0,0);}
.fc2_c01091{color:rgb(127,127,127);}
.fc1_c01091{color:rgb(89,89,89);}
.fc0_c01091{color:rgb(0,0,0);}
.fs1_c01091{font-size:108.000000px;}
.fs0_c01091{font-size:188.235000px;}
.y0_c01091{bottom:0.000000px;}
.yd_c01091{bottom:137.178000px;}
.yc_c01091{bottom:165.609000px;}
.yb_c01091{bottom:254.169000px;}
.ya_c01091{bottom:282.600000px;}
.y9_c01091{bottom:312.489000px;}
.y8_c01091{bottom:340.920000px;}
.y7_c01091{bottom:429.480000px;}
.y6_c01091{bottom:459.720000px;}
.y5_c01091{bottom:488.151000px;}
.y4_c01091{bottom:518.040000px;}
.y3_c01091{bottom:609.489000px;}
.y2_c01091{bottom:641.160000px;}
.y1_c01091{bottom:700.758750px;}
.h2_c01091{height:77.544000px;}
.h1_c01091{height:134.282878px;}
.h0_c01091{height:810.000000px;}
.w0_c01091{width:1440.000000px;}
.x0_c01091{left:0.000000px;}
.x2_c01091{left:60.796950px;}
.x3_c01091{left:94.546950px;}
.x1_c01091{left:602.303100px;}
@media print{
.v0_c01091{vertical-align:0.000000pt;}
.ls2_c01091{letter-spacing:-3.714504pt;}
.ls8_c01091{letter-spacing:-1.094400pt;}
.ls4_c01091{letter-spacing:-0.249600pt;}
.ls7_c01091{letter-spacing:-0.163200pt;}
.ls3_c01091{letter-spacing:0.000000pt;}
.ls6_c01091{letter-spacing:0.019200pt;}
.ls5_c01091{letter-spacing:0.192000pt;}
.ls1_c01091{letter-spacing:0.288000pt;}
.ls0_c01091{letter-spacing:86.400000pt;}
.ws0_c01091{word-spacing:-163.605496pt;}
.ws1_c01091{word-spacing:0.000000pt;}
._4_c01091{margin-left:-9.139200pt;}
._6_c01091{margin-left:-7.747200pt;}
._7_c01091{margin-left:-6.345600pt;}
._8_c01091{margin-left:-4.435200pt;}
._5_c01091{margin-left:-2.140800pt;}
._2_c01091{margin-left:-1.065600pt;}
._3_c01091{width:1.008000pt;}
._0_c01091{width:2.342480pt;}
._1_c01091{width:3.681040pt;}
.fs1_c01091{font-size:96.000000pt;}
.fs0_c01091{font-size:167.320000pt;}
.y0_c01091{bottom:0.000000pt;}
.yd_c01091{bottom:121.936000pt;}
.yc_c01091{bottom:147.208000pt;}
.yb_c01091{bottom:225.928000pt;}
.ya_c01091{bottom:251.200000pt;}
.y9_c01091{bottom:277.768000pt;}
.y8_c01091{bottom:303.040000pt;}
.y7_c01091{bottom:381.760000pt;}
.y6_c01091{bottom:408.640000pt;}
.y5_c01091{bottom:433.912000pt;}
.y4_c01091{bottom:460.480000pt;}
.y3_c01091{bottom:541.768000pt;}
.y2_c01091{bottom:569.920000pt;}
.y1_c01091{bottom:622.896667pt;}
.h2_c01091{height:68.928000pt;}
.h1_c01091{height:119.362559pt;}
.h0_c01091{height:720.000000pt;}
.w0_c01091{width:1280.000000pt;}
.x0_c01091{left:0.000000pt;}
.x2_c01091{left:54.041733pt;}
.x3_c01091{left:84.041733pt;}
.x1_c01091{left:535.380533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d1bdb25d572d2aa4d049e4c.woff2')format("woff");}.ff1_c01092{font-family:ff1_c01092;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01092;src:url('chunks/assets/font_81d35b44c71c07939c501f7b.woff2')format("woff");}.ff2_c01092{font-family:ff2_c01092;line-height:0.862000;font-style:normal;font-weight:normal;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_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff3_c01092{font-family:ff3_c01092;line-height:0.625000;font-style:normal;font-weight:normal;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_41c28666652ca739a3c56205.woff2')format("woff");}.ff4_c01092{font-family:ff4_c01092;line-height:0.896000;font-style:normal;font-weight:normal;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_cdfce9dae55dee236580dfbe.woff2')format("woff");}.ff5_c01092{font-family:ff5_c01092;line-height:0.896000;font-style:normal;font-weight:normal;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_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff6_c01092{font-family:ff6_c01092;line-height:0.625000;font-style:normal;font-weight: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_c01092;src:url('chunks/assets/font_fcb658119a4e1624cb2de354.woff2')format("woff");}.ff7_c01092{font-family:ff7_c01092;line-height:0.896000;font-style: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);}
.v2_c01092{vertical-align:-30.240000px;}
.v0_c01092{vertical-align:0.000000px;}
.v1_c01092{vertical-align:30.204000px;}
.ls6_c01092{letter-spacing:-3.600000px;}
.ls8_c01092{letter-spacing:-2.980800px;}
.ls5_c01092{letter-spacing:-2.323200px;}
.lsd_c01092{letter-spacing:-1.598400px;}
.lsb_c01092{letter-spacing:-1.404000px;}
.lsf_c01092{letter-spacing:-0.336000px;}
.ls10_c01092{letter-spacing:-0.067200px;}
.ls9_c01092{letter-spacing:0.000000px;}
.ls7_c01092{letter-spacing:0.036000px;}
.lsa_c01092{letter-spacing:0.064800px;}
.lse_c01092{letter-spacing:0.156000px;}
.ls11_c01092{letter-spacing:0.184800px;}
.ls12_c01092{letter-spacing:0.216000px;}
.ls2_c01092{letter-spacing:0.280800px;}
.lsc_c01092{letter-spacing:0.302400px;}
.ls3_c01092{letter-spacing:25.034400px;}
.ls0_c01092{letter-spacing:27.000000px;}
.ls4_c01092{letter-spacing:49.224000px;}
.ls1_c01092{letter-spacing:70.200000px;}
.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;}
}
.ws1_c01092{word-spacing:-22.809600px;}
.ws0_c01092{word-spacing:-0.072000px;}
.ws2_c01092{word-spacing:0.000000px;}
._7_c01092{margin-left:-4873.953600px;}
._6_c01092{margin-left:-6.134400px;}
._5_c01092{margin-left:-3.878400px;}
._4_c01092{margin-left:-2.836800px;}
._2_c01092{margin-left:-1.728000px;}
._1_c01092{width:1.536000px;}
._0_c01092{width:2.880000px;}
._3_c01092{width:4.080000px;}
.fc1_c01092{color:rgb(255,0,0);}
.fc0_c01092{color:rgb(0,0,0);}
.fs3_c01092{font-size:72.000000px;}
.fs2_c01092{font-size:108.000000px;}
.fs1_c01092{font-size:120.000000px;}
.fs4_c01092{font-size:168.000000px;}
.fs0_c01092{font-size:192.000000px;}
.y0_c01092{bottom:0.000000px;}
.yd_c01092{bottom:167.760000px;}
.yc_c01092{bottom:307.800000px;}
.y7_c01092{bottom:340.551000px;}
.y6_c01092{bottom:369.360000px;}
.yb_c01092{bottom:369.372000px;}
.y5_c01092{bottom:412.569000px;}
.ya_c01092{bottom:414.354000px;}
.y4_c01092{bottom:442.809000px;}
.y9_c01092{bottom:474.120000px;}
.y3_c01092{bottom:486.360000px;}
.y2_c01092{bottom:537.120000px;}
.y8_c01092{bottom:542.160000px;}
.y1_c01092{bottom:642.960000px;}
.h3_c01092{height:77.544000px;}
.h4_c01092{height:81.900000px;}
.h5_c01092{height:81.972000px;}
.h2_c01092{height:82.080000px;}
.h6_c01092{height:120.624000px;}
.h1_c01092{height:136.968750px;}
.h0_c01092{height:810.000000px;}
.w0_c01092{width:1440.000000px;}
.x0_c01092{left:0.000000px;}
.x1_c01092{left:109.800000px;}
.x2_c01092{left:136.987500px;}
.x3_c01092{left:739.800000px;}
.x4_c01092{left:766.805850px;}
.x5_c01092{left:1254.562800px;}
@media print{
.v2_c01092{vertical-align:-26.880000pt;}
.v0_c01092{vertical-align:0.000000pt;}
.v1_c01092{vertical-align:26.848000pt;}
.ls6_c01092{letter-spacing:-3.200000pt;}
.ls8_c01092{letter-spacing:-2.649600pt;}
.ls5_c01092{letter-spacing:-2.065067pt;}
.lsd_c01092{letter-spacing:-1.420800pt;}
.lsb_c01092{letter-spacing:-1.248000pt;}
.lsf_c01092{letter-spacing:-0.298667pt;}
.ls10_c01092{letter-spacing:-0.059733pt;}
.ls9_c01092{letter-spacing:0.000000pt;}
.ls7_c01092{letter-spacing:0.032000pt;}
.lsa_c01092{letter-spacing:0.057600pt;}
.lse_c01092{letter-spacing:0.138667pt;}
.ls11_c01092{letter-spacing:0.164267pt;}
.ls12_c01092{letter-spacing:0.192000pt;}
.ls2_c01092{letter-spacing:0.249600pt;}
.lsc_c01092{letter-spacing:0.268800pt;}
.ls3_c01092{letter-spacing:22.252800pt;}
.ls0_c01092{letter-spacing:24.000000pt;}
.ls4_c01092{letter-spacing:43.754667pt;}
.ls1_c01092{letter-spacing:62.400000pt;}
.ws1_c01092{word-spacing:-20.275200pt;}
.ws0_c01092{word-spacing:-0.064000pt;}
.ws2_c01092{word-spacing:0.000000pt;}
._7_c01092{margin-left:-4332.403200pt;}
._6_c01092{margin-left:-5.452800pt;}
._5_c01092{margin-left:-3.447467pt;}
._4_c01092{margin-left:-2.521600pt;}
._2_c01092{margin-left:-1.536000pt;}
._1_c01092{width:1.365333pt;}
._0_c01092{width:2.560000pt;}
._3_c01092{width:3.626667pt;}
.fs3_c01092{font-size:64.000000pt;}
.fs2_c01092{font-size:96.000000pt;}
.fs1_c01092{font-size:106.666667pt;}
.fs4_c01092{font-size:149.333333pt;}
.fs0_c01092{font-size:170.666667pt;}
.y0_c01092{bottom:0.000000pt;}
.yd_c01092{bottom:149.120000pt;}
.yc_c01092{bottom:273.600000pt;}
.y7_c01092{bottom:302.712000pt;}
.y6_c01092{bottom:328.320000pt;}
.yb_c01092{bottom:328.330667pt;}
.y5_c01092{bottom:366.728000pt;}
.ya_c01092{bottom:368.314667pt;}
.y4_c01092{bottom:393.608000pt;}
.y9_c01092{bottom:421.440000pt;}
.y3_c01092{bottom:432.320000pt;}
.y2_c01092{bottom:477.440000pt;}
.y8_c01092{bottom:481.920000pt;}
.y1_c01092{bottom:571.520000pt;}
.h3_c01092{height:68.928000pt;}
.h4_c01092{height:72.800000pt;}
.h5_c01092{height:72.864000pt;}
.h2_c01092{height:72.960000pt;}
.h6_c01092{height:107.221333pt;}
.h1_c01092{height:121.750000pt;}
.h0_c01092{height:720.000000pt;}
.w0_c01092{width:1280.000000pt;}
.x0_c01092{left:0.000000pt;}
.x1_c01092{left:97.600000pt;}
.x2_c01092{left:121.766667pt;}
.x3_c01092{left:657.600000pt;}
.x4_c01092{left:681.605200pt;}
.x5_c01092{left:1115.166933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_281d13d812e98cea50725f4a.woff2')format("woff");}.ff1_c01093{font-family:ff1_c01093;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01093;src:url('chunks/assets/font_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff2_c01093{font-family:ff2_c01093;line-height:0.625000;font-style:normal;font-weight:normal;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_fcb658119a4e1624cb2de354.woff2')format("woff");}.ff3_c01093{font-family:ff3_c01093;line-height:0.896000;font-style:normal;font-weight:normal;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_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff4_c01093{font-family:ff4_c01093;line-height:0.625000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01093;src:url('chunks/assets/font_0e74d7c8657f511256aa11d9.woff2')format("woff");}.ff5_c01093{font-family:ff5_c01093;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01093;src:url('chunks/assets/font_81d35b44c71c07939c501f7b.woff2')format("woff");}.ff6_c01093{font-family:ff6_c01093;line-height:0.862000;font-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_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);}
.m0_c01093{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_c01093{vertical-align:0.000000px;}
.ls7_c01093{letter-spacing:-2.073600px;}
.ls5_c01093{letter-spacing:-1.898400px;}
.ls8_c01093{letter-spacing:-0.084000px;}
.lsa_c01093{letter-spacing:-0.060000px;}
.ls6_c01093{letter-spacing:0.000000px;}
.ls1_c01093{letter-spacing:0.268800px;}
.ls9_c01093{letter-spacing:0.324000px;}
.ls4_c01093{letter-spacing:0.432941px;}
.ls2_c01093{letter-spacing:49.224000px;}
.ls3_c01093{letter-spacing:57.600000px;}
.ls0_c01093{letter-spacing:87.528000px;}
.sc__c01093{text-shadow:none;}
.sc1_c01093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c01093{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01093{-webkit-text-stroke:0px transparent;}
.sc1_c01093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c01093{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c01093{word-spacing:0.000000px;}
._1_c01093{margin-left:-4.894110px;}
._2_c01093{margin-left:-2.734590px;}
._0_c01093{margin-left:-1.129410px;}
._3_c01093{width:1.848000px;}
._4_c01093{width:3.024000px;}
.fc0_c01093{color:rgb(0,0,0);}
.fs3_c01093{font-size:120.000000px;}
.fs2_c01093{font-size:144.000000px;}
.fs1_c01093{font-size:168.000000px;}
.fs0_c01093{font-size:188.235000px;}
.y0_c01093{bottom:0.000000px;}
.ya_c01093{bottom:129.960000px;}
.y9_c01093{bottom:158.400000px;}
.y8_c01093{bottom:291.960000px;}
.y7_c01093{bottom:334.080000px;}
.y6_c01093{bottom:375.840000px;}
.y5_c01093{bottom:417.960000px;}
.y4_c01093{bottom:460.080000px;}
.y3_c01093{bottom:503.640000px;}
.y2_c01093{bottom:559.080000px;}
.y1_c01093{bottom:686.358750px;}
.h4_c01093{height:82.080000px;}
.h3_c01093{height:103.392000px;}
.h2_c01093{height:120.624000px;}
.h1_c01093{height:134.282878px;}
.h0_c01093{height:810.000000px;}
.w0_c01093{width:1440.000000px;}
.x0_c01093{left:0.000000px;}
.x1_c01093{left:109.800000px;}
.x2_c01093{left:163.800000px;}
@media print{
.v0_c01093{vertical-align:0.000000pt;}
.ls7_c01093{letter-spacing:-1.843200pt;}
.ls5_c01093{letter-spacing:-1.687467pt;}
.ls8_c01093{letter-spacing:-0.074667pt;}
.lsa_c01093{letter-spacing:-0.053333pt;}
.ls6_c01093{letter-spacing:0.000000pt;}
.ls1_c01093{letter-spacing:0.238933pt;}
.ls9_c01093{letter-spacing:0.288000pt;}
.ls4_c01093{letter-spacing:0.384836pt;}
.ls2_c01093{letter-spacing:43.754667pt;}
.ls3_c01093{letter-spacing:51.200000pt;}
.ls0_c01093{letter-spacing:77.802667pt;}
.ws0_c01093{word-spacing:0.000000pt;}
._1_c01093{margin-left:-4.350320pt;}
._2_c01093{margin-left:-2.430747pt;}
._0_c01093{margin-left:-1.003920pt;}
._3_c01093{width:1.642667pt;}
._4_c01093{width:2.688000pt;}
.fs3_c01093{font-size:106.666667pt;}
.fs2_c01093{font-size:128.000000pt;}
.fs1_c01093{font-size:149.333333pt;}
.fs0_c01093{font-size:167.320000pt;}
.y0_c01093{bottom:0.000000pt;}
.ya_c01093{bottom:115.520000pt;}
.y9_c01093{bottom:140.800000pt;}
.y8_c01093{bottom:259.520000pt;}
.y7_c01093{bottom:296.960000pt;}
.y6_c01093{bottom:334.080000pt;}
.y5_c01093{bottom:371.520000pt;}
.y4_c01093{bottom:408.960000pt;}
.y3_c01093{bottom:447.680000pt;}
.y2_c01093{bottom:496.960000pt;}
.y1_c01093{bottom:610.096667pt;}
.h4_c01093{height:72.960000pt;}
.h3_c01093{height:91.904000pt;}
.h2_c01093{height:107.221333pt;}
.h1_c01093{height:119.362559pt;}
.h0_c01093{height:720.000000pt;}
.w0_c01093{width:1280.000000pt;}
.x0_c01093{left:0.000000pt;}
.x1_c01093{left:97.600000pt;}
.x2_c01093{left:145.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_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_aeae9b4e5b31cc6d10622d73.woff2')format("woff");}.ff1_c01094{font-family:ff1_c01094;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01094;src:url('chunks/assets/font_0dfeb7481d10f92c2bd89edb.woff2')format("woff");}.ff2_c01094{font-family:ff2_c01094;line-height:0.625000;font-style:normal;font-weight:normal;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_9c206ee32c26dee2b6e162b3.woff2')format("woff");}.ff3_c01094{font-family:ff3_c01094;line-height:0.862000;font-style:normal;font-weight:normal;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_f94a2649d01ad497ee29160b.woff2')format("woff");}.ff4_c01094{font-family:ff4_c01094;line-height:0.625000;font-style:normal;font-weight:normal;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_7f7fd38d759c92fdaec0fd3c.woff2')format("woff");}.ff5_c01094{font-family:ff5_c01094;line-height:0.896000;font-style: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);}
.m1_c01094{transform:matrix(0.269699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269699,0.000000,0.000000,0.250000,0,0);}
.m2_c01094{transform:matrix(0.269700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269700,0.000000,0.000000,0.250000,0,0);}
.m3_c01094{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01094{vertical-align:0.000000px;}
.ls2_c01094{letter-spacing:-0.936000px;}
.ls3_c01094{letter-spacing:-0.302400px;}
.ls1_c01094{letter-spacing:0.000000px;}
.ls0_c01094{letter-spacing:0.244800px;}
.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;}
}
.ws2_c01094{word-spacing:-16.516800px;}
.ws1_c01094{word-spacing:-15.969600px;}
.ws0_c01094{word-spacing:-12.921460px;}
.ws3_c01094{word-spacing:0.000000px;}
._4_c01094{margin-left:-3.441600px;}
._1_c01094{margin-left:-2.160000px;}
._0_c01094{margin-left:-1.036800px;}
._2_c01094{width:1.080000px;}
._3_c01094{width:2.088000px;}
.fc2_c01094{color:rgb(255,255,255);}
.fc1_c01094{color:rgb(99,99,99);}
.fc0_c01094{color:rgb(0,0,0);}
.fs2_c01094{font-size:57.174600px;}
.fs1_c01094{font-size:66.894600px;}
.fs3_c01094{font-size:72.000000px;}
.fs0_c01094{font-size:216.000000px;}
.y0_c01094{bottom:0.000000px;}
.y8_c01094{bottom:1.714947px;}
.yd_c01094{bottom:2.000700px;}
.yb_c01094{bottom:4.859697px;}
.y7_c01094{bottom:19.153200px;}
.ya_c01094{bottom:22.297950px;}
.y2_c01094{bottom:35.101500px;}
.yf_c01094{bottom:128.160000px;}
.ye_c01094{bottom:150.840000px;}
.y9_c01094{bottom:265.113000px;}
.y6_c01094{bottom:323.002500px;}
.yc_c01094{bottom:388.360500px;}
.y5_c01094{bottom:565.686450px;}
.y4_c01094{bottom:584.983050px;}
.y3_c01094{bottom:604.136550px;}
.y1_c01094{bottom:674.280000px;}
.h7_c01094{height:15.580500px;}
.h4_c01094{height:32.761500px;}
.h6_c01094{height:36.877500px;}
.h5_c01094{height:39.107426px;}
.h3_c01094{height:41.809125px;}
.h8_c01094{height:51.696000px;}
.h1_c01094{height:154.089844px;}
.h2_c01094{height:619.714500px;}
.h0_c01094{height:810.000000px;}
.w3_c01094{width:72.196500px;}
.w2_c01094{width:107.046000px;}
.w4_c01094{width:131.095500px;}
.w1_c01094{width:1076.086500px;}
.w0_c01094{width:1440.000000px;}
.x0_c01094{left:0.000000px;}
.x7_c01094{left:12.979200px;}
.x5_c01094{left:16.525200px;}
.x8_c01094{left:17.913600px;}
.x4_c01094{left:20.997000px;}
.x9_c01094{left:28.707600px;}
.xa_c01094{left:277.278300px;}
.x2_c01094{left:363.913500px;}
.x1_c01094{left:431.981250px;}
.x3_c01094{left:763.048500px;}
.x6_c01094{left:764.281500px;}
@media print{
.v0_c01094{vertical-align:0.000000pt;}
.ls2_c01094{letter-spacing:-0.832000pt;}
.ls3_c01094{letter-spacing:-0.268800pt;}
.ls1_c01094{letter-spacing:0.000000pt;}
.ls0_c01094{letter-spacing:0.217600pt;}
.ws2_c01094{word-spacing:-14.681600pt;}
.ws1_c01094{word-spacing:-14.195200pt;}
.ws0_c01094{word-spacing:-11.485742pt;}
.ws3_c01094{word-spacing:0.000000pt;}
._4_c01094{margin-left:-3.059200pt;}
._1_c01094{margin-left:-1.920000pt;}
._0_c01094{margin-left:-0.921600pt;}
._2_c01094{width:0.960000pt;}
._3_c01094{width:1.856000pt;}
.fs2_c01094{font-size:50.821867pt;}
.fs1_c01094{font-size:59.461867pt;}
.fs3_c01094{font-size:64.000000pt;}
.fs0_c01094{font-size:192.000000pt;}
.y0_c01094{bottom:0.000000pt;}
.y8_c01094{bottom:1.524397pt;}
.yd_c01094{bottom:1.778400pt;}
.yb_c01094{bottom:4.319731pt;}
.y7_c01094{bottom:17.025067pt;}
.ya_c01094{bottom:19.820400pt;}
.y2_c01094{bottom:31.201333pt;}
.yf_c01094{bottom:113.920000pt;}
.ye_c01094{bottom:134.080000pt;}
.y9_c01094{bottom:235.656000pt;}
.y6_c01094{bottom:287.113333pt;}
.yc_c01094{bottom:345.209333pt;}
.y5_c01094{bottom:502.832400pt;}
.y4_c01094{bottom:519.984933pt;}
.y3_c01094{bottom:537.010267pt;}
.y1_c01094{bottom:599.360000pt;}
.h7_c01094{height:13.849333pt;}
.h4_c01094{height:29.121333pt;}
.h6_c01094{height:32.780000pt;}
.h5_c01094{height:34.762157pt;}
.h3_c01094{height:37.163667pt;}
.h8_c01094{height:45.952000pt;}
.h1_c01094{height:136.968750pt;}
.h2_c01094{height:550.857333pt;}
.h0_c01094{height:720.000000pt;}
.w3_c01094{width:64.174667pt;}
.w2_c01094{width:95.152000pt;}
.w4_c01094{width:116.529333pt;}
.w1_c01094{width:956.521333pt;}
.w0_c01094{width:1280.000000pt;}
.x0_c01094{left:0.000000pt;}
.x7_c01094{left:11.537067pt;}
.x5_c01094{left:14.689067pt;}
.x8_c01094{left:15.923200pt;}
.x4_c01094{left:18.664000pt;}
.x9_c01094{left:25.517867pt;}
.xa_c01094{left:246.469600pt;}
.x2_c01094{left:323.478667pt;}
.x1_c01094{left:383.983333pt;}
.x3_c01094{left:678.265333pt;}
.x6_c01094{left:679.361333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_86ad4ce3f8d30e9454ab1907.woff2')format("woff");}.ff1_c01095{font-family:ff1_c01095;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01095;src:url('chunks/assets/font_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff2_c01095{font-family:ff2_c01095;line-height:0.625000;font-style:normal;font-weight:normal;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_6069867948a7a80083dc58de.woff2')format("woff");}.ff3_c01095{font-family:ff3_c01095;line-height:0.896000;font-style:normal;font-weight:normal;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_25bb36342033b89d68c26b3c.woff2')format("woff");}.ff4_c01095{font-family:ff4_c01095;line-height:0.896000;font-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_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);}
.m0_c01095{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_c01095{vertical-align:0.000000px;}
.ls3_c01095{letter-spacing:0.000000px;}
.ls2_c01095{letter-spacing:0.037647px;}
.ls1_c01095{letter-spacing:0.264000px;}
.ls0_c01095{letter-spacing:93.000000px;}
.sc__c01095{text-shadow:none;}
.sc1_c01095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c01095{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01095{-webkit-text-stroke:0px transparent;}
.sc1_c01095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c01095{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c01095{word-spacing:0.000000px;}
._2_c01095{margin-left:-2.784000px;}
._1_c01095{margin-left:-1.333410px;}
._0_c01095{width:1.129410px;}
.fc1_c01095{color:rgb(89,89,89);}
.fc0_c01095{color:rgb(0,0,0);}
.fs2_c01095{font-size:108.000000px;}
.fs1_c01095{font-size:120.000000px;}
.fs0_c01095{font-size:188.235000px;}
.y0_c01095{bottom:0.000000px;}
.y8_c01095{bottom:246.600000px;}
.y7_c01095{bottom:293.400000px;}
.y6_c01095{bottom:341.280000px;}
.y5_c01095{bottom:387.720000px;}
.y4_c01095{bottom:420.840000px;}
.y3_c01095{bottom:468.720000px;}
.y2_c01095{bottom:515.160000px;}
.y1_c01095{bottom:673.398750px;}
.h2_c01095{height:86.160000px;}
.h1_c01095{height:134.282878px;}
.h0_c01095{height:810.000000px;}
.w0_c01095{width:1440.000000px;}
.x0_c01095{left:0.000000px;}
.x2_c01095{left:166.719000px;}
.x3_c01095{left:200.469000px;}
.x1_c01095{left:561.898350px;}
@media print{
.v0_c01095{vertical-align:0.000000pt;}
.ls3_c01095{letter-spacing:0.000000pt;}
.ls2_c01095{letter-spacing:0.033464pt;}
.ls1_c01095{letter-spacing:0.234667pt;}
.ls0_c01095{letter-spacing:82.666667pt;}
.ws0_c01095{word-spacing:0.000000pt;}
._2_c01095{margin-left:-2.474667pt;}
._1_c01095{margin-left:-1.185253pt;}
._0_c01095{width:1.003920pt;}
.fs2_c01095{font-size:96.000000pt;}
.fs1_c01095{font-size:106.666667pt;}
.fs0_c01095{font-size:167.320000pt;}
.y0_c01095{bottom:0.000000pt;}
.y8_c01095{bottom:219.200000pt;}
.y7_c01095{bottom:260.800000pt;}
.y6_c01095{bottom:303.360000pt;}
.y5_c01095{bottom:344.640000pt;}
.y4_c01095{bottom:374.080000pt;}
.y3_c01095{bottom:416.640000pt;}
.y2_c01095{bottom:457.920000pt;}
.y1_c01095{bottom:598.576667pt;}
.h2_c01095{height:76.586667pt;}
.h1_c01095{height:119.362559pt;}
.h0_c01095{height:720.000000pt;}
.w0_c01095{width:1280.000000pt;}
.x0_c01095{left:0.000000pt;}
.x2_c01095{left:148.194667pt;}
.x3_c01095{left:178.194667pt;}
.x1_c01095{left:499.465200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d976f9909bb3a062922da0d4.woff2')format("woff");}.ff1_c01096{font-family:ff1_c01096;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01096;src:url('chunks/assets/font_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff2_c01096{font-family:ff2_c01096;line-height:0.625000;font-style:normal;font-weight:normal;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_6069867948a7a80083dc58de.woff2')format("woff");}.ff3_c01096{font-family:ff3_c01096;line-height:0.896000;font-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_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);}
.m0_c01096{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_c01096{vertical-align:0.000000px;}
.ls2_c01096{letter-spacing:0.000000px;}
.ls1_c01096{letter-spacing:0.037647px;}
.ls0_c01096{letter-spacing:93.000000px;}
.sc__c01096{text-shadow:none;}
.sc1_c01096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c01096{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01096{-webkit-text-stroke:0px transparent;}
.sc1_c01096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c01096{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c01096{word-spacing:0.000000px;}
._1_c01096{margin-left:-3.804000px;}
._3_c01096{margin-left:-2.029410px;}
._2_c01096{margin-left:-1.020000px;}
._0_c01096{width:1.129410px;}
.fc1_c01096{color:rgb(89,89,89);}
.fc0_c01096{color:rgb(0,0,0);}
.fs1_c01096{font-size:120.000000px;}
.fs0_c01096{font-size:188.235000px;}
.y0_c01096{bottom:0.000000px;}
.y7_c01096{bottom:275.400000px;}
.y6_c01096{bottom:323.280000px;}
.y5_c01096{bottom:369.720000px;}
.y4_c01096{bottom:417.960000px;}
.y3_c01096{bottom:465.840000px;}
.y2_c01096{bottom:512.280000px;}
.y1_c01096{bottom:673.398750px;}
.h2_c01096{height:86.160000px;}
.h1_c01096{height:134.282878px;}
.h0_c01096{height:810.000000px;}
.w0_c01096{width:1440.000000px;}
.x0_c01096{left:0.000000px;}
.x2_c01096{left:166.719000px;}
.x1_c01096{left:561.898350px;}
@media print{
.v0_c01096{vertical-align:0.000000pt;}
.ls2_c01096{letter-spacing:0.000000pt;}
.ls1_c01096{letter-spacing:0.033464pt;}
.ls0_c01096{letter-spacing:82.666667pt;}
.ws0_c01096{word-spacing:0.000000pt;}
._1_c01096{margin-left:-3.381333pt;}
._3_c01096{margin-left:-1.803920pt;}
._2_c01096{margin-left:-0.906667pt;}
._0_c01096{width:1.003920pt;}
.fs1_c01096{font-size:106.666667pt;}
.fs0_c01096{font-size:167.320000pt;}
.y0_c01096{bottom:0.000000pt;}
.y7_c01096{bottom:244.800000pt;}
.y6_c01096{bottom:287.360000pt;}
.y5_c01096{bottom:328.640000pt;}
.y4_c01096{bottom:371.520000pt;}
.y3_c01096{bottom:414.080000pt;}
.y2_c01096{bottom:455.360000pt;}
.y1_c01096{bottom:598.576667pt;}
.h2_c01096{height:76.586667pt;}
.h1_c01096{height:119.362559pt;}
.h0_c01096{height:720.000000pt;}
.w0_c01096{width:1280.000000pt;}
.x0_c01096{left:0.000000pt;}
.x2_c01096{left:148.194667pt;}
.x1_c01096{left:499.465200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f63cd5f5ba2875c86196ea1d.woff2')format("woff");}.ff1_c01097{font-family:ff1_c01097;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01097;src:url('chunks/assets/font_41c28666652ca739a3c56205.woff2')format("woff");}.ff2_c01097{font-family:ff2_c01097;line-height:0.896000;font-style:normal;font-weight:normal;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_eb1a8d302bddffad757d4d42.woff2')format("woff");}.ff3_c01097{font-family:ff3_c01097;line-height:0.625000;font-style:normal;font-weight:normal;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_ca250ece2c3dab0dd2000cf5.woff2')format("woff");}.ff4_c01097{font-family:ff4_c01097;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01097{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01097{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01097{vertical-align:0.000000px;}
.ls6_c01097{letter-spacing:-0.334800px;}
.ls8_c01097{letter-spacing:-0.226800px;}
.lsc_c01097{letter-spacing:-0.151800px;}
.lsa_c01097{letter-spacing:-0.112200px;}
.ls4_c01097{letter-spacing:-0.086400px;}
.ls3_c01097{letter-spacing:-0.075600px;}
.ls9_c01097{letter-spacing:-0.010800px;}
.ls5_c01097{letter-spacing:0.000000px;}
.lsb_c01097{letter-spacing:0.105600px;}
.ls2_c01097{letter-spacing:0.268800px;}
.ls1_c01097{letter-spacing:0.290400px;}
.ls7_c01097{letter-spacing:0.453600px;}
.ls0_c01097{letter-spacing:111.870000px;}
.sc__c01097{text-shadow:none;}
.sc0_c01097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01097{-webkit-text-stroke:0px transparent;}
.sc0_c01097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01097{word-spacing:-24.861600px;}
.ws1_c01097{word-spacing:-24.181200px;}
.ws3_c01097{word-spacing:-14.764200px;}
.ws4_c01097{word-spacing:-0.660000px;}
.ws2_c01097{word-spacing:-0.013200px;}
.ws5_c01097{word-spacing:0.000000px;}
._3_c01097{margin-left:-9.790800px;}
._4_c01097{margin-left:-7.344000px;}
._1_c01097{margin-left:-2.496000px;}
._0_c01097{margin-left:-1.152000px;}
._2_c01097{width:1.296000px;}
.fc2_c01097{color:rgb(5,99,193);}
.fc1_c01097{color:rgb(68,84,106);}
.fc0_c01097{color:rgb(0,0,0);}
.fs2_c01097{font-size:66.000000px;}
.fs1_c01097{font-size:108.000000px;}
.fs0_c01097{font-size:192.000000px;}
.y0_c01097{bottom:0.000000px;}
.yb_c01097{bottom:123.120000px;}
.ya_c01097{bottom:152.994000px;}
.y9_c01097{bottom:169.560000px;}
.y8_c01097{bottom:244.440000px;}
.y7_c01097{bottom:285.120000px;}
.y6_c01097{bottom:310.302000px;}
.y5_c01097{bottom:377.991000px;}
.y4_c01097{bottom:403.560000px;}
.y3_c01097{bottom:429.129000px;}
.y2_c01097{bottom:454.320000px;}
.y1_c01097{bottom:605.160000px;}
.h3_c01097{height:47.388000px;}
.h2_c01097{height:77.544000px;}
.h1_c01097{height:136.968750px;}
.h0_c01097{height:810.000000px;}
.w0_c01097{width:1440.000000px;}
.x0_c01097{left:0.000000px;}
.x9_c01097{left:169.881150px;}
.xa_c01097{left:203.607150px;}
.x4_c01097{left:540.762150px;}
.x3_c01097{left:561.849150px;}
.x7_c01097{left:570.306150px;}
.x6_c01097{left:582.018150px;}
.x5_c01097{left:612.555150px;}
.x8_c01097{left:619.693650px;}
.x2_c01097{left:635.721150px;}
.x1_c01097{left:641.922600px;}
@media print{
.v0_c01097{vertical-align:0.000000pt;}
.ls6_c01097{letter-spacing:-0.297600pt;}
.ls8_c01097{letter-spacing:-0.201600pt;}
.lsc_c01097{letter-spacing:-0.134933pt;}
.lsa_c01097{letter-spacing:-0.099733pt;}
.ls4_c01097{letter-spacing:-0.076800pt;}
.ls3_c01097{letter-spacing:-0.067200pt;}
.ls9_c01097{letter-spacing:-0.009600pt;}
.ls5_c01097{letter-spacing:0.000000pt;}
.lsb_c01097{letter-spacing:0.093867pt;}
.ls2_c01097{letter-spacing:0.238933pt;}
.ls1_c01097{letter-spacing:0.258133pt;}
.ls7_c01097{letter-spacing:0.403200pt;}
.ls0_c01097{letter-spacing:99.440000pt;}
.ws0_c01097{word-spacing:-22.099200pt;}
.ws1_c01097{word-spacing:-21.494400pt;}
.ws3_c01097{word-spacing:-13.123733pt;}
.ws4_c01097{word-spacing:-0.586667pt;}
.ws2_c01097{word-spacing:-0.011733pt;}
.ws5_c01097{word-spacing:0.000000pt;}
._3_c01097{margin-left:-8.702933pt;}
._4_c01097{margin-left:-6.528000pt;}
._1_c01097{margin-left:-2.218667pt;}
._0_c01097{margin-left:-1.024000pt;}
._2_c01097{width:1.152000pt;}
.fs2_c01097{font-size:58.666667pt;}
.fs1_c01097{font-size:96.000000pt;}
.fs0_c01097{font-size:170.666667pt;}
.y0_c01097{bottom:0.000000pt;}
.yb_c01097{bottom:109.440000pt;}
.ya_c01097{bottom:135.994667pt;}
.y9_c01097{bottom:150.720000pt;}
.y8_c01097{bottom:217.280000pt;}
.y7_c01097{bottom:253.440000pt;}
.y6_c01097{bottom:275.824000pt;}
.y5_c01097{bottom:335.992000pt;}
.y4_c01097{bottom:358.720000pt;}
.y3_c01097{bottom:381.448000pt;}
.y2_c01097{bottom:403.840000pt;}
.y1_c01097{bottom:537.920000pt;}
.h3_c01097{height:42.122667pt;}
.h2_c01097{height:68.928000pt;}
.h1_c01097{height:121.750000pt;}
.h0_c01097{height:720.000000pt;}
.w0_c01097{width:1280.000000pt;}
.x0_c01097{left:0.000000pt;}
.x9_c01097{left:151.005467pt;}
.xa_c01097{left:180.984133pt;}
.x4_c01097{left:480.677467pt;}
.x3_c01097{left:499.421467pt;}
.x7_c01097{left:506.938800pt;}
.x6_c01097{left:517.349467pt;}
.x5_c01097{left:544.493467pt;}
.x8_c01097{left:550.838800pt;}
.x2_c01097{left:565.085467pt;}
.x1_c01097{left:570.597867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16f21d65dae372009cd4444d.woff2')format("woff");}.ff1_c01098{font-family:ff1_c01098;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01098;src:url('chunks/assets/font_01b40601dffd6a1a467dad6d.woff2')format("woff");}.ff2_c01098{font-family:ff2_c01098;line-height:0.938965;font-style: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;}
.ls0_c01098{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01098{word-spacing:-0.768000px;}
.ws1_c01098{word-spacing:-0.576000px;}
.ws0_c01098{word-spacing:0.000000px;}
._0_c01098{margin-left:-2.419148px;}
.fc2_c01098{color:rgb(208,13,43);}
.fc1_c01098{color:rgb(0,0,0);}
.fc0_c01098{color:rgb(30,50,250);}
.fs2_c01098{font-size:90.000000px;}
.fs0_c01098{font-size:192.240000px;}
.fs1_c01098{font-size:192.384000px;}
.y0_c01098{bottom:0.000000px;}
.y9_c01098{bottom:57.528000px;}
.y8_c01098{bottom:129.528000px;}
.y7_c01098{bottom:201.528000px;}
.y6_c01098{bottom:273.528000px;}
.y5_c01098{bottom:345.528000px;}
.y4_c01098{bottom:417.528000px;}
.y3_c01098{bottom:520.011000px;}
.y2_c01098{bottom:607.056000px;}
.y1_c01098{bottom:694.050000px;}
.h3_c01098{height:65.522461px;}
.h1_c01098{height:139.955977px;}
.h4_c01098{height:140.049844px;}
.h2_c01098{height:140.060812px;}
.h0_c01098{height:810.000000px;}
.w0_c01098{width:1440.000000px;}
.x0_c01098{left:0.000000px;}
.x1_c01098{left:45.000000px;}
@media print{
.v0_c01098{vertical-align:0.000000pt;}
.ls0_c01098{letter-spacing:0.000000pt;}
.ws2_c01098{word-spacing:-0.682667pt;}
.ws1_c01098{word-spacing:-0.512000pt;}
.ws0_c01098{word-spacing:0.000000pt;}
._0_c01098{margin-left:-2.150354pt;}
.fs2_c01098{font-size:80.000000pt;}
.fs0_c01098{font-size:170.880000pt;}
.fs1_c01098{font-size:171.008000pt;}
.y0_c01098{bottom:0.000000pt;}
.y9_c01098{bottom:51.136000pt;}
.y8_c01098{bottom:115.136000pt;}
.y7_c01098{bottom:179.136000pt;}
.y6_c01098{bottom:243.136000pt;}
.y5_c01098{bottom:307.136000pt;}
.y4_c01098{bottom:371.136000pt;}
.y3_c01098{bottom:462.232000pt;}
.y2_c01098{bottom:539.605333pt;}
.y1_c01098{bottom:616.933333pt;}
.h3_c01098{height:58.242188pt;}
.h1_c01098{height:124.405313pt;}
.h4_c01098{height:124.488750pt;}
.h2_c01098{height:124.498500pt;}
.h0_c01098{height:720.000000pt;}
.w0_c01098{width:1280.000000pt;}
.x0_c01098{left:0.000000pt;}
.x1_c01098{left:40.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_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_65239b90a2b880a53c07819b.woff2')format("woff");}.ff1_c01099{font-family:ff1_c01099;line-height:1.042000;font-style:normal;font-weight:normal;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_4a22962d6684792fa77da4e6.woff2')format("woff");}.ff2_c01099{font-family:ff2_c01099;line-height:0.938965;font-style: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;}
.ls2_c01099{letter-spacing:0.000000px;}
.ls0_c01099{letter-spacing:161.265600px;}
.ls1_c01099{letter-spacing:161.316000px;}
.sc__c01099{text-shadow:none;}
.sc0_c01099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01099{-webkit-text-stroke:0px transparent;}
.sc0_c01099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01099{word-spacing:0.000000px;}
._0_c01099{margin-left:-1.321200px;}
.fc0_c01099{color:rgb(0,0,0);}
.fs3_c01099{font-size:84.240000px;}
.fs2_c01099{font-size:156.240000px;}
.fs1_c01099{font-size:156.384000px;}
.fs0_c01099{font-size:264.240000px;}
.y0_c01099{bottom:0.000000px;}
.y7_c01099{bottom:44.424000px;}
.y6_c01099{bottom:374.295000px;}
.y5_c01099{bottom:431.355000px;}
.y4_c01099{bottom:488.445000px;}
.y3_c01099{bottom:545.685000px;}
.y2_c01099{bottom:602.790000px;}
.y1_c01099{bottom:713.190000px;}
.h4_c01099{height:69.750720px;}
.h3_c01099{height:129.366720px;}
.h2_c01099{height:129.485952px;}
.h1_c01099{height:218.790720px;}
.h0_c01099{height:810.000000px;}
.w0_c01099{width:1440.000000px;}
.x0_c01099{left:0.000000px;}
.x1_c01099{left:45.000000px;}
@media print{
.v0_c01099{vertical-align:0.000000pt;}
.ls2_c01099{letter-spacing:0.000000pt;}
.ls0_c01099{letter-spacing:143.347200pt;}
.ls1_c01099{letter-spacing:143.392000pt;}
.ws0_c01099{word-spacing:0.000000pt;}
._0_c01099{margin-left:-1.174400pt;}
.fs3_c01099{font-size:74.880000pt;}
.fs2_c01099{font-size:138.880000pt;}
.fs1_c01099{font-size:139.008000pt;}
.fs0_c01099{font-size:234.880000pt;}
.y0_c01099{bottom:0.000000pt;}
.y7_c01099{bottom:39.488000pt;}
.y6_c01099{bottom:332.706667pt;}
.y5_c01099{bottom:383.426667pt;}
.y4_c01099{bottom:434.173333pt;}
.y3_c01099{bottom:485.053333pt;}
.y2_c01099{bottom:535.813333pt;}
.y1_c01099{bottom:633.946667pt;}
.h4_c01099{height:62.000640pt;}
.h3_c01099{height:114.992640pt;}
.h2_c01099{height:115.098624pt;}
.h1_c01099{height:194.480640pt;}
.h0_c01099{height:720.000000pt;}
.w0_c01099{width:1280.000000pt;}
.x0_c01099{left:0.000000pt;}
.x1_c01099{left:40.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_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_a16546d8814fa6283b5797f0.woff2')format("woff");}.ff1_c01100{font-family:ff1_c01100;line-height:1.042000;font-style:normal;font-weight:normal;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_4a22962d6684792fa77da4e6.woff2')format("woff");}.ff2_c01100{font-family:ff2_c01100;line-height:0.938965;font-style:normal;font-weight:normal;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_62bf0772080a2aa8fb155a47.woff2')format("woff");}.ff3_c01100{font-family:ff3_c01100;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01100{vertical-align:0.000000px;}
.ls3_c01100{letter-spacing:0.000000px;}
.ls2_c01100{letter-spacing:34.200000px;}
.ls0_c01100{letter-spacing:161.265600px;}
.ls1_c01100{letter-spacing:161.316000px;}
.sc__c01100{text-shadow:none;}
.sc0_c01100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01100{-webkit-text-stroke:0px transparent;}
.sc0_c01100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01100{word-spacing:0.000000px;}
._0_c01100{margin-left:-1.849944px;}
._1_c01100{width:1.170925px;}
.fc0_c01100{color:rgb(0,0,0);}
.fs3_c01100{font-size:84.240000px;}
.fs2_c01100{font-size:156.240000px;}
.fs1_c01100{font-size:156.384000px;}
.fs0_c01100{font-size:264.240000px;}
.y0_c01100{bottom:0.000000px;}
.y9_c01100{bottom:44.424000px;}
.y8_c01100{bottom:290.010000px;}
.y7_c01100{bottom:347.115000px;}
.y6_c01100{bottom:404.175000px;}
.y5_c01100{bottom:446.295000px;}
.y4_c01100{bottom:503.565000px;}
.y3_c01100{bottom:545.685000px;}
.y2_c01100{bottom:602.790000px;}
.y1_c01100{bottom:713.190000px;}
.h4_c01100{height:69.750720px;}
.h3_c01100{height:129.366720px;}
.h2_c01100{height:129.485952px;}
.h1_c01100{height:218.790720px;}
.h0_c01100{height:810.000000px;}
.w0_c01100{width:1440.000000px;}
.x0_c01100{left:0.000000px;}
.x1_c01100{left:45.000000px;}
.x2_c01100{left:99.000000px;}
@media print{
.v0_c01100{vertical-align:0.000000pt;}
.ls3_c01100{letter-spacing:0.000000pt;}
.ls2_c01100{letter-spacing:30.400000pt;}
.ls0_c01100{letter-spacing:143.347200pt;}
.ls1_c01100{letter-spacing:143.392000pt;}
.ws0_c01100{word-spacing:0.000000pt;}
._0_c01100{margin-left:-1.644395pt;}
._1_c01100{width:1.040822pt;}
.fs3_c01100{font-size:74.880000pt;}
.fs2_c01100{font-size:138.880000pt;}
.fs1_c01100{font-size:139.008000pt;}
.fs0_c01100{font-size:234.880000pt;}
.y0_c01100{bottom:0.000000pt;}
.y9_c01100{bottom:39.488000pt;}
.y8_c01100{bottom:257.786667pt;}
.y7_c01100{bottom:308.546667pt;}
.y6_c01100{bottom:359.266667pt;}
.y5_c01100{bottom:396.706667pt;}
.y4_c01100{bottom:447.613333pt;}
.y3_c01100{bottom:485.053333pt;}
.y2_c01100{bottom:535.813333pt;}
.y1_c01100{bottom:633.946667pt;}
.h4_c01100{height:62.000640pt;}
.h3_c01100{height:114.992640pt;}
.h2_c01100{height:115.098624pt;}
.h1_c01100{height:194.480640pt;}
.h0_c01100{height:720.000000pt;}
.w0_c01100{width:1280.000000pt;}
.x0_c01100{left:0.000000pt;}
.x1_c01100{left:40.000000pt;}
.x2_c01100{left:88.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_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_1f977763fad7cce5a151591e.woff2')format("woff");}.ff1_c01101{font-family:ff1_c01101;line-height:1.042000;font-style:normal;font-weight:normal;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_e57041ce3037a8237d0bd998.woff2')format("woff");}.ff2_c01101{font-family:ff2_c01101;line-height:1.042000;font-style: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;}
.ls0_c01101{letter-spacing:0.000000px;}
.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:0.000000px;}
._2_c01101{margin-left:-2.642400px;}
._0_c01101{margin-left:-1.321200px;}
._3_c01101{width:1.236084px;}
._1_c01101{width:57.639360px;}
.fc0_c01101{color:rgb(0,0,0);}
.fs3_c01101{font-size:84.240000px;}
.fs2_c01101{font-size:156.240000px;}
.fs1_c01101{font-size:156.384000px;}
.fs0_c01101{font-size:264.240000px;}
.y0_c01101{bottom:0.000000px;}
.yb_c01101{bottom:44.424000px;}
.ya_c01101{bottom:250.770000px;}
.y9_c01101{bottom:292.890000px;}
.y8_c01101{bottom:335.055000px;}
.y7_c01101{bottom:392.115000px;}
.y6_c01101{bottom:434.235000px;}
.y5_c01101{bottom:476.385000px;}
.y4_c01101{bottom:518.505000px;}
.y3_c01101{bottom:560.625000px;}
.y2_c01101{bottom:602.790000px;}
.y1_c01101{bottom:713.190000px;}
.h4_c01101{height:69.750720px;}
.h3_c01101{height:129.366720px;}
.h2_c01101{height:129.485952px;}
.h1_c01101{height:218.790720px;}
.h0_c01101{height:810.000000px;}
.w0_c01101{width:1440.000000px;}
.x0_c01101{left:0.000000px;}
.x1_c01101{left:43.500000px;}
.x2_c01101{left:45.000000px;}
@media print{
.v0_c01101{vertical-align:0.000000pt;}
.ls0_c01101{letter-spacing:0.000000pt;}
.ws0_c01101{word-spacing:0.000000pt;}
._2_c01101{margin-left:-2.348800pt;}
._0_c01101{margin-left:-1.174400pt;}
._3_c01101{width:1.098741pt;}
._1_c01101{width:51.234987pt;}
.fs3_c01101{font-size:74.880000pt;}
.fs2_c01101{font-size:138.880000pt;}
.fs1_c01101{font-size:139.008000pt;}
.fs0_c01101{font-size:234.880000pt;}
.y0_c01101{bottom:0.000000pt;}
.yb_c01101{bottom:39.488000pt;}
.ya_c01101{bottom:222.906667pt;}
.y9_c01101{bottom:260.346667pt;}
.y8_c01101{bottom:297.826667pt;}
.y7_c01101{bottom:348.546667pt;}
.y6_c01101{bottom:385.986667pt;}
.y5_c01101{bottom:423.453333pt;}
.y4_c01101{bottom:460.893333pt;}
.y3_c01101{bottom:498.333333pt;}
.y2_c01101{bottom:535.813333pt;}
.y1_c01101{bottom:633.946667pt;}
.h4_c01101{height:62.000640pt;}
.h3_c01101{height:114.992640pt;}
.h2_c01101{height:115.098624pt;}
.h1_c01101{height:194.480640pt;}
.h0_c01101{height:720.000000pt;}
.w0_c01101{width:1280.000000pt;}
.x0_c01101{left:0.000000pt;}
.x1_c01101{left:38.666667pt;}
.x2_c01101{left:40.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_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_5d57029793f7209a7179d267.woff2')format("woff");}.ff1_c01102{font-family:ff1_c01102;line-height:1.042000;font-style:normal;font-weight:normal;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_62bf0772080a2aa8fb155a47.woff2')format("woff");}.ff2_c01102{font-family:ff2_c01102;line-height:1.042000;font-style: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;}
.ls1_c01102{letter-spacing:0.000000px;}
.ls0_c01102{letter-spacing:34.200000px;}
.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:-34.841520px;}
.ws1_c01102{word-spacing:0.000000px;}
._0_c01102{margin-left:-1.849944px;}
._2_c01102{width:1.018716px;}
._1_c01102{width:155.010240px;}
.fc0_c01102{color:rgb(0,0,0);}
.fs3_c01102{font-size:84.240000px;}
.fs2_c01102{font-size:156.240000px;}
.fs1_c01102{font-size:156.384000px;}
.fs0_c01102{font-size:264.240000px;}
.y0_c01102{bottom:0.000000px;}
.yb_c01102{bottom:44.424000px;}
.ya_c01102{bottom:205.770000px;}
.y9_c01102{bottom:262.830000px;}
.y8_c01102{bottom:319.935000px;}
.y7_c01102{bottom:362.055000px;}
.y6_c01102{bottom:404.175000px;}
.y5_c01102{bottom:461.445000px;}
.y4_c01102{bottom:518.505000px;}
.y3_c01102{bottom:560.625000px;}
.y2_c01102{bottom:602.790000px;}
.y1_c01102{bottom:713.190000px;}
.h4_c01102{height:69.750720px;}
.h3_c01102{height:129.366720px;}
.h2_c01102{height:129.485952px;}
.h1_c01102{height:218.790720px;}
.h0_c01102{height:810.000000px;}
.w0_c01102{width:1440.000000px;}
.x0_c01102{left:0.000000px;}
.x1_c01102{left:45.000000px;}
.x2_c01102{left:99.000000px;}
@media print{
.v0_c01102{vertical-align:0.000000pt;}
.ls1_c01102{letter-spacing:0.000000pt;}
.ls0_c01102{letter-spacing:30.400000pt;}
.ws0_c01102{word-spacing:-30.970240pt;}
.ws1_c01102{word-spacing:0.000000pt;}
._0_c01102{margin-left:-1.644395pt;}
._2_c01102{width:0.905526pt;}
._1_c01102{width:137.786880pt;}
.fs3_c01102{font-size:74.880000pt;}
.fs2_c01102{font-size:138.880000pt;}
.fs1_c01102{font-size:139.008000pt;}
.fs0_c01102{font-size:234.880000pt;}
.y0_c01102{bottom:0.000000pt;}
.yb_c01102{bottom:39.488000pt;}
.ya_c01102{bottom:182.906667pt;}
.y9_c01102{bottom:233.626667pt;}
.y8_c01102{bottom:284.386667pt;}
.y7_c01102{bottom:321.826667pt;}
.y6_c01102{bottom:359.266667pt;}
.y5_c01102{bottom:410.173333pt;}
.y4_c01102{bottom:460.893333pt;}
.y3_c01102{bottom:498.333333pt;}
.y2_c01102{bottom:535.813333pt;}
.y1_c01102{bottom:633.946667pt;}
.h4_c01102{height:62.000640pt;}
.h3_c01102{height:114.992640pt;}
.h2_c01102{height:115.098624pt;}
.h1_c01102{height:194.480640pt;}
.h0_c01102{height:720.000000pt;}
.w0_c01102{width:1280.000000pt;}
.x0_c01102{left:0.000000pt;}
.x1_c01102{left:40.000000pt;}
.x2_c01102{left:88.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_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_a0a1408b134efcd780e78b41.woff2')format("woff");}.ff1_c01103{font-family:ff1_c01103;line-height:1.042000;font-style:normal;font-weight:normal;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_62bf0772080a2aa8fb155a47.woff2')format("woff");}.ff2_c01103{font-family:ff2_c01103;line-height:1.042000;font-style: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;}
.ls0_c01103{letter-spacing:57.960000px;}
.sc__c01103{text-shadow:none;}
.sc0_c01103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01103{-webkit-text-stroke:0px transparent;}
.sc0_c01103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01103{word-spacing:0.000000px;}
._1_c01103{margin-left:-2.324016px;}
._0_c01103{margin-left:-1.321200px;}
._2_c01103{width:1.437960px;}
.fc0_c01103{color:rgb(0,0,0);}
.fs3_c01103{font-size:84.240000px;}
.fs2_c01103{font-size:156.240000px;}
.fs1_c01103{font-size:156.384000px;}
.fs0_c01103{font-size:264.240000px;}
.y0_c01103{bottom:0.000000px;}
.y6_c01103{bottom:44.424000px;}
.y5_c01103{bottom:476.385000px;}
.y4_c01103{bottom:518.505000px;}
.y3_c01103{bottom:560.625000px;}
.y2_c01103{bottom:602.790000px;}
.y1_c01103{bottom:713.190000px;}
.h4_c01103{height:69.750720px;}
.h3_c01103{height:129.366720px;}
.h2_c01103{height:129.485952px;}
.h1_c01103{height:218.790720px;}
.h0_c01103{height:810.000000px;}
.w0_c01103{width:1440.000000px;}
.x0_c01103{left:0.000000px;}
.x1_c01103{left:45.000000px;}
@media print{
.v0_c01103{vertical-align:0.000000pt;}
.ls1_c01103{letter-spacing:0.000000pt;}
.ls0_c01103{letter-spacing:51.520000pt;}
.ws0_c01103{word-spacing:0.000000pt;}
._1_c01103{margin-left:-2.065792pt;}
._0_c01103{margin-left:-1.174400pt;}
._2_c01103{width:1.278186pt;}
.fs3_c01103{font-size:74.880000pt;}
.fs2_c01103{font-size:138.880000pt;}
.fs1_c01103{font-size:139.008000pt;}
.fs0_c01103{font-size:234.880000pt;}
.y0_c01103{bottom:0.000000pt;}
.y6_c01103{bottom:39.488000pt;}
.y5_c01103{bottom:423.453333pt;}
.y4_c01103{bottom:460.893333pt;}
.y3_c01103{bottom:498.333333pt;}
.y2_c01103{bottom:535.813333pt;}
.y1_c01103{bottom:633.946667pt;}
.h4_c01103{height:62.000640pt;}
.h3_c01103{height:114.992640pt;}
.h2_c01103{height:115.098624pt;}
.h1_c01103{height:194.480640pt;}
.h0_c01103{height:720.000000pt;}
.w0_c01103{width:1280.000000pt;}
.x0_c01103{left:0.000000pt;}
.x1_c01103{left:40.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_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_f00e8a671daae39d91bec9e5.woff2')format("woff");}.ff1_c01104{font-family:ff1_c01104;line-height:1.042000;font-style:normal;font-weight:normal;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_62bf0772080a2aa8fb155a47.woff2')format("woff");}.ff2_c01104{font-family:ff2_c01104;line-height:1.042000;font-style:normal;font-weight:normal;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_4a22962d6684792fa77da4e6.woff2')format("woff");}.ff3_c01104{font-family:ff3_c01104;line-height:0.938965;font-style: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:0.000000px;}
.ls0_c01104{letter-spacing:34.200000px;}
.ls2_c01104{letter-spacing:161.265600px;}
.ls1_c01104{letter-spacing:161.316000px;}
.sc__c01104{text-shadow:none;}
.sc0_c01104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01104{-webkit-text-stroke:0px transparent;}
.sc0_c01104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01104{word-spacing:0.000000px;}
._1_c01104{margin-left:-1.562556px;}
._2_c01104{width:67.902480px;}
._0_c01104{width:77.120640px;}
.fc0_c01104{color:rgb(0,0,0);}
.fs3_c01104{font-size:84.240000px;}
.fs2_c01104{font-size:156.240000px;}
.fs1_c01104{font-size:156.384000px;}
.fs0_c01104{font-size:264.240000px;}
.y0_c01104{bottom:0.000000px;}
.yb_c01104{bottom:44.424000px;}
.ya_c01104{bottom:148.500000px;}
.y9_c01104{bottom:190.650000px;}
.y8_c01104{bottom:247.890000px;}
.y7_c01104{bottom:290.010000px;}
.y6_c01104{bottom:404.175000px;}
.y5_c01104{bottom:446.295000px;}
.y4_c01104{bottom:503.565000px;}
.y3_c01104{bottom:545.685000px;}
.y2_c01104{bottom:602.790000px;}
.y1_c01104{bottom:713.190000px;}
.h4_c01104{height:69.750720px;}
.h3_c01104{height:129.366720px;}
.h2_c01104{height:129.485952px;}
.h1_c01104{height:218.790720px;}
.h0_c01104{height:810.000000px;}
.w0_c01104{width:1440.000000px;}
.x0_c01104{left:0.000000px;}
.x1_c01104{left:45.000000px;}
.x3_c01104{left:99.000000px;}
.x2_c01104{left:105.840000px;}
@media print{
.v0_c01104{vertical-align:0.000000pt;}
.ls3_c01104{letter-spacing:0.000000pt;}
.ls0_c01104{letter-spacing:30.400000pt;}
.ls2_c01104{letter-spacing:143.347200pt;}
.ls1_c01104{letter-spacing:143.392000pt;}
.ws0_c01104{word-spacing:0.000000pt;}
._1_c01104{margin-left:-1.388939pt;}
._2_c01104{width:60.357760pt;}
._0_c01104{width:68.551680pt;}
.fs3_c01104{font-size:74.880000pt;}
.fs2_c01104{font-size:138.880000pt;}
.fs1_c01104{font-size:139.008000pt;}
.fs0_c01104{font-size:234.880000pt;}
.y0_c01104{bottom:0.000000pt;}
.yb_c01104{bottom:39.488000pt;}
.ya_c01104{bottom:132.000000pt;}
.y9_c01104{bottom:169.466667pt;}
.y8_c01104{bottom:220.346667pt;}
.y7_c01104{bottom:257.786667pt;}
.y6_c01104{bottom:359.266667pt;}
.y5_c01104{bottom:396.706667pt;}
.y4_c01104{bottom:447.613333pt;}
.y3_c01104{bottom:485.053333pt;}
.y2_c01104{bottom:535.813333pt;}
.y1_c01104{bottom:633.946667pt;}
.h4_c01104{height:62.000640pt;}
.h3_c01104{height:114.992640pt;}
.h2_c01104{height:115.098624pt;}
.h1_c01104{height:194.480640pt;}
.h0_c01104{height:720.000000pt;}
.w0_c01104{width:1280.000000pt;}
.x0_c01104{left:0.000000pt;}
.x1_c01104{left:40.000000pt;}
.x3_c01104{left:88.000000pt;}
.x2_c01104{left:94.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_54731886c9da2634c61c4470.woff2')format("woff");}.ff1_c01105{font-family:ff1_c01105;line-height:1.042000;font-style: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;}
.ls0_c01105{letter-spacing:0.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:0.000000px;}
._0_c01105{margin-left:-1.407612px;}
.fc0_c01105{color:rgb(0,0,0);}
.fs3_c01105{font-size:84.240000px;}
.fs2_c01105{font-size:156.240000px;}
.fs1_c01105{font-size:156.384000px;}
.fs0_c01105{font-size:264.240000px;}
.y0_c01105{bottom:0.000000px;}
.ya_c01105{bottom:44.424000px;}
.y9_c01105{bottom:247.890000px;}
.y8_c01105{bottom:290.010000px;}
.y7_c01105{bottom:332.175000px;}
.y6_c01105{bottom:389.235000px;}
.y5_c01105{bottom:446.295000px;}
.y4_c01105{bottom:503.565000px;}
.y3_c01105{bottom:560.625000px;}
.y2_c01105{bottom:602.790000px;}
.y1_c01105{bottom:713.190000px;}
.h4_c01105{height:69.750720px;}
.h3_c01105{height:129.366720px;}
.h2_c01105{height:129.485952px;}
.h1_c01105{height:218.790720px;}
.h0_c01105{height:810.000000px;}
.w0_c01105{width:1440.000000px;}
.x0_c01105{left:0.000000px;}
.x1_c01105{left:45.000000px;}
@media print{
.v0_c01105{vertical-align:0.000000pt;}
.ls0_c01105{letter-spacing:0.000000pt;}
.ws0_c01105{word-spacing:0.000000pt;}
._0_c01105{margin-left:-1.251211pt;}
.fs3_c01105{font-size:74.880000pt;}
.fs2_c01105{font-size:138.880000pt;}
.fs1_c01105{font-size:139.008000pt;}
.fs0_c01105{font-size:234.880000pt;}
.y0_c01105{bottom:0.000000pt;}
.ya_c01105{bottom:39.488000pt;}
.y9_c01105{bottom:220.346667pt;}
.y8_c01105{bottom:257.786667pt;}
.y7_c01105{bottom:295.266667pt;}
.y6_c01105{bottom:345.986667pt;}
.y5_c01105{bottom:396.706667pt;}
.y4_c01105{bottom:447.613333pt;}
.y3_c01105{bottom:498.333333pt;}
.y2_c01105{bottom:535.813333pt;}
.y1_c01105{bottom:633.946667pt;}
.h4_c01105{height:62.000640pt;}
.h3_c01105{height:114.992640pt;}
.h2_c01105{height:115.098624pt;}
.h1_c01105{height:194.480640pt;}
.h0_c01105{height:720.000000pt;}
.w0_c01105{width:1280.000000pt;}
.x0_c01105{left:0.000000pt;}
.x1_c01105{left:40.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_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_b97512a4d7d8fb8b51e5dd37.woff2')format("woff");}.ff1_c01106{font-family:ff1_c01106;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01106{vertical-align:0.000000px;}
.ls0_c01106{letter-spacing:0.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;}
}
.ws1_c01106{word-spacing:-34.873632px;}
.ws0_c01106{word-spacing:-34.841520px;}
.ws2_c01106{word-spacing:0.000000px;}
._0_c01106{margin-left:-1.944864px;}
.fc1_c01106{color:rgb(0,0,0);}
.fc0_c01106{color:rgb(30,50,250);}
.fs2_c01106{font-size:156.240000px;}
.fs1_c01106{font-size:156.384000px;}
.fs0_c01106{font-size:324.144000px;}
.y0_c01106{bottom:0.000000px;}
.y4_c01106{bottom:159.690000px;}
.y3_c01106{bottom:273.990000px;}
.y2_c01106{bottom:316.155000px;}
.y1_c01106{bottom:539.745000px;}
.h3_c01106{height:129.366720px;}
.h2_c01106{height:129.485952px;}
.h1_c01106{height:268.391232px;}
.h0_c01106{height:810.000000px;}
.w0_c01106{width:1440.000000px;}
.x0_c01106{left:0.000000px;}
.x1_c01106{left:45.000000px;}
.x2_c01106{left:153.030000px;}
@media print{
.v0_c01106{vertical-align:0.000000pt;}
.ls0_c01106{letter-spacing:0.000000pt;}
.ws1_c01106{word-spacing:-30.998784pt;}
.ws0_c01106{word-spacing:-30.970240pt;}
.ws2_c01106{word-spacing:0.000000pt;}
._0_c01106{margin-left:-1.728768pt;}
.fs2_c01106{font-size:138.880000pt;}
.fs1_c01106{font-size:139.008000pt;}
.fs0_c01106{font-size:288.128000pt;}
.y0_c01106{bottom:0.000000pt;}
.y4_c01106{bottom:141.946667pt;}
.y3_c01106{bottom:243.546667pt;}
.y2_c01106{bottom:281.026667pt;}
.y1_c01106{bottom:479.773333pt;}
.h3_c01106{height:114.992640pt;}
.h2_c01106{height:115.098624pt;}
.h1_c01106{height:238.569984pt;}
.h0_c01106{height:720.000000pt;}
.w0_c01106{width:1280.000000pt;}
.x0_c01106{left:0.000000pt;}
.x1_c01106{left:40.000000pt;}
.x2_c01106{left:136.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_de2bab5c913f9c3e4239f68f.woff2')format("woff");}.ff1_c01107{font-family:ff1_c01107;line-height:1.120117;font-style:normal;font-weight:normal;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_f9931adb4a3b51799d449a2e.woff2')format("woff");}.ff2_c01107{font-family:ff2_c01107;line-height:0.938965;font-style: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;}
.ls3_c01107{letter-spacing:-10.044000px;}
.ls6_c01107{letter-spacing:-8.496000px;}
.ls5_c01107{letter-spacing:-0.432000px;}
.ls4_c01107{letter-spacing:0.000000px;}
.ls0_c01107{letter-spacing:0.288000px;}
.ls2_c01107{letter-spacing:0.324000px;}
.ls1_c01107{letter-spacing:33.984000px;}
.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:-63.828000px;}
.ws1_c01107{word-spacing:-24.624000px;}
.wsb_c01107{word-spacing:-12.636000px;}
.ws7_c01107{word-spacing:-6.768000px;}
.ws6_c01107{word-spacing:-5.472000px;}
.wsc_c01107{word-spacing:-1.872000px;}
.ws3_c01107{word-spacing:-0.662400px;}
.ws2_c01107{word-spacing:-0.576000px;}
.wsa_c01107{word-spacing:-0.324000px;}
.ws9_c01107{word-spacing:0.000000px;}
.ws8_c01107{word-spacing:0.432000px;}
.wsd_c01107{word-spacing:0.648000px;}
.ws5_c01107{word-spacing:0.792000px;}
.ws4_c01107{word-spacing:14.544000px;}
._3_c01107{margin-left:-13.284000px;}
._7_c01107{margin-left:-8.895600px;}
._1_c01107{margin-left:-1.440000px;}
._0_c01107{width:1.587600px;}
._6_c01107{width:2.635200px;}
._2_c01107{width:5.184000px;}
._5_c01107{width:8.928000px;}
._4_c01107{width:12.668400px;}
.fc2_c01107{color:transparent;}
.fc1_c01107{color:rgb(59,56,56);}
.fc0_c01107{color:rgb(255,255,255);}
.fs2_c01107{font-size:72.000000px;}
.fs1_c01107{font-size:108.000000px;}
.fs3_c01107{font-size:144.000000px;}
.fs0_c01107{font-size:324.000000px;}
.y0_c01107{bottom:0.000000px;}
.y9_c01107{bottom:186.707250px;}
.y8_c01107{bottom:240.407250px;}
.ya_c01107{bottom:329.390100px;}
.y7_c01107{bottom:432.767550px;}
.y6_c01107{bottom:535.394550px;}
.y2_c01107{bottom:551.249100px;}
.y1_c01107{bottom:608.734950px;}
.y5_c01107{bottom:689.661150px;}
.y3_c01107{bottom:704.395050px;}
.y4_c01107{bottom:743.373150px;}
.h3_c01107{height:52.453125px;}
.h2_c01107{height:78.679688px;}
.h4_c01107{height:104.906250px;}
.h6_c01107{height:130.992188px;}
.h5_c01107{height:236.039062px;}
.h1_c01107{height:294.732422px;}
.h0_c01107{height:810.000000px;}
.w0_c01107{width:1440.000000px;}
.x0_c01107{left:0.000000px;}
.x3_c01107{left:28.748250px;}
.x1_c01107{left:70.710900px;}
.x2_c01107{left:73.394100px;}
.x4_c01107{left:214.955100px;}
@media print{
.v0_c01107{vertical-align:0.000000pt;}
.ls3_c01107{letter-spacing:-8.928000pt;}
.ls6_c01107{letter-spacing:-7.552000pt;}
.ls5_c01107{letter-spacing:-0.384000pt;}
.ls4_c01107{letter-spacing:0.000000pt;}
.ls0_c01107{letter-spacing:0.256000pt;}
.ls2_c01107{letter-spacing:0.288000pt;}
.ls1_c01107{letter-spacing:30.208000pt;}
.ws0_c01107{word-spacing:-56.736000pt;}
.ws1_c01107{word-spacing:-21.888000pt;}
.wsb_c01107{word-spacing:-11.232000pt;}
.ws7_c01107{word-spacing:-6.016000pt;}
.ws6_c01107{word-spacing:-4.864000pt;}
.wsc_c01107{word-spacing:-1.664000pt;}
.ws3_c01107{word-spacing:-0.588800pt;}
.ws2_c01107{word-spacing:-0.512000pt;}
.wsa_c01107{word-spacing:-0.288000pt;}
.ws9_c01107{word-spacing:0.000000pt;}
.ws8_c01107{word-spacing:0.384000pt;}
.wsd_c01107{word-spacing:0.576000pt;}
.ws5_c01107{word-spacing:0.704000pt;}
.ws4_c01107{word-spacing:12.928000pt;}
._3_c01107{margin-left:-11.808000pt;}
._7_c01107{margin-left:-7.907200pt;}
._1_c01107{margin-left:-1.280000pt;}
._0_c01107{width:1.411200pt;}
._6_c01107{width:2.342400pt;}
._2_c01107{width:4.608000pt;}
._5_c01107{width:7.936000pt;}
._4_c01107{width:11.260800pt;}
.fs2_c01107{font-size:64.000000pt;}
.fs1_c01107{font-size:96.000000pt;}
.fs3_c01107{font-size:128.000000pt;}
.fs0_c01107{font-size:288.000000pt;}
.y0_c01107{bottom:0.000000pt;}
.y9_c01107{bottom:165.962000pt;}
.y8_c01107{bottom:213.695333pt;}
.ya_c01107{bottom:292.791200pt;}
.y7_c01107{bottom:384.682267pt;}
.y6_c01107{bottom:475.906267pt;}
.y2_c01107{bottom:489.999200pt;}
.y1_c01107{bottom:541.097733pt;}
.y5_c01107{bottom:613.032133pt;}
.y3_c01107{bottom:626.128933pt;}
.y4_c01107{bottom:660.776133pt;}
.h3_c01107{height:46.625000pt;}
.h2_c01107{height:69.937500pt;}
.h4_c01107{height:93.250000pt;}
.h6_c01107{height:116.437500pt;}
.h5_c01107{height:209.812500pt;}
.h1_c01107{height:261.984375pt;}
.h0_c01107{height:720.000000pt;}
.w0_c01107{width:1280.000000pt;}
.x0_c01107{left:0.000000pt;}
.x3_c01107{left:25.554000pt;}
.x1_c01107{left:62.854133pt;}
.x2_c01107{left:65.239200pt;}
.x4_c01107{left:191.071200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_834ad5b5a68fff128ecf0d7a.woff2')format("woff");}.ff1_c01108{font-family:ff1_c01108;line-height:1.120117;font-style:normal;font-weight:normal;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_cc559287ab9b1168ac210943.woff2')format("woff");}.ff2_c01108{font-family:ff2_c01108;line-height:0.938965;font-style:normal;font-weight:normal;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_6e2a5ee443d7be6c45182139.woff2')format("woff");}.ff3_c01108{font-family:ff3_c01108;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01108{vertical-align:0.000000px;}
.ls2_c01108{letter-spacing:-10.044000px;}
.ls9_c01108{letter-spacing:-0.540000px;}
.ls4_c01108{letter-spacing:-0.432000px;}
.ls7_c01108{letter-spacing:-0.324000px;}
.ls5_c01108{letter-spacing:-0.288000px;}
.lsa_c01108{letter-spacing:-0.216000px;}
.ls6_c01108{letter-spacing:-0.108000px;}
.ls3_c01108{letter-spacing:0.000000px;}
.ls8_c01108{letter-spacing:0.540000px;}
.ls1_c01108{letter-spacing:1.620000px;}
.ls0_c01108{letter-spacing:97.200000px;}
.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;}
}
.ws2_c01108{word-spacing:-65.376000px;}
.ws0_c01108{word-spacing:-63.828000px;}
.ws1_c01108{word-spacing:-24.624000px;}
.ws6_c01108{word-spacing:-24.516000px;}
.wsc_c01108{word-spacing:-24.408000px;}
.ws14_c01108{word-spacing:-4.752000px;}
.wsa_c01108{word-spacing:-2.980800px;}
.ws3_c01108{word-spacing:-2.883600px;}
.ws8_c01108{word-spacing:-1.728000px;}
.ws5_c01108{word-spacing:-1.717200px;}
.ws4_c01108{word-spacing:-1.695600px;}
.wsb_c01108{word-spacing:-1.674000px;}
.ws19_c01108{word-spacing:-0.648000px;}
.ws10_c01108{word-spacing:-0.550800px;}
.ws16_c01108{word-spacing:-0.540000px;}
.wsd_c01108{word-spacing:-0.108000px;}
.ws12_c01108{word-spacing:0.000000px;}
.ws15_c01108{word-spacing:0.108000px;}
.ws18_c01108{word-spacing:0.216000px;}
.ws13_c01108{word-spacing:0.324000px;}
.ws7_c01108{word-spacing:0.496800px;}
.ws17_c01108{word-spacing:0.540000px;}
.wse_c01108{word-spacing:0.648000px;}
.ws9_c01108{word-spacing:0.756000px;}
.ws11_c01108{word-spacing:0.792000px;}
.wsf_c01108{word-spacing:1.533600px;}
._1_c01108{margin-left:-16.790400px;}
._5_c01108{margin-left:-6.156000px;}
._4_c01108{margin-left:-1.468800px;}
._0_c01108{width:1.587600px;}
._3_c01108{width:4.201200px;}
._2_c01108{width:23.835600px;}
._6_c01108{width:26.071200px;}
.fc1_c01108{color:transparent;}
.fc0_c01108{color:rgb(255,255,255);}
.fs2_c01108{font-size:72.000000px;}
.fs1_c01108{font-size:108.000000px;}
.fs3_c01108{font-size:288.000000px;}
.fs0_c01108{font-size:324.000000px;}
.y0_c01108{bottom:0.000000px;}
.ye_c01108{bottom:74.564100px;}
.yd_c01108{bottom:138.176100px;}
.yc_c01108{bottom:201.775950px;}
.yb_c01108{bottom:257.876100px;}
.ya_c01108{bottom:313.982100px;}
.y9_c01108{bottom:370.082100px;}
.y8_c01108{bottom:426.190950px;}
.y7_c01108{bottom:482.296950px;}
.y6_c01108{bottom:538.375950px;}
.y2_c01108{bottom:551.249100px;}
.y5_c01108{bottom:601.987950px;}
.y1_c01108{bottom:608.734950px;}
.y4_c01108{bottom:679.800000px;}
.y3_c01108{bottom:704.395050px;}
.h3_c01108{height:52.453125px;}
.h2_c01108{height:78.679688px;}
.h5_c01108{height:98.244141px;}
.h7_c01108{height:98.267541px;}
.h6_c01108{height:98.268141px;}
.h8_c01108{height:98.292741px;}
.h4_c01108{height:261.984375px;}
.h1_c01108{height:294.732422px;}
.h0_c01108{height:810.000000px;}
.w0_c01108{width:1440.000000px;}
.x0_c01108{left:0.000000px;}
.x3_c01108{left:49.800000px;}
.x1_c01108{left:70.710900px;}
.x2_c01108{left:73.394100px;}
.x4_c01108{left:130.800000px;}
@media print{
.v0_c01108{vertical-align:0.000000pt;}
.ls2_c01108{letter-spacing:-8.928000pt;}
.ls9_c01108{letter-spacing:-0.480000pt;}
.ls4_c01108{letter-spacing:-0.384000pt;}
.ls7_c01108{letter-spacing:-0.288000pt;}
.ls5_c01108{letter-spacing:-0.256000pt;}
.lsa_c01108{letter-spacing:-0.192000pt;}
.ls6_c01108{letter-spacing:-0.096000pt;}
.ls3_c01108{letter-spacing:0.000000pt;}
.ls8_c01108{letter-spacing:0.480000pt;}
.ls1_c01108{letter-spacing:1.440000pt;}
.ls0_c01108{letter-spacing:86.400000pt;}
.ws2_c01108{word-spacing:-58.112000pt;}
.ws0_c01108{word-spacing:-56.736000pt;}
.ws1_c01108{word-spacing:-21.888000pt;}
.ws6_c01108{word-spacing:-21.792000pt;}
.wsc_c01108{word-spacing:-21.696000pt;}
.ws14_c01108{word-spacing:-4.224000pt;}
.wsa_c01108{word-spacing:-2.649600pt;}
.ws3_c01108{word-spacing:-2.563200pt;}
.ws8_c01108{word-spacing:-1.536000pt;}
.ws5_c01108{word-spacing:-1.526400pt;}
.ws4_c01108{word-spacing:-1.507200pt;}
.wsb_c01108{word-spacing:-1.488000pt;}
.ws19_c01108{word-spacing:-0.576000pt;}
.ws10_c01108{word-spacing:-0.489600pt;}
.ws16_c01108{word-spacing:-0.480000pt;}
.wsd_c01108{word-spacing:-0.096000pt;}
.ws12_c01108{word-spacing:0.000000pt;}
.ws15_c01108{word-spacing:0.096000pt;}
.ws18_c01108{word-spacing:0.192000pt;}
.ws13_c01108{word-spacing:0.288000pt;}
.ws7_c01108{word-spacing:0.441600pt;}
.ws17_c01108{word-spacing:0.480000pt;}
.wse_c01108{word-spacing:0.576000pt;}
.ws9_c01108{word-spacing:0.672000pt;}
.ws11_c01108{word-spacing:0.704000pt;}
.wsf_c01108{word-spacing:1.363200pt;}
._1_c01108{margin-left:-14.924800pt;}
._5_c01108{margin-left:-5.472000pt;}
._4_c01108{margin-left:-1.305600pt;}
._0_c01108{width:1.411200pt;}
._3_c01108{width:3.734400pt;}
._2_c01108{width:21.187200pt;}
._6_c01108{width:23.174400pt;}
.fs2_c01108{font-size:64.000000pt;}
.fs1_c01108{font-size:96.000000pt;}
.fs3_c01108{font-size:256.000000pt;}
.fs0_c01108{font-size:288.000000pt;}
.y0_c01108{bottom:0.000000pt;}
.ye_c01108{bottom:66.279200pt;}
.yd_c01108{bottom:122.823200pt;}
.yc_c01108{bottom:179.356400pt;}
.yb_c01108{bottom:229.223200pt;}
.ya_c01108{bottom:279.095200pt;}
.y9_c01108{bottom:328.961867pt;}
.y8_c01108{bottom:378.836400pt;}
.y7_c01108{bottom:428.708400pt;}
.y6_c01108{bottom:478.556400pt;}
.y2_c01108{bottom:489.999200pt;}
.y5_c01108{bottom:535.100400pt;}
.y1_c01108{bottom:541.097733pt;}
.y4_c01108{bottom:604.266667pt;}
.y3_c01108{bottom:626.128933pt;}
.h3_c01108{height:46.625000pt;}
.h2_c01108{height:69.937500pt;}
.h5_c01108{height:87.328125pt;}
.h7_c01108{height:87.348925pt;}
.h6_c01108{height:87.349458pt;}
.h8_c01108{height:87.371325pt;}
.h4_c01108{height:232.875000pt;}
.h1_c01108{height:261.984375pt;}
.h0_c01108{height:720.000000pt;}
.w0_c01108{width:1280.000000pt;}
.x0_c01108{left:0.000000pt;}
.x3_c01108{left:44.266667pt;}
.x1_c01108{left:62.854133pt;}
.x2_c01108{left:65.239200pt;}
.x4_c01108{left:116.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_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_7203f471d853515fd6a16e27.woff2')format("woff");}.ff1_c01109{font-family:ff1_c01109;line-height:1.120117;font-style:normal;font-weight:normal;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_1741a63319d7b9d517a5061d.woff2')format("woff");}.ff2_c01109{font-family:ff2_c01109;line-height:0.938965;font-style:normal;font-weight:normal;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_20d9c198601d66d22b38352b.woff2')format("woff");}.ff3_c01109{font-family:ff3_c01109;line-height:0.765625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01109;src:url('chunks/assets/font_df752714d249125ebd08d612.woff2')format("woff");}.ff4_c01109{font-family:ff4_c01109;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-10.044000px;}
.ls6_c01109{letter-spacing:-9.216000px;}
.ls4_c01109{letter-spacing:-0.576000px;}
.ls3_c01109{letter-spacing:-0.432000px;}
.ls5_c01109{letter-spacing:-0.288000px;}
.ls8_c01109{letter-spacing:-0.216000px;}
.ls2_c01109{letter-spacing:0.000000px;}
.ls7_c01109{letter-spacing:0.540000px;}
.ls0_c01109{letter-spacing:104.760000px;}
.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;}
}
.ws5_c01109{word-spacing:-65.088000px;}
.ws0_c01109{word-spacing:-63.828000px;}
.ws1_c01109{word-spacing:-24.624000px;}
.wsa_c01109{word-spacing:-24.192000px;}
.ws6_c01109{word-spacing:-23.616000px;}
.ws3_c01109{word-spacing:-6.048000px;}
.ws9_c01109{word-spacing:-4.957200px;}
.ws8_c01109{word-spacing:-2.170800px;}
.ws12_c01109{word-spacing:-0.648000px;}
.ws4_c01109{word-spacing:-0.633600px;}
.wsd_c01109{word-spacing:0.000000px;}
.wse_c01109{word-spacing:0.432000px;}
.ws11_c01109{word-spacing:0.540000px;}
.wsc_c01109{word-spacing:0.576000px;}
.wsb_c01109{word-spacing:0.792000px;}
.ws10_c01109{word-spacing:1.344000px;}
.ws2_c01109{word-spacing:1.497600px;}
.ws7_c01109{word-spacing:1.749600px;}
.wsf_c01109{word-spacing:1.944000px;}
._3_c01109{margin-left:-4.017600px;}
._1_c01109{margin-left:-1.274400px;}
._0_c01109{width:1.587600px;}
._4_c01109{width:3.358800px;}
._2_c01109{width:25.537200px;}
.fc3_c01109{color:rgb(89,89,89);}
.fc2_c01109{color:rgb(64,64,64);}
.fc1_c01109{color:rgb(0,0,0);}
.fc0_c01109{color:rgb(255,255,255);}
.fs6_c01109{font-size:48.000000px;}
.fs2_c01109{font-size:72.000000px;}
.fs5_c01109{font-size:84.000000px;}
.fs1_c01109{font-size:108.000000px;}
.fs4_c01109{font-size:144.000000px;}
.fs3_c01109{font-size:288.000000px;}
.fs0_c01109{font-size:324.000000px;}
.y0_c01109{bottom:0.000000px;}
.y7_c01109{bottom:13.451250px;}
.y8_c01109{bottom:33.162000px;}
.y6_c01109{bottom:112.167300px;}
.y9_c01109{bottom:182.226000px;}
.ya_c01109{bottom:282.207000px;}
.yb_c01109{bottom:359.292000px;}
.yc_c01109{bottom:421.203000px;}
.y2_c01109{bottom:551.249100px;}
.yd_c01109{bottom:589.413000px;}
.y1_c01109{bottom:608.734950px;}
.y5_c01109{bottom:658.307850px;}
.y4_c01109{bottom:697.800000px;}
.y3_c01109{bottom:704.395050px;}
.h8_c01109{height:34.968750px;}
.h3_c01109{height:52.453125px;}
.h7_c01109{height:61.154297px;}
.h2_c01109{height:78.679688px;}
.h6_c01109{height:82.687500px;}
.h5_c01109{height:104.906250px;}
.h4_c01109{height:261.984375px;}
.h1_c01109{height:294.732422px;}
.h0_c01109{height:810.000000px;}
.w0_c01109{width:1440.000000px;}
.x9_c01109{left:-1.574850px;}
.x0_c01109{left:0.000000px;}
.xa_c01109{left:63.522150px;}
.x3_c01109{left:69.300000px;}
.x1_c01109{left:70.710900px;}
.x2_c01109{left:73.394100px;}
.x7_c01109{left:104.076150px;}
.xb_c01109{left:129.645150px;}
.x8_c01109{left:193.878150px;}
.x4_c01109{left:434.579850px;}
.x6_c01109{left:1133.193300px;}
.x5_c01109{left:1405.095000px;}
@media print{
.v0_c01109{vertical-align:0.000000pt;}
.ls1_c01109{letter-spacing:-8.928000pt;}
.ls6_c01109{letter-spacing:-8.192000pt;}
.ls4_c01109{letter-spacing:-0.512000pt;}
.ls3_c01109{letter-spacing:-0.384000pt;}
.ls5_c01109{letter-spacing:-0.256000pt;}
.ls8_c01109{letter-spacing:-0.192000pt;}
.ls2_c01109{letter-spacing:0.000000pt;}
.ls7_c01109{letter-spacing:0.480000pt;}
.ls0_c01109{letter-spacing:93.120000pt;}
.ws5_c01109{word-spacing:-57.856000pt;}
.ws0_c01109{word-spacing:-56.736000pt;}
.ws1_c01109{word-spacing:-21.888000pt;}
.wsa_c01109{word-spacing:-21.504000pt;}
.ws6_c01109{word-spacing:-20.992000pt;}
.ws3_c01109{word-spacing:-5.376000pt;}
.ws9_c01109{word-spacing:-4.406400pt;}
.ws8_c01109{word-spacing:-1.929600pt;}
.ws12_c01109{word-spacing:-0.576000pt;}
.ws4_c01109{word-spacing:-0.563200pt;}
.wsd_c01109{word-spacing:0.000000pt;}
.wse_c01109{word-spacing:0.384000pt;}
.ws11_c01109{word-spacing:0.480000pt;}
.wsc_c01109{word-spacing:0.512000pt;}
.wsb_c01109{word-spacing:0.704000pt;}
.ws10_c01109{word-spacing:1.194667pt;}
.ws2_c01109{word-spacing:1.331200pt;}
.ws7_c01109{word-spacing:1.555200pt;}
.wsf_c01109{word-spacing:1.728000pt;}
._3_c01109{margin-left:-3.571200pt;}
._1_c01109{margin-left:-1.132800pt;}
._0_c01109{width:1.411200pt;}
._4_c01109{width:2.985600pt;}
._2_c01109{width:22.699733pt;}
.fs6_c01109{font-size:42.666667pt;}
.fs2_c01109{font-size:64.000000pt;}
.fs5_c01109{font-size:74.666667pt;}
.fs1_c01109{font-size:96.000000pt;}
.fs4_c01109{font-size:128.000000pt;}
.fs3_c01109{font-size:256.000000pt;}
.fs0_c01109{font-size:288.000000pt;}
.y0_c01109{bottom:0.000000pt;}
.y7_c01109{bottom:11.956667pt;}
.y8_c01109{bottom:29.477333pt;}
.y6_c01109{bottom:99.704267pt;}
.y9_c01109{bottom:161.978667pt;}
.ya_c01109{bottom:250.850667pt;}
.yb_c01109{bottom:319.370667pt;}
.yc_c01109{bottom:374.402667pt;}
.y2_c01109{bottom:489.999200pt;}
.yd_c01109{bottom:523.922667pt;}
.y1_c01109{bottom:541.097733pt;}
.y5_c01109{bottom:585.162533pt;}
.y4_c01109{bottom:620.266667pt;}
.y3_c01109{bottom:626.128933pt;}
.h8_c01109{height:31.083333pt;}
.h3_c01109{height:46.625000pt;}
.h7_c01109{height:54.359375pt;}
.h2_c01109{height:69.937500pt;}
.h6_c01109{height:73.500000pt;}
.h5_c01109{height:93.250000pt;}
.h4_c01109{height:232.875000pt;}
.h1_c01109{height:261.984375pt;}
.h0_c01109{height:720.000000pt;}
.w0_c01109{width:1280.000000pt;}
.x9_c01109{left:-1.399867pt;}
.x0_c01109{left:0.000000pt;}
.xa_c01109{left:56.464133pt;}
.x3_c01109{left:61.600000pt;}
.x1_c01109{left:62.854133pt;}
.x2_c01109{left:65.239200pt;}
.x7_c01109{left:92.512133pt;}
.xb_c01109{left:115.240133pt;}
.x8_c01109{left:172.336133pt;}
.x4_c01109{left:386.293200pt;}
.x6_c01109{left:1007.282933pt;}
.x5_c01109{left:1248.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c99357681f612c6f73f25ab6.woff2')format("woff");}.ff1_c01110{font-family:ff1_c01110;line-height:1.120117;font-style:normal;font-weight:normal;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_ae99901b312e459305744545.woff2')format("woff");}.ff2_c01110{font-family:ff2_c01110;line-height:0.938965;font-style:normal;font-weight:normal;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_3717a5608f5a1aca85f3c30f.woff2')format("woff");}.ff3_c01110{font-family:ff3_c01110;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01110;src:url('chunks/assets/font_ba04a40ae8656f3bae0f02df.woff2')format("woff");}.ff4_c01110{font-family:ff4_c01110;line-height:0.765625;font-style: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;}
.ls4_c01110{letter-spacing:-10.044000px;}
.ls9_c01110{letter-spacing:-9.360000px;}
.lsa_c01110{letter-spacing:-9.216000px;}
.ls7_c01110{letter-spacing:-0.576000px;}
.ls6_c01110{letter-spacing:-0.432000px;}
.ls8_c01110{letter-spacing:-0.288000px;}
.lsb_c01110{letter-spacing:-0.192000px;}
.lsc_c01110{letter-spacing:-0.120000px;}
.ls5_c01110{letter-spacing:0.000000px;}
.ls1_c01110{letter-spacing:0.288000px;}
.ls3_c01110{letter-spacing:23.280000px;}
.ls2_c01110{letter-spacing:61.296000px;}
.ls0_c01110{letter-spacing:61.344000px;}
.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;}
}
.ws5_c01110{word-spacing:-65.088000px;}
.ws0_c01110{word-spacing:-63.828000px;}
.ws11_c01110{word-spacing:-43.584000px;}
.wsb_c01110{word-spacing:-33.120000px;}
.wsf_c01110{word-spacing:-32.400000px;}
.ws1_c01110{word-spacing:-24.624000px;}
.ws3_c01110{word-spacing:-6.048000px;}
.ws19_c01110{word-spacing:-5.472000px;}
.ws7_c01110{word-spacing:-1.195200px;}
.ws1a_c01110{word-spacing:-0.840000px;}
.ws4_c01110{word-spacing:-0.633600px;}
.ws16_c01110{word-spacing:-0.288000px;}
.ws13_c01110{word-spacing:0.000000px;}
.ws17_c01110{word-spacing:0.288000px;}
.ws15_c01110{word-spacing:0.432000px;}
.ws9_c01110{word-spacing:0.576000px;}
.ws12_c01110{word-spacing:0.792000px;}
.wse_c01110{word-spacing:0.806400px;}
.ws10_c01110{word-spacing:0.878400px;}
.wsa_c01110{word-spacing:1.008000px;}
.ws8_c01110{word-spacing:1.200000px;}
.wsc_c01110{word-spacing:1.483200px;}
.ws2_c01110{word-spacing:1.497600px;}
.ws18_c01110{word-spacing:1.728000px;}
.wsd_c01110{word-spacing:1.872000px;}
.ws6_c01110{word-spacing:6.148800px;}
.ws14_c01110{word-spacing:9.360000px;}
._1_c01110{margin-left:-7.488000px;}
._3_c01110{margin-left:-3.110400px;}
._2_c01110{margin-left:-1.440000px;}
._0_c01110{width:1.587600px;}
._6_c01110{width:3.081600px;}
._5_c01110{width:4.348800px;}
._7_c01110{width:6.033600px;}
._8_c01110{width:27.120000px;}
._4_c01110{width:35.654400px;}
.fc5_c01110{color:transparent;}
.fc4_c01110{color:rgb(255,0,0);}
.fc3_c01110{color:rgb(89,89,89);}
.fc2_c01110{color:rgb(64,64,64);}
.fc1_c01110{color:rgb(0,0,0);}
.fc0_c01110{color:rgb(255,255,255);}
.fs2_c01110{font-size:72.000000px;}
.fs5_c01110{font-size:84.000000px;}
.fs1_c01110{font-size:108.000000px;}
.fs7_c01110{font-size:120.000000px;}
.fs4_c01110{font-size:144.000000px;}
.fs6_c01110{font-size:192.000000px;}
.fs3_c01110{font-size:288.000000px;}
.fs0_c01110{font-size:324.000000px;}
.y0_c01110{bottom:0.000000px;}
.y6_c01110{bottom:13.451250px;}
.yb_c01110{bottom:90.728100px;}
.yc_c01110{bottom:146.052750px;}
.ya_c01110{bottom:332.313900px;}
.y9_c01110{bottom:371.301900px;}
.y8_c01110{bottom:504.813750px;}
.y7_c01110{bottom:543.801750px;}
.y2_c01110{bottom:551.249100px;}
.y1_c01110{bottom:608.734950px;}
.y5_c01110{bottom:655.727400px;}
.y4_c01110{bottom:697.800000px;}
.y3_c01110{bottom:704.395050px;}
.h3_c01110{height:52.453125px;}
.h6_c01110{height:61.154297px;}
.h2_c01110{height:78.679688px;}
.h5_c01110{height:104.906250px;}
.h8_c01110{height:130.944187px;}
.h7_c01110{height:130.992188px;}
.h9_c01110{height:174.656250px;}
.h4_c01110{height:261.984375px;}
.h1_c01110{height:294.732422px;}
.h0_c01110{height:810.000000px;}
.w0_c01110{width:1440.000000px;}
.x0_c01110{left:0.000000px;}
.x3_c01110{left:69.299850px;}
.x1_c01110{left:70.710900px;}
.x2_c01110{left:73.394100px;}
.x6_c01110{left:94.310850px;}
.x7_c01110{left:547.291950px;}
.x5_c01110{left:861.631200px;}
.x4_c01110{left:1405.095000px;}
@media print{
.v0_c01110{vertical-align:0.000000pt;}
.ls4_c01110{letter-spacing:-8.928000pt;}
.ls9_c01110{letter-spacing:-8.320000pt;}
.lsa_c01110{letter-spacing:-8.192000pt;}
.ls7_c01110{letter-spacing:-0.512000pt;}
.ls6_c01110{letter-spacing:-0.384000pt;}
.ls8_c01110{letter-spacing:-0.256000pt;}
.lsb_c01110{letter-spacing:-0.170667pt;}
.lsc_c01110{letter-spacing:-0.106667pt;}
.ls5_c01110{letter-spacing:0.000000pt;}
.ls1_c01110{letter-spacing:0.256000pt;}
.ls3_c01110{letter-spacing:20.693333pt;}
.ls2_c01110{letter-spacing:54.485333pt;}
.ls0_c01110{letter-spacing:54.528000pt;}
.ws5_c01110{word-spacing:-57.856000pt;}
.ws0_c01110{word-spacing:-56.736000pt;}
.ws11_c01110{word-spacing:-38.741333pt;}
.wsb_c01110{word-spacing:-29.440000pt;}
.wsf_c01110{word-spacing:-28.800000pt;}
.ws1_c01110{word-spacing:-21.888000pt;}
.ws3_c01110{word-spacing:-5.376000pt;}
.ws19_c01110{word-spacing:-4.864000pt;}
.ws7_c01110{word-spacing:-1.062400pt;}
.ws1a_c01110{word-spacing:-0.746667pt;}
.ws4_c01110{word-spacing:-0.563200pt;}
.ws16_c01110{word-spacing:-0.256000pt;}
.ws13_c01110{word-spacing:0.000000pt;}
.ws17_c01110{word-spacing:0.256000pt;}
.ws15_c01110{word-spacing:0.384000pt;}
.ws9_c01110{word-spacing:0.512000pt;}
.ws12_c01110{word-spacing:0.704000pt;}
.wse_c01110{word-spacing:0.716800pt;}
.ws10_c01110{word-spacing:0.780800pt;}
.wsa_c01110{word-spacing:0.896000pt;}
.ws8_c01110{word-spacing:1.066667pt;}
.wsc_c01110{word-spacing:1.318400pt;}
.ws2_c01110{word-spacing:1.331200pt;}
.ws18_c01110{word-spacing:1.536000pt;}
.wsd_c01110{word-spacing:1.664000pt;}
.ws6_c01110{word-spacing:5.465600pt;}
.ws14_c01110{word-spacing:8.320000pt;}
._1_c01110{margin-left:-6.656000pt;}
._3_c01110{margin-left:-2.764800pt;}
._2_c01110{margin-left:-1.280000pt;}
._0_c01110{width:1.411200pt;}
._6_c01110{width:2.739200pt;}
._5_c01110{width:3.865600pt;}
._7_c01110{width:5.363200pt;}
._8_c01110{width:24.106667pt;}
._4_c01110{width:31.692800pt;}
.fs2_c01110{font-size:64.000000pt;}
.fs5_c01110{font-size:74.666667pt;}
.fs1_c01110{font-size:96.000000pt;}
.fs7_c01110{font-size:106.666667pt;}
.fs4_c01110{font-size:128.000000pt;}
.fs6_c01110{font-size:170.666667pt;}
.fs3_c01110{font-size:256.000000pt;}
.fs0_c01110{font-size:288.000000pt;}
.y0_c01110{bottom:0.000000pt;}
.y6_c01110{bottom:11.956667pt;}
.yb_c01110{bottom:80.647200pt;}
.yc_c01110{bottom:129.824667pt;}
.ya_c01110{bottom:295.390133pt;}
.y9_c01110{bottom:330.046133pt;}
.y8_c01110{bottom:448.723333pt;}
.y7_c01110{bottom:483.379333pt;}
.y2_c01110{bottom:489.999200pt;}
.y1_c01110{bottom:541.097733pt;}
.y5_c01110{bottom:582.868800pt;}
.y4_c01110{bottom:620.266667pt;}
.y3_c01110{bottom:626.128933pt;}
.h3_c01110{height:46.625000pt;}
.h6_c01110{height:54.359375pt;}
.h2_c01110{height:69.937500pt;}
.h5_c01110{height:93.250000pt;}
.h8_c01110{height:116.394833pt;}
.h7_c01110{height:116.437500pt;}
.h9_c01110{height:155.250000pt;}
.h4_c01110{height:232.875000pt;}
.h1_c01110{height:261.984375pt;}
.h0_c01110{height:720.000000pt;}
.w0_c01110{width:1280.000000pt;}
.x0_c01110{left:0.000000pt;}
.x3_c01110{left:61.599867pt;}
.x1_c01110{left:62.854133pt;}
.x2_c01110{left:65.239200pt;}
.x6_c01110{left:83.831867pt;}
.x7_c01110{left:486.481733pt;}
.x5_c01110{left:765.894400pt;}
.x4_c01110{left:1248.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_79c3ac16d6d7e1d7f38e8ae4.woff2')format("woff");}.ff1_c01111{font-family:ff1_c01111;line-height:1.120117;font-style:normal;font-weight:normal;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_16e8ec775c22d58f75772168.woff2')format("woff");}.ff2_c01111{font-family:ff2_c01111;line-height:0.938965;font-style:normal;font-weight:normal;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_6f07bcd2477c81d57561cb54.woff2')format("woff");}.ff3_c01111{font-family:ff3_c01111;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c01111{letter-spacing:-10.044000px;}
.ls5_c01111{letter-spacing:-9.216000px;}
.ls3_c01111{letter-spacing:-0.432000px;}
.ls6_c01111{letter-spacing:-0.324000px;}
.ls4_c01111{letter-spacing:-0.288000px;}
.ls2_c01111{letter-spacing:0.000000px;}
.ls0_c01111{letter-spacing:0.540000px;}
.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:-63.828000px;}
.ws2_c01111{word-spacing:-32.832000px;}
.ws7_c01111{word-spacing:-25.164000px;}
.ws1_c01111{word-spacing:-24.624000px;}
.ws3_c01111{word-spacing:-24.300000px;}
.ws8_c01111{word-spacing:-24.192000px;}
.ws5_c01111{word-spacing:-2.214000px;}
.wsf_c01111{word-spacing:0.000000px;}
.ws9_c01111{word-spacing:0.518400px;}
.wsd_c01111{word-spacing:0.576000px;}
.wsc_c01111{word-spacing:0.792000px;}
.ws6_c01111{word-spacing:0.993600px;}
.wsb_c01111{word-spacing:1.080000px;}
.wsa_c01111{word-spacing:1.317600px;}
.ws4_c01111{word-spacing:1.339200px;}
.wse_c01111{word-spacing:9.216000px;}
._2_c01111{margin-left:-13.082400px;}
._1_c01111{margin-left:-7.401600px;}
._4_c01111{margin-left:-4.852800px;}
._3_c01111{margin-left:-1.051200px;}
._0_c01111{width:1.587600px;}
._6_c01111{width:23.276400px;}
._5_c01111{width:25.488000px;}
._7_c01111{width:27.187200px;}
.fc4_c01111{color:transparent;}
.fc3_c01111{color:rgb(89,89,89);}
.fc2_c01111{color:rgb(64,64,64);}
.fc1_c01111{color:rgb(0,0,0);}
.fc0_c01111{color:rgb(255,255,255);}
.fs2_c01111{font-size:72.000000px;}
.fs5_c01111{font-size:84.000000px;}
.fs1_c01111{font-size:108.000000px;}
.fs4_c01111{font-size:144.000000px;}
.fs3_c01111{font-size:288.000000px;}
.fs0_c01111{font-size:324.000000px;}
.y0_c01111{bottom:0.000000px;}
.y7_c01111{bottom:13.451250px;}
.yb_c01111{bottom:74.263200px;}
.y8_c01111{bottom:78.259200px;}
.yd_c01111{bottom:159.934200px;}
.ye_c01111{bottom:298.768200px;}
.y9_c01111{bottom:347.449200px;}
.ya_c01111{bottom:402.745200px;}
.yc_c01111{bottom:421.996200px;}
.y2_c01111{bottom:551.249100px;}
.y6_c01111{bottom:579.210750px;}
.y1_c01111{bottom:608.734950px;}
.y5_c01111{bottom:655.727400px;}
.y4_c01111{bottom:697.800000px;}
.y3_c01111{bottom:704.395050px;}
.h3_c01111{height:52.453125px;}
.h7_c01111{height:61.154297px;}
.h2_c01111{height:78.679688px;}
.h5_c01111{height:104.906250px;}
.h6_c01111{height:130.992188px;}
.h4_c01111{height:261.984375px;}
.h1_c01111{height:294.732422px;}
.h0_c01111{height:810.000000px;}
.w0_c01111{width:1440.000000px;}
.x0_c01111{left:0.000000px;}
.x3_c01111{left:69.299850px;}
.x1_c01111{left:70.710900px;}
.x2_c01111{left:73.394100px;}
.xb_c01111{left:187.041600px;}
.x5_c01111{left:359.193600px;}
.x6_c01111{left:435.009600px;}
.x8_c01111{left:738.030600px;}
.x7_c01111{left:909.993600px;}
.xa_c01111{left:1102.368600px;}
.x9_c01111{left:1244.523600px;}
.x4_c01111{left:1405.095000px;}
@media print{
.v0_c01111{vertical-align:0.000000pt;}
.ls1_c01111{letter-spacing:-8.928000pt;}
.ls5_c01111{letter-spacing:-8.192000pt;}
.ls3_c01111{letter-spacing:-0.384000pt;}
.ls6_c01111{letter-spacing:-0.288000pt;}
.ls4_c01111{letter-spacing:-0.256000pt;}
.ls2_c01111{letter-spacing:0.000000pt;}
.ls0_c01111{letter-spacing:0.480000pt;}
.ws0_c01111{word-spacing:-56.736000pt;}
.ws2_c01111{word-spacing:-29.184000pt;}
.ws7_c01111{word-spacing:-22.368000pt;}
.ws1_c01111{word-spacing:-21.888000pt;}
.ws3_c01111{word-spacing:-21.600000pt;}
.ws8_c01111{word-spacing:-21.504000pt;}
.ws5_c01111{word-spacing:-1.968000pt;}
.wsf_c01111{word-spacing:0.000000pt;}
.ws9_c01111{word-spacing:0.460800pt;}
.wsd_c01111{word-spacing:0.512000pt;}
.wsc_c01111{word-spacing:0.704000pt;}
.ws6_c01111{word-spacing:0.883200pt;}
.wsb_c01111{word-spacing:0.960000pt;}
.wsa_c01111{word-spacing:1.171200pt;}
.ws4_c01111{word-spacing:1.190400pt;}
.wse_c01111{word-spacing:8.192000pt;}
._2_c01111{margin-left:-11.628800pt;}
._1_c01111{margin-left:-6.579200pt;}
._4_c01111{margin-left:-4.313600pt;}
._3_c01111{margin-left:-0.934400pt;}
._0_c01111{width:1.411200pt;}
._6_c01111{width:20.690133pt;}
._5_c01111{width:22.656000pt;}
._7_c01111{width:24.166400pt;}
.fs2_c01111{font-size:64.000000pt;}
.fs5_c01111{font-size:74.666667pt;}
.fs1_c01111{font-size:96.000000pt;}
.fs4_c01111{font-size:128.000000pt;}
.fs3_c01111{font-size:256.000000pt;}
.fs0_c01111{font-size:288.000000pt;}
.y0_c01111{bottom:0.000000pt;}
.y7_c01111{bottom:11.956667pt;}
.yb_c01111{bottom:66.011733pt;}
.y8_c01111{bottom:69.563733pt;}
.yd_c01111{bottom:142.163733pt;}
.ye_c01111{bottom:265.571733pt;}
.y9_c01111{bottom:308.843733pt;}
.ya_c01111{bottom:357.995733pt;}
.yc_c01111{bottom:375.107733pt;}
.y2_c01111{bottom:489.999200pt;}
.y6_c01111{bottom:514.854000pt;}
.y1_c01111{bottom:541.097733pt;}
.y5_c01111{bottom:582.868800pt;}
.y4_c01111{bottom:620.266667pt;}
.y3_c01111{bottom:626.128933pt;}
.h3_c01111{height:46.625000pt;}
.h7_c01111{height:54.359375pt;}
.h2_c01111{height:69.937500pt;}
.h5_c01111{height:93.250000pt;}
.h6_c01111{height:116.437500pt;}
.h4_c01111{height:232.875000pt;}
.h1_c01111{height:261.984375pt;}
.h0_c01111{height:720.000000pt;}
.w0_c01111{width:1280.000000pt;}
.x0_c01111{left:0.000000pt;}
.x3_c01111{left:61.599867pt;}
.x1_c01111{left:62.854133pt;}
.x2_c01111{left:65.239200pt;}
.xb_c01111{left:166.259200pt;}
.x5_c01111{left:319.283200pt;}
.x6_c01111{left:386.675200pt;}
.x8_c01111{left:656.027200pt;}
.x7_c01111{left:808.883200pt;}
.xa_c01111{left:979.883200pt;}
.x9_c01111{left:1106.243200pt;}
.x4_c01111{left:1248.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5b0bdbc29536cc9451a6f7f8.woff2')format("woff");}.ff1_c01112{font-family:ff1_c01112;line-height:1.120117;font-style:normal;font-weight:normal;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_3000ce30b75c9bf790075c50.woff2')format("woff");}.ff2_c01112{font-family:ff2_c01112;line-height:0.938965;font-style:normal;font-weight:normal;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_65b2627fb4cbe890320e0e1e.woff2')format("woff");}.ff3_c01112{font-family:ff3_c01112;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c01112{vertical-align:-87.912000px;}
.v0_c01112{vertical-align:0.000000px;}
.ls1_c01112{letter-spacing:-10.044000px;}
.ls5_c01112{letter-spacing:-9.216000px;}
.ls3_c01112{letter-spacing:-0.432000px;}
.ls4_c01112{letter-spacing:-0.288000px;}
.ls7_c01112{letter-spacing:-0.216000px;}
.ls2_c01112{letter-spacing:0.000000px;}
.ls8_c01112{letter-spacing:0.108000px;}
.ls6_c01112{letter-spacing:0.540000px;}
.ls0_c01112{letter-spacing:191.052000px;}
.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:-63.828000px;}
.ws1_c01112{word-spacing:-24.624000px;}
.wsc_c01112{word-spacing:-24.192000px;}
.ws2_c01112{word-spacing:-6.768000px;}
.ws5_c01112{word-spacing:-0.712800px;}
.ws14_c01112{word-spacing:-0.680400px;}
.ws1c_c01112{word-spacing:-0.540000px;}
.ws15_c01112{word-spacing:-0.205200px;}
.ws16_c01112{word-spacing:-0.086400px;}
.wsa_c01112{word-spacing:-0.075600px;}
.ws10_c01112{word-spacing:-0.054000px;}
.ws1b_c01112{word-spacing:0.000000px;}
.wsd_c01112{word-spacing:0.064800px;}
.ws1e_c01112{word-spacing:0.216000px;}
.ws1d_c01112{word-spacing:0.432000px;}
.wsb_c01112{word-spacing:0.507600px;}
.ws1f_c01112{word-spacing:0.540000px;}
.ws19_c01112{word-spacing:0.576000px;}
.ws18_c01112{word-spacing:0.792000px;}
.ws11_c01112{word-spacing:0.907200px;}
.wsf_c01112{word-spacing:1.080000px;}
.ws6_c01112{word-spacing:1.306800px;}
.ws8_c01112{word-spacing:1.328400px;}
.wse_c01112{word-spacing:1.382400px;}
.ws13_c01112{word-spacing:1.414800px;}
.ws7_c01112{word-spacing:1.630800px;}
.ws12_c01112{word-spacing:1.900800px;}
.ws4_c01112{word-spacing:2.214000px;}
.ws9_c01112{word-spacing:2.538000px;}
.ws3_c01112{word-spacing:2.754000px;}
.ws17_c01112{word-spacing:3.002400px;}
.ws1a_c01112{word-spacing:9.216000px;}
._2_c01112{margin-left:-13.082400px;}
._6_c01112{margin-left:-9.277200px;}
._1_c01112{margin-left:-7.401600px;}
._4_c01112{margin-left:-4.852800px;}
._3_c01112{margin-left:-1.051200px;}
._0_c01112{width:1.587600px;}
._5_c01112{width:25.488000px;}
._7_c01112{width:26.881200px;}
.fc4_c01112{color:transparent;}
.fc3_c01112{color:rgb(89,89,89);}
.fc2_c01112{color:rgb(64,64,64);}
.fc1_c01112{color:rgb(0,0,0);}
.fc0_c01112{color:rgb(255,255,255);}
.fs2_c01112{font-size:72.000000px;}
.fs5_c01112{font-size:84.000000px;}
.fs1_c01112{font-size:108.000000px;}
.fs4_c01112{font-size:144.000000px;}
.fs3_c01112{font-size:288.000000px;}
.fs0_c01112{font-size:324.000000px;}
.y0_c01112{bottom:0.000000px;}
.y7_c01112{bottom:13.451250px;}
.yb_c01112{bottom:38.268600px;}
.yc_c01112{bottom:105.147600px;}
.y8_c01112{bottom:324.387600px;}
.ya_c01112{bottom:363.915600px;}
.y9_c01112{bottom:393.021600px;}
.y2_c01112{bottom:551.249100px;}
.y6_c01112{bottom:585.721950px;}
.y1_c01112{bottom:608.734950px;}
.y5_c01112{bottom:655.727400px;}
.y4_c01112{bottom:697.800000px;}
.y3_c01112{bottom:704.395050px;}
.h3_c01112{height:52.453125px;}
.h7_c01112{height:61.154297px;}
.h2_c01112{height:78.679688px;}
.h5_c01112{height:104.906250px;}
.h6_c01112{height:130.992188px;}
.h4_c01112{height:261.984375px;}
.h1_c01112{height:294.732422px;}
.h0_c01112{height:810.000000px;}
.w0_c01112{width:1440.000000px;}
.x0_c01112{left:0.000000px;}
.x5_c01112{left:10.706100px;}
.x7_c01112{left:23.261100px;}
.x3_c01112{left:69.300000px;}
.x1_c01112{left:70.710900px;}
.x2_c01112{left:73.394100px;}
.x6_c01112{left:471.542100px;}
.x8_c01112{left:839.417100px;}
.x4_c01112{left:1405.095000px;}
@media print{
.v1_c01112{vertical-align:-78.144000pt;}
.v0_c01112{vertical-align:0.000000pt;}
.ls1_c01112{letter-spacing:-8.928000pt;}
.ls5_c01112{letter-spacing:-8.192000pt;}
.ls3_c01112{letter-spacing:-0.384000pt;}
.ls4_c01112{letter-spacing:-0.256000pt;}
.ls7_c01112{letter-spacing:-0.192000pt;}
.ls2_c01112{letter-spacing:0.000000pt;}
.ls8_c01112{letter-spacing:0.096000pt;}
.ls6_c01112{letter-spacing:0.480000pt;}
.ls0_c01112{letter-spacing:169.824000pt;}
.ws0_c01112{word-spacing:-56.736000pt;}
.ws1_c01112{word-spacing:-21.888000pt;}
.wsc_c01112{word-spacing:-21.504000pt;}
.ws2_c01112{word-spacing:-6.016000pt;}
.ws5_c01112{word-spacing:-0.633600pt;}
.ws14_c01112{word-spacing:-0.604800pt;}
.ws1c_c01112{word-spacing:-0.480000pt;}
.ws15_c01112{word-spacing:-0.182400pt;}
.ws16_c01112{word-spacing:-0.076800pt;}
.wsa_c01112{word-spacing:-0.067200pt;}
.ws10_c01112{word-spacing:-0.048000pt;}
.ws1b_c01112{word-spacing:0.000000pt;}
.wsd_c01112{word-spacing:0.057600pt;}
.ws1e_c01112{word-spacing:0.192000pt;}
.ws1d_c01112{word-spacing:0.384000pt;}
.wsb_c01112{word-spacing:0.451200pt;}
.ws1f_c01112{word-spacing:0.480000pt;}
.ws19_c01112{word-spacing:0.512000pt;}
.ws18_c01112{word-spacing:0.704000pt;}
.ws11_c01112{word-spacing:0.806400pt;}
.wsf_c01112{word-spacing:0.960000pt;}
.ws6_c01112{word-spacing:1.161600pt;}
.ws8_c01112{word-spacing:1.180800pt;}
.wse_c01112{word-spacing:1.228800pt;}
.ws13_c01112{word-spacing:1.257600pt;}
.ws7_c01112{word-spacing:1.449600pt;}
.ws12_c01112{word-spacing:1.689600pt;}
.ws4_c01112{word-spacing:1.968000pt;}
.ws9_c01112{word-spacing:2.256000pt;}
.ws3_c01112{word-spacing:2.448000pt;}
.ws17_c01112{word-spacing:2.668800pt;}
.ws1a_c01112{word-spacing:8.192000pt;}
._2_c01112{margin-left:-11.628800pt;}
._6_c01112{margin-left:-8.246400pt;}
._1_c01112{margin-left:-6.579200pt;}
._4_c01112{margin-left:-4.313600pt;}
._3_c01112{margin-left:-0.934400pt;}
._0_c01112{width:1.411200pt;}
._5_c01112{width:22.656000pt;}
._7_c01112{width:23.894400pt;}
.fs2_c01112{font-size:64.000000pt;}
.fs5_c01112{font-size:74.666667pt;}
.fs1_c01112{font-size:96.000000pt;}
.fs4_c01112{font-size:128.000000pt;}
.fs3_c01112{font-size:256.000000pt;}
.fs0_c01112{font-size:288.000000pt;}
.y0_c01112{bottom:0.000000pt;}
.y7_c01112{bottom:11.956667pt;}
.yb_c01112{bottom:34.016533pt;}
.yc_c01112{bottom:93.464533pt;}
.y8_c01112{bottom:288.344533pt;}
.ya_c01112{bottom:323.480533pt;}
.y9_c01112{bottom:349.352533pt;}
.y2_c01112{bottom:489.999200pt;}
.y6_c01112{bottom:520.641733pt;}
.y1_c01112{bottom:541.097733pt;}
.y5_c01112{bottom:582.868800pt;}
.y4_c01112{bottom:620.266667pt;}
.y3_c01112{bottom:626.128933pt;}
.h3_c01112{height:46.625000pt;}
.h7_c01112{height:54.359375pt;}
.h2_c01112{height:69.937500pt;}
.h5_c01112{height:93.250000pt;}
.h6_c01112{height:116.437500pt;}
.h4_c01112{height:232.875000pt;}
.h1_c01112{height:261.984375pt;}
.h0_c01112{height:720.000000pt;}
.w0_c01112{width:1280.000000pt;}
.x0_c01112{left:0.000000pt;}
.x5_c01112{left:9.516533pt;}
.x7_c01112{left:20.676533pt;}
.x3_c01112{left:61.600000pt;}
.x1_c01112{left:62.854133pt;}
.x2_c01112{left:65.239200pt;}
.x6_c01112{left:419.148533pt;}
.x8_c01112{left:746.148533pt;}
.x4_c01112{left:1248.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5723f69b34708fe809d09d40.woff2')format("woff");}.ff1_c01113{font-family:ff1_c01113;line-height:1.120117;font-style:normal;font-weight:normal;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_5ad08881a466354526300c5e.woff2')format("woff");}.ff2_c01113{font-family:ff2_c01113;line-height:0.938965;font-style:normal;font-weight:normal;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_5abb05465008bdd820f88099.woff2')format("woff");}.ff3_c01113{font-family:ff3_c01113;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c01113{letter-spacing:-10.080000px;}
.ls3_c01113{letter-spacing:-10.044000px;}
.lsc_c01113{letter-spacing:-9.720000px;}
.ls7_c01113{letter-spacing:-9.216000px;}
.ls5_c01113{letter-spacing:-0.432000px;}
.lsb_c01113{letter-spacing:-0.324000px;}
.ls6_c01113{letter-spacing:-0.288000px;}
.lsa_c01113{letter-spacing:-0.216000px;}
.ls9_c01113{letter-spacing:-0.108000px;}
.ls4_c01113{letter-spacing:0.000000px;}
.lse_c01113{letter-spacing:0.108000px;}
.lsd_c01113{letter-spacing:0.540000px;}
.ls2_c01113{letter-spacing:22.788000px;}
.ls0_c01113{letter-spacing:25.164000px;}
.ls1_c01113{letter-spacing:97.848000px;}
.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:-63.828000px;}
.ws1_c01113{word-spacing:-24.624000px;}
.ws16_c01113{word-spacing:-24.192000px;}
.ws4_c01113{word-spacing:-23.616000px;}
.wsc_c01113{word-spacing:-4.914000px;}
.ws13_c01113{word-spacing:-4.352400px;}
.ws15_c01113{word-spacing:-0.874800px;}
.ws1d_c01113{word-spacing:-0.648000px;}
.ws8_c01113{word-spacing:-0.561600px;}
.ws1e_c01113{word-spacing:-0.540000px;}
.wse_c01113{word-spacing:-0.496800px;}
.ws1b_c01113{word-spacing:0.000000px;}
.ws5_c01113{word-spacing:0.151200px;}
.ws1a_c01113{word-spacing:0.216000px;}
.ws11_c01113{word-spacing:0.410400px;}
.ws1f_c01113{word-spacing:0.432000px;}
.ws7_c01113{word-spacing:0.507600px;}
.ws1c_c01113{word-spacing:0.540000px;}
.ws18_c01113{word-spacing:0.576000px;}
.ws14_c01113{word-spacing:0.691200px;}
.wsd_c01113{word-spacing:0.756000px;}
.ws17_c01113{word-spacing:0.792000px;}
.ws6_c01113{word-spacing:0.907200px;}
.wsa_c01113{word-spacing:1.522800px;}
.ws19_c01113{word-spacing:1.584000px;}
.ws12_c01113{word-spacing:1.620000px;}
.ws10_c01113{word-spacing:1.674000px;}
.ws9_c01113{word-spacing:1.933200px;}
.wsb_c01113{word-spacing:1.944000px;}
.ws3_c01113{word-spacing:4.507200px;}
.ws2_c01113{word-spacing:4.982400px;}
.wsf_c01113{word-spacing:19.364400px;}
._2_c01113{margin-left:-13.082400px;}
._1_c01113{margin-left:-7.401600px;}
._9_c01113{margin-left:-2.786400px;}
._4_c01113{margin-left:-1.177200px;}
._0_c01113{width:1.587600px;}
._6_c01113{width:9.158400px;}
._7_c01113{width:10.357200px;}
._5_c01113{width:25.077600px;}
._3_c01113{width:26.114400px;}
._8_c01113{width:27.248400px;}
.fc4_c01113{color:transparent;}
.fc3_c01113{color:rgb(89,89,89);}
.fc2_c01113{color:rgb(64,64,64);}
.fc1_c01113{color:rgb(0,0,0);}
.fc0_c01113{color:rgb(255,255,255);}
.fs2_c01113{font-size:72.000000px;}
.fs5_c01113{font-size:84.000000px;}
.fs1_c01113{font-size:108.000000px;}
.fs4_c01113{font-size:144.000000px;}
.fs3_c01113{font-size:288.000000px;}
.fs0_c01113{font-size:324.000000px;}
.y0_c01113{bottom:0.000000px;}
.yf_c01113{bottom:13.451250px;}
.ye_c01113{bottom:124.809000px;}
.yd_c01113{bottom:168.900000px;}
.yc_c01113{bottom:213.000000px;}
.yb_c01113{bottom:301.212000px;}
.ya_c01113{bottom:345.600000px;}
.y9_c01113{bottom:389.700000px;}
.y8_c01113{bottom:477.909000px;}
.y7_c01113{bottom:522.000000px;}
.y2_c01113{bottom:551.249100px;}
.y6_c01113{bottom:566.400000px;}
.y1_c01113{bottom:608.734950px;}
.y5_c01113{bottom:655.727400px;}
.y4_c01113{bottom:697.800000px;}
.y3_c01113{bottom:704.395050px;}
.h3_c01113{height:52.453125px;}
.h7_c01113{height:61.154297px;}
.h2_c01113{height:78.679688px;}
.h6_c01113{height:98.244141px;}
.h5_c01113{height:104.906250px;}
.h4_c01113{height:261.984375px;}
.h1_c01113{height:294.732422px;}
.h0_c01113{height:810.000000px;}
.w0_c01113{width:1440.000000px;}
.x0_c01113{left:0.000000px;}
.x4_c01113{left:34.081650px;}
.x3_c01113{left:69.299850px;}
.x1_c01113{left:70.710900px;}
.x2_c01113{left:73.394100px;}
.x5_c01113{left:1405.095000px;}
@media print{
.v0_c01113{vertical-align:0.000000pt;}
.ls8_c01113{letter-spacing:-8.960000pt;}
.ls3_c01113{letter-spacing:-8.928000pt;}
.lsc_c01113{letter-spacing:-8.640000pt;}
.ls7_c01113{letter-spacing:-8.192000pt;}
.ls5_c01113{letter-spacing:-0.384000pt;}
.lsb_c01113{letter-spacing:-0.288000pt;}
.ls6_c01113{letter-spacing:-0.256000pt;}
.lsa_c01113{letter-spacing:-0.192000pt;}
.ls9_c01113{letter-spacing:-0.096000pt;}
.ls4_c01113{letter-spacing:0.000000pt;}
.lse_c01113{letter-spacing:0.096000pt;}
.lsd_c01113{letter-spacing:0.480000pt;}
.ls2_c01113{letter-spacing:20.256000pt;}
.ls0_c01113{letter-spacing:22.368000pt;}
.ls1_c01113{letter-spacing:86.976000pt;}
.ws0_c01113{word-spacing:-56.736000pt;}
.ws1_c01113{word-spacing:-21.888000pt;}
.ws16_c01113{word-spacing:-21.504000pt;}
.ws4_c01113{word-spacing:-20.992000pt;}
.wsc_c01113{word-spacing:-4.368000pt;}
.ws13_c01113{word-spacing:-3.868800pt;}
.ws15_c01113{word-spacing:-0.777600pt;}
.ws1d_c01113{word-spacing:-0.576000pt;}
.ws8_c01113{word-spacing:-0.499200pt;}
.ws1e_c01113{word-spacing:-0.480000pt;}
.wse_c01113{word-spacing:-0.441600pt;}
.ws1b_c01113{word-spacing:0.000000pt;}
.ws5_c01113{word-spacing:0.134400pt;}
.ws1a_c01113{word-spacing:0.192000pt;}
.ws11_c01113{word-spacing:0.364800pt;}
.ws1f_c01113{word-spacing:0.384000pt;}
.ws7_c01113{word-spacing:0.451200pt;}
.ws1c_c01113{word-spacing:0.480000pt;}
.ws18_c01113{word-spacing:0.512000pt;}
.ws14_c01113{word-spacing:0.614400pt;}
.wsd_c01113{word-spacing:0.672000pt;}
.ws17_c01113{word-spacing:0.704000pt;}
.ws6_c01113{word-spacing:0.806400pt;}
.wsa_c01113{word-spacing:1.353600pt;}
.ws19_c01113{word-spacing:1.408000pt;}
.ws12_c01113{word-spacing:1.440000pt;}
.ws10_c01113{word-spacing:1.488000pt;}
.ws9_c01113{word-spacing:1.718400pt;}
.wsb_c01113{word-spacing:1.728000pt;}
.ws3_c01113{word-spacing:4.006400pt;}
.ws2_c01113{word-spacing:4.428800pt;}
.wsf_c01113{word-spacing:17.212800pt;}
._2_c01113{margin-left:-11.628800pt;}
._1_c01113{margin-left:-6.579200pt;}
._9_c01113{margin-left:-2.476800pt;}
._4_c01113{margin-left:-1.046400pt;}
._0_c01113{width:1.411200pt;}
._6_c01113{width:8.140800pt;}
._7_c01113{width:9.206400pt;}
._5_c01113{width:22.291200pt;}
._3_c01113{width:23.212800pt;}
._8_c01113{width:24.220800pt;}
.fs2_c01113{font-size:64.000000pt;}
.fs5_c01113{font-size:74.666667pt;}
.fs1_c01113{font-size:96.000000pt;}
.fs4_c01113{font-size:128.000000pt;}
.fs3_c01113{font-size:256.000000pt;}
.fs0_c01113{font-size:288.000000pt;}
.y0_c01113{bottom:0.000000pt;}
.yf_c01113{bottom:11.956667pt;}
.ye_c01113{bottom:110.941333pt;}
.yd_c01113{bottom:150.133333pt;}
.yc_c01113{bottom:189.333333pt;}
.yb_c01113{bottom:267.744000pt;}
.ya_c01113{bottom:307.200000pt;}
.y9_c01113{bottom:346.400000pt;}
.y8_c01113{bottom:424.808000pt;}
.y7_c01113{bottom:464.000000pt;}
.y2_c01113{bottom:489.999200pt;}
.y6_c01113{bottom:503.466667pt;}
.y1_c01113{bottom:541.097733pt;}
.y5_c01113{bottom:582.868800pt;}
.y4_c01113{bottom:620.266667pt;}
.y3_c01113{bottom:626.128933pt;}
.h3_c01113{height:46.625000pt;}
.h7_c01113{height:54.359375pt;}
.h2_c01113{height:69.937500pt;}
.h6_c01113{height:87.328125pt;}
.h5_c01113{height:93.250000pt;}
.h4_c01113{height:232.875000pt;}
.h1_c01113{height:261.984375pt;}
.h0_c01113{height:720.000000pt;}
.w0_c01113{width:1280.000000pt;}
.x0_c01113{left:0.000000pt;}
.x4_c01113{left:30.294800pt;}
.x3_c01113{left:61.599867pt;}
.x1_c01113{left:62.854133pt;}
.x2_c01113{left:65.239200pt;}
.x5_c01113{left:1248.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5516d3025830f4bd2c529eb7.woff2')format("woff");}.ff1_c01114{font-family:ff1_c01114;line-height:1.120117;font-style:normal;font-weight:normal;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_793596942c8457c133372c1b.woff2')format("woff");}.ff2_c01114{font-family:ff2_c01114;line-height:0.938965;font-style:normal;font-weight:normal;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_6e2a5ee443d7be6c45182139.woff2')format("woff");}.ff3_c01114{font-family:ff3_c01114;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01114;src:url('chunks/assets/font_ddc50cf3771e36fc776aa042.woff2')format("woff");}.ff4_c01114{font-family:ff4_c01114;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c01114{letter-spacing:-10.080000px;}
.ls3_c01114{letter-spacing:-10.044000px;}
.ls7_c01114{letter-spacing:-9.648000px;}
.ls9_c01114{letter-spacing:-9.216000px;}
.ls5_c01114{letter-spacing:-0.432000px;}
.ls6_c01114{letter-spacing:-0.288000px;}
.lsa_c01114{letter-spacing:-0.240000px;}
.ls4_c01114{letter-spacing:0.000000px;}
.ls2_c01114{letter-spacing:0.288000px;}
.ls1_c01114{letter-spacing:0.480000px;}
.ls0_c01114{letter-spacing:63.600000px;}
.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:-63.828000px;}
.ws6_c01114{word-spacing:-27.360000px;}
.ws1_c01114{word-spacing:-24.624000px;}
.wsf_c01114{word-spacing:-2.640000px;}
.ws7_c01114{word-spacing:-2.280000px;}
.wsd_c01114{word-spacing:-1.440000px;}
.wse_c01114{word-spacing:-0.720000px;}
.wsc_c01114{word-spacing:-0.240000px;}
.wsb_c01114{word-spacing:0.000000px;}
.ws9_c01114{word-spacing:0.576000px;}
.ws8_c01114{word-spacing:0.792000px;}
.ws2_c01114{word-spacing:3.211200px;}
.ws4_c01114{word-spacing:4.521600px;}
.ws3_c01114{word-spacing:5.616000px;}
.ws5_c01114{word-spacing:6.048000px;}
.wsa_c01114{word-spacing:10.080000px;}
._2_c01114{margin-left:-13.082400px;}
._1_c01114{margin-left:-7.401600px;}
._4_c01114{margin-left:-6.195600px;}
._5_c01114{margin-left:-3.970800px;}
._6_c01114{margin-left:-2.590800px;}
._3_c01114{margin-left:-1.429200px;}
._0_c01114{width:1.587600px;}
.fc3_c01114{color:rgb(89,89,89);}
.fc2_c01114{color:rgb(64,64,64);}
.fc1_c01114{color:rgb(0,0,0);}
.fc0_c01114{color:rgb(255,255,255);}
.fs2_c01114{font-size:72.000000px;}
.fs6_c01114{font-size:84.000000px;}
.fs1_c01114{font-size:108.000000px;}
.fs5_c01114{font-size:120.000000px;}
.fs4_c01114{font-size:144.000000px;}
.fs3_c01114{font-size:288.000000px;}
.fs0_c01114{font-size:324.000000px;}
.y0_c01114{bottom:0.000000px;}
.yd_c01114{bottom:13.451250px;}
.ye_c01114{bottom:81.672600px;}
.yc_c01114{bottom:147.008850px;}
.yb_c01114{bottom:216.008850px;}
.ya_c01114{bottom:285.008850px;}
.y9_c01114{bottom:354.008850px;}
.y8_c01114{bottom:423.008850px;}
.y7_c01114{bottom:492.008850px;}
.y2_c01114{bottom:551.249100px;}
.y6_c01114{bottom:561.008850px;}
.y1_c01114{bottom:608.734950px;}
.y5_c01114{bottom:655.727400px;}
.y4_c01114{bottom:697.800000px;}
.y3_c01114{bottom:704.395050px;}
.h3_c01114{height:52.453125px;}
.h7_c01114{height:61.154297px;}
.h2_c01114{height:78.679688px;}
.h6_c01114{height:87.421875px;}
.h5_c01114{height:104.906250px;}
.h8_c01114{height:130.992188px;}
.h4_c01114{height:261.984375px;}
.h1_c01114{height:294.732422px;}
.h0_c01114{height:810.000000px;}
.w0_c01114{width:1440.000000px;}
.x0_c01114{left:0.000000px;}
.x3_c01114{left:69.299850px;}
.x1_c01114{left:70.710900px;}
.x2_c01114{left:73.394100px;}
.x5_c01114{left:328.574850px;}
.x4_c01114{left:1405.095000px;}
@media print{
.v0_c01114{vertical-align:0.000000pt;}
.ls8_c01114{letter-spacing:-8.960000pt;}
.ls3_c01114{letter-spacing:-8.928000pt;}
.ls7_c01114{letter-spacing:-8.576000pt;}
.ls9_c01114{letter-spacing:-8.192000pt;}
.ls5_c01114{letter-spacing:-0.384000pt;}
.ls6_c01114{letter-spacing:-0.256000pt;}
.lsa_c01114{letter-spacing:-0.213333pt;}
.ls4_c01114{letter-spacing:0.000000pt;}
.ls2_c01114{letter-spacing:0.256000pt;}
.ls1_c01114{letter-spacing:0.426667pt;}
.ls0_c01114{letter-spacing:56.533333pt;}
.ws0_c01114{word-spacing:-56.736000pt;}
.ws6_c01114{word-spacing:-24.320000pt;}
.ws1_c01114{word-spacing:-21.888000pt;}
.wsf_c01114{word-spacing:-2.346667pt;}
.ws7_c01114{word-spacing:-2.026667pt;}
.wsd_c01114{word-spacing:-1.280000pt;}
.wse_c01114{word-spacing:-0.640000pt;}
.wsc_c01114{word-spacing:-0.213333pt;}
.wsb_c01114{word-spacing:0.000000pt;}
.ws9_c01114{word-spacing:0.512000pt;}
.ws8_c01114{word-spacing:0.704000pt;}
.ws2_c01114{word-spacing:2.854400pt;}
.ws4_c01114{word-spacing:4.019200pt;}
.ws3_c01114{word-spacing:4.992000pt;}
.ws5_c01114{word-spacing:5.376000pt;}
.wsa_c01114{word-spacing:8.960000pt;}
._2_c01114{margin-left:-11.628800pt;}
._1_c01114{margin-left:-6.579200pt;}
._4_c01114{margin-left:-5.507200pt;}
._5_c01114{margin-left:-3.529600pt;}
._6_c01114{margin-left:-2.302933pt;}
._3_c01114{margin-left:-1.270400pt;}
._0_c01114{width:1.411200pt;}
.fs2_c01114{font-size:64.000000pt;}
.fs6_c01114{font-size:74.666667pt;}
.fs1_c01114{font-size:96.000000pt;}
.fs5_c01114{font-size:106.666667pt;}
.fs4_c01114{font-size:128.000000pt;}
.fs3_c01114{font-size:256.000000pt;}
.fs0_c01114{font-size:288.000000pt;}
.y0_c01114{bottom:0.000000pt;}
.yd_c01114{bottom:11.956667pt;}
.ye_c01114{bottom:72.597867pt;}
.yc_c01114{bottom:130.674533pt;}
.yb_c01114{bottom:192.007867pt;}
.ya_c01114{bottom:253.341200pt;}
.y9_c01114{bottom:314.674533pt;}
.y8_c01114{bottom:376.007867pt;}
.y7_c01114{bottom:437.341200pt;}
.y2_c01114{bottom:489.999200pt;}
.y6_c01114{bottom:498.674533pt;}
.y1_c01114{bottom:541.097733pt;}
.y5_c01114{bottom:582.868800pt;}
.y4_c01114{bottom:620.266667pt;}
.y3_c01114{bottom:626.128933pt;}
.h3_c01114{height:46.625000pt;}
.h7_c01114{height:54.359375pt;}
.h2_c01114{height:69.937500pt;}
.h6_c01114{height:77.708333pt;}
.h5_c01114{height:93.250000pt;}
.h8_c01114{height:116.437500pt;}
.h4_c01114{height:232.875000pt;}
.h1_c01114{height:261.984375pt;}
.h0_c01114{height:720.000000pt;}
.w0_c01114{width:1280.000000pt;}
.x0_c01114{left:0.000000pt;}
.x3_c01114{left:61.599867pt;}
.x1_c01114{left:62.854133pt;}
.x2_c01114{left:65.239200pt;}
.x5_c01114{left:292.066533pt;}
.x4_c01114{left:1248.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6b6453a1bbf16a6d17310ab8.woff2')format("woff");}.ff1_c01115{font-family:ff1_c01115;line-height:1.120117;font-style:normal;font-weight:normal;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_1ad02f049467c63fbc8a09b9.woff2')format("woff");}.ff2_c01115{font-family:ff2_c01115;line-height:0.938965;font-style:normal;font-weight:normal;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_671c007b8d91be8b2c2fab9b.woff2')format("woff");}.ff3_c01115{font-family:ff3_c01115;line-height:0.765625;font-style:normal;font-weight:normal;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_3ba57e860f8b4f7dcf64777f.woff2')format("woff");}.ff4_c01115{font-family:ff4_c01115;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c01115{letter-spacing:-10.044000px;}
.ls8_c01115{letter-spacing:-9.648000px;}
.ls9_c01115{letter-spacing:-9.216000px;}
.lsd_c01115{letter-spacing:-6.120000px;}
.ls6_c01115{letter-spacing:-0.432000px;}
.lsb_c01115{letter-spacing:-0.360000px;}
.ls7_c01115{letter-spacing:-0.288000px;}
.lsc_c01115{letter-spacing:-0.240000px;}
.lsa_c01115{letter-spacing:-0.120000px;}
.ls5_c01115{letter-spacing:0.000000px;}
.ls3_c01115{letter-spacing:0.240000px;}
.ls1_c01115{letter-spacing:0.480000px;}
.ls2_c01115{letter-spacing:107.040000px;}
.ls0_c01115{letter-spacing:161.040000px;}
.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:-63.828000px;}
.ws4_c01115{word-spacing:-27.840000px;}
.ws3_c01115{word-spacing:-27.240000px;}
.ws6_c01115{word-spacing:-27.120000px;}
.ws1_c01115{word-spacing:-24.624000px;}
.ws2_c01115{word-spacing:-23.616000px;}
.ws5_c01115{word-spacing:-3.840000px;}
.ws8_c01115{word-spacing:-2.880000px;}
.ws14_c01115{word-spacing:-2.640000px;}
.wsb_c01115{word-spacing:-1.680000px;}
.wsc_c01115{word-spacing:-1.200000px;}
.ws9_c01115{word-spacing:-0.960000px;}
.ws16_c01115{word-spacing:-0.840000px;}
.wsd_c01115{word-spacing:-0.720000px;}
.ws15_c01115{word-spacing:-0.480000px;}
.ws13_c01115{word-spacing:-0.240000px;}
.ws11_c01115{word-spacing:0.000000px;}
.ws12_c01115{word-spacing:0.360000px;}
.wsf_c01115{word-spacing:0.576000px;}
.wse_c01115{word-spacing:0.792000px;}
.wsa_c01115{word-spacing:1.080000px;}
.ws10_c01115{word-spacing:9.648000px;}
.ws7_c01115{word-spacing:11.760000px;}
._2_c01115{margin-left:-13.082400px;}
._1_c01115{margin-left:-7.401600px;}
._4_c01115{margin-left:-3.000000px;}
._3_c01115{margin-left:-1.242000px;}
._0_c01115{width:1.587600px;}
._5_c01115{width:6.664800px;}
.fc4_c01115{color:transparent;}
.fc3_c01115{color:rgb(89,89,89);}
.fc2_c01115{color:rgb(64,64,64);}
.fc1_c01115{color:rgb(0,0,0);}
.fc0_c01115{color:rgb(255,255,255);}
.fs2_c01115{font-size:72.000000px;}
.fs6_c01115{font-size:84.000000px;}
.fs1_c01115{font-size:108.000000px;}
.fs5_c01115{font-size:120.000000px;}
.fs4_c01115{font-size:144.000000px;}
.fs3_c01115{font-size:288.000000px;}
.fs0_c01115{font-size:324.000000px;}
.y0_c01115{bottom:0.000000px;}
.y8_c01115{bottom:13.451250px;}
.yd_c01115{bottom:81.343950px;}
.yc_c01115{bottom:165.763950px;}
.yb_c01115{bottom:250.183950px;}
.ya_c01115{bottom:314.525400px;}
.y7_c01115{bottom:344.680200px;}
.y9_c01115{bottom:361.925400px;}
.y6_c01115{bottom:406.780200px;}
.ye_c01115{bottom:535.061700px;}
.y2_c01115{bottom:551.249100px;}
.y1_c01115{bottom:608.734950px;}
.y5_c01115{bottom:655.727400px;}
.y4_c01115{bottom:697.800000px;}
.y3_c01115{bottom:704.395050px;}
.h3_c01115{height:52.453125px;}
.h8_c01115{height:61.154297px;}
.h2_c01115{height:78.679688px;}
.h9_c01115{height:87.421875px;}
.h7_c01115{height:91.875000px;}
.h5_c01115{height:104.906250px;}
.h6_c01115{height:109.160156px;}
.h4_c01115{height:261.984375px;}
.h1_c01115{height:294.732422px;}
.h0_c01115{height:810.000000px;}
.w0_c01115{width:1440.000000px;}
.x0_c01115{left:0.000000px;}
.x4_c01115{left:60.148050px;}
.x3_c01115{left:69.299850px;}
.x1_c01115{left:70.710900px;}
.x2_c01115{left:73.394100px;}
.x6_c01115{left:361.086600px;}
.x5_c01115{left:1405.095000px;}
@media print{
.v0_c01115{vertical-align:0.000000pt;}
.ls4_c01115{letter-spacing:-8.928000pt;}
.ls8_c01115{letter-spacing:-8.576000pt;}
.ls9_c01115{letter-spacing:-8.192000pt;}
.lsd_c01115{letter-spacing:-5.440000pt;}
.ls6_c01115{letter-spacing:-0.384000pt;}
.lsb_c01115{letter-spacing:-0.320000pt;}
.ls7_c01115{letter-spacing:-0.256000pt;}
.lsc_c01115{letter-spacing:-0.213333pt;}
.lsa_c01115{letter-spacing:-0.106667pt;}
.ls5_c01115{letter-spacing:0.000000pt;}
.ls3_c01115{letter-spacing:0.213333pt;}
.ls1_c01115{letter-spacing:0.426667pt;}
.ls2_c01115{letter-spacing:95.146667pt;}
.ls0_c01115{letter-spacing:143.146667pt;}
.ws0_c01115{word-spacing:-56.736000pt;}
.ws4_c01115{word-spacing:-24.746667pt;}
.ws3_c01115{word-spacing:-24.213333pt;}
.ws6_c01115{word-spacing:-24.106667pt;}
.ws1_c01115{word-spacing:-21.888000pt;}
.ws2_c01115{word-spacing:-20.992000pt;}
.ws5_c01115{word-spacing:-3.413333pt;}
.ws8_c01115{word-spacing:-2.560000pt;}
.ws14_c01115{word-spacing:-2.346667pt;}
.wsb_c01115{word-spacing:-1.493333pt;}
.wsc_c01115{word-spacing:-1.066667pt;}
.ws9_c01115{word-spacing:-0.853333pt;}
.ws16_c01115{word-spacing:-0.746667pt;}
.wsd_c01115{word-spacing:-0.640000pt;}
.ws15_c01115{word-spacing:-0.426667pt;}
.ws13_c01115{word-spacing:-0.213333pt;}
.ws11_c01115{word-spacing:0.000000pt;}
.ws12_c01115{word-spacing:0.320000pt;}
.wsf_c01115{word-spacing:0.512000pt;}
.wse_c01115{word-spacing:0.704000pt;}
.wsa_c01115{word-spacing:0.960000pt;}
.ws10_c01115{word-spacing:8.576000pt;}
.ws7_c01115{word-spacing:10.453333pt;}
._2_c01115{margin-left:-11.628800pt;}
._1_c01115{margin-left:-6.579200pt;}
._4_c01115{margin-left:-2.666667pt;}
._3_c01115{margin-left:-1.104000pt;}
._0_c01115{width:1.411200pt;}
._5_c01115{width:5.924267pt;}
.fs2_c01115{font-size:64.000000pt;}
.fs6_c01115{font-size:74.666667pt;}
.fs1_c01115{font-size:96.000000pt;}
.fs5_c01115{font-size:106.666667pt;}
.fs4_c01115{font-size:128.000000pt;}
.fs3_c01115{font-size:256.000000pt;}
.fs0_c01115{font-size:288.000000pt;}
.y0_c01115{bottom:0.000000pt;}
.y8_c01115{bottom:11.956667pt;}
.yd_c01115{bottom:72.305733pt;}
.yc_c01115{bottom:147.345733pt;}
.yb_c01115{bottom:222.385733pt;}
.ya_c01115{bottom:279.578133pt;}
.y7_c01115{bottom:306.382400pt;}
.y9_c01115{bottom:321.711467pt;}
.y6_c01115{bottom:361.582400pt;}
.ye_c01115{bottom:475.610400pt;}
.y2_c01115{bottom:489.999200pt;}
.y1_c01115{bottom:541.097733pt;}
.y5_c01115{bottom:582.868800pt;}
.y4_c01115{bottom:620.266667pt;}
.y3_c01115{bottom:626.128933pt;}
.h3_c01115{height:46.625000pt;}
.h8_c01115{height:54.359375pt;}
.h2_c01115{height:69.937500pt;}
.h9_c01115{height:77.708333pt;}
.h7_c01115{height:81.666667pt;}
.h5_c01115{height:93.250000pt;}
.h6_c01115{height:97.031250pt;}
.h4_c01115{height:232.875000pt;}
.h1_c01115{height:261.984375pt;}
.h0_c01115{height:720.000000pt;}
.w0_c01115{width:1280.000000pt;}
.x0_c01115{left:0.000000pt;}
.x4_c01115{left:53.464933pt;}
.x3_c01115{left:61.599867pt;}
.x1_c01115{left:62.854133pt;}
.x2_c01115{left:65.239200pt;}
.x6_c01115{left:320.965867pt;}
.x5_c01115{left:1248.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0f19c091a128268d868bd63e.woff2')format("woff");}.ff1_c01116{font-family:ff1_c01116;line-height:1.120117;font-style:normal;font-weight:normal;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_e516cd1bff016d5a95be7fda.woff2')format("woff");}.ff2_c01116{font-family:ff2_c01116;line-height:0.938965;font-style:normal;font-weight:normal;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_cc259767f0b6061b7601e3c0.woff2')format("woff");}.ff3_c01116{font-family:ff3_c01116;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-10.044000px;}
.ls5_c01116{letter-spacing:-9.216000px;}
.ls3_c01116{letter-spacing:-0.432000px;}
.ls7_c01116{letter-spacing:-0.336000px;}
.ls4_c01116{letter-spacing:-0.288000px;}
.ls2_c01116{letter-spacing:0.000000px;}
.ls0_c01116{letter-spacing:0.084000px;}
.ls6_c01116{letter-spacing:0.336000px;}
.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:-63.828000px;}
.ws1_c01116{word-spacing:-24.624000px;}
.ws4_c01116{word-spacing:-19.236000px;}
.wsb_c01116{word-spacing:-3.612000px;}
.wsa_c01116{word-spacing:-3.192000px;}
.wsc_c01116{word-spacing:-2.436000px;}
.ws3_c01116{word-spacing:-2.394000px;}
.wsd_c01116{word-spacing:-1.260000px;}
.ws9_c01116{word-spacing:-0.336000px;}
.ws8_c01116{word-spacing:-0.084000px;}
.ws6_c01116{word-spacing:0.576000px;}
.ws5_c01116{word-spacing:0.792000px;}
.ws7_c01116{word-spacing:1.584000px;}
.ws2_c01116{word-spacing:6.235200px;}
._2_c01116{margin-left:-13.082400px;}
._1_c01116{margin-left:-7.401600px;}
._3_c01116{margin-left:-1.051200px;}
._0_c01116{width:1.587600px;}
._4_c01116{width:3.141600px;}
.fc3_c01116{color:transparent;}
.fc2_c01116{color:rgb(64,64,64);}
.fc1_c01116{color:rgb(0,0,0);}
.fc0_c01116{color:rgb(255,255,255);}
.fs2_c01116{font-size:72.000000px;}
.fs5_c01116{font-size:84.000000px;}
.fs1_c01116{font-size:108.000000px;}
.fs4_c01116{font-size:144.000000px;}
.fs3_c01116{font-size:288.000000px;}
.fs0_c01116{font-size:324.000000px;}
.y0_c01116{bottom:0.000000px;}
.y6_c01116{bottom:13.451250px;}
.yb_c01116{bottom:159.494850px;}
.ya_c01116{bottom:184.694850px;}
.y9_c01116{bottom:363.341850px;}
.y8_c01116{bottom:388.541850px;}
.y2_c01116{bottom:551.249100px;}
.y7_c01116{bottom:561.686850px;}
.y1_c01116{bottom:608.734950px;}
.y5_c01116{bottom:655.727400px;}
.y4_c01116{bottom:697.800000px;}
.y3_c01116{bottom:704.395050px;}
.h3_c01116{height:52.453125px;}
.h6_c01116{height:61.154297px;}
.h7_c01116{height:61.195312px;}
.h2_c01116{height:78.679688px;}
.h5_c01116{height:104.906250px;}
.h4_c01116{height:261.984375px;}
.h1_c01116{height:294.732422px;}
.h0_c01116{height:810.000000px;}
.w0_c01116{width:1440.000000px;}
.x0_c01116{left:0.000000px;}
.x3_c01116{left:69.299850px;}
.x1_c01116{left:70.710900px;}
.x2_c01116{left:73.394100px;}
.x7_c01116{left:664.426200px;}
.x5_c01116{left:883.855200px;}
.x6_c01116{left:986.839200px;}
.x4_c01116{left:1393.395000px;}
@media print{
.v0_c01116{vertical-align:0.000000pt;}
.ls1_c01116{letter-spacing:-8.928000pt;}
.ls5_c01116{letter-spacing:-8.192000pt;}
.ls3_c01116{letter-spacing:-0.384000pt;}
.ls7_c01116{letter-spacing:-0.298667pt;}
.ls4_c01116{letter-spacing:-0.256000pt;}
.ls2_c01116{letter-spacing:0.000000pt;}
.ls0_c01116{letter-spacing:0.074667pt;}
.ls6_c01116{letter-spacing:0.298667pt;}
.ws0_c01116{word-spacing:-56.736000pt;}
.ws1_c01116{word-spacing:-21.888000pt;}
.ws4_c01116{word-spacing:-17.098667pt;}
.wsb_c01116{word-spacing:-3.210667pt;}
.wsa_c01116{word-spacing:-2.837333pt;}
.wsc_c01116{word-spacing:-2.165333pt;}
.ws3_c01116{word-spacing:-2.128000pt;}
.wsd_c01116{word-spacing:-1.120000pt;}
.ws9_c01116{word-spacing:-0.298667pt;}
.ws8_c01116{word-spacing:-0.074667pt;}
.ws6_c01116{word-spacing:0.512000pt;}
.ws5_c01116{word-spacing:0.704000pt;}
.ws7_c01116{word-spacing:1.408000pt;}
.ws2_c01116{word-spacing:5.542400pt;}
._2_c01116{margin-left:-11.628800pt;}
._1_c01116{margin-left:-6.579200pt;}
._3_c01116{margin-left:-0.934400pt;}
._0_c01116{width:1.411200pt;}
._4_c01116{width:2.792533pt;}
.fs2_c01116{font-size:64.000000pt;}
.fs5_c01116{font-size:74.666667pt;}
.fs1_c01116{font-size:96.000000pt;}
.fs4_c01116{font-size:128.000000pt;}
.fs3_c01116{font-size:256.000000pt;}
.fs0_c01116{font-size:288.000000pt;}
.y0_c01116{bottom:0.000000pt;}
.y6_c01116{bottom:11.956667pt;}
.yb_c01116{bottom:141.773200pt;}
.ya_c01116{bottom:164.173200pt;}
.y9_c01116{bottom:322.970533pt;}
.y8_c01116{bottom:345.370533pt;}
.y2_c01116{bottom:489.999200pt;}
.y7_c01116{bottom:499.277200pt;}
.y1_c01116{bottom:541.097733pt;}
.y5_c01116{bottom:582.868800pt;}
.y4_c01116{bottom:620.266667pt;}
.y3_c01116{bottom:626.128933pt;}
.h3_c01116{height:46.625000pt;}
.h6_c01116{height:54.359375pt;}
.h7_c01116{height:54.395833pt;}
.h2_c01116{height:69.937500pt;}
.h5_c01116{height:93.250000pt;}
.h4_c01116{height:232.875000pt;}
.h1_c01116{height:261.984375pt;}
.h0_c01116{height:720.000000pt;}
.w0_c01116{width:1280.000000pt;}
.x0_c01116{left:0.000000pt;}
.x3_c01116{left:61.599867pt;}
.x1_c01116{left:62.854133pt;}
.x2_c01116{left:65.239200pt;}
.x7_c01116{left:590.601067pt;}
.x5_c01116{left:785.649067pt;}
.x6_c01116{left:877.190400pt;}
.x4_c01116{left:1238.573333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c430e55b16db20725da12ef2.woff2')format("woff");}.ff1_c01117{font-family:ff1_c01117;line-height:1.120117;font-style:normal;font-weight:normal;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_f31ab1acc8136c3ad04a37b5.woff2')format("woff");}.ff2_c01117{font-family:ff2_c01117;line-height:0.938965;font-style:normal;font-weight:normal;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_c233bdcf94855c2f1f492997.woff2')format("woff");}.ff3_c01117{font-family:ff3_c01117;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c01117{vertical-align:-76.572000px;}
.v0_c01117{vertical-align:0.000000px;}
.ls0_c01117{letter-spacing:-10.044000px;}
.ls5_c01117{letter-spacing:-9.216000px;}
.ls6_c01117{letter-spacing:-5.880000px;}
.ls3_c01117{letter-spacing:-0.576000px;}
.ls2_c01117{letter-spacing:-0.432000px;}
.ls4_c01117{letter-spacing:-0.288000px;}
.ls1_c01117{letter-spacing:0.000000px;}
.ls7_c01117{letter-spacing:0.288000px;}
.sc__c01117{text-shadow:none;}
.sc0_c01117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01117{-webkit-text-stroke:0px transparent;}
.sc0_c01117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01117{word-spacing:-63.828000px;}
.ws1_c01117{word-spacing:-24.624000px;}
.ws6_c01117{word-spacing:-5.400000px;}
.wsb_c01117{word-spacing:-4.212000px;}
.ws9_c01117{word-spacing:-0.720000px;}
.ws7_c01117{word-spacing:0.000000px;}
.wsa_c01117{word-spacing:0.540000px;}
.ws4_c01117{word-spacing:0.576000px;}
.ws3_c01117{word-spacing:0.792000px;}
.ws2_c01117{word-spacing:1.728000px;}
.wsc_c01117{word-spacing:3.024000px;}
.ws8_c01117{word-spacing:5.880000px;}
.ws5_c01117{word-spacing:9.216000px;}
._2_c01117{margin-left:-13.082400px;}
._1_c01117{margin-left:-7.804800px;}
._5_c01117{margin-left:-2.782800px;}
._3_c01117{margin-left:-1.180800px;}
._0_c01117{width:1.587600px;}
._6_c01117{width:5.583600px;}
._4_c01117{width:6.696000px;}
._7_c01117{width:1270.288800px;}
.fc4_c01117{color:transparent;}
.fc3_c01117{color:rgb(89,89,89);}
.fc2_c01117{color:rgb(64,64,64);}
.fc1_c01117{color:rgb(0,0,0);}
.fc0_c01117{color:rgb(255,255,255);}
.fs2_c01117{font-size:72.000000px;}
.fs5_c01117{font-size:84.000000px;}
.fs1_c01117{font-size:108.000000px;}
.fs4_c01117{font-size:144.000000px;}
.fs3_c01117{font-size:288.000000px;}
.fs0_c01117{font-size:324.000000px;}
.y0_c01117{bottom:0.000000px;}
.y9_c01117{bottom:13.451250px;}
.yb_c01117{bottom:53.956650px;}
.ya_c01117{bottom:92.944650px;}
.y10_c01117{bottom:163.748700px;}
.yf_c01117{bottom:193.151700px;}
.ye_c01117{bottom:241.400700px;}
.yd_c01117{bottom:270.803700px;}
.yc_c01117{bottom:299.909700px;}
.y8_c01117{bottom:517.384950px;}
.y7_c01117{bottom:546.787950px;}
.y2_c01117{bottom:551.249100px;}
.y6_c01117{bottom:575.893950px;}
.y1_c01117{bottom:608.734950px;}
.y5_c01117{bottom:655.727400px;}
.y4_c01117{bottom:697.800000px;}
.y3_c01117{bottom:704.395050px;}
.h3_c01117{height:52.453125px;}
.h6_c01117{height:61.154297px;}
.h2_c01117{height:78.679688px;}
.h5_c01117{height:104.906250px;}
.h7_c01117{height:130.992188px;}
.h4_c01117{height:261.984375px;}
.h1_c01117{height:294.732422px;}
.h0_c01117{height:810.000000px;}
.w0_c01117{width:1440.000000px;}
.x0_c01117{left:0.000000px;}
.x3_c01117{left:69.299850px;}
.x1_c01117{left:70.710900px;}
.x2_c01117{left:73.394100px;}
.x4_c01117{left:136.931700px;}
.x6_c01117{left:235.200000px;}
.x8_c01117{left:414.038400px;}
.x7_c01117{left:521.400000px;}
.x9_c01117{left:935.111400px;}
.x5_c01117{left:1394.895000px;}
@media print{
.v1_c01117{vertical-align:-68.064000pt;}
.v0_c01117{vertical-align:0.000000pt;}
.ls0_c01117{letter-spacing:-8.928000pt;}
.ls5_c01117{letter-spacing:-8.192000pt;}
.ls6_c01117{letter-spacing:-5.226667pt;}
.ls3_c01117{letter-spacing:-0.512000pt;}
.ls2_c01117{letter-spacing:-0.384000pt;}
.ls4_c01117{letter-spacing:-0.256000pt;}
.ls1_c01117{letter-spacing:0.000000pt;}
.ls7_c01117{letter-spacing:0.256000pt;}
.ws0_c01117{word-spacing:-56.736000pt;}
.ws1_c01117{word-spacing:-21.888000pt;}
.ws6_c01117{word-spacing:-4.800000pt;}
.wsb_c01117{word-spacing:-3.744000pt;}
.ws9_c01117{word-spacing:-0.640000pt;}
.ws7_c01117{word-spacing:0.000000pt;}
.wsa_c01117{word-spacing:0.480000pt;}
.ws4_c01117{word-spacing:0.512000pt;}
.ws3_c01117{word-spacing:0.704000pt;}
.ws2_c01117{word-spacing:1.536000pt;}
.wsc_c01117{word-spacing:2.688000pt;}
.ws8_c01117{word-spacing:5.226667pt;}
.ws5_c01117{word-spacing:8.192000pt;}
._2_c01117{margin-left:-11.628800pt;}
._1_c01117{margin-left:-6.937600pt;}
._5_c01117{margin-left:-2.473600pt;}
._3_c01117{margin-left:-1.049600pt;}
._0_c01117{width:1.411200pt;}
._6_c01117{width:4.963200pt;}
._4_c01117{width:5.952000pt;}
._7_c01117{width:1129.145600pt;}
.fs2_c01117{font-size:64.000000pt;}
.fs5_c01117{font-size:74.666667pt;}
.fs1_c01117{font-size:96.000000pt;}
.fs4_c01117{font-size:128.000000pt;}
.fs3_c01117{font-size:256.000000pt;}
.fs0_c01117{font-size:288.000000pt;}
.y0_c01117{bottom:0.000000pt;}
.y9_c01117{bottom:11.956667pt;}
.yb_c01117{bottom:47.961467pt;}
.ya_c01117{bottom:82.617467pt;}
.y10_c01117{bottom:145.554400pt;}
.yf_c01117{bottom:171.690400pt;}
.ye_c01117{bottom:214.578400pt;}
.yd_c01117{bottom:240.714400pt;}
.yc_c01117{bottom:266.586400pt;}
.y8_c01117{bottom:459.897733pt;}
.y7_c01117{bottom:486.033733pt;}
.y2_c01117{bottom:489.999200pt;}
.y6_c01117{bottom:511.905733pt;}
.y1_c01117{bottom:541.097733pt;}
.y5_c01117{bottom:582.868800pt;}
.y4_c01117{bottom:620.266667pt;}
.y3_c01117{bottom:626.128933pt;}
.h3_c01117{height:46.625000pt;}
.h6_c01117{height:54.359375pt;}
.h2_c01117{height:69.937500pt;}
.h5_c01117{height:93.250000pt;}
.h7_c01117{height:116.437500pt;}
.h4_c01117{height:232.875000pt;}
.h1_c01117{height:261.984375pt;}
.h0_c01117{height:720.000000pt;}
.w0_c01117{width:1280.000000pt;}
.x0_c01117{left:0.000000pt;}
.x3_c01117{left:61.599867pt;}
.x1_c01117{left:62.854133pt;}
.x2_c01117{left:65.239200pt;}
.x4_c01117{left:121.717067pt;}
.x6_c01117{left:209.066667pt;}
.x8_c01117{left:368.034133pt;}
.x7_c01117{left:463.466667pt;}
.x9_c01117{left:831.210133pt;}
.x5_c01117{left:1239.906667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4fc10cb4f3e411054253c362.woff2')format("woff");}.ff1_c01118{font-family:ff1_c01118;line-height:1.120117;font-style:normal;font-weight:normal;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_5cbfdd26212192040d667504.woff2')format("woff");}.ff2_c01118{font-family:ff2_c01118;line-height:0.938965;font-style:normal;font-weight:normal;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_5f4ee4b9a414e8faf29830da.woff2')format("woff");}.ff3_c01118{font-family:ff3_c01118;line-height:0.765625;font-style:normal;font-weight:normal;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_edf50c7c759f4c582c7c81f4.woff2')format("woff");}.ff4_c01118{font-family:ff4_c01118;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7_c01118{letter-spacing:-22.896000px;}
.ls3_c01118{letter-spacing:-10.044000px;}
.ls8_c01118{letter-spacing:-9.216000px;}
.lsc_c01118{letter-spacing:-0.540000px;}
.ls5_c01118{letter-spacing:-0.432000px;}
.lsa_c01118{letter-spacing:-0.324000px;}
.ls6_c01118{letter-spacing:-0.288000px;}
.ls9_c01118{letter-spacing:-0.216000px;}
.ls4_c01118{letter-spacing:0.000000px;}
.lsd_c01118{letter-spacing:0.084000px;}
.ls1_c01118{letter-spacing:0.108000px;}
.ls2_c01118{letter-spacing:0.432000px;}
.lsb_c01118{letter-spacing:0.540000px;}
.ls0_c01118{letter-spacing:49.896000px;}
.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:-63.828000px;}
.ws1_c01118{word-spacing:-24.624000px;}
.ws4_c01118{word-spacing:-24.408000px;}
.ws15_c01118{word-spacing:-0.648000px;}
.ws12_c01118{word-spacing:-0.540000px;}
.ws8_c01118{word-spacing:-0.162000px;}
.ws11_c01118{word-spacing:-0.108000px;}
.ws13_c01118{word-spacing:-0.084000px;}
.wsb_c01118{word-spacing:-0.054000px;}
.wsf_c01118{word-spacing:0.000000px;}
.ws10_c01118{word-spacing:0.216000px;}
.ws9_c01118{word-spacing:0.334800px;}
.ws7_c01118{word-spacing:0.432000px;}
.ws14_c01118{word-spacing:0.540000px;}
.wsd_c01118{word-spacing:0.576000px;}
.ws16_c01118{word-spacing:0.756000px;}
.wsc_c01118{word-spacing:0.792000px;}
.ws3_c01118{word-spacing:1.440000px;}
.ws5_c01118{word-spacing:1.609200px;}
.ws6_c01118{word-spacing:2.311200px;}
.wsa_c01118{word-spacing:2.322000px;}
.wse_c01118{word-spacing:2.736000px;}
.ws2_c01118{word-spacing:30.484800px;}
._2_c01118{margin-left:-13.082400px;}
._1_c01118{margin-left:-7.401600px;}
._7_c01118{margin-left:-3.952800px;}
._8_c01118{margin-left:-2.430000px;}
._4_c01118{margin-left:-1.195200px;}
._0_c01118{width:1.587600px;}
._3_c01118{width:13.622400px;}
._6_c01118{width:26.262000px;}
._5_c01118{width:27.993600px;}
.fc4_c01118{color:transparent;}
.fc3_c01118{color:rgb(89,89,89);}
.fc2_c01118{color:rgb(64,64,64);}
.fc1_c01118{color:rgb(0,0,0);}
.fc0_c01118{color:rgb(255,255,255);}
.fs2_c01118{font-size:72.000000px;}
.fs5_c01118{font-size:84.000000px;}
.fs1_c01118{font-size:108.000000px;}
.fs4_c01118{font-size:144.000000px;}
.fs3_c01118{font-size:288.000000px;}
.fs0_c01118{font-size:324.000000px;}
.y0_c01118{bottom:0.000000px;}
.y9_c01118{bottom:13.451250px;}
.y8_c01118{bottom:477.268500px;}
.ya_c01118{bottom:513.732450px;}
.y7_c01118{bottom:521.656500px;}
.yc_c01118{bottom:548.399850px;}
.y2_c01118{bottom:551.249100px;}
.y6_c01118{bottom:565.756500px;}
.yb_c01118{bottom:592.499850px;}
.y1_c01118{bottom:608.734950px;}
.y5_c01118{bottom:655.727400px;}
.y4_c01118{bottom:697.800000px;}
.y3_c01118{bottom:704.395050px;}
.h3_c01118{height:52.453125px;}
.h8_c01118{height:61.154297px;}
.h2_c01118{height:78.679688px;}
.h7_c01118{height:82.687500px;}
.h6_c01118{height:98.244141px;}
.h5_c01118{height:104.906250px;}
.h4_c01118{height:261.984375px;}
.h1_c01118{height:294.732422px;}
.h0_c01118{height:810.000000px;}
.w0_c01118{width:1440.000000px;}
.x0_c01118{left:0.000000px;}
.x3_c01118{left:69.299850px;}
.x1_c01118{left:70.710900px;}
.x2_c01118{left:73.394100px;}
.x5_c01118{left:879.898200px;}
.x4_c01118{left:1393.395000px;}
@media print{
.v0_c01118{vertical-align:0.000000pt;}
.ls7_c01118{letter-spacing:-20.352000pt;}
.ls3_c01118{letter-spacing:-8.928000pt;}
.ls8_c01118{letter-spacing:-8.192000pt;}
.lsc_c01118{letter-spacing:-0.480000pt;}
.ls5_c01118{letter-spacing:-0.384000pt;}
.lsa_c01118{letter-spacing:-0.288000pt;}
.ls6_c01118{letter-spacing:-0.256000pt;}
.ls9_c01118{letter-spacing:-0.192000pt;}
.ls4_c01118{letter-spacing:0.000000pt;}
.lsd_c01118{letter-spacing:0.074667pt;}
.ls1_c01118{letter-spacing:0.096000pt;}
.ls2_c01118{letter-spacing:0.384000pt;}
.lsb_c01118{letter-spacing:0.480000pt;}
.ls0_c01118{letter-spacing:44.352000pt;}
.ws0_c01118{word-spacing:-56.736000pt;}
.ws1_c01118{word-spacing:-21.888000pt;}
.ws4_c01118{word-spacing:-21.696000pt;}
.ws15_c01118{word-spacing:-0.576000pt;}
.ws12_c01118{word-spacing:-0.480000pt;}
.ws8_c01118{word-spacing:-0.144000pt;}
.ws11_c01118{word-spacing:-0.096000pt;}
.ws13_c01118{word-spacing:-0.074667pt;}
.wsb_c01118{word-spacing:-0.048000pt;}
.wsf_c01118{word-spacing:0.000000pt;}
.ws10_c01118{word-spacing:0.192000pt;}
.ws9_c01118{word-spacing:0.297600pt;}
.ws7_c01118{word-spacing:0.384000pt;}
.ws14_c01118{word-spacing:0.480000pt;}
.wsd_c01118{word-spacing:0.512000pt;}
.ws16_c01118{word-spacing:0.672000pt;}
.wsc_c01118{word-spacing:0.704000pt;}
.ws3_c01118{word-spacing:1.280000pt;}
.ws5_c01118{word-spacing:1.430400pt;}
.ws6_c01118{word-spacing:2.054400pt;}
.wsa_c01118{word-spacing:2.064000pt;}
.wse_c01118{word-spacing:2.432000pt;}
.ws2_c01118{word-spacing:27.097600pt;}
._2_c01118{margin-left:-11.628800pt;}
._1_c01118{margin-left:-6.579200pt;}
._7_c01118{margin-left:-3.513600pt;}
._8_c01118{margin-left:-2.160000pt;}
._4_c01118{margin-left:-1.062400pt;}
._0_c01118{width:1.411200pt;}
._3_c01118{width:12.108800pt;}
._6_c01118{width:23.344000pt;}
._5_c01118{width:24.883200pt;}
.fs2_c01118{font-size:64.000000pt;}
.fs5_c01118{font-size:74.666667pt;}
.fs1_c01118{font-size:96.000000pt;}
.fs4_c01118{font-size:128.000000pt;}
.fs3_c01118{font-size:256.000000pt;}
.fs0_c01118{font-size:288.000000pt;}
.y0_c01118{bottom:0.000000pt;}
.y9_c01118{bottom:11.956667pt;}
.y8_c01118{bottom:424.238667pt;}
.ya_c01118{bottom:456.651067pt;}
.y7_c01118{bottom:463.694667pt;}
.yc_c01118{bottom:487.466533pt;}
.y2_c01118{bottom:489.999200pt;}
.y6_c01118{bottom:502.894667pt;}
.yb_c01118{bottom:526.666533pt;}
.y1_c01118{bottom:541.097733pt;}
.y5_c01118{bottom:582.868800pt;}
.y4_c01118{bottom:620.266667pt;}
.y3_c01118{bottom:626.128933pt;}
.h3_c01118{height:46.625000pt;}
.h8_c01118{height:54.359375pt;}
.h2_c01118{height:69.937500pt;}
.h7_c01118{height:73.500000pt;}
.h6_c01118{height:87.328125pt;}
.h5_c01118{height:93.250000pt;}
.h4_c01118{height:232.875000pt;}
.h1_c01118{height:261.984375pt;}
.h0_c01118{height:720.000000pt;}
.w0_c01118{width:1280.000000pt;}
.x0_c01118{left:0.000000pt;}
.x3_c01118{left:61.599867pt;}
.x1_c01118{left:62.854133pt;}
.x2_c01118{left:65.239200pt;}
.x5_c01118{left:782.131733pt;}
.x4_c01118{left:1238.573333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b8204df29194120ece00dd70.woff2')format("woff");}.ff1_c01119{font-family:ff1_c01119;line-height:1.120117;font-style:normal;font-weight:normal;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_cc559287ab9b1168ac210943.woff2')format("woff");}.ff2_c01119{font-family:ff2_c01119;line-height:0.938965;font-style:normal;font-weight:normal;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_dd792cad358402285a0deb49.woff2')format("woff");}.ff3_c01119{font-family:ff3_c01119;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01119{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01119{vertical-align:0.000000px;}
.ls1_c01119{letter-spacing:-10.044000px;}
.ls7_c01119{letter-spacing:-9.792000px;}
.ls3_c01119{letter-spacing:-0.432000px;}
.ls5_c01119{letter-spacing:-0.324000px;}
.ls6_c01119{letter-spacing:-0.216000px;}
.ls2_c01119{letter-spacing:0.000000px;}
.ls4_c01119{letter-spacing:0.084000px;}
.ls0_c01119{letter-spacing:0.540000px;}
.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;}
}
.ws0_c01119{word-spacing:-63.828000px;}
.ws1_c01119{word-spacing:-24.624000px;}
.ws5_c01119{word-spacing:-3.564000px;}
.ws7_c01119{word-spacing:-0.324000px;}
.ws3_c01119{word-spacing:-0.084000px;}
.ws6_c01119{word-spacing:0.000000px;}
.ws2_c01119{word-spacing:0.792000px;}
.ws8_c01119{word-spacing:0.864000px;}
.wsa_c01119{word-spacing:1.728000px;}
.ws9_c01119{word-spacing:1.944000px;}
.ws4_c01119{word-spacing:2.052000px;}
._2_c01119{margin-left:-8.175600px;}
._3_c01119{margin-left:-5.292000px;}
._1_c01119{margin-left:-4.039200px;}
._5_c01119{margin-left:-1.771200px;}
._0_c01119{width:1.587600px;}
._4_c01119{width:3.607200px;}
._6_c01119{width:5.090400px;}
.fc2_c01119{color:transparent;}
.fc1_c01119{color:rgb(0,0,0);}
.fc0_c01119{color:rgb(255,255,255);}
.fs2_c01119{font-size:72.000000px;}
.fs3_c01119{font-size:84.000000px;}
.fs1_c01119{font-size:108.000000px;}
.fs4_c01119{font-size:288.000000px;}
.fs0_c01119{font-size:324.000000px;}
.y0_c01119{bottom:0.000000px;}
.y4_c01119{bottom:13.387500px;}
.yb_c01119{bottom:144.723000px;}
.ya_c01119{bottom:173.829000px;}
.y9_c01119{bottom:203.232000px;}
.y6_c01119{bottom:260.517750px;}
.y5_c01119{bottom:289.920750px;}
.y8_c01119{bottom:347.097000px;}
.y7_c01119{bottom:376.500000px;}
.y2_c01119{bottom:551.249100px;}
.y1_c01119{bottom:608.734950px;}
.yc_c01119{bottom:692.189400px;}
.y3_c01119{bottom:704.395050px;}
.h3_c01119{height:52.453125px;}
.h4_c01119{height:61.154297px;}
.h2_c01119{height:78.679688px;}
.h5_c01119{height:98.244141px;}
.h6_c01119{height:261.984375px;}
.h1_c01119{height:294.732422px;}
.h0_c01119{height:810.000000px;}
.w0_c01119{width:1440.000000px;}
.x0_c01119{left:0.000000px;}
.x7_c01119{left:69.300000px;}
.x1_c01119{left:70.710900px;}
.x2_c01119{left:73.394100px;}
.x5_c01119{left:215.666100px;}
.x4_c01119{left:407.170950px;}
.x6_c01119{left:598.676250px;}
.x3_c01119{left:1405.800000px;}
@media print{
.v0_c01119{vertical-align:0.000000pt;}
.ls1_c01119{letter-spacing:-8.928000pt;}
.ls7_c01119{letter-spacing:-8.704000pt;}
.ls3_c01119{letter-spacing:-0.384000pt;}
.ls5_c01119{letter-spacing:-0.288000pt;}
.ls6_c01119{letter-spacing:-0.192000pt;}
.ls2_c01119{letter-spacing:0.000000pt;}
.ls4_c01119{letter-spacing:0.074667pt;}
.ls0_c01119{letter-spacing:0.480000pt;}
.ws0_c01119{word-spacing:-56.736000pt;}
.ws1_c01119{word-spacing:-21.888000pt;}
.ws5_c01119{word-spacing:-3.168000pt;}
.ws7_c01119{word-spacing:-0.288000pt;}
.ws3_c01119{word-spacing:-0.074667pt;}
.ws6_c01119{word-spacing:0.000000pt;}
.ws2_c01119{word-spacing:0.704000pt;}
.ws8_c01119{word-spacing:0.768000pt;}
.wsa_c01119{word-spacing:1.536000pt;}
.ws9_c01119{word-spacing:1.728000pt;}
.ws4_c01119{word-spacing:1.824000pt;}
._2_c01119{margin-left:-7.267200pt;}
._3_c01119{margin-left:-4.704000pt;}
._1_c01119{margin-left:-3.590400pt;}
._5_c01119{margin-left:-1.574400pt;}
._0_c01119{width:1.411200pt;}
._4_c01119{width:3.206400pt;}
._6_c01119{width:4.524800pt;}
.fs2_c01119{font-size:64.000000pt;}
.fs3_c01119{font-size:74.666667pt;}
.fs1_c01119{font-size:96.000000pt;}
.fs4_c01119{font-size:256.000000pt;}
.fs0_c01119{font-size:288.000000pt;}
.y0_c01119{bottom:0.000000pt;}
.y4_c01119{bottom:11.900000pt;}
.yb_c01119{bottom:128.642667pt;}
.ya_c01119{bottom:154.514667pt;}
.y9_c01119{bottom:180.650667pt;}
.y6_c01119{bottom:231.571333pt;}
.y5_c01119{bottom:257.707333pt;}
.y8_c01119{bottom:308.530667pt;}
.y7_c01119{bottom:334.666667pt;}
.y2_c01119{bottom:489.999200pt;}
.y1_c01119{bottom:541.097733pt;}
.yc_c01119{bottom:615.279467pt;}
.y3_c01119{bottom:626.128933pt;}
.h3_c01119{height:46.625000pt;}
.h4_c01119{height:54.359375pt;}
.h2_c01119{height:69.937500pt;}
.h5_c01119{height:87.328125pt;}
.h6_c01119{height:232.875000pt;}
.h1_c01119{height:261.984375pt;}
.h0_c01119{height:720.000000pt;}
.w0_c01119{width:1280.000000pt;}
.x0_c01119{left:0.000000pt;}
.x7_c01119{left:61.600000pt;}
.x1_c01119{left:62.854133pt;}
.x2_c01119{left:65.239200pt;}
.x5_c01119{left:191.703200pt;}
.x4_c01119{left:361.929733pt;}
.x6_c01119{left:532.156667pt;}
.x3_c01119{left:1249.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_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_fee2aa8b49cac0a7956f0b23.woff2')format("woff");}.ff1_c01120{font-family:ff1_c01120;line-height:1.120117;font-style:normal;font-weight:normal;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_8ba38828937546cc45f1931c.woff2')format("woff");}.ff2_c01120{font-family:ff2_c01120;line-height:0.938965;font-style:normal;font-weight:normal;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_78523dd3d9a67579a94816b9.woff2')format("woff");}.ff3_c01120{font-family:ff3_c01120;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01120;src:url('chunks/assets/font_0f880c7a18a79c93c3fae574.woff2')format("woff");}.ff4_c01120{font-family:ff4_c01120;line-height:0.765625;font-style: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;}
.ls3_c01120{letter-spacing:-10.044000px;}
.ls7_c01120{letter-spacing:-9.792000px;}
.ls8_c01120{letter-spacing:-7.320000px;}
.lsd_c01120{letter-spacing:-1.296000px;}
.ls5_c01120{letter-spacing:-0.432000px;}
.lsa_c01120{letter-spacing:-0.360000px;}
.lse_c01120{letter-spacing:-0.324000px;}
.ls9_c01120{letter-spacing:-0.240000px;}
.lsb_c01120{letter-spacing:-0.120000px;}
.ls4_c01120{letter-spacing:0.000000px;}
.ls6_c01120{letter-spacing:0.084000px;}
.ls2_c01120{letter-spacing:0.108000px;}
.ls1_c01120{letter-spacing:0.480000px;}
.lsc_c01120{letter-spacing:0.540000px;}
.ls0_c01120{letter-spacing:66.720000px;}
.sc__c01120{text-shadow:none;}
.sc0_c01120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01120{-webkit-text-stroke:0px transparent;}
.sc0_c01120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01120{word-spacing:-63.828000px;}
.ws9_c01120{word-spacing:-27.840000px;}
.ws18_c01120{word-spacing:-27.360000px;}
.ws30_c01120{word-spacing:-27.120000px;}
.wsd_c01120{word-spacing:-24.732000px;}
.ws1_c01120{word-spacing:-24.624000px;}
.ws11_c01120{word-spacing:-24.192000px;}
.ws1c_c01120{word-spacing:-3.840000px;}
.ws7_c01120{word-spacing:-3.480000px;}
.ws19_c01120{word-spacing:-3.000000px;}
.ws1d_c01120{word-spacing:-2.880000px;}
.ws17_c01120{word-spacing:-2.640000px;}
.ws4_c01120{word-spacing:-1.800000px;}
.ws2f_c01120{word-spacing:-1.663200px;}
.ws16_c01120{word-spacing:-1.452000px;}
.ws2e_c01120{word-spacing:-1.328400px;}
.ws8_c01120{word-spacing:-0.840000px;}
.ws31_c01120{word-spacing:-0.788400px;}
.ws2d_c01120{word-spacing:-0.756000px;}
.ws1e_c01120{word-spacing:-0.680400px;}
.ws14_c01120{word-spacing:-0.480000px;}
.ws3_c01120{word-spacing:-0.360000px;}
.ws12_c01120{word-spacing:-0.086400px;}
.ws33_c01120{word-spacing:-0.084000px;}
.ws35_c01120{word-spacing:0.000000px;}
.ws5_c01120{word-spacing:0.120000px;}
.ws13_c01120{word-spacing:0.228000px;}
.ws1a_c01120{word-spacing:0.360000px;}
.ws2c_c01120{word-spacing:0.594000px;}
.ws32_c01120{word-spacing:0.792000px;}
.ws15_c01120{word-spacing:1.080000px;}
.ws2b_c01120{word-spacing:1.350000px;}
.ws6_c01120{word-spacing:1.440000px;}
.ws1b_c01120{word-spacing:1.800000px;}
.ws34_c01120{word-spacing:2.880000px;}
.ws2_c01120{word-spacing:10.320000px;}
.wsb_c01120{word-spacing:11.448000px;}
.wse_c01120{word-spacing:12.690000px;}
.wsa_c01120{word-spacing:13.176000px;}
.wsf_c01120{word-spacing:13.197600px;}
.wsc_c01120{word-spacing:13.597200px;}
.ws10_c01120{word-spacing:16.524000px;}
.ws20_c01120{word-spacing:17.442000px;}
.ws2a_c01120{word-spacing:17.820000px;}
.ws25_c01120{word-spacing:18.435600px;}
.ws26_c01120{word-spacing:19.018800px;}
.ws22_c01120{word-spacing:19.116000px;}
.ws28_c01120{word-spacing:19.645200px;}
.ws23_c01120{word-spacing:20.023200px;}
.ws24_c01120{word-spacing:20.098800px;}
.ws21_c01120{word-spacing:20.131200px;}
.ws27_c01120{word-spacing:20.541600px;}
.ws1f_c01120{word-spacing:20.574000px;}
.ws29_c01120{word-spacing:20.671200px;}
._4_c01120{margin-left:-4.644000px;}
._1_c01120{margin-left:-1.069200px;}
._0_c01120{width:1.587600px;}
._2_c01120{width:7.200000px;}
._5_c01120{width:25.812000px;}
._6_c01120{width:27.394800px;}
._3_c01120{width:38.901600px;}
._7_c01120{width:43.318800px;}
._8_c01120{width:45.068400px;}
.fc2_c01120{color:transparent;}
.fc1_c01120{color:rgb(0,0,0);}
.fc0_c01120{color:rgb(255,255,255);}
.fs2_c01120{font-size:72.000000px;}
.fs3_c01120{font-size:84.000000px;}
.fs1_c01120{font-size:108.000000px;}
.fs5_c01120{font-size:120.000000px;}
.fs4_c01120{font-size:288.000000px;}
.fs0_c01120{font-size:324.000000px;}
.y0_c01120{bottom:0.000000px;}
.y4_c01120{bottom:13.451250px;}
.y11_c01120{bottom:86.381250px;}
.y10_c01120{bottom:119.381250px;}
.yf_c01120{bottom:187.181250px;}
.ye_c01120{bottom:220.181250px;}
.yd_c01120{bottom:287.981250px;}
.yc_c01120{bottom:320.381250px;}
.yb_c01120{bottom:353.381250px;}
.ya_c01120{bottom:421.181250px;}
.y9_c01120{bottom:454.181250px;}
.y8_c01120{bottom:521.981250px;}
.y2_c01120{bottom:551.249100px;}
.y7_c01120{bottom:554.381250px;}
.y6_c01120{bottom:587.381250px;}
.y1_c01120{bottom:608.734950px;}
.y5_c01120{bottom:692.189400px;}
.y3_c01120{bottom:704.395050px;}
.h3_c01120{height:52.453125px;}
.h4_c01120{height:61.154297px;}
.h2_c01120{height:78.679688px;}
.h6_c01120{height:109.160156px;}
.h5_c01120{height:261.984375px;}
.h1_c01120{height:294.732422px;}
.h0_c01120{height:810.000000px;}
.w0_c01120{width:1440.000000px;}
.x0_c01120{left:0.000000px;}
.x5_c01120{left:67.756500px;}
.x4_c01120{left:69.300000px;}
.x1_c01120{left:70.710900px;}
.x2_c01120{left:73.394100px;}
.x6_c01120{left:121.756500px;}
.x3_c01120{left:1393.395000px;}
@media print{
.v0_c01120{vertical-align:0.000000pt;}
.ls3_c01120{letter-spacing:-8.928000pt;}
.ls7_c01120{letter-spacing:-8.704000pt;}
.ls8_c01120{letter-spacing:-6.506667pt;}
.lsd_c01120{letter-spacing:-1.152000pt;}
.ls5_c01120{letter-spacing:-0.384000pt;}
.lsa_c01120{letter-spacing:-0.320000pt;}
.lse_c01120{letter-spacing:-0.288000pt;}
.ls9_c01120{letter-spacing:-0.213333pt;}
.lsb_c01120{letter-spacing:-0.106667pt;}
.ls4_c01120{letter-spacing:0.000000pt;}
.ls6_c01120{letter-spacing:0.074667pt;}
.ls2_c01120{letter-spacing:0.096000pt;}
.ls1_c01120{letter-spacing:0.426667pt;}
.lsc_c01120{letter-spacing:0.480000pt;}
.ls0_c01120{letter-spacing:59.306667pt;}
.ws0_c01120{word-spacing:-56.736000pt;}
.ws9_c01120{word-spacing:-24.746667pt;}
.ws18_c01120{word-spacing:-24.320000pt;}
.ws30_c01120{word-spacing:-24.106667pt;}
.wsd_c01120{word-spacing:-21.984000pt;}
.ws1_c01120{word-spacing:-21.888000pt;}
.ws11_c01120{word-spacing:-21.504000pt;}
.ws1c_c01120{word-spacing:-3.413333pt;}
.ws7_c01120{word-spacing:-3.093333pt;}
.ws19_c01120{word-spacing:-2.666667pt;}
.ws1d_c01120{word-spacing:-2.560000pt;}
.ws17_c01120{word-spacing:-2.346667pt;}
.ws4_c01120{word-spacing:-1.600000pt;}
.ws2f_c01120{word-spacing:-1.478400pt;}
.ws16_c01120{word-spacing:-1.290667pt;}
.ws2e_c01120{word-spacing:-1.180800pt;}
.ws8_c01120{word-spacing:-0.746667pt;}
.ws31_c01120{word-spacing:-0.700800pt;}
.ws2d_c01120{word-spacing:-0.672000pt;}
.ws1e_c01120{word-spacing:-0.604800pt;}
.ws14_c01120{word-spacing:-0.426667pt;}
.ws3_c01120{word-spacing:-0.320000pt;}
.ws12_c01120{word-spacing:-0.076800pt;}
.ws33_c01120{word-spacing:-0.074667pt;}
.ws35_c01120{word-spacing:0.000000pt;}
.ws5_c01120{word-spacing:0.106667pt;}
.ws13_c01120{word-spacing:0.202667pt;}
.ws1a_c01120{word-spacing:0.320000pt;}
.ws2c_c01120{word-spacing:0.528000pt;}
.ws32_c01120{word-spacing:0.704000pt;}
.ws15_c01120{word-spacing:0.960000pt;}
.ws2b_c01120{word-spacing:1.200000pt;}
.ws6_c01120{word-spacing:1.280000pt;}
.ws1b_c01120{word-spacing:1.600000pt;}
.ws34_c01120{word-spacing:2.560000pt;}
.ws2_c01120{word-spacing:9.173333pt;}
.wsb_c01120{word-spacing:10.176000pt;}
.wse_c01120{word-spacing:11.280000pt;}
.wsa_c01120{word-spacing:11.712000pt;}
.wsf_c01120{word-spacing:11.731200pt;}
.wsc_c01120{word-spacing:12.086400pt;}
.ws10_c01120{word-spacing:14.688000pt;}
.ws20_c01120{word-spacing:15.504000pt;}
.ws2a_c01120{word-spacing:15.840000pt;}
.ws25_c01120{word-spacing:16.387200pt;}
.ws26_c01120{word-spacing:16.905600pt;}
.ws22_c01120{word-spacing:16.992000pt;}
.ws28_c01120{word-spacing:17.462400pt;}
.ws23_c01120{word-spacing:17.798400pt;}
.ws24_c01120{word-spacing:17.865600pt;}
.ws21_c01120{word-spacing:17.894400pt;}
.ws27_c01120{word-spacing:18.259200pt;}
.ws1f_c01120{word-spacing:18.288000pt;}
.ws29_c01120{word-spacing:18.374400pt;}
._4_c01120{margin-left:-4.128000pt;}
._1_c01120{margin-left:-0.950400pt;}
._0_c01120{width:1.411200pt;}
._2_c01120{width:6.400000pt;}
._5_c01120{width:22.944000pt;}
._6_c01120{width:24.350933pt;}
._3_c01120{width:34.579200pt;}
._7_c01120{width:38.505600pt;}
._8_c01120{width:40.060800pt;}
.fs2_c01120{font-size:64.000000pt;}
.fs3_c01120{font-size:74.666667pt;}
.fs1_c01120{font-size:96.000000pt;}
.fs5_c01120{font-size:106.666667pt;}
.fs4_c01120{font-size:256.000000pt;}
.fs0_c01120{font-size:288.000000pt;}
.y0_c01120{bottom:0.000000pt;}
.y4_c01120{bottom:11.956667pt;}
.y11_c01120{bottom:76.783333pt;}
.y10_c01120{bottom:106.116667pt;}
.yf_c01120{bottom:166.383333pt;}
.ye_c01120{bottom:195.716667pt;}
.yd_c01120{bottom:255.983333pt;}
.yc_c01120{bottom:284.783333pt;}
.yb_c01120{bottom:314.116667pt;}
.ya_c01120{bottom:374.383333pt;}
.y9_c01120{bottom:403.716667pt;}
.y8_c01120{bottom:463.983333pt;}
.y2_c01120{bottom:489.999200pt;}
.y7_c01120{bottom:492.783333pt;}
.y6_c01120{bottom:522.116667pt;}
.y1_c01120{bottom:541.097733pt;}
.y5_c01120{bottom:615.279467pt;}
.y3_c01120{bottom:626.128933pt;}
.h3_c01120{height:46.625000pt;}
.h4_c01120{height:54.359375pt;}
.h2_c01120{height:69.937500pt;}
.h6_c01120{height:97.031250pt;}
.h5_c01120{height:232.875000pt;}
.h1_c01120{height:261.984375pt;}
.h0_c01120{height:720.000000pt;}
.w0_c01120{width:1280.000000pt;}
.x0_c01120{left:0.000000pt;}
.x5_c01120{left:60.228000pt;}
.x4_c01120{left:61.600000pt;}
.x1_c01120{left:62.854133pt;}
.x2_c01120{left:65.239200pt;}
.x6_c01120{left:108.228000pt;}
.x3_c01120{left:1238.573333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c1ef24f6ec63b06ad0f1af4.woff2')format("woff");}.ff1_c01121{font-family:ff1_c01121;line-height:1.120117;font-style:normal;font-weight:normal;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_cc559287ab9b1168ac210943.woff2')format("woff");}.ff2_c01121{font-family:ff2_c01121;line-height:0.938965;font-style: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);}
.v1_c01121{vertical-align:-132.705000px;}
.v0_c01121{vertical-align:0.000000px;}
.ls0_c01121{letter-spacing:-10.044000px;}
.ls2_c01121{letter-spacing:-0.432000px;}
.ls3_c01121{letter-spacing:-0.216000px;}
.ls1_c01121{letter-spacing:0.000000px;}
.ls4_c01121{letter-spacing:0.648000px;}
.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:-63.828000px;}
.ws3_c01121{word-spacing:-49.248000px;}
.ws6_c01121{word-spacing:-49.032000px;}
.ws1_c01121{word-spacing:-24.624000px;}
.ws8_c01121{word-spacing:-0.648000px;}
.ws5_c01121{word-spacing:-0.324000px;}
.ws4_c01121{word-spacing:0.172800px;}
.wsa_c01121{word-spacing:0.216000px;}
.ws9_c01121{word-spacing:0.432000px;}
.ws7_c01121{word-spacing:0.792000px;}
.ws2_c01121{word-spacing:1.077600px;}
._3_c01121{margin-left:-8.856000px;}
._2_c01121{margin-left:-2.073600px;}
._0_c01121{width:1.587600px;}
._4_c01121{width:52.077600px;}
._1_c01121{width:726.809400px;}
.fc2_c01121{color:transparent;}
.fc1_c01121{color:rgb(0,0,0);}
.fc0_c01121{color:rgb(255,255,255);}
.fs2_c01121{font-size:72.000000px;}
.fs1_c01121{font-size:108.000000px;}
.fs3_c01121{font-size:216.000000px;}
.fs0_c01121{font-size:324.000000px;}
.y0_c01121{bottom:0.000000px;}
.y7_c01121{bottom:412.018800px;}
.y6_c01121{bottom:476.818800px;}
.y5_c01121{bottom:541.618800px;}
.y2_c01121{bottom:551.249100px;}
.y4_c01121{bottom:606.418800px;}
.y1_c01121{bottom:608.734950px;}
.y3_c01121{bottom:704.395050px;}
.h3_c01121{height:63.783281px;}
.h2_c01121{height:78.679688px;}
.h4_c01121{height:196.488281px;}
.h1_c01121{height:294.732422px;}
.h0_c01121{height:810.000000px;}
.w0_c01121{width:1440.000000px;}
.x0_c01121{left:0.000000px;}
.x1_c01121{left:70.710900px;}
.x2_c01121{left:73.394100px;}
.x3_c01121{left:278.758050px;}
.x4_c01121{left:304.516050px;}
.x5_c01121{left:357.328050px;}
.x6_c01121{left:364.834050px;}
@media print{
.v1_c01121{vertical-align:-117.960000pt;}
.v0_c01121{vertical-align:0.000000pt;}
.ls0_c01121{letter-spacing:-8.928000pt;}
.ls2_c01121{letter-spacing:-0.384000pt;}
.ls3_c01121{letter-spacing:-0.192000pt;}
.ls1_c01121{letter-spacing:0.000000pt;}
.ls4_c01121{letter-spacing:0.576000pt;}
.ws0_c01121{word-spacing:-56.736000pt;}
.ws3_c01121{word-spacing:-43.776000pt;}
.ws6_c01121{word-spacing:-43.584000pt;}
.ws1_c01121{word-spacing:-21.888000pt;}
.ws8_c01121{word-spacing:-0.576000pt;}
.ws5_c01121{word-spacing:-0.288000pt;}
.ws4_c01121{word-spacing:0.153600pt;}
.wsa_c01121{word-spacing:0.192000pt;}
.ws9_c01121{word-spacing:0.384000pt;}
.ws7_c01121{word-spacing:0.704000pt;}
.ws2_c01121{word-spacing:0.957867pt;}
._3_c01121{margin-left:-7.872000pt;}
._2_c01121{margin-left:-1.843200pt;}
._0_c01121{width:1.411200pt;}
._4_c01121{width:46.291200pt;}
._1_c01121{width:646.052800pt;}
.fs2_c01121{font-size:64.000000pt;}
.fs1_c01121{font-size:96.000000pt;}
.fs3_c01121{font-size:192.000000pt;}
.fs0_c01121{font-size:288.000000pt;}
.y0_c01121{bottom:0.000000pt;}
.y7_c01121{bottom:366.238933pt;}
.y6_c01121{bottom:423.838933pt;}
.y5_c01121{bottom:481.438933pt;}
.y2_c01121{bottom:489.999200pt;}
.y4_c01121{bottom:539.038933pt;}
.y1_c01121{bottom:541.097733pt;}
.y3_c01121{bottom:626.128933pt;}
.h3_c01121{height:56.696250pt;}
.h2_c01121{height:69.937500pt;}
.h4_c01121{height:174.656250pt;}
.h1_c01121{height:261.984375pt;}
.h0_c01121{height:720.000000pt;}
.w0_c01121{width:1280.000000pt;}
.x0_c01121{left:0.000000pt;}
.x1_c01121{left:62.854133pt;}
.x2_c01121{left:65.239200pt;}
.x3_c01121{left:247.784933pt;}
.x4_c01121{left:270.680933pt;}
.x5_c01121{left:317.624933pt;}
.x6_c01121{left:324.296933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b16432776c105457b4acbdf2.woff2')format("woff");}.ff1_c01122{font-family:ff1_c01122;line-height:1.120117;font-style:normal;font-weight:normal;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_4f40cdf51a398bdac61ecefc.woff2')format("woff");}.ff2_c01122{font-family:ff2_c01122;line-height:0.938965;font-style: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;}
.ls2_c01122{letter-spacing:-10.044000px;}
.ls5_c01122{letter-spacing:-9.720000px;}
.ls4_c01122{letter-spacing:-0.432000px;}
.ls3_c01122{letter-spacing:0.000000px;}
.ls1_c01122{letter-spacing:29.376000px;}
.ls0_c01122{letter-spacing:31.276800px;}
.sc__c01122{text-shadow:none;}
.sc0_c01122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01122{-webkit-text-stroke:0px transparent;}
.sc0_c01122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01122{word-spacing:-63.828000px;}
.ws2_c01122{word-spacing:-49.248000px;}
.ws3_c01122{word-spacing:-39.528000px;}
.ws1_c01122{word-spacing:-24.624000px;}
.ws6_c01122{word-spacing:0.000000px;}
.ws4_c01122{word-spacing:0.792000px;}
.ws7_c01122{word-spacing:1.296000px;}
.ws5_c01122{word-spacing:4.968000px;}
.ws8_c01122{word-spacing:9.720000px;}
._1_c01122{margin-left:-23.500800px;}
._2_c01122{margin-left:-9.072000px;}
._4_c01122{margin-left:-4.176000px;}
._0_c01122{width:1.587600px;}
._3_c01122{width:4.503600px;}
._5_c01122{width:44.064000px;}
.fc4_c01122{color:transparent;}
.fc3_c01122{color:rgb(255,0,0);}
.fc2_c01122{color:rgb(146,208,80);}
.fc1_c01122{color:rgb(0,176,80);}
.fc0_c01122{color:rgb(255,255,255);}
.fs2_c01122{font-size:72.000000px;}
.fs1_c01122{font-size:108.000000px;}
.fs3_c01122{font-size:216.000000px;}
.fs0_c01122{font-size:324.000000px;}
.y0_c01122{bottom:0.000000px;}
.y6_c01122{bottom:271.977150px;}
.y5_c01122{bottom:375.777150px;}
.y4_c01122{bottom:531.177150px;}
.y2_c01122{bottom:551.249100px;}
.y1_c01122{bottom:608.734950px;}
.y3_c01122{bottom:704.395050px;}
.h3_c01122{height:52.453125px;}
.h2_c01122{height:78.679688px;}
.h4_c01122{height:196.488281px;}
.h1_c01122{height:294.732422px;}
.h0_c01122{height:810.000000px;}
.w0_c01122{width:1440.000000px;}
.x0_c01122{left:0.000000px;}
.x1_c01122{left:70.710900px;}
.x2_c01122{left:73.394100px;}
.x3_c01122{left:307.967100px;}
.x5_c01122{left:463.967100px;}
.x4_c01122{left:574.967100px;}
@media print{
.v0_c01122{vertical-align:0.000000pt;}
.ls2_c01122{letter-spacing:-8.928000pt;}
.ls5_c01122{letter-spacing:-8.640000pt;}
.ls4_c01122{letter-spacing:-0.384000pt;}
.ls3_c01122{letter-spacing:0.000000pt;}
.ls1_c01122{letter-spacing:26.112000pt;}
.ls0_c01122{letter-spacing:27.801600pt;}
.ws0_c01122{word-spacing:-56.736000pt;}
.ws2_c01122{word-spacing:-43.776000pt;}
.ws3_c01122{word-spacing:-35.136000pt;}
.ws1_c01122{word-spacing:-21.888000pt;}
.ws6_c01122{word-spacing:0.000000pt;}
.ws4_c01122{word-spacing:0.704000pt;}
.ws7_c01122{word-spacing:1.152000pt;}
.ws5_c01122{word-spacing:4.416000pt;}
.ws8_c01122{word-spacing:8.640000pt;}
._1_c01122{margin-left:-20.889600pt;}
._2_c01122{margin-left:-8.064000pt;}
._4_c01122{margin-left:-3.712000pt;}
._0_c01122{width:1.411200pt;}
._3_c01122{width:4.003200pt;}
._5_c01122{width:39.168000pt;}
.fs2_c01122{font-size:64.000000pt;}
.fs1_c01122{font-size:96.000000pt;}
.fs3_c01122{font-size:192.000000pt;}
.fs0_c01122{font-size:288.000000pt;}
.y0_c01122{bottom:0.000000pt;}
.y6_c01122{bottom:241.757467pt;}
.y5_c01122{bottom:334.024133pt;}
.y4_c01122{bottom:472.157467pt;}
.y2_c01122{bottom:489.999200pt;}
.y1_c01122{bottom:541.097733pt;}
.y3_c01122{bottom:626.128933pt;}
.h3_c01122{height:46.625000pt;}
.h2_c01122{height:69.937500pt;}
.h4_c01122{height:174.656250pt;}
.h1_c01122{height:261.984375pt;}
.h0_c01122{height:720.000000pt;}
.w0_c01122{width:1280.000000pt;}
.x0_c01122{left:0.000000pt;}
.x1_c01122{left:62.854133pt;}
.x2_c01122{left:65.239200pt;}
.x3_c01122{left:273.748533pt;}
.x5_c01122{left:412.415200pt;}
.x4_c01122{left:511.081867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ccd390dbc4046913438b574.woff2')format("woff");}.ff1_c01123{font-family:ff1_c01123;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01123;src:url('chunks/assets/font_c292b15c7b25cbea87a08cb5.woff2')format("woff");}.ff2_c01123{font-family:ff2_c01123;line-height:0.938965;font-style: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;}
.ls1_c01123{letter-spacing:0.000000px;}
.ls0_c01123{letter-spacing:0.150000px;}
.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:0.000000px;}
.fc1_c01123{color:rgb(31,107,167);}
.fc0_c01123{color:rgb(39,39,82);}
.fs1_c01123{font-size:156.000000px;}
.fs2_c01123{font-size:234.000000px;}
.fs0_c01123{font-size:300.000000px;}
.y0_c01123{bottom:0.000000px;}
.y4_c01123{bottom:130.849500px;}
.y3_c01123{bottom:178.312500px;}
.y5_c01123{bottom:293.757000px;}
.y2_c01123{bottom:415.668000px;}
.y1_c01123{bottom:505.668000px;}
.h2_c01123{height:113.648438px;}
.h3_c01123{height:170.472656px;}
.h1_c01123{height:218.408203px;}
.h0_c01123{height:810.000000px;}
.w0_c01123{width:1440.000000px;}
.x0_c01123{left:0.000000px;}
.x3_c01123{left:49.276500px;}
.x2_c01123{left:177.988500px;}
.x4_c01123{left:223.767000px;}
.x1_c01123{left:341.248500px;}
.x5_c01123{left:615.084000px;}
@media print{
.v0_c01123{vertical-align:0.000000pt;}
.ls1_c01123{letter-spacing:0.000000pt;}
.ls0_c01123{letter-spacing:0.133333pt;}
.ws0_c01123{word-spacing:0.000000pt;}
.fs1_c01123{font-size:138.666667pt;}
.fs2_c01123{font-size:208.000000pt;}
.fs0_c01123{font-size:266.666667pt;}
.y0_c01123{bottom:0.000000pt;}
.y4_c01123{bottom:116.310667pt;}
.y3_c01123{bottom:158.500000pt;}
.y5_c01123{bottom:261.117333pt;}
.y2_c01123{bottom:369.482667pt;}
.y1_c01123{bottom:449.482667pt;}
.h2_c01123{height:101.020833pt;}
.h3_c01123{height:151.531250pt;}
.h1_c01123{height:194.140625pt;}
.h0_c01123{height:720.000000pt;}
.w0_c01123{width:1280.000000pt;}
.x0_c01123{left:0.000000pt;}
.x3_c01123{left:43.801333pt;}
.x2_c01123{left:158.212000pt;}
.x4_c01123{left:198.904000pt;}
.x1_c01123{left:303.332000pt;}
.x5_c01123{left:546.741333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0cbbe229d0365a30cd0111fc.woff2')format("woff");}.ff1_c01124{font-family:ff1_c01124;line-height:0.938000;font-style:normal;font-weight:normal;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_05f02b62eac7bc7aa4cf415b.woff2')format("woff");}.ff2_c01124{font-family:ff2_c01124;line-height:0.723000;font-style:normal;font-weight:normal;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_651148d446766fa4950d7394.woff2')format("woff");}.ff3_c01124{font-family:ff3_c01124;line-height:0.927000;font-style:normal;font-weight:normal;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_f08b4986991386cf235ab09d.woff2')format("woff");}.ff4_c01124{font-family:ff4_c01124;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01124{vertical-align:0.000000px;}
.ls3_c01124{letter-spacing:-0.249600px;}
.ls4_c01124{letter-spacing:0.000000px;}
.ls2_c01124{letter-spacing:0.134400px;}
.ls1_c01124{letter-spacing:0.158400px;}
.ls0_c01124{letter-spacing:128.064000px;}
.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:-53.376000px;}
.ws2_c01124{word-spacing:0.000000px;}
.ws0_c01124{word-spacing:0.652800px;}
._1_c01124{margin-left:-9.768000px;}
._0_c01124{margin-left:-1.056000px;}
._3_c01124{width:1.152000px;}
._2_c01124{width:52.262400px;}
.fc1_c01124{color:rgb(17,138,203);}
.fc0_c01124{color:rgb(40,37,97);}
.fs1_c01124{font-size:192.000000px;}
.fs0_c01124{font-size:264.000000px;}
.y0_c01124{bottom:0.000000px;}
.y7_c01124{bottom:200.520000px;}
.y6_c01124{bottom:257.736000px;}
.y5_c01124{bottom:326.520000px;}
.y4_c01124{bottom:395.640000px;}
.y3_c01124{bottom:454.296000px;}
.y2_c01124{bottom:523.080000px;}
.y1_c01124{bottom:685.080000px;}
.h2_c01124{height:139.776000px;}
.h1_c01124{height:192.192000px;}
.h0_c01124{height:810.000000px;}
.w0_c01124{width:1440.000000px;}
.x0_c01124{left:0.000000px;}
.x1_c01124{left:82.800000px;}
.x2_c01124{left:688.275600px;}
.x3_c01124{left:742.275600px;}
@media print{
.v0_c01124{vertical-align:0.000000pt;}
.ls3_c01124{letter-spacing:-0.221867pt;}
.ls4_c01124{letter-spacing:0.000000pt;}
.ls2_c01124{letter-spacing:0.119467pt;}
.ls1_c01124{letter-spacing:0.140800pt;}
.ls0_c01124{letter-spacing:113.834667pt;}
.ws1_c01124{word-spacing:-47.445333pt;}
.ws2_c01124{word-spacing:0.000000pt;}
.ws0_c01124{word-spacing:0.580267pt;}
._1_c01124{margin-left:-8.682667pt;}
._0_c01124{margin-left:-0.938667pt;}
._3_c01124{width:1.024000pt;}
._2_c01124{width:46.455467pt;}
.fs1_c01124{font-size:170.666667pt;}
.fs0_c01124{font-size:234.666667pt;}
.y0_c01124{bottom:0.000000pt;}
.y7_c01124{bottom:178.240000pt;}
.y6_c01124{bottom:229.098667pt;}
.y5_c01124{bottom:290.240000pt;}
.y4_c01124{bottom:351.680000pt;}
.y3_c01124{bottom:403.818667pt;}
.y2_c01124{bottom:464.960000pt;}
.y1_c01124{bottom:608.960000pt;}
.h2_c01124{height:124.245333pt;}
.h1_c01124{height:170.837333pt;}
.h0_c01124{height:720.000000pt;}
.w0_c01124{width:1280.000000pt;}
.x0_c01124{left:0.000000pt;}
.x1_c01124{left:73.600000pt;}
.x2_c01124{left:611.800533pt;}
.x3_c01124{left:659.800533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0cbbe229d0365a30cd0111fc.woff2')format("woff");}.ff1_c01125{font-family:ff1_c01125;line-height:0.938000;font-style:normal;font-weight:normal;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_e85a187c3914fd2af3936043.woff2')format("woff");}.ff2_c01125{font-family:ff2_c01125;line-height:0.939000;font-style:normal;font-weight:normal;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_c522ed934e323d0fa4924eb3.woff2')format("woff");}.ff3_c01125{font-family:ff3_c01125;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01125{vertical-align:0.000000px;}
.ls4_c01125{letter-spacing:-0.052800px;}
.ls5_c01125{letter-spacing:0.000000px;}
.ls0_c01125{letter-spacing:0.158400px;}
.ls3_c01125{letter-spacing:0.302400px;}
.ls2_c01125{letter-spacing:0.336000px;}
.ls1_c01125{letter-spacing:46.872000px;}
.sc__c01125{text-shadow:none;}
.sc0_c01125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01125{-webkit-text-stroke:0px transparent;}
.sc0_c01125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01125{word-spacing:0.000000px;}
._3_c01125{margin-left:-12.405600px;}
._1_c01125{margin-left:-8.976000px;}
._0_c01125{margin-left:-1.056000px;}
._2_c01125{width:1.056000px;}
.fc0_c01125{color:rgb(40,37,97);}
.fs1_c01125{font-size:168.000000px;}
.fs0_c01125{font-size:264.000000px;}
.y0_c01125{bottom:0.000000px;}
.y4_c01125{bottom:416.178000px;}
.y3_c01125{bottom:465.486000px;}
.y2_c01125{bottom:516.600000px;}
.y1_c01125{bottom:685.080000px;}
.h2_c01125{height:122.472000px;}
.h1_c01125{height:192.192000px;}
.h0_c01125{height:810.000000px;}
.w0_c01125{width:1440.000000px;}
.x0_c01125{left:0.000000px;}
.x1_c01125{left:82.800000px;}
.x3_c01125{left:147.735750px;}
.x2_c01125{left:297.381750px;}
.x4_c01125{left:381.927750px;}
@media print{
.v0_c01125{vertical-align:0.000000pt;}
.ls4_c01125{letter-spacing:-0.046933pt;}
.ls5_c01125{letter-spacing:0.000000pt;}
.ls0_c01125{letter-spacing:0.140800pt;}
.ls3_c01125{letter-spacing:0.268800pt;}
.ls2_c01125{letter-spacing:0.298667pt;}
.ls1_c01125{letter-spacing:41.664000pt;}
.ws0_c01125{word-spacing:0.000000pt;}
._3_c01125{margin-left:-11.027200pt;}
._1_c01125{margin-left:-7.978667pt;}
._0_c01125{margin-left:-0.938667pt;}
._2_c01125{width:0.938667pt;}
.fs1_c01125{font-size:149.333333pt;}
.fs0_c01125{font-size:234.666667pt;}
.y0_c01125{bottom:0.000000pt;}
.y4_c01125{bottom:369.936000pt;}
.y3_c01125{bottom:413.765333pt;}
.y2_c01125{bottom:459.200000pt;}
.y1_c01125{bottom:608.960000pt;}
.h2_c01125{height:108.864000pt;}
.h1_c01125{height:170.837333pt;}
.h0_c01125{height:720.000000pt;}
.w0_c01125{width:1280.000000pt;}
.x0_c01125{left:0.000000pt;}
.x1_c01125{left:73.600000pt;}
.x3_c01125{left:131.320667pt;}
.x2_c01125{left:264.339333pt;}
.x4_c01125{left:339.491333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_309a92d89c25e6278a2dbf3a.woff2')format("woff");}.ff1_c01126{font-family:ff1_c01126;line-height:0.938000;font-style:normal;font-weight:normal;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_2a28ceb2c5e813ea36ea18fb.woff2')format("woff");}.ff2_c01126{font-family:ff2_c01126;line-height:0.938000;font-style:normal;font-weight:normal;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_2a28ceb2c5e813ea36ea18fb.woff2')format("woff");}.ff3_c01126{font-family:ff3_c01126;line-height:0.938000;font-style:normal;font-weight:normal;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_be3febd678c081f80e083516.woff2')format("woff");}.ff4_c01126{font-family:ff4_c01126;line-height:0.700000;font-style:normal;font-weight:normal;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_dd68d2024149348bba8de942.woff2')format("woff");}.ff5_c01126{font-family:ff5_c01126;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01126;src:url('chunks/assets/font_5e8474b7ecd461d71756e0c9.woff2')format("woff");}.ff6_c01126{font-family:ff6_c01126;line-height:0.954000;font-style: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;}
.ls15_c01126{letter-spacing:-4.740000px;}
.ls13_c01126{letter-spacing:-0.270000px;}
.ls14_c01126{letter-spacing:-0.246000px;}
.ls11_c01126{letter-spacing:-0.243000px;}
.ls16_c01126{letter-spacing:-0.027000px;}
.ls12_c01126{letter-spacing:0.000000px;}
.ls7_c01126{letter-spacing:0.012000px;}
.ls6_c01126{letter-spacing:0.024000px;}
.ls10_c01126{letter-spacing:0.027000px;}
.lsa_c01126{letter-spacing:0.030000px;}
.lsb_c01126{letter-spacing:0.174000px;}
.ls2_c01126{letter-spacing:0.180000px;}
.ls8_c01126{letter-spacing:0.192000px;}
.ls9_c01126{letter-spacing:0.198000px;}
.ls4_c01126{letter-spacing:0.204000px;}
.ls0_c01126{letter-spacing:0.207000px;}
.ls3_c01126{letter-spacing:0.210000px;}
.lsd_c01126{letter-spacing:0.228000px;}
.lsc_c01126{letter-spacing:0.234000px;}
.lsf_c01126{letter-spacing:0.243000px;}
.lse_c01126{letter-spacing:0.246000px;}
.ls5_c01126{letter-spacing:0.270000px;}
.ls1_c01126{letter-spacing:24.930000px;}
.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;}
}
.ws9f_c01126{word-spacing:-1.752000px;}
.ws8a_c01126{word-spacing:-1.656000px;}
.ws88_c01126{word-spacing:-1.452000px;}
.ws86_c01126{word-spacing:-1.440000px;}
.wsa3_c01126{word-spacing:-1.428000px;}
.ws99_c01126{word-spacing:-1.416000px;}
.wsa2_c01126{word-spacing:-1.104000px;}
.ws8e_c01126{word-spacing:-1.044000px;}
.ws92_c01126{word-spacing:-1.020000px;}
.wsa5_c01126{word-spacing:-0.864000px;}
.ws9e_c01126{word-spacing:-0.858000px;}
.ws94_c01126{word-spacing:-0.840000px;}
.ws89_c01126{word-spacing:-0.816000px;}
.ws87_c01126{word-spacing:-0.708000px;}
.ws85_c01126{word-spacing:-0.702000px;}
.ws98_c01126{word-spacing:-0.696000px;}
.ws90_c01126{word-spacing:-0.564000px;}
.wsa1_c01126{word-spacing:-0.534000px;}
.ws9b_c01126{word-spacing:-0.516000px;}
.ws8d_c01126{word-spacing:-0.510000px;}
.ws91_c01126{word-spacing:-0.492000px;}
.wsa4_c01126{word-spacing:-0.414000px;}
.ws93_c01126{word-spacing:-0.402000px;}
.ws97_c01126{word-spacing:-0.330000px;}
.ws18_c01126{word-spacing:-0.297000px;}
.ws8f_c01126{word-spacing:-0.264000px;}
.ws9a_c01126{word-spacing:-0.240000px;}
.wsa0_c01126{word-spacing:-0.228000px;}
.ws8c_c01126{word-spacing:-0.180000px;}
.ws96_c01126{word-spacing:-0.168000px;}
.ws2e_c01126{word-spacing:-0.117000px;}
.ws9d_c01126{word-spacing:-0.096000px;}
.wsa_c01126{word-spacing:-0.090000px;}
.ws8b_c01126{word-spacing:-0.072000px;}
.ws95_c01126{word-spacing:-0.066000px;}
.ws9c_c01126{word-spacing:-0.030000px;}
.wsa8_c01126{word-spacing:-0.024000px;}
.ws52_c01126{word-spacing:0.000000px;}
.ws1b_c01126{word-spacing:0.156000px;}
.ws19_c01126{word-spacing:0.180000px;}
.wsa6_c01126{word-spacing:0.276000px;}
.wsa7_c01126{word-spacing:0.516000px;}
.ws1a_c01126{word-spacing:4.650000px;}
.ws77_c01126{word-spacing:8.616000px;}
.ws73_c01126{word-spacing:8.622000px;}
.ws83_c01126{word-spacing:8.658000px;}
.ws7b_c01126{word-spacing:9.012000px;}
.ws75_c01126{word-spacing:9.120000px;}
.ws7f_c01126{word-spacing:9.132000px;}
.ws6e_c01126{word-spacing:9.294000px;}
.ws71_c01126{word-spacing:9.324000px;}
.ws81_c01126{word-spacing:9.330000px;}
.ws7d_c01126{word-spacing:9.414000px;}
.ws79_c01126{word-spacing:9.588000px;}
.ws57_c01126{word-spacing:12.726000px;}
.ws61_c01126{word-spacing:12.816000px;}
.ws6c_c01126{word-spacing:13.086000px;}
.ws63_c01126{word-spacing:13.104000px;}
.ws5b_c01126{word-spacing:13.224000px;}
.ws65_c01126{word-spacing:13.230000px;}
.ws5d_c01126{word-spacing:13.236000px;}
.ws5f_c01126{word-spacing:13.302000px;}
.ws53_c01126{word-spacing:13.410000px;}
.ws67_c01126{word-spacing:13.428000px;}
.ws6a_c01126{word-spacing:13.464000px;}
.ws55_c01126{word-spacing:13.512000px;}
.ws59_c01126{word-spacing:13.770000px;}
.ws78_c01126{word-spacing:17.196000px;}
.ws74_c01126{word-spacing:17.208000px;}
.ws84_c01126{word-spacing:17.280000px;}
.ws7c_c01126{word-spacing:18.000000px;}
.ws76_c01126{word-spacing:18.216000px;}
.ws80_c01126{word-spacing:18.228000px;}
.ws6f_c01126{word-spacing:18.552000px;}
.ws72_c01126{word-spacing:18.612000px;}
.ws82_c01126{word-spacing:18.624000px;}
.ws70_c01126{word-spacing:18.732000px;}
.ws7e_c01126{word-spacing:18.792000px;}
.ws7a_c01126{word-spacing:19.140000px;}
.ws43_c01126{word-spacing:19.935000px;}
.ws40_c01126{word-spacing:20.250000px;}
.ws0_c01126{word-spacing:23.022000px;}
.ws15_c01126{word-spacing:23.949000px;}
.ws4f_c01126{word-spacing:23.958000px;}
.ws7_c01126{word-spacing:24.003000px;}
.ws4_c01126{word-spacing:24.030000px;}
.ws41_c01126{word-spacing:24.102000px;}
.ws42_c01126{word-spacing:24.228000px;}
.ws2_c01126{word-spacing:24.237000px;}
.ws3b_c01126{word-spacing:24.282000px;}
.ws3e_c01126{word-spacing:24.300000px;}
.ws50_c01126{word-spacing:24.318000px;}
.ws3_c01126{word-spacing:24.372000px;}
.ws4e_c01126{word-spacing:24.390000px;}
.ws25_c01126{word-spacing:24.417000px;}
.ws17_c01126{word-spacing:24.444000px;}
.ws5_c01126{word-spacing:24.462000px;}
.ws3f_c01126{word-spacing:24.543000px;}
.ws23_c01126{word-spacing:24.561000px;}
.ws3c_c01126{word-spacing:24.579000px;}
.ws3a_c01126{word-spacing:24.660000px;}
.ws22_c01126{word-spacing:24.678000px;}
.ws8_c01126{word-spacing:24.723000px;}
.ws6_c01126{word-spacing:24.777000px;}
.ws51_c01126{word-spacing:24.876000px;}
.ws3d_c01126{word-spacing:24.912000px;}
.ws9_c01126{word-spacing:25.020000px;}
.ws26_c01126{word-spacing:25.200000px;}
.ws24_c01126{word-spacing:25.290000px;}
.ws1_c01126{word-spacing:25.362000px;}
.ws58_c01126{word-spacing:25.452000px;}
.ws16_c01126{word-spacing:25.470000px;}
.ws62_c01126{word-spacing:25.632000px;}
.ws69_c01126{word-spacing:26.052000px;}
.ws6d_c01126{word-spacing:26.172000px;}
.ws64_c01126{word-spacing:26.196000px;}
.ws5c_c01126{word-spacing:26.448000px;}
.ws66_c01126{word-spacing:26.460000px;}
.ws5e_c01126{word-spacing:26.472000px;}
.ws60_c01126{word-spacing:26.604000px;}
.ws54_c01126{word-spacing:26.814000px;}
.ws68_c01126{word-spacing:26.844000px;}
.ws6b_c01126{word-spacing:26.916000px;}
.ws56_c01126{word-spacing:27.024000px;}
.ws5a_c01126{word-spacing:27.540000px;}
.ws29_c01126{word-spacing:27.999000px;}
.ws2b_c01126{word-spacing:28.377000px;}
.ws2c_c01126{word-spacing:28.440000px;}
.ws2d_c01126{word-spacing:28.512000px;}
.ws13_c01126{word-spacing:28.530000px;}
.wse_c01126{word-spacing:28.539000px;}
.ws49_c01126{word-spacing:28.629000px;}
.ws28_c01126{word-spacing:28.674000px;}
.ws46_c01126{word-spacing:28.683000px;}
.wsd_c01126{word-spacing:28.710000px;}
.ws4d_c01126{word-spacing:28.800000px;}
.ws12_c01126{word-spacing:28.809000px;}
.ws2f_c01126{word-spacing:28.863000px;}
.ws4a_c01126{word-spacing:28.917000px;}
.wsc_c01126{word-spacing:28.944000px;}
.ws10_c01126{word-spacing:28.962000px;}
.ws30_c01126{word-spacing:28.989000px;}
.ws14_c01126{word-spacing:29.016000px;}
.ws4b_c01126{word-spacing:29.061000px;}
.ws11_c01126{word-spacing:29.178000px;}
.wsb_c01126{word-spacing:29.196000px;}
.wsf_c01126{word-spacing:29.205000px;}
.ws47_c01126{word-spacing:29.313000px;}
.ws44_c01126{word-spacing:29.322000px;}
.ws4c_c01126{word-spacing:29.349000px;}
.ws27_c01126{word-spacing:29.430000px;}
.ws2a_c01126{word-spacing:29.520000px;}
.ws45_c01126{word-spacing:30.042000px;}
.ws48_c01126{word-spacing:30.060000px;}
.ws32_c01126{word-spacing:33.939000px;}
.ws35_c01126{word-spacing:34.254000px;}
.ws34_c01126{word-spacing:34.434000px;}
.ws38_c01126{word-spacing:34.470000px;}
.ws39_c01126{word-spacing:34.569000px;}
.ws31_c01126{word-spacing:34.605000px;}
.ws37_c01126{word-spacing:34.776000px;}
.ws33_c01126{word-spacing:35.289000px;}
.ws36_c01126{word-spacing:35.370000px;}
.ws1d_c01126{word-spacing:39.609000px;}
.ws1e_c01126{word-spacing:39.663000px;}
.ws21_c01126{word-spacing:39.699000px;}
.ws1f_c01126{word-spacing:40.122000px;}
.ws1c_c01126{word-spacing:40.320000px;}
.ws20_c01126{word-spacing:40.950000px;}
._5_c01126{margin-left:-6.713970px;}
._3_c01126{margin-left:-5.508000px;}
._2_c01126{margin-left:-1.377000px;}
._1_c01126{width:1.098000px;}
._0_c01126{width:25.740000px;}
._4_c01126{width:30.456000px;}
._6_c01126{width:41.121000px;}
.fc2_c01126{color:transparent;}
.fc1_c01126{color:rgb(84,84,84);}
.fc0_c01126{color:rgb(85,85,85);}
.fs1_c01126{font-size:48.000000px;}
.fs0_c01126{font-size:90.000000px;}
.y0_c01126{bottom:0.000000px;}
.y13_c01126{bottom:88.920000px;}
.y12_c01126{bottom:115.920000px;}
.y11_c01126{bottom:151.920000px;}
.y10_c01126{bottom:187.920000px;}
.yf_c01126{bottom:214.920000px;}
.ye_c01126{bottom:241.920000px;}
.yd_c01126{bottom:277.920000px;}
.yc_c01126{bottom:304.920000px;}
.y6_c01126{bottom:343.912500px;}
.yb_c01126{bottom:343.995000px;}
.ya_c01126{bottom:375.438000px;}
.y9_c01126{bottom:406.881000px;}
.y5_c01126{bottom:408.420000px;}
.y8_c01126{bottom:438.552000px;}
.y4_c01126{bottom:466.920000px;}
.y7_c01126{bottom:469.995000px;}
.y3_c01126{bottom:502.920000px;}
.y2_c01126{bottom:529.920000px;}
.y1_c01126{bottom:565.920000px;}
.y16_c01126{bottom:600.316500px;}
.y15_c01126{bottom:614.758500px;}
.y14_c01126{bottom:629.158500px;}
.h3_c01126{height:34.080000px;}
.h1_c01126{height:65.520000px;}
.h2_c01126{height:65.522461px;}
.h0_c01126{height:810.000000px;}
.w0_c01126{width:1440.000000px;}
.x0_c01126{left:0.000000px;}
.x6_c01126{left:32.559150px;}
.x1_c01126{left:38.611650px;}
.x2_c01126{left:74.949150px;}
.x5_c01126{left:114.774000px;}
.x4_c01126{left:116.905500px;}
.x3_c01126{left:120.444150px;}
.x7_c01126{left:906.894000px;}
@media print{
.v0_c01126{vertical-align:0.000000pt;}
.ls15_c01126{letter-spacing:-4.213333pt;}
.ls13_c01126{letter-spacing:-0.240000pt;}
.ls14_c01126{letter-spacing:-0.218667pt;}
.ls11_c01126{letter-spacing:-0.216000pt;}
.ls16_c01126{letter-spacing:-0.024000pt;}
.ls12_c01126{letter-spacing:0.000000pt;}
.ls7_c01126{letter-spacing:0.010667pt;}
.ls6_c01126{letter-spacing:0.021333pt;}
.ls10_c01126{letter-spacing:0.024000pt;}
.lsa_c01126{letter-spacing:0.026667pt;}
.lsb_c01126{letter-spacing:0.154667pt;}
.ls2_c01126{letter-spacing:0.160000pt;}
.ls8_c01126{letter-spacing:0.170667pt;}
.ls9_c01126{letter-spacing:0.176000pt;}
.ls4_c01126{letter-spacing:0.181333pt;}
.ls0_c01126{letter-spacing:0.184000pt;}
.ls3_c01126{letter-spacing:0.186667pt;}
.lsd_c01126{letter-spacing:0.202667pt;}
.lsc_c01126{letter-spacing:0.208000pt;}
.lsf_c01126{letter-spacing:0.216000pt;}
.lse_c01126{letter-spacing:0.218667pt;}
.ls5_c01126{letter-spacing:0.240000pt;}
.ls1_c01126{letter-spacing:22.160000pt;}
.ws9f_c01126{word-spacing:-1.557333pt;}
.ws8a_c01126{word-spacing:-1.472000pt;}
.ws88_c01126{word-spacing:-1.290667pt;}
.ws86_c01126{word-spacing:-1.280000pt;}
.wsa3_c01126{word-spacing:-1.269333pt;}
.ws99_c01126{word-spacing:-1.258667pt;}
.wsa2_c01126{word-spacing:-0.981333pt;}
.ws8e_c01126{word-spacing:-0.928000pt;}
.ws92_c01126{word-spacing:-0.906667pt;}
.wsa5_c01126{word-spacing:-0.768000pt;}
.ws9e_c01126{word-spacing:-0.762667pt;}
.ws94_c01126{word-spacing:-0.746667pt;}
.ws89_c01126{word-spacing:-0.725333pt;}
.ws87_c01126{word-spacing:-0.629333pt;}
.ws85_c01126{word-spacing:-0.624000pt;}
.ws98_c01126{word-spacing:-0.618667pt;}
.ws90_c01126{word-spacing:-0.501333pt;}
.wsa1_c01126{word-spacing:-0.474667pt;}
.ws9b_c01126{word-spacing:-0.458667pt;}
.ws8d_c01126{word-spacing:-0.453333pt;}
.ws91_c01126{word-spacing:-0.437333pt;}
.wsa4_c01126{word-spacing:-0.368000pt;}
.ws93_c01126{word-spacing:-0.357333pt;}
.ws97_c01126{word-spacing:-0.293333pt;}
.ws18_c01126{word-spacing:-0.264000pt;}
.ws8f_c01126{word-spacing:-0.234667pt;}
.ws9a_c01126{word-spacing:-0.213333pt;}
.wsa0_c01126{word-spacing:-0.202667pt;}
.ws8c_c01126{word-spacing:-0.160000pt;}
.ws96_c01126{word-spacing:-0.149333pt;}
.ws2e_c01126{word-spacing:-0.104000pt;}
.ws9d_c01126{word-spacing:-0.085333pt;}
.wsa_c01126{word-spacing:-0.080000pt;}
.ws8b_c01126{word-spacing:-0.064000pt;}
.ws95_c01126{word-spacing:-0.058667pt;}
.ws9c_c01126{word-spacing:-0.026667pt;}
.wsa8_c01126{word-spacing:-0.021333pt;}
.ws52_c01126{word-spacing:0.000000pt;}
.ws1b_c01126{word-spacing:0.138667pt;}
.ws19_c01126{word-spacing:0.160000pt;}
.wsa6_c01126{word-spacing:0.245333pt;}
.wsa7_c01126{word-spacing:0.458667pt;}
.ws1a_c01126{word-spacing:4.133333pt;}
.ws77_c01126{word-spacing:7.658667pt;}
.ws73_c01126{word-spacing:7.664000pt;}
.ws83_c01126{word-spacing:7.696000pt;}
.ws7b_c01126{word-spacing:8.010667pt;}
.ws75_c01126{word-spacing:8.106667pt;}
.ws7f_c01126{word-spacing:8.117333pt;}
.ws6e_c01126{word-spacing:8.261333pt;}
.ws71_c01126{word-spacing:8.288000pt;}
.ws81_c01126{word-spacing:8.293333pt;}
.ws7d_c01126{word-spacing:8.368000pt;}
.ws79_c01126{word-spacing:8.522667pt;}
.ws57_c01126{word-spacing:11.312000pt;}
.ws61_c01126{word-spacing:11.392000pt;}
.ws6c_c01126{word-spacing:11.632000pt;}
.ws63_c01126{word-spacing:11.648000pt;}
.ws5b_c01126{word-spacing:11.754667pt;}
.ws65_c01126{word-spacing:11.760000pt;}
.ws5d_c01126{word-spacing:11.765333pt;}
.ws5f_c01126{word-spacing:11.824000pt;}
.ws53_c01126{word-spacing:11.920000pt;}
.ws67_c01126{word-spacing:11.936000pt;}
.ws6a_c01126{word-spacing:11.968000pt;}
.ws55_c01126{word-spacing:12.010667pt;}
.ws59_c01126{word-spacing:12.240000pt;}
.ws78_c01126{word-spacing:15.285333pt;}
.ws74_c01126{word-spacing:15.296000pt;}
.ws84_c01126{word-spacing:15.360000pt;}
.ws7c_c01126{word-spacing:16.000000pt;}
.ws76_c01126{word-spacing:16.192000pt;}
.ws80_c01126{word-spacing:16.202667pt;}
.ws6f_c01126{word-spacing:16.490667pt;}
.ws72_c01126{word-spacing:16.544000pt;}
.ws82_c01126{word-spacing:16.554667pt;}
.ws70_c01126{word-spacing:16.650667pt;}
.ws7e_c01126{word-spacing:16.704000pt;}
.ws7a_c01126{word-spacing:17.013333pt;}
.ws43_c01126{word-spacing:17.720000pt;}
.ws40_c01126{word-spacing:18.000000pt;}
.ws0_c01126{word-spacing:20.464000pt;}
.ws15_c01126{word-spacing:21.288000pt;}
.ws4f_c01126{word-spacing:21.296000pt;}
.ws7_c01126{word-spacing:21.336000pt;}
.ws4_c01126{word-spacing:21.360000pt;}
.ws41_c01126{word-spacing:21.424000pt;}
.ws42_c01126{word-spacing:21.536000pt;}
.ws2_c01126{word-spacing:21.544000pt;}
.ws3b_c01126{word-spacing:21.584000pt;}
.ws3e_c01126{word-spacing:21.600000pt;}
.ws50_c01126{word-spacing:21.616000pt;}
.ws3_c01126{word-spacing:21.664000pt;}
.ws4e_c01126{word-spacing:21.680000pt;}
.ws25_c01126{word-spacing:21.704000pt;}
.ws17_c01126{word-spacing:21.728000pt;}
.ws5_c01126{word-spacing:21.744000pt;}
.ws3f_c01126{word-spacing:21.816000pt;}
.ws23_c01126{word-spacing:21.832000pt;}
.ws3c_c01126{word-spacing:21.848000pt;}
.ws3a_c01126{word-spacing:21.920000pt;}
.ws22_c01126{word-spacing:21.936000pt;}
.ws8_c01126{word-spacing:21.976000pt;}
.ws6_c01126{word-spacing:22.024000pt;}
.ws51_c01126{word-spacing:22.112000pt;}
.ws3d_c01126{word-spacing:22.144000pt;}
.ws9_c01126{word-spacing:22.240000pt;}
.ws26_c01126{word-spacing:22.400000pt;}
.ws24_c01126{word-spacing:22.480000pt;}
.ws1_c01126{word-spacing:22.544000pt;}
.ws58_c01126{word-spacing:22.624000pt;}
.ws16_c01126{word-spacing:22.640000pt;}
.ws62_c01126{word-spacing:22.784000pt;}
.ws69_c01126{word-spacing:23.157333pt;}
.ws6d_c01126{word-spacing:23.264000pt;}
.ws64_c01126{word-spacing:23.285333pt;}
.ws5c_c01126{word-spacing:23.509333pt;}
.ws66_c01126{word-spacing:23.520000pt;}
.ws5e_c01126{word-spacing:23.530667pt;}
.ws60_c01126{word-spacing:23.648000pt;}
.ws54_c01126{word-spacing:23.834667pt;}
.ws68_c01126{word-spacing:23.861333pt;}
.ws6b_c01126{word-spacing:23.925333pt;}
.ws56_c01126{word-spacing:24.021333pt;}
.ws5a_c01126{word-spacing:24.480000pt;}
.ws29_c01126{word-spacing:24.888000pt;}
.ws2b_c01126{word-spacing:25.224000pt;}
.ws2c_c01126{word-spacing:25.280000pt;}
.ws2d_c01126{word-spacing:25.344000pt;}
.ws13_c01126{word-spacing:25.360000pt;}
.wse_c01126{word-spacing:25.368000pt;}
.ws49_c01126{word-spacing:25.448000pt;}
.ws28_c01126{word-spacing:25.488000pt;}
.ws46_c01126{word-spacing:25.496000pt;}
.wsd_c01126{word-spacing:25.520000pt;}
.ws4d_c01126{word-spacing:25.600000pt;}
.ws12_c01126{word-spacing:25.608000pt;}
.ws2f_c01126{word-spacing:25.656000pt;}
.ws4a_c01126{word-spacing:25.704000pt;}
.wsc_c01126{word-spacing:25.728000pt;}
.ws10_c01126{word-spacing:25.744000pt;}
.ws30_c01126{word-spacing:25.768000pt;}
.ws14_c01126{word-spacing:25.792000pt;}
.ws4b_c01126{word-spacing:25.832000pt;}
.ws11_c01126{word-spacing:25.936000pt;}
.wsb_c01126{word-spacing:25.952000pt;}
.wsf_c01126{word-spacing:25.960000pt;}
.ws47_c01126{word-spacing:26.056000pt;}
.ws44_c01126{word-spacing:26.064000pt;}
.ws4c_c01126{word-spacing:26.088000pt;}
.ws27_c01126{word-spacing:26.160000pt;}
.ws2a_c01126{word-spacing:26.240000pt;}
.ws45_c01126{word-spacing:26.704000pt;}
.ws48_c01126{word-spacing:26.720000pt;}
.ws32_c01126{word-spacing:30.168000pt;}
.ws35_c01126{word-spacing:30.448000pt;}
.ws34_c01126{word-spacing:30.608000pt;}
.ws38_c01126{word-spacing:30.640000pt;}
.ws39_c01126{word-spacing:30.728000pt;}
.ws31_c01126{word-spacing:30.760000pt;}
.ws37_c01126{word-spacing:30.912000pt;}
.ws33_c01126{word-spacing:31.368000pt;}
.ws36_c01126{word-spacing:31.440000pt;}
.ws1d_c01126{word-spacing:35.208000pt;}
.ws1e_c01126{word-spacing:35.256000pt;}
.ws21_c01126{word-spacing:35.288000pt;}
.ws1f_c01126{word-spacing:35.664000pt;}
.ws1c_c01126{word-spacing:35.840000pt;}
.ws20_c01126{word-spacing:36.400000pt;}
._5_c01126{margin-left:-5.967973pt;}
._3_c01126{margin-left:-4.896000pt;}
._2_c01126{margin-left:-1.224000pt;}
._1_c01126{width:0.976000pt;}
._0_c01126{width:22.880000pt;}
._4_c01126{width:27.072000pt;}
._6_c01126{width:36.552000pt;}
.fs1_c01126{font-size:42.666667pt;}
.fs0_c01126{font-size:80.000000pt;}
.y0_c01126{bottom:0.000000pt;}
.y13_c01126{bottom:79.040000pt;}
.y12_c01126{bottom:103.040000pt;}
.y11_c01126{bottom:135.040000pt;}
.y10_c01126{bottom:167.040000pt;}
.yf_c01126{bottom:191.040000pt;}
.ye_c01126{bottom:215.040000pt;}
.yd_c01126{bottom:247.040000pt;}
.yc_c01126{bottom:271.040000pt;}
.y6_c01126{bottom:305.700000pt;}
.yb_c01126{bottom:305.773333pt;}
.ya_c01126{bottom:333.722667pt;}
.y9_c01126{bottom:361.672000pt;}
.y5_c01126{bottom:363.040000pt;}
.y8_c01126{bottom:389.824000pt;}
.y4_c01126{bottom:415.040000pt;}
.y7_c01126{bottom:417.773333pt;}
.y3_c01126{bottom:447.040000pt;}
.y2_c01126{bottom:471.040000pt;}
.y1_c01126{bottom:503.040000pt;}
.y16_c01126{bottom:533.614667pt;}
.y15_c01126{bottom:546.452000pt;}
.y14_c01126{bottom:559.252000pt;}
.h3_c01126{height:30.293333pt;}
.h1_c01126{height:58.240000pt;}
.h2_c01126{height:58.242188pt;}
.h0_c01126{height:720.000000pt;}
.w0_c01126{width:1280.000000pt;}
.x0_c01126{left:0.000000pt;}
.x6_c01126{left:28.941467pt;}
.x1_c01126{left:34.321467pt;}
.x2_c01126{left:66.621467pt;}
.x5_c01126{left:102.021333pt;}
.x4_c01126{left:103.916000pt;}
.x3_c01126{left:107.061467pt;}
.x7_c01126{left:806.128000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_24b0db4ba008f87364345ccc.woff2')format("woff");}.ff1_c01127{font-family:ff1_c01127;line-height:0.938000;font-style:normal;font-weight:normal;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_b6720621662219bb0039fb49.woff2')format("woff");}.ff2_c01127{font-family:ff2_c01127;line-height:0.925000;font-style:normal;font-weight:normal;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_d529ced35afea2e3afa85451.woff2')format("woff");}.ff3_c01127{font-family:ff3_c01127;line-height:0.938000;font-style:normal;font-weight:normal;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_951b5bf8c79e41b08c5b7948.woff2')format("woff");}.ff4_c01127{font-family:ff4_c01127;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01127{vertical-align:0.000000px;}
.ls2_c01127{letter-spacing:-0.105600px;}
.ls0_c01127{letter-spacing:0.000000px;}
.ls1_c01127{letter-spacing:0.100800px;}
.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;}
}
.ws1_c01127{word-spacing:-0.184800px;}
.ws2_c01127{word-spacing:-0.158400px;}
.ws3_c01127{word-spacing:0.000000px;}
.ws0_c01127{word-spacing:1116.033000px;}
._2_c01127{margin-left:-19.272000px;}
._0_c01127{margin-left:-1.176000px;}
._1_c01127{width:1.056000px;}
.fc1_c01127{color:rgb(40,37,97);}
.fc0_c01127{color:rgb(43,130,184);}
.fs1_c01127{font-size:84.000000px;}
.fs3_c01127{font-size:108.000000px;}
.fs0_c01127{font-size:192.000000px;}
.fs2_c01127{font-size:264.000000px;}
.y0_c01127{bottom:0.000000px;}
.y3_c01127{bottom:375.831000px;}
.y2_c01127{bottom:399.960000px;}
.y1_c01127{bottom:403.920000px;}
.y6_c01127{bottom:408.600000px;}
.y4_c01127{bottom:632.160000px;}
.y5_c01127{bottom:685.080000px;}
.h2_c01127{height:61.152000px;}
.h4_c01127{height:78.084000px;}
.h1_c01127{height:139.776000px;}
.h3_c01127{height:192.192000px;}
.h0_c01127{height:810.000000px;}
.w0_c01127{width:1440.000000px;}
.x0_c01127{left:0.000000px;}
.x3_c01127{left:82.800000px;}
.x2_c01127{left:508.118700px;}
.x1_c01127{left:848.254200px;}
.x4_c01127{left:1370.354100px;}
@media print{
.v0_c01127{vertical-align:0.000000pt;}
.ls2_c01127{letter-spacing:-0.093867pt;}
.ls0_c01127{letter-spacing:0.000000pt;}
.ls1_c01127{letter-spacing:0.089600pt;}
.ws1_c01127{word-spacing:-0.164267pt;}
.ws2_c01127{word-spacing:-0.140800pt;}
.ws3_c01127{word-spacing:0.000000pt;}
.ws0_c01127{word-spacing:992.029333pt;}
._2_c01127{margin-left:-17.130667pt;}
._0_c01127{margin-left:-1.045333pt;}
._1_c01127{width:0.938667pt;}
.fs1_c01127{font-size:74.666667pt;}
.fs3_c01127{font-size:96.000000pt;}
.fs0_c01127{font-size:170.666667pt;}
.fs2_c01127{font-size:234.666667pt;}
.y0_c01127{bottom:0.000000pt;}
.y3_c01127{bottom:334.072000pt;}
.y2_c01127{bottom:355.520000pt;}
.y1_c01127{bottom:359.040000pt;}
.y6_c01127{bottom:363.200000pt;}
.y4_c01127{bottom:561.920000pt;}
.y5_c01127{bottom:608.960000pt;}
.h2_c01127{height:54.357333pt;}
.h4_c01127{height:69.408000pt;}
.h1_c01127{height:124.245333pt;}
.h3_c01127{height:170.837333pt;}
.h0_c01127{height:720.000000pt;}
.w0_c01127{width:1280.000000pt;}
.x0_c01127{left:0.000000pt;}
.x3_c01127{left:73.600000pt;}
.x2_c01127{left:451.661067pt;}
.x1_c01127{left:754.003733pt;}
.x4_c01127{left:1218.092533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33bfff371af6be4c2e481a00.woff2')format("woff");}.ff1_c01128{font-family:ff1_c01128;line-height:0.785000;font-style:normal;font-weight:normal;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_24b0db4ba008f87364345ccc.woff2')format("woff");}.ff2_c01128{font-family:ff2_c01128;line-height:0.938000;font-style:normal;font-weight:normal;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_932506452aea1df4670bcc37.woff2')format("woff");}.ff3_c01128{font-family:ff3_c01128;line-height:0.925000;font-style:normal;font-weight:normal;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_46ef9959e0a607e267a481a7.woff2')format("woff");}.ff4_c01128{font-family:ff4_c01128;line-height:0.938000;font-style:normal;font-weight:normal;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_951b5bf8c79e41b08c5b7948.woff2')format("woff");}.ff5_c01128{font-family:ff5_c01128;line-height:0.723000;font-style: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;}
.ls4_c01128{letter-spacing:-0.218400px;}
.ls2_c01128{letter-spacing:-0.100800px;}
.ls0_c01128{letter-spacing:0.000000px;}
.ls3_c01128{letter-spacing:0.100800px;}
.ls1_c01128{letter-spacing:0.218400px;}
.sc__c01128{text-shadow:none;}
.sc0_c01128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01128{-webkit-text-stroke:0px transparent;}
.sc0_c01128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01128{word-spacing:-23.570398px;}
.ws1_c01128{word-spacing:-23.452798px;}
.ws2_c01128{word-spacing:-23.133598px;}
.ws3_c01128{word-spacing:0.000000px;}
._2_c01128{margin-left:-6.971999px;}
._1_c01128{margin-left:-3.729600px;}
._0_c01128{margin-left:-1.166400px;}
.fc3_c01128{color:transparent;}
.fc2_c01128{color:rgb(247,130,32);}
.fc1_c01128{color:rgb(43,130,184);}
.fc0_c01128{color:rgb(128,211,239);}
.fs0_c01128{font-size:72.000000px;}
.fs2_c01128{font-size:83.999993px;}
.fs4_c01128{font-size:108.000000px;}
.fs3_c01128{font-size:144.000000px;}
.fs1_c01128{font-size:191.999949px;}
.y0_c01128{bottom:0.000000px;}
.y1_c01128{bottom:44.640015px;}
.ya_c01128{bottom:128.519989px;}
.y9_c01128{bottom:152.640015px;}
.y11_c01128{bottom:180.000000px;}
.y8_c01128{bottom:237.599991px;}
.y7_c01128{bottom:261.720016px;}
.y6_c01128{bottom:293.759995px;}
.y10_c01128{bottom:316.800018px;}
.y5_c01128{bottom:317.880020px;}
.ye_c01128{bottom:375.839996px;}
.yd_c01128{bottom:399.960022px;}
.y2_c01128{bottom:403.919998px;}
.y12_c01128{bottom:408.599991px;}
.y4_c01128{bottom:609.120003px;}
.y3_c01128{bottom:632.160004px;}
.yc_c01128{bottom:633.600002px;}
.yb_c01128{bottom:657.359997px;}
.yf_c01128{bottom:661.680016px;}
.h1_c01128{height:52.488000px;}
.h3_c01128{height:61.151995px;}
.h5_c01128{height:78.084000px;}
.h4_c01128{height:104.832000px;}
.h2_c01128{height:139.775963px;}
.h0_c01128{height:810.000000px;}
.w0_c01128{width:1440.000000px;}
.x0_c01128{left:0.000000px;}
.x1_c01128{left:82.800000px;}
.x4_c01128{left:184.121098px;}
.x3_c01128{left:286.515289px;}
.xd_c01128{left:317.062958px;}
.xc_c01128{left:508.118683px;}
.xe_c01128{left:523.700272px;}
.x5_c01128{left:648.537003px;}
.xf_c01128{left:714.925964px;}
.x2_c01128{left:854.910461px;}
.xa_c01128{left:905.633423px;}
.x8_c01128{left:967.582764px;}
.x9_c01128{left:1021.897797px;}
.x6_c01128{left:1027.042236px;}
.x7_c01128{left:1063.229736px;}
.xb_c01128{left:1163.294678px;}
.x10_c01128{left:1374.103912px;}
@media print{
.v0_c01128{vertical-align:0.000000pt;}
.ls4_c01128{letter-spacing:-0.194133pt;}
.ls2_c01128{letter-spacing:-0.089600pt;}
.ls0_c01128{letter-spacing:0.000000pt;}
.ls3_c01128{letter-spacing:0.089600pt;}
.ls1_c01128{letter-spacing:0.194133pt;}
.ws0_c01128{word-spacing:-20.951465pt;}
.ws1_c01128{word-spacing:-20.846932pt;}
.ws2_c01128{word-spacing:-20.563198pt;}
.ws3_c01128{word-spacing:0.000000pt;}
._2_c01128{margin-left:-6.197333pt;}
._1_c01128{margin-left:-3.315200pt;}
._0_c01128{margin-left:-1.036800pt;}
.fs0_c01128{font-size:64.000000pt;}
.fs2_c01128{font-size:74.666660pt;}
.fs4_c01128{font-size:96.000000pt;}
.fs3_c01128{font-size:128.000000pt;}
.fs1_c01128{font-size:170.666621pt;}
.y0_c01128{bottom:0.000000pt;}
.y1_c01128{bottom:39.680013pt;}
.ya_c01128{bottom:114.239990pt;}
.y9_c01128{bottom:135.680013pt;}
.y11_c01128{bottom:160.000000pt;}
.y8_c01128{bottom:211.199992pt;}
.y7_c01128{bottom:232.640015pt;}
.y6_c01128{bottom:261.119995pt;}
.y10_c01128{bottom:281.600016pt;}
.y5_c01128{bottom:282.560018pt;}
.ye_c01128{bottom:334.079997pt;}
.yd_c01128{bottom:355.520020pt;}
.y2_c01128{bottom:359.039998pt;}
.y12_c01128{bottom:363.199992pt;}
.y4_c01128{bottom:541.440002pt;}
.y3_c01128{bottom:561.920003pt;}
.yc_c01128{bottom:563.200002pt;}
.yb_c01128{bottom:584.319997pt;}
.yf_c01128{bottom:588.160014pt;}
.h1_c01128{height:46.656000pt;}
.h3_c01128{height:54.357329pt;}
.h5_c01128{height:69.408000pt;}
.h4_c01128{height:93.184000pt;}
.h2_c01128{height:124.245300pt;}
.h0_c01128{height:720.000000pt;}
.w0_c01128{width:1280.000000pt;}
.x0_c01128{left:0.000000pt;}
.x1_c01128{left:73.600000pt;}
.x4_c01128{left:163.663198pt;}
.x3_c01128{left:254.680257pt;}
.xd_c01128{left:281.833740pt;}
.xc_c01128{left:451.661051pt;}
.xe_c01128{left:465.511353pt;}
.x5_c01128{left:576.477336pt;}
.xf_c01128{left:635.489746pt;}
.x2_c01128{left:759.920410pt;}
.xa_c01128{left:805.007487pt;}
.x8_c01128{left:860.073568pt;}
.x9_c01128{left:908.353597pt;}
.x6_c01128{left:912.926432pt;}
.x7_c01128{left:945.093099pt;}
.xb_c01128{left:1034.039714pt;}
.x10_c01128{left:1221.425700pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0cbbe229d0365a30cd0111fc.woff2')format("woff");}.ff1_c01129{font-family:ff1_c01129;line-height:0.938000;font-style:normal;font-weight:normal;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_ff0b22225b848b6a0dc2a87d.woff2')format("woff");}.ff2_c01129{font-family:ff2_c01129;line-height:0.938000;font-style:normal;font-weight:normal;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_7b3e497ca69d891c7dfe7cf7.woff2')format("woff");}.ff3_c01129{font-family:ff3_c01129;line-height:0.938000;font-style:normal;font-weight:normal;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_c522ed934e323d0fa4924eb3.woff2')format("woff");}.ff4_c01129{font-family:ff4_c01129;line-height:0.938000;font-style:normal;font-weight:normal;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_24b0db4ba008f87364345ccc.woff2')format("woff");}.ff5_c01129{font-family:ff5_c01129;line-height:0.938000;font-style: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);}
.v0_c01129{vertical-align:0.000000px;}
.ls6_c01129{letter-spacing:-0.052800px;}
.ls8_c01129{letter-spacing:-0.028800px;}
.ls7_c01129{letter-spacing:0.000000px;}
.ls2_c01129{letter-spacing:0.014400px;}
.ls1_c01129{letter-spacing:0.028800px;}
.ls9_c01129{letter-spacing:0.100800px;}
.ls0_c01129{letter-spacing:0.158400px;}
.ls3_c01129{letter-spacing:0.268800px;}
.ls5_c01129{letter-spacing:0.302400px;}
.ls4_c01129{letter-spacing:0.336000px;}
.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:0.000000px;}
._1_c01129{margin-left:-8.976000px;}
._0_c01129{margin-left:-1.056000px;}
._2_c01129{width:1.056000px;}
.fc3_c01129{color:rgb(247,130,32);}
.fc2_c01129{color:rgb(255,255,255);}
.fc1_c01129{color:rgb(253,234,218);}
.fc0_c01129{color:rgb(40,37,97);}
.fs1_c01129{font-size:144.000000px;}
.fs2_c01129{font-size:168.000000px;}
.fs3_c01129{font-size:192.000000px;}
.fs0_c01129{font-size:264.000000px;}
.y0_c01129{bottom:0.000000px;}
.y6_c01129{bottom:113.040000px;}
.y9_c01129{bottom:233.976000px;}
.y5_c01129{bottom:241.200000px;}
.y4_c01129{bottom:366.480000px;}
.y8_c01129{bottom:379.416000px;}
.y3_c01129{bottom:403.920000px;}
.y7_c01129{bottom:523.080000px;}
.y2_c01129{bottom:529.200000px;}
.y1_c01129{bottom:685.080000px;}
.h2_c01129{height:104.832000px;}
.h3_c01129{height:122.304000px;}
.h4_c01129{height:139.776000px;}
.h1_c01129{height:192.192000px;}
.h0_c01129{height:810.000000px;}
.w0_c01129{width:1440.000000px;}
.x0_c01129{left:0.000000px;}
.x1_c01129{left:82.800000px;}
.x7_c01129{left:118.732200px;}
.x5_c01129{left:127.228200px;}
.x6_c01129{left:161.260200px;}
.x2_c01129{left:214.819050px;}
.x4_c01129{left:215.833950px;}
.x3_c01129{left:249.687750px;}
@media print{
.v0_c01129{vertical-align:0.000000pt;}
.ls6_c01129{letter-spacing:-0.046933pt;}
.ls8_c01129{letter-spacing:-0.025600pt;}
.ls7_c01129{letter-spacing:0.000000pt;}
.ls2_c01129{letter-spacing:0.012800pt;}
.ls1_c01129{letter-spacing:0.025600pt;}
.ls9_c01129{letter-spacing:0.089600pt;}
.ls0_c01129{letter-spacing:0.140800pt;}
.ls3_c01129{letter-spacing:0.238933pt;}
.ls5_c01129{letter-spacing:0.268800pt;}
.ls4_c01129{letter-spacing:0.298667pt;}
.ws0_c01129{word-spacing:0.000000pt;}
._1_c01129{margin-left:-7.978667pt;}
._0_c01129{margin-left:-0.938667pt;}
._2_c01129{width:0.938667pt;}
.fs1_c01129{font-size:128.000000pt;}
.fs2_c01129{font-size:149.333333pt;}
.fs3_c01129{font-size:170.666667pt;}
.fs0_c01129{font-size:234.666667pt;}
.y0_c01129{bottom:0.000000pt;}
.y6_c01129{bottom:100.480000pt;}
.y9_c01129{bottom:207.978667pt;}
.y5_c01129{bottom:214.400000pt;}
.y4_c01129{bottom:325.760000pt;}
.y8_c01129{bottom:337.258667pt;}
.y3_c01129{bottom:359.040000pt;}
.y7_c01129{bottom:464.960000pt;}
.y2_c01129{bottom:470.400000pt;}
.y1_c01129{bottom:608.960000pt;}
.h2_c01129{height:93.184000pt;}
.h3_c01129{height:108.714667pt;}
.h4_c01129{height:124.245333pt;}
.h1_c01129{height:170.837333pt;}
.h0_c01129{height:720.000000pt;}
.w0_c01129{width:1280.000000pt;}
.x0_c01129{left:0.000000pt;}
.x1_c01129{left:73.600000pt;}
.x7_c01129{left:105.539733pt;}
.x5_c01129{left:113.091733pt;}
.x6_c01129{left:143.342400pt;}
.x2_c01129{left:190.950267pt;}
.x4_c01129{left:191.852400pt;}
.x3_c01129{left:221.944667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2bb93d10d95935d47e1c7f07.woff2')format("woff");}.ff1_c01130{font-family:ff1_c01130;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01130;src:url('chunks/assets/font_1f487e53a8f54802eac7a763.woff2')format("woff");}.ff2_c01130{font-family:ff2_c01130;line-height:0.873535;font-style:normal;font-weight:normal;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_fb83f23e433381d4ff11e045.woff2')format("woff");}.ff3_c01130{font-family:ff3_c01130;line-height:0.855000;font-style: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);}
.v1_c01130{vertical-align:-61.800000px;}
.v0_c01130{vertical-align:0.000000px;}
.ls4_c01130{letter-spacing:-14.934000px;}
.ls2_c01130{letter-spacing:-12.210000px;}
.ls3_c01130{letter-spacing:-11.952000px;}
.ls0_c01130{letter-spacing:-4.530000px;}
.ls5_c01130{letter-spacing:-2.448000px;}
.lsa_c01130{letter-spacing:-0.258000px;}
.ls7_c01130{letter-spacing:-0.174000px;}
.ls8_c01130{letter-spacing:-0.132000px;}
.lsb_c01130{letter-spacing:-0.114000px;}
.lsc_c01130{letter-spacing:-0.037800px;}
.ls1_c01130{letter-spacing:0.000000px;}
.ls6_c01130{letter-spacing:0.102000px;}
.ls9_c01130{letter-spacing:0.372000px;}
.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:-55.596000px;}
.ws1_c01130{word-spacing:-32.544000px;}
.ws4_c01130{word-spacing:-4.530000px;}
.wsc_c01130{word-spacing:-0.276000px;}
.ws3_c01130{word-spacing:0.000000px;}
.wsa_c01130{word-spacing:0.150000px;}
.ws7_c01130{word-spacing:0.294000px;}
.ws8_c01130{word-spacing:0.324000px;}
.ws5_c01130{word-spacing:0.396000px;}
.wsb_c01130{word-spacing:0.420000px;}
.ws6_c01130{word-spacing:5.442000px;}
.ws9_c01130{word-spacing:29.838000px;}
.ws2_c01130{word-spacing:1856.732400px;}
._2_c01130{margin-left:-11.970000px;}
._0_c01130{margin-left:-4.650000px;}
._3_c01130{margin-left:-3.540000px;}
._4_c01130{margin-left:-1.248000px;}
._1_c01130{width:4.710000px;}
.fc0_c01130{color:rgb(0,0,0);}
.fs2_c01130{font-size:54.000000px;}
.fs0_c01130{font-size:144.000000px;}
.fs1_c01130{font-size:246.000000px;}
.y0_c01130{bottom:0.000000px;}
.y6_c01130{bottom:25.170000px;}
.y5_c01130{bottom:76.033500px;}
.y4_c01130{bottom:205.033500px;}
.y3_c01130{bottom:296.533500px;}
.y2_c01130{bottom:388.033500px;}
.y1_c01130{bottom:479.533500px;}
.h1_c01130{height:103.359375px;}
.h2_c01130{height:176.572266px;}
.h0_c01130{height:810.000000px;}
.w0_c01130{width:1440.000000px;}
.x0_c01130{left:0.000000px;}
.x2_c01130{left:253.612500px;}
.x3_c01130{left:257.220000px;}
.x4_c01130{left:288.450000px;}
.x5_c01130{left:367.393500px;}
.x1_c01130{left:598.048500px;}
.x6_c01130{left:605.614500px;}
@media print{
.v1_c01130{vertical-align:-54.933333pt;}
.v0_c01130{vertical-align:0.000000pt;}
.ls4_c01130{letter-spacing:-13.274667pt;}
.ls2_c01130{letter-spacing:-10.853333pt;}
.ls3_c01130{letter-spacing:-10.624000pt;}
.ls0_c01130{letter-spacing:-4.026667pt;}
.ls5_c01130{letter-spacing:-2.176000pt;}
.lsa_c01130{letter-spacing:-0.229333pt;}
.ls7_c01130{letter-spacing:-0.154667pt;}
.ls8_c01130{letter-spacing:-0.117333pt;}
.lsb_c01130{letter-spacing:-0.101333pt;}
.lsc_c01130{letter-spacing:-0.033600pt;}
.ls1_c01130{letter-spacing:0.000000pt;}
.ls6_c01130{letter-spacing:0.090667pt;}
.ls9_c01130{letter-spacing:0.330667pt;}
.ws0_c01130{word-spacing:-49.418667pt;}
.ws1_c01130{word-spacing:-28.928000pt;}
.ws4_c01130{word-spacing:-4.026667pt;}
.wsc_c01130{word-spacing:-0.245333pt;}
.ws3_c01130{word-spacing:0.000000pt;}
.wsa_c01130{word-spacing:0.133333pt;}
.ws7_c01130{word-spacing:0.261333pt;}
.ws8_c01130{word-spacing:0.288000pt;}
.ws5_c01130{word-spacing:0.352000pt;}
.wsb_c01130{word-spacing:0.373333pt;}
.ws6_c01130{word-spacing:4.837333pt;}
.ws9_c01130{word-spacing:26.522667pt;}
.ws2_c01130{word-spacing:1650.428800pt;}
._2_c01130{margin-left:-10.640000pt;}
._0_c01130{margin-left:-4.133333pt;}
._3_c01130{margin-left:-3.146667pt;}
._4_c01130{margin-left:-1.109333pt;}
._1_c01130{width:4.186667pt;}
.fs2_c01130{font-size:48.000000pt;}
.fs0_c01130{font-size:128.000000pt;}
.fs1_c01130{font-size:218.666667pt;}
.y0_c01130{bottom:0.000000pt;}
.y6_c01130{bottom:22.373333pt;}
.y5_c01130{bottom:67.585333pt;}
.y4_c01130{bottom:182.252000pt;}
.y3_c01130{bottom:263.585333pt;}
.y2_c01130{bottom:344.918667pt;}
.y1_c01130{bottom:426.252000pt;}
.h1_c01130{height:91.875000pt;}
.h2_c01130{height:156.953125pt;}
.h0_c01130{height:720.000000pt;}
.w0_c01130{width:1280.000000pt;}
.x0_c01130{left:0.000000pt;}
.x2_c01130{left:225.433333pt;}
.x3_c01130{left:228.640000pt;}
.x4_c01130{left:256.400000pt;}
.x5_c01130{left:326.572000pt;}
.x1_c01130{left:531.598667pt;}
.x6_c01130{left:538.324000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a7dcb24d1212415165c78fa9.woff2')format("woff");}.ff1_c01131{font-family:ff1_c01131;line-height:0.862000;font-style:normal;font-weight:normal;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_fb83f23e433381d4ff11e045.woff2')format("woff");}.ff2_c01131{font-family:ff2_c01131;line-height:0.855000;font-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_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);}
.m0_c01131{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_c01131{vertical-align:0.000000px;}
.ls1_c01131{letter-spacing:-0.037800px;}
.ls0_c01131{letter-spacing:0.595295px;}
.sc__c01131{text-shadow:none;}
.sc1_c01131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c01131{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01131{-webkit-text-stroke:0px transparent;}
.sc1_c01131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c01131{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0_c01131{word-spacing:0.000000px;}
._1_c01131{margin-left:-5.176476px;}
._2_c01131{margin-left:-4.141181px;}
._3_c01131{margin-left:-2.588238px;}
._0_c01131{margin-left:-1.294119px;}
.fc0_c01131{color:rgb(0,0,0);}
.fs1_c01131{font-size:54.000000px;}
.fs0_c01131{font-size:258.823800px;}
.y0_c01131{bottom:0.000000px;}
.y2_c01131{bottom:21.240000px;}
.y1_c01131{bottom:710.295150px;}
.h2_c01131{height:38.772000px;}
.h1_c01131{height:177.035479px;}
.h0_c01131{height:810.000000px;}
.w0_c01131{width:1440.000000px;}
.x0_c01131{left:0.000000px;}
.x1_c01131{left:323.827350px;}
.x2_c01131{left:1294.141050px;}
@media print{
.v0_c01131{vertical-align:0.000000pt;}
.ls1_c01131{letter-spacing:-0.033600pt;}
.ls0_c01131{letter-spacing:0.529151pt;}
.ws0_c01131{word-spacing:0.000000pt;}
._1_c01131{margin-left:-4.601312pt;}
._2_c01131{margin-left:-3.681050pt;}
._3_c01131{margin-left:-2.300656pt;}
._0_c01131{margin-left:-1.150328pt;}
.fs1_c01131{font-size:48.000000pt;}
.fs0_c01131{font-size:230.065600pt;}
.y0_c01131{bottom:0.000000pt;}
.y2_c01131{bottom:18.880000pt;}
.y1_c01131{bottom:631.373467pt;}
.h2_c01131{height:34.464000pt;}
.h1_c01131{height:157.364870pt;}
.h0_c01131{height:720.000000pt;}
.w0_c01131{width:1280.000000pt;}
.x0_c01131{left:0.000000pt;}
.x1_c01131{left:287.846533pt;}
.x2_c01131{left:1150.347600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cd3931e85c0f3975840095ae.woff2')format("woff");}.ff1_c01132{font-family:ff1_c01132;line-height:0.891000;font-style:normal;font-weight:normal;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_fb83f23e433381d4ff11e045.woff2')format("woff");}.ff2_c01132{font-family:ff2_c01132;line-height:0.855000;font-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_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);}
.m0_c01132{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_c01132{vertical-align:0.000000px;}
.ls3_c01132{letter-spacing:-0.117647px;}
.ls4_c01132{letter-spacing:-0.037800px;}
.ls2_c01132{letter-spacing:0.000000px;}
.ls0_c01132{letter-spacing:0.211765px;}
.ls1_c01132{letter-spacing:0.517647px;}
.sc__c01132{text-shadow:none;}
.sc1_c01132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c01132{text-shadow:-0.015em 0 rgb(7,45,185),0 0.015em rgb(7,45,185),0.015em 0 rgb(7,45,185),0 -0.015em  rgb(7,45,185);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01132{-webkit-text-stroke:0px transparent;}
.sc1_c01132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c01132{-webkit-text-stroke:0.015em rgb(7,45,185);text-shadow:none;}
}
.ws0_c01132{word-spacing:-53.388254px;}
.ws1_c01132{word-spacing:0.000000px;}
._4_c01132{margin-left:-15.764711px;}
._5_c01132{margin-left:-5.176472px;}
._2_c01132{margin-left:-3.764707px;}
._0_c01132{margin-left:-2.588236px;}
._1_c01132{margin-left:-1.411765px;}
._6_c01132{width:1.223530px;}
._3_c01132{width:11.294122px;}
.fc1_c01132{color:rgb(0,0,0);}
.fc0_c01132{color:rgb(7,45,185);}
.fs1_c01132{font-size:54.000000px;}
.fs0_c01132{font-size:235.294200px;}
.y0_c01132{bottom:0.000000px;}
.y5_c01132{bottom:15.120000px;}
.y4_c01132{bottom:563.389373px;}
.y3_c01132{bottom:627.801161px;}
.y2_c01132{bottom:692.624713px;}
.y1_c01132{bottom:757.036500px;}
.h2_c01132{height:38.772000px;}
.h1_c01132{height:167.764765px;}
.h0_c01132{height:810.000000px;}
.w0_c01132{width:1440.000000px;}
.x0_c01132{left:0.000000px;}
.x1_c01132{left:805.004250px;}
.x2_c01132{left:848.204250px;}
.x3_c01132{left:886.544250px;}
.x4_c01132{left:952.604250px;}
.x5_c01132{left:1304.992500px;}
@media print{
.v0_c01132{vertical-align:0.000000pt;}
.ls3_c01132{letter-spacing:-0.104575pt;}
.ls4_c01132{letter-spacing:-0.033600pt;}
.ls2_c01132{letter-spacing:0.000000pt;}
.ls0_c01132{letter-spacing:0.188235pt;}
.ls1_c01132{letter-spacing:0.460131pt;}
.ws0_c01132{word-spacing:-47.456226pt;}
.ws1_c01132{word-spacing:0.000000pt;}
._4_c01132{margin-left:-14.013077pt;}
._5_c01132{margin-left:-4.601309pt;}
._2_c01132{margin-left:-3.346406pt;}
._0_c01132{margin-left:-2.300654pt;}
._1_c01132{margin-left:-1.254902pt;}
._6_c01132{width:1.087582pt;}
._3_c01132{width:10.039219pt;}
.fs1_c01132{font-size:48.000000pt;}
.fs0_c01132{font-size:209.150400pt;}
.y0_c01132{bottom:0.000000pt;}
.y5_c01132{bottom:13.440000pt;}
.y4_c01132{bottom:500.790554pt;}
.y3_c01132{bottom:558.045476pt;}
.y2_c01132{bottom:615.666411pt;}
.y1_c01132{bottom:672.921333pt;}
.h2_c01132{height:34.464000pt;}
.h1_c01132{height:149.124235pt;}
.h0_c01132{height:720.000000pt;}
.w0_c01132{width:1280.000000pt;}
.x0_c01132{left:0.000000pt;}
.x1_c01132{left:715.559333pt;}
.x2_c01132{left:753.959333pt;}
.x3_c01132{left:788.039333pt;}
.x4_c01132{left:846.759333pt;}
.x5_c01132{left:1159.993333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ac19e9fe4654f8d6151f6a18.woff2')format("woff");}.ff1_c01133{font-family:ff1_c01133;line-height:0.751000;font-style:normal;font-weight:normal;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_fb83f23e433381d4ff11e045.woff2')format("woff");}.ff2_c01133{font-family:ff2_c01133;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01133{vertical-align:0.000000px;}
.ls0_c01133{letter-spacing:-0.105600px;}
.ls2_c01133{letter-spacing:-0.037800px;}
.ls1_c01133{letter-spacing:0.158400px;}
.sc__c01133{text-shadow:none;}
.sc0_c01133{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01133{-webkit-text-stroke:0px transparent;}
.sc0_c01133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01133{word-spacing:0.000000px;}
._1_c01133{margin-left:-1.056000px;}
._0_c01133{width:1.056000px;}
.fc0_c01133{color:rgb(0,0,0);}
.fs1_c01133{font-size:54.000000px;}
.fs0_c01133{font-size:264.000000px;}
.y0_c01133{bottom:0.000000px;}
.y3_c01133{bottom:41.400000px;}
.y2_c01133{bottom:303.834000px;}
.y1_c01133{bottom:375.840000px;}
.h2_c01133{height:38.772000px;}
.h1_c01133{height:194.040000px;}
.h0_c01133{height:810.000000px;}
.w0_c01133{width:1440.000000px;}
.x0_c01133{left:0.000000px;}
.x2_c01133{left:679.364100px;}
.x1_c01133{left:804.038100px;}
.x3_c01133{left:1264.468350px;}
@media print{
.v0_c01133{vertical-align:0.000000pt;}
.ls0_c01133{letter-spacing:-0.093867pt;}
.ls2_c01133{letter-spacing:-0.033600pt;}
.ls1_c01133{letter-spacing:0.140800pt;}
.ws0_c01133{word-spacing:0.000000pt;}
._1_c01133{margin-left:-0.938667pt;}
._0_c01133{width:0.938667pt;}
.fs1_c01133{font-size:48.000000pt;}
.fs0_c01133{font-size:234.666667pt;}
.y0_c01133{bottom:0.000000pt;}
.y3_c01133{bottom:36.800000pt;}
.y2_c01133{bottom:270.074667pt;}
.y1_c01133{bottom:334.080000pt;}
.h2_c01133{height:34.464000pt;}
.h1_c01133{height:172.480000pt;}
.h0_c01133{height:720.000000pt;}
.w0_c01133{width:1280.000000pt;}
.x0_c01133{left:0.000000pt;}
.x2_c01133{left:603.879200pt;}
.x1_c01133{left:714.700533pt;}
.x3_c01133{left:1123.971867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a8919edf161027ee726cd29f.woff2')format("woff");}.ff1_c01134{font-family:ff1_c01134;line-height:0.654000;font-style:normal;font-weight:normal;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_4c0c88b1624e7d3fb0de2960.woff2')format("woff");}.ff2_c01134{font-family:ff2_c01134;line-height:0.871000;font-style:normal;font-weight:normal;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_fb83f23e433381d4ff11e045.woff2')format("woff");}.ff3_c01134{font-family:ff3_c01134;line-height:0.855000;font-style: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;}
.ls8_c01134{letter-spacing:-1.598400px;}
.ls9_c01134{letter-spacing:-1.501200px;}
.ls5_c01134{letter-spacing:-0.831600px;}
.ls7_c01134{letter-spacing:-0.226800px;}
.lsd_c01134{letter-spacing:-0.216000px;}
.ls4_c01134{letter-spacing:-0.183600px;}
.lsa_c01134{letter-spacing:-0.118800px;}
.ls3_c01134{letter-spacing:-0.097200px;}
.lsf_c01134{letter-spacing:-0.037800px;}
.lsb_c01134{letter-spacing:0.000000px;}
.ls1_c01134{letter-spacing:0.021600px;}
.lsc_c01134{letter-spacing:0.032400px;}
.lse_c01134{letter-spacing:0.064800px;}
.ls2_c01134{letter-spacing:0.194400px;}
.ls6_c01134{letter-spacing:0.216000px;}
.ls0_c01134{letter-spacing:0.302400px;}
.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:-24.710400px;}
.ws3_c01134{word-spacing:-24.472800px;}
.ws4_c01134{word-spacing:-24.429600px;}
.ws1_c01134{word-spacing:-24.181200px;}
.ws0_c01134{word-spacing:-23.576400px;}
.ws5_c01134{word-spacing:0.000000px;}
._5_c01134{margin-left:-8.877600px;}
._4_c01134{margin-left:-6.156000px;}
._0_c01134{margin-left:-2.592000px;}
._1_c01134{margin-left:-1.080000px;}
._2_c01134{width:1.188000px;}
._3_c01134{width:2.268000px;}
.fc1_c01134{color:transparent;}
.fc0_c01134{color:rgb(0,0,0);}
.fs2_c01134{font-size:54.000000px;}
.fs1_c01134{font-size:108.000000px;}
.fs0_c01134{font-size:216.000000px;}
.y0_c01134{bottom:0.000000px;}
.y1b_c01134{bottom:47.160000px;}
.y1a_c01134{bottom:156.582000px;}
.y19_c01134{bottom:187.902000px;}
.y15_c01134{bottom:196.578000px;}
.y18_c01134{bottom:221.031000px;}
.y14_c01134{bottom:229.329000px;}
.y17_c01134{bottom:254.160000px;}
.y13_c01134{bottom:261.000000px;}
.y16_c01134{bottom:285.480000px;}
.y12_c01134{bottom:294.129000px;}
.y6_c01134{bottom:318.582000px;}
.y11_c01134{bottom:325.449000px;}
.y5_c01134{bottom:349.902000px;}
.yd_c01134{bottom:352.818000px;}
.y1f_c01134{bottom:356.049000px;}
.y10_c01134{bottom:358.578000px;}
.y4_c01134{bottom:383.031000px;}
.yc_c01134{bottom:384.489000px;}
.y1e_c01134{bottom:388.800000px;}
.yf_c01134{bottom:391.329000px;}
.y3_c01134{bottom:416.160000px;}
.yb_c01134{bottom:417.240000px;}
.y1d_c01134{bottom:421.929000px;}
.ye_c01134{bottom:423.000000px;}
.y2_c01134{bottom:447.480000px;}
.ya_c01134{bottom:448.911000px;}
.y1c_c01134{bottom:453.600000px;}
.y9_c01134{bottom:482.040000px;}
.y8_c01134{bottom:514.791000px;}
.y1_c01134{bottom:542.520000px;}
.y7_c01134{bottom:546.462000px;}
.h3_c01134{height:38.772000px;}
.h2_c01134{height:74.844000px;}
.h1_c01134{height:138.888000px;}
.h0_c01134{height:810.000000px;}
.w0_c01134{width:1440.000000px;}
.x0_c01134{left:0.000000px;}
.x1_c01134{left:121.147050px;}
.x16_c01134{left:138.845400px;}
.x17_c01134{left:158.906400px;}
.x14_c01134{left:162.983400px;}
.x15_c01134{left:165.872400px;}
.x18_c01134{left:179.588400px;}
.x3_c01134{left:315.213000px;}
.x4_c01134{left:333.519000px;}
.x5_c01134{left:335.436000px;}
.x2_c01134{left:349.989000px;}
.x6_c01134{left:366.675000px;}
.x1d_c01134{left:574.134000px;}
.x1b_c01134{left:581.721000px;}
.x1a_c01134{left:585.636000px;}
.x1c_c01134{left:588.417000px;}
.xb_c01134{left:798.162000px;}
.xa_c01134{left:805.371000px;}
.x9_c01134{left:810.474000px;}
.x8_c01134{left:821.652000px;}
.x7_c01134{left:823.002000px;}
.xc_c01134{left:828.294000px;}
.xd_c01134{left:832.992000px;}
.xf_c01134{left:1071.538200px;}
.x12_c01134{left:1072.888200px;}
.x11_c01134{left:1079.152200px;}
.xe_c01134{left:1084.498200px;}
.x10_c01134{left:1089.601200px;}
.x13_c01134{left:1143.061200px;}
.x19_c01134{left:1263.203550px;}
@media print{
.v0_c01134{vertical-align:0.000000pt;}
.ls8_c01134{letter-spacing:-1.420800pt;}
.ls9_c01134{letter-spacing:-1.334400pt;}
.ls5_c01134{letter-spacing:-0.739200pt;}
.ls7_c01134{letter-spacing:-0.201600pt;}
.lsd_c01134{letter-spacing:-0.192000pt;}
.ls4_c01134{letter-spacing:-0.163200pt;}
.lsa_c01134{letter-spacing:-0.105600pt;}
.ls3_c01134{letter-spacing:-0.086400pt;}
.lsf_c01134{letter-spacing:-0.033600pt;}
.lsb_c01134{letter-spacing:0.000000pt;}
.ls1_c01134{letter-spacing:0.019200pt;}
.lsc_c01134{letter-spacing:0.028800pt;}
.lse_c01134{letter-spacing:0.057600pt;}
.ls2_c01134{letter-spacing:0.172800pt;}
.ls6_c01134{letter-spacing:0.192000pt;}
.ls0_c01134{letter-spacing:0.268800pt;}
.ws2_c01134{word-spacing:-21.964800pt;}
.ws3_c01134{word-spacing:-21.753600pt;}
.ws4_c01134{word-spacing:-21.715200pt;}
.ws1_c01134{word-spacing:-21.494400pt;}
.ws0_c01134{word-spacing:-20.956800pt;}
.ws5_c01134{word-spacing:0.000000pt;}
._5_c01134{margin-left:-7.891200pt;}
._4_c01134{margin-left:-5.472000pt;}
._0_c01134{margin-left:-2.304000pt;}
._1_c01134{margin-left:-0.960000pt;}
._2_c01134{width:1.056000pt;}
._3_c01134{width:2.016000pt;}
.fs2_c01134{font-size:48.000000pt;}
.fs1_c01134{font-size:96.000000pt;}
.fs0_c01134{font-size:192.000000pt;}
.y0_c01134{bottom:0.000000pt;}
.y1b_c01134{bottom:41.920000pt;}
.y1a_c01134{bottom:139.184000pt;}
.y19_c01134{bottom:167.024000pt;}
.y15_c01134{bottom:174.736000pt;}
.y18_c01134{bottom:196.472000pt;}
.y14_c01134{bottom:203.848000pt;}
.y17_c01134{bottom:225.920000pt;}
.y13_c01134{bottom:232.000000pt;}
.y16_c01134{bottom:253.760000pt;}
.y12_c01134{bottom:261.448000pt;}
.y6_c01134{bottom:283.184000pt;}
.y11_c01134{bottom:289.288000pt;}
.y5_c01134{bottom:311.024000pt;}
.yd_c01134{bottom:313.616000pt;}
.y1f_c01134{bottom:316.488000pt;}
.y10_c01134{bottom:318.736000pt;}
.y4_c01134{bottom:340.472000pt;}
.yc_c01134{bottom:341.768000pt;}
.y1e_c01134{bottom:345.600000pt;}
.yf_c01134{bottom:347.848000pt;}
.y3_c01134{bottom:369.920000pt;}
.yb_c01134{bottom:370.880000pt;}
.y1d_c01134{bottom:375.048000pt;}
.ye_c01134{bottom:376.000000pt;}
.y2_c01134{bottom:397.760000pt;}
.ya_c01134{bottom:399.032000pt;}
.y1c_c01134{bottom:403.200000pt;}
.y9_c01134{bottom:428.480000pt;}
.y8_c01134{bottom:457.592000pt;}
.y1_c01134{bottom:482.240000pt;}
.y7_c01134{bottom:485.744000pt;}
.h3_c01134{height:34.464000pt;}
.h2_c01134{height:66.528000pt;}
.h1_c01134{height:123.456000pt;}
.h0_c01134{height:720.000000pt;}
.w0_c01134{width:1280.000000pt;}
.x0_c01134{left:0.000000pt;}
.x1_c01134{left:107.686267pt;}
.x16_c01134{left:123.418133pt;}
.x17_c01134{left:141.250133pt;}
.x14_c01134{left:144.874133pt;}
.x15_c01134{left:147.442133pt;}
.x18_c01134{left:159.634133pt;}
.x3_c01134{left:280.189333pt;}
.x4_c01134{left:296.461333pt;}
.x5_c01134{left:298.165333pt;}
.x2_c01134{left:311.101333pt;}
.x6_c01134{left:325.933333pt;}
.x1d_c01134{left:510.341333pt;}
.x1b_c01134{left:517.085333pt;}
.x1a_c01134{left:520.565333pt;}
.x1c_c01134{left:523.037333pt;}
.xb_c01134{left:709.477333pt;}
.xa_c01134{left:715.885333pt;}
.x9_c01134{left:720.421333pt;}
.x8_c01134{left:730.357333pt;}
.x7_c01134{left:731.557333pt;}
.xc_c01134{left:736.261333pt;}
.xd_c01134{left:740.437333pt;}
.xf_c01134{left:952.478400pt;}
.x12_c01134{left:953.678400pt;}
.x11_c01134{left:959.246400pt;}
.xe_c01134{left:963.998400pt;}
.x10_c01134{left:968.534400pt;}
.x13_c01134{left:1016.054400pt;}
.x19_c01134{left:1122.847600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a7dcb24d1212415165c78fa9.woff2')format("woff");}.ff1_c01135{font-family:ff1_c01135;line-height:0.862000;font-style:normal;font-weight:normal;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_4c0c88b1624e7d3fb0de2960.woff2')format("woff");}.ff2_c01135{font-family:ff2_c01135;line-height:0.871000;font-style:normal;font-weight:normal;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_fb83f23e433381d4ff11e045.woff2')format("woff");}.ff3_c01135{font-family:ff3_c01135;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01135{vertical-align:0.000000px;}
.ls1_c01135{letter-spacing:-2.481600px;}
.ls3_c01135{letter-spacing:-0.853200px;}
.ls6_c01135{letter-spacing:-0.280800px;}
.ls2_c01135{letter-spacing:-0.216000px;}
.ls5_c01135{letter-spacing:-0.086400px;}
.ls7_c01135{letter-spacing:-0.037800px;}
.ls0_c01135{letter-spacing:0.000000px;}
.ls4_c01135{letter-spacing:0.183600px;}
.sc__c01135{text-shadow:none;}
.sc0_c01135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01135{-webkit-text-stroke:0px transparent;}
.sc0_c01135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01135{word-spacing:-23.554800px;}
.ws2_c01135{word-spacing:0.000000px;}
.ws1_c01135{word-spacing:832.464000px;}
._5_c01135{margin-left:-1966.171200px;}
._1_c01135{margin-left:-3.590400px;}
._0_c01135{margin-left:-1.082400px;}
._2_c01135{width:1.003200px;}
._3_c01135{width:2.640000px;}
._4_c01135{width:3.748800px;}
._6_c01135{width:2320.488000px;}
.fc0_c01135{color:rgb(0,0,0);}
.fs2_c01135{font-size:54.000000px;}
.fs1_c01135{font-size:108.000000px;}
.fs0_c01135{font-size:264.000000px;}
.y0_c01135{bottom:0.000000px;}
.y4_c01135{bottom:20.880000px;}
.y3_c01135{bottom:45.000000px;}
.y2_c01135{bottom:575.286000px;}
.y1_c01135{bottom:645.840000px;}
.h3_c01135{height:38.772000px;}
.h2_c01135{height:74.844000px;}
.h1_c01135{height:180.576000px;}
.h0_c01135{height:810.000000px;}
.w0_c01135{width:1440.000000px;}
.x0_c01135{left:0.000000px;}
.x2_c01135{left:180.799800px;}
.x1_c01135{left:225.877800px;}
.x3_c01135{left:455.519250px;}
.x4_c01135{left:1288.214400px;}
@media print{
.v0_c01135{vertical-align:0.000000pt;}
.ls1_c01135{letter-spacing:-2.205867pt;}
.ls3_c01135{letter-spacing:-0.758400pt;}
.ls6_c01135{letter-spacing:-0.249600pt;}
.ls2_c01135{letter-spacing:-0.192000pt;}
.ls5_c01135{letter-spacing:-0.076800pt;}
.ls7_c01135{letter-spacing:-0.033600pt;}
.ls0_c01135{letter-spacing:0.000000pt;}
.ls4_c01135{letter-spacing:0.163200pt;}
.ws0_c01135{word-spacing:-20.937600pt;}
.ws2_c01135{word-spacing:0.000000pt;}
.ws1_c01135{word-spacing:739.968000pt;}
._5_c01135{margin-left:-1747.707733pt;}
._1_c01135{margin-left:-3.191467pt;}
._0_c01135{margin-left:-0.962133pt;}
._2_c01135{width:0.891733pt;}
._3_c01135{width:2.346667pt;}
._4_c01135{width:3.332267pt;}
._6_c01135{width:2062.656000pt;}
.fs2_c01135{font-size:48.000000pt;}
.fs1_c01135{font-size:96.000000pt;}
.fs0_c01135{font-size:234.666667pt;}
.y0_c01135{bottom:0.000000pt;}
.y4_c01135{bottom:18.560000pt;}
.y3_c01135{bottom:40.000000pt;}
.y2_c01135{bottom:511.365333pt;}
.y1_c01135{bottom:574.080000pt;}
.h3_c01135{height:34.464000pt;}
.h2_c01135{height:66.528000pt;}
.h1_c01135{height:160.512000pt;}
.h0_c01135{height:720.000000pt;}
.w0_c01135{width:1280.000000pt;}
.x0_c01135{left:0.000000pt;}
.x2_c01135{left:160.710933pt;}
.x1_c01135{left:200.780267pt;}
.x3_c01135{left:404.906000pt;}
.x4_c01135{left:1145.079467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9b8eba200b3230800ad6ec99.woff2')format("woff");}.ff1_c01136{font-family:ff1_c01136;line-height:0.666000;font-style:normal;font-weight:normal;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_fb83f23e433381d4ff11e045.woff2')format("woff");}.ff2_c01136{font-family:ff2_c01136;line-height:0.855000;font-style:normal;font-weight:normal;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_1e205d94074e5111e7107f79.woff2')format("woff");}.ff3_c01136{font-family:ff3_c01136;line-height:0.862000;font-style:normal;font-weight:normal;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_68025452f7b20275da71b841.woff2')format("woff");}.ff4_c01136{font-family:ff4_c01136;line-height:0.855000;font-style: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);}
.v3_c01136{vertical-align:-25.920000px;}
.v6_c01136{vertical-align:-24.480000px;}
.v4_c01136{vertical-align:-18.720000px;}
.v7_c01136{vertical-align:-17.280000px;}
.v1_c01136{vertical-align:-12.960000px;}
.v5_c01136{vertical-align:-11.520000px;}
.v2_c01136{vertical-align:-5.760000px;}
.v0_c01136{vertical-align:0.000000px;}
.ls8_c01136{letter-spacing:-2.300400px;}
.ls11_c01136{letter-spacing:-0.297000px;}
.lsa_c01136{letter-spacing:-0.178200px;}
.ls13_c01136{letter-spacing:-0.037800px;}
.ls7_c01136{letter-spacing:-0.021600px;}
.ls5_c01136{letter-spacing:-0.016200px;}
.ls6_c01136{letter-spacing:0.000000px;}
.ls0_c01136{letter-spacing:0.010800px;}
.ls3_c01136{letter-spacing:0.016200px;}
.ls2_c01136{letter-spacing:0.021600px;}
.ls1_c01136{letter-spacing:0.032400px;}
.ls10_c01136{letter-spacing:0.033000px;}
.ls12_c01136{letter-spacing:0.039600px;}
.lse_c01136{letter-spacing:0.072600px;}
.lsc_c01136{letter-spacing:0.105600px;}
.lsf_c01136{letter-spacing:0.112200px;}
.lsb_c01136{letter-spacing:0.178200px;}
.ls4_c01136{letter-spacing:0.244800px;}
.lsd_c01136{letter-spacing:0.290400px;}
.ls9_c01136{letter-spacing:1.922400px;}
.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;}
}
.wsa_c01136{word-spacing:-12.225600px;}
.wsc_c01136{word-spacing:-0.316800px;}
.ws2_c01136{word-spacing:-0.037800px;}
.ws10_c01136{word-spacing:0.000000px;}
.ws8_c01136{word-spacing:108.930600px;}
.ws7_c01136{word-spacing:115.239000px;}
.ws3_c01136{word-spacing:165.145800px;}
.ws4_c01136{word-spacing:165.146400px;}
.ws5_c01136{word-spacing:165.147000px;}
.ws9_c01136{word-spacing:175.345800px;}
.ws6_c01136{word-spacing:199.209000px;}
.ws0_c01136{word-spacing:273.675600px;}
.ws1_c01136{word-spacing:273.676200px;}
.wse_c01136{word-spacing:368.115000px;}
.wsd_c01136{word-spacing:423.489000px;}
.wsf_c01136{word-spacing:427.680000px;}
.wsb_c01136{word-spacing:452.364000px;}
._7_c01136{margin-left:-4.104000px;}
._6_c01136{margin-left:-3.023400px;}
._5_c01136{margin-left:-1.512600px;}
._2_c01136{width:1.944000px;}
._4_c01136{width:3.510000px;}
._3_c01136{width:7.182000px;}
._0_c01136{width:112.532400px;}
._1_c01136{width:122.431200px;}
._8_c01136{width:129.811800px;}
._9_c01136{width:439.381800px;}
.fc0_c01136{color:rgb(0,0,0);}
.fs0_c01136{font-size:54.000000px;}
.fs1_c01136{font-size:66.000000px;}
.fs2_c01136{font-size:72.000000px;}
.y0_c01136{bottom:0.000000px;}
.yc_c01136{bottom:16.200000px;}
.yb_c01136{bottom:45.720000px;}
.y22_c01136{bottom:47.160000px;}
.ya_c01136{bottom:62.280000px;}
.y14_c01136{bottom:63.000000px;}
.y10_c01136{bottom:70.200000px;}
.y5_c01136{bottom:136.440000px;}
.y1_c01136{bottom:147.240000px;}
.y4_c01136{bottom:170.640000px;}
.y3_c01136{bottom:188.640000px;}
.y2_c01136{bottom:213.840000px;}
.y21_c01136{bottom:280.800000px;}
.y9_c01136{bottom:288.720000px;}
.y1f_c01136{bottom:304.200000px;}
.y1d_c01136{bottom:309.600000px;}
.y8_c01136{bottom:322.920000px;}
.y1c_c01136{bottom:327.600000px;}
.y7_c01136{bottom:340.560000px;}
.y20_c01136{bottom:349.200000px;}
.y1a_c01136{bottom:351.000000px;}
.y6_c01136{bottom:366.120000px;}
.y1e_c01136{bottom:372.600000px;}
.y18_c01136{bottom:374.400000px;}
.y1b_c01136{bottom:396.000000px;}
.y16_c01136{bottom:397.800000px;}
.y13_c01136{bottom:403.200000px;}
.y19_c01136{bottom:419.400000px;}
.y12_c01136{bottom:421.200000px;}
.y17_c01136{bottom:442.800000px;}
.yf_c01136{bottom:444.600000px;}
.y15_c01136{bottom:466.200000px;}
.y11_c01136{bottom:489.600000px;}
.ye_c01136{bottom:513.003000px;}
.yd_c01136{bottom:536.400000px;}
.h2_c01136{height:35.046000px;}
.h3_c01136{height:38.772000px;}
.h4_c01136{height:45.144000px;}
.h6_c01136{height:51.696000px;}
.h7_c01136{height:138.960000px;}
.h5_c01136{height:151.560000px;}
.h1_c01136{height:406.440000px;}
.h0_c01136{height:810.000000px;}
.w2_c01136{width:72.360000px;}
.w3_c01136{width:88.920000px;}
.w1_c01136{width:636.120000px;}
.w0_c01136{width:1440.000000px;}
.x0_c01136{left:0.000000px;}
.x15_c01136{left:2.439450px;}
.x6_c01136{left:6.775050px;}
.x10_c01136{left:8.975700px;}
.xa_c01136{left:16.813800px;}
.x2_c01136{left:20.338800px;}
.x7_c01136{left:88.884450px;}
.x3_c01136{left:102.448050px;}
.x12_c01136{left:167.040000px;}
.x14_c01136{left:177.729450px;}
.x11_c01136{left:191.885700px;}
.xe_c01136{left:198.817950px;}
.xc_c01136{left:231.108600px;}
.xd_c01136{left:281.416950px;}
.x13_c01136{left:341.041950px;}
.xf_c01136{left:443.160000px;}
.x8_c01136{left:499.430550px;}
.x4_c01136{left:512.994300px;}
.x9_c01136{left:581.539950px;}
.xb_c01136{left:582.807450px;}
.x1_c01136{left:592.200000px;}
.x5_c01136{left:595.103550px;}
.x16_c01136{left:1263.203550px;}
@media print{
.v3_c01136{vertical-align:-23.040000pt;}
.v6_c01136{vertical-align:-21.760000pt;}
.v4_c01136{vertical-align:-16.640000pt;}
.v7_c01136{vertical-align:-15.360000pt;}
.v1_c01136{vertical-align:-11.520000pt;}
.v5_c01136{vertical-align:-10.240000pt;}
.v2_c01136{vertical-align:-5.120000pt;}
.v0_c01136{vertical-align:0.000000pt;}
.ls8_c01136{letter-spacing:-2.044800pt;}
.ls11_c01136{letter-spacing:-0.264000pt;}
.lsa_c01136{letter-spacing:-0.158400pt;}
.ls13_c01136{letter-spacing:-0.033600pt;}
.ls7_c01136{letter-spacing:-0.019200pt;}
.ls5_c01136{letter-spacing:-0.014400pt;}
.ls6_c01136{letter-spacing:0.000000pt;}
.ls0_c01136{letter-spacing:0.009600pt;}
.ls3_c01136{letter-spacing:0.014400pt;}
.ls2_c01136{letter-spacing:0.019200pt;}
.ls1_c01136{letter-spacing:0.028800pt;}
.ls10_c01136{letter-spacing:0.029333pt;}
.ls12_c01136{letter-spacing:0.035200pt;}
.lse_c01136{letter-spacing:0.064533pt;}
.lsc_c01136{letter-spacing:0.093867pt;}
.lsf_c01136{letter-spacing:0.099733pt;}
.lsb_c01136{letter-spacing:0.158400pt;}
.ls4_c01136{letter-spacing:0.217600pt;}
.lsd_c01136{letter-spacing:0.258133pt;}
.ls9_c01136{letter-spacing:1.708800pt;}
.wsa_c01136{word-spacing:-10.867200pt;}
.wsc_c01136{word-spacing:-0.281600pt;}
.ws2_c01136{word-spacing:-0.033600pt;}
.ws10_c01136{word-spacing:0.000000pt;}
.ws8_c01136{word-spacing:96.827200pt;}
.ws7_c01136{word-spacing:102.434667pt;}
.ws3_c01136{word-spacing:146.796267pt;}
.ws4_c01136{word-spacing:146.796800pt;}
.ws5_c01136{word-spacing:146.797333pt;}
.ws9_c01136{word-spacing:155.862933pt;}
.ws6_c01136{word-spacing:177.074667pt;}
.ws0_c01136{word-spacing:243.267200pt;}
.ws1_c01136{word-spacing:243.267733pt;}
.wse_c01136{word-spacing:327.213333pt;}
.wsd_c01136{word-spacing:376.434667pt;}
.wsf_c01136{word-spacing:380.160000pt;}
.wsb_c01136{word-spacing:402.101333pt;}
._7_c01136{margin-left:-3.648000pt;}
._6_c01136{margin-left:-2.687467pt;}
._5_c01136{margin-left:-1.344533pt;}
._2_c01136{width:1.728000pt;}
._4_c01136{width:3.120000pt;}
._3_c01136{width:6.384000pt;}
._0_c01136{width:100.028800pt;}
._1_c01136{width:108.827733pt;}
._8_c01136{width:115.388267pt;}
._9_c01136{width:390.561600pt;}
.fs0_c01136{font-size:48.000000pt;}
.fs1_c01136{font-size:58.666667pt;}
.fs2_c01136{font-size:64.000000pt;}
.y0_c01136{bottom:0.000000pt;}
.yc_c01136{bottom:14.400000pt;}
.yb_c01136{bottom:40.640000pt;}
.y22_c01136{bottom:41.920000pt;}
.ya_c01136{bottom:55.360000pt;}
.y14_c01136{bottom:56.000000pt;}
.y10_c01136{bottom:62.400000pt;}
.y5_c01136{bottom:121.280000pt;}
.y1_c01136{bottom:130.880000pt;}
.y4_c01136{bottom:151.680000pt;}
.y3_c01136{bottom:167.680000pt;}
.y2_c01136{bottom:190.080000pt;}
.y21_c01136{bottom:249.600000pt;}
.y9_c01136{bottom:256.640000pt;}
.y1f_c01136{bottom:270.400000pt;}
.y1d_c01136{bottom:275.200000pt;}
.y8_c01136{bottom:287.040000pt;}
.y1c_c01136{bottom:291.200000pt;}
.y7_c01136{bottom:302.720000pt;}
.y20_c01136{bottom:310.400000pt;}
.y1a_c01136{bottom:312.000000pt;}
.y6_c01136{bottom:325.440000pt;}
.y1e_c01136{bottom:331.200000pt;}
.y18_c01136{bottom:332.800000pt;}
.y1b_c01136{bottom:352.000000pt;}
.y16_c01136{bottom:353.600000pt;}
.y13_c01136{bottom:358.400000pt;}
.y19_c01136{bottom:372.800000pt;}
.y12_c01136{bottom:374.400000pt;}
.y17_c01136{bottom:393.600000pt;}
.yf_c01136{bottom:395.200000pt;}
.y15_c01136{bottom:414.400000pt;}
.y11_c01136{bottom:435.200000pt;}
.ye_c01136{bottom:456.002667pt;}
.yd_c01136{bottom:476.800000pt;}
.h2_c01136{height:31.152000pt;}
.h3_c01136{height:34.464000pt;}
.h4_c01136{height:40.128000pt;}
.h6_c01136{height:45.952000pt;}
.h7_c01136{height:123.520000pt;}
.h5_c01136{height:134.720000pt;}
.h1_c01136{height:361.280000pt;}
.h0_c01136{height:720.000000pt;}
.w2_c01136{width:64.320000pt;}
.w3_c01136{width:79.040000pt;}
.w1_c01136{width:565.440000pt;}
.w0_c01136{width:1280.000000pt;}
.x0_c01136{left:0.000000pt;}
.x15_c01136{left:2.168400pt;}
.x6_c01136{left:6.022267pt;}
.x10_c01136{left:7.978400pt;}
.xa_c01136{left:14.945600pt;}
.x2_c01136{left:18.078933pt;}
.x7_c01136{left:79.008400pt;}
.x3_c01136{left:91.064933pt;}
.x12_c01136{left:148.480000pt;}
.x14_c01136{left:157.981733pt;}
.x11_c01136{left:170.565067pt;}
.xe_c01136{left:176.727067pt;}
.xc_c01136{left:205.429867pt;}
.xd_c01136{left:250.148400pt;}
.x13_c01136{left:303.148400pt;}
.xf_c01136{left:393.920000pt;}
.x8_c01136{left:443.938267pt;}
.x4_c01136{left:455.994933pt;}
.x9_c01136{left:516.924400pt;}
.xb_c01136{left:518.051067pt;}
.x1_c01136{left:526.400000pt;}
.x5_c01136{left:528.980933pt;}
.x16_c01136{left:1122.847600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_707b4b80c895c958159c62bc.woff2')format("woff");}.ff1_c01137{font-family:ff1_c01137;line-height:0.857000;font-style:normal;font-weight:normal;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_4c0c88b1624e7d3fb0de2960.woff2')format("woff");}.ff2_c01137{font-family:ff2_c01137;line-height:0.871000;font-style:normal;font-weight:normal;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_c23b3a584c1b755754472e4e.woff2')format("woff");}.ff3_c01137{font-family:ff3_c01137;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01137;src:url('chunks/assets/font_6669640585f58505173cfd82.woff2')format("woff");}.ff4_c01137{font-family:ff4_c01137;line-height:0.858000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01137;src:url('chunks/assets/font_faf66515c58fac201747d638.woff2')format("woff");}.ff5_c01137{font-family:ff5_c01137;line-height:0.871000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01137;src:url('chunks/assets/font_fb83f23e433381d4ff11e045.woff2')format("woff");}.ff6_c01137{font-family:ff6_c01137;line-height:0.855000;font-style:normal;font-weight: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_c01137;src:url('chunks/assets/font_be9f55c60cf505fcdc025ca3.woff2')format("woff");}.ff7_c01137{font-family:ff7_c01137;line-height:0.870000;font-style:normal;font-weight: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_c01137;src:url('chunks/assets/font_986016cb74c373d31c8173e6.woff2')format("woff");}.ff8_c01137{font-family:ff8_c01137;line-height:0.741000;font-style: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);}
.v1_c01137{vertical-align:-24.516000px;}
.v2_c01137{vertical-align:-17.292000px;}
.v0_c01137{vertical-align:0.000000px;}
.ls10_c01137{letter-spacing:-2.084400px;}
.ls19_c01137{letter-spacing:-1.544400px;}
.ls17_c01137{letter-spacing:-1.468800px;}
.lsd_c01137{letter-spacing:-1.170000px;}
.lse_c01137{letter-spacing:-1.036800px;}
.ls1a_c01137{letter-spacing:-0.874800px;}
.ls1d_c01137{letter-spacing:-0.295800px;}
.ls15_c01137{letter-spacing:-0.280800px;}
.ls18_c01137{letter-spacing:-0.248400px;}
.lsf_c01137{letter-spacing:-0.205200px;}
.ls14_c01137{letter-spacing:-0.086400px;}
.ls13_c01137{letter-spacing:-0.075600px;}
.ls22_c01137{letter-spacing:-0.037800px;}
.ls1f_c01137{letter-spacing:-0.028800px;}
.ls16_c01137{letter-spacing:-0.021600px;}
.ls12_c01137{letter-spacing:-0.010800px;}
.ls1b_c01137{letter-spacing:0.000000px;}
.ls21_c01137{letter-spacing:0.021600px;}
.ls1e_c01137{letter-spacing:0.168000px;}
.ls3_c01137{letter-spacing:0.175200px;}
.ls0_c01137{letter-spacing:0.179400px;}
.ls8_c01137{letter-spacing:0.183600px;}
.ls9_c01137{letter-spacing:0.185400px;}
.ls20_c01137{letter-spacing:0.187200px;}
.ls2_c01137{letter-spacing:0.216000px;}
.ls11_c01137{letter-spacing:0.244800px;}
.ls5_c01137{letter-spacing:0.245400px;}
.ls1_c01137{letter-spacing:0.246600px;}
.ls1c_c01137{letter-spacing:0.387600px;}
.lsc_c01137{letter-spacing:1.122000px;}
.ls6_c01137{letter-spacing:697.464000px;}
.lsa_c01137{letter-spacing:734.184000px;}
.ls4_c01137{letter-spacing:769.186200px;}
.ls7_c01137{letter-spacing:793.936200px;}
.lsb_c01137{letter-spacing:859.936800px;}
.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;}
}
.ws9_c01137{word-spacing:-24.591600px;}
.wse_c01137{word-spacing:-24.408000px;}
.ws4_c01137{word-spacing:-24.397200px;}
.ws7_c01137{word-spacing:-24.386400px;}
.wsf_c01137{word-spacing:-16.243200px;}
.ws10_c01137{word-spacing:-0.129600px;}
.ws11_c01137{word-spacing:0.000000px;}
.ws1_c01137{word-spacing:497.534400px;}
.wsa_c01137{word-spacing:584.193600px;}
.wsb_c01137{word-spacing:606.517200px;}
.ws3_c01137{word-spacing:715.675800px;}
.wsc_c01137{word-spacing:835.941600px;}
.ws8_c01137{word-spacing:866.095200px;}
.ws6_c01137{word-spacing:1038.031200px;}
.ws0_c01137{word-spacing:1053.831600px;}
.ws5_c01137{word-spacing:1127.336400px;}
.ws2_c01137{word-spacing:1174.327200px;}
.wsd_c01137{word-spacing:1192.827600px;}
._9_c01137{margin-left:-5.973600px;}
._7_c01137{margin-left:-4.452000px;}
._2_c01137{margin-left:-2.520000px;}
._0_c01137{margin-left:-1.260000px;}
._1_c01137{width:1.080000px;}
._3_c01137{width:2.232000px;}
._4_c01137{width:3.240000px;}
._8_c01137{width:107.604000px;}
._5_c01137{width:602.100000px;}
._6_c01137{width:920.419200px;}
.fc3_c01137{color:rgb(255,0,0);}
.fc4_c01137{color:rgb(255,255,255);}
.fc2_c01137{color:rgb(0,0,0);}
.fc1_c01137{color:rgb(0,128,0);}
.fc0_c01137{color:rgb(0,117,188);}
.fs5_c01137{font-size:54.000000px;}
.fs2_c01137{font-size:72.000000px;}
.fs4_c01137{font-size:84.000000px;}
.fs6_c01137{font-size:96.000000px;}
.fs3_c01137{font-size:102.000000px;}
.fs1_c01137{font-size:108.000000px;}
.fs0_c01137{font-size:180.000000px;}
.y0_c01137{bottom:0.000000px;}
.y14_c01137{bottom:38.880000px;}
.y16_c01137{bottom:47.160000px;}
.y13_c01137{bottom:67.320000px;}
.ye_c01137{bottom:74.883000px;}
.y12_c01137{bottom:96.120000px;}
.yd_c01137{bottom:100.440000px;}
.y11_c01137{bottom:140.400000px;}
.yc_c01137{bottom:149.755500px;}
.y10_c01137{bottom:161.640000px;}
.yb_c01137{bottom:176.760000px;}
.yf_c01137{bottom:183.960000px;}
.ya_c01137{bottom:223.920000px;}
.y15_c01137{bottom:270.000000px;}
.y9_c01137{bottom:272.520000px;}
.y8_c01137{bottom:321.120000px;}
.y7_c01137{bottom:369.720000px;}
.y6_c01137{bottom:418.320000px;}
.y5_c01137{bottom:466.920000px;}
.y4_c01137{bottom:515.520000px;}
.y3_c01137{bottom:564.129000px;}
.y2_c01137{bottom:608.760000px;}
.y1_c01137{bottom:696.240000px;}
.h8_c01137{height:38.772000px;}
.h5_c01137{height:51.696000px;}
.h4_c01137{height:58.212000px;}
.h3_c01137{height:69.360000px;}
.h6_c01137{height:69.888000px;}
.h2_c01137{height:74.844000px;}
.h7_c01137{height:78.732000px;}
.h1_c01137{height:122.400000px;}
.h0_c01137{height:810.000000px;}
.w0_c01137{width:1440.000000px;}
.x0_c01137{left:0.000000px;}
.x3_c01137{left:92.647050px;}
.x2_c01137{left:126.540600px;}
.x1_c01137{left:138.388350px;}
.x6_c01137{left:726.352350px;}
.x4_c01137{left:956.647200px;}
.x5_c01137{left:960.769200px;}
.x7_c01137{left:1263.203550px;}
@media print{
.v1_c01137{vertical-align:-21.792000pt;}
.v2_c01137{vertical-align:-15.370667pt;}
.v0_c01137{vertical-align:0.000000pt;}
.ls10_c01137{letter-spacing:-1.852800pt;}
.ls19_c01137{letter-spacing:-1.372800pt;}
.ls17_c01137{letter-spacing:-1.305600pt;}
.lsd_c01137{letter-spacing:-1.040000pt;}
.lse_c01137{letter-spacing:-0.921600pt;}
.ls1a_c01137{letter-spacing:-0.777600pt;}
.ls1d_c01137{letter-spacing:-0.262933pt;}
.ls15_c01137{letter-spacing:-0.249600pt;}
.ls18_c01137{letter-spacing:-0.220800pt;}
.lsf_c01137{letter-spacing:-0.182400pt;}
.ls14_c01137{letter-spacing:-0.076800pt;}
.ls13_c01137{letter-spacing:-0.067200pt;}
.ls22_c01137{letter-spacing:-0.033600pt;}
.ls1f_c01137{letter-spacing:-0.025600pt;}
.ls16_c01137{letter-spacing:-0.019200pt;}
.ls12_c01137{letter-spacing:-0.009600pt;}
.ls1b_c01137{letter-spacing:0.000000pt;}
.ls21_c01137{letter-spacing:0.019200pt;}
.ls1e_c01137{letter-spacing:0.149333pt;}
.ls3_c01137{letter-spacing:0.155733pt;}
.ls0_c01137{letter-spacing:0.159467pt;}
.ls8_c01137{letter-spacing:0.163200pt;}
.ls9_c01137{letter-spacing:0.164800pt;}
.ls20_c01137{letter-spacing:0.166400pt;}
.ls2_c01137{letter-spacing:0.192000pt;}
.ls11_c01137{letter-spacing:0.217600pt;}
.ls5_c01137{letter-spacing:0.218133pt;}
.ls1_c01137{letter-spacing:0.219200pt;}
.ls1c_c01137{letter-spacing:0.344533pt;}
.lsc_c01137{letter-spacing:0.997333pt;}
.ls6_c01137{letter-spacing:619.968000pt;}
.lsa_c01137{letter-spacing:652.608000pt;}
.ls4_c01137{letter-spacing:683.721067pt;}
.ls7_c01137{letter-spacing:705.721067pt;}
.lsb_c01137{letter-spacing:764.388267pt;}
.ws9_c01137{word-spacing:-21.859200pt;}
.wse_c01137{word-spacing:-21.696000pt;}
.ws4_c01137{word-spacing:-21.686400pt;}
.ws7_c01137{word-spacing:-21.676800pt;}
.wsf_c01137{word-spacing:-14.438400pt;}
.ws10_c01137{word-spacing:-0.115200pt;}
.ws11_c01137{word-spacing:0.000000pt;}
.ws1_c01137{word-spacing:442.252800pt;}
.wsa_c01137{word-spacing:519.283200pt;}
.wsb_c01137{word-spacing:539.126400pt;}
.ws3_c01137{word-spacing:636.156267pt;}
.wsc_c01137{word-spacing:743.059200pt;}
.ws8_c01137{word-spacing:769.862400pt;}
.ws6_c01137{word-spacing:922.694400pt;}
.ws0_c01137{word-spacing:936.739200pt;}
.ws5_c01137{word-spacing:1002.076800pt;}
.ws2_c01137{word-spacing:1043.846400pt;}
.wsd_c01137{word-spacing:1060.291200pt;}
._9_c01137{margin-left:-5.309867pt;}
._7_c01137{margin-left:-3.957333pt;}
._2_c01137{margin-left:-2.240000pt;}
._0_c01137{margin-left:-1.120000pt;}
._1_c01137{width:0.960000pt;}
._3_c01137{width:1.984000pt;}
._4_c01137{width:2.880000pt;}
._8_c01137{width:95.648000pt;}
._5_c01137{width:535.200000pt;}
._6_c01137{width:818.150400pt;}
.fs5_c01137{font-size:48.000000pt;}
.fs2_c01137{font-size:64.000000pt;}
.fs4_c01137{font-size:74.666667pt;}
.fs6_c01137{font-size:85.333333pt;}
.fs3_c01137{font-size:90.666667pt;}
.fs1_c01137{font-size:96.000000pt;}
.fs0_c01137{font-size:160.000000pt;}
.y0_c01137{bottom:0.000000pt;}
.y14_c01137{bottom:34.560000pt;}
.y16_c01137{bottom:41.920000pt;}
.y13_c01137{bottom:59.840000pt;}
.ye_c01137{bottom:66.562667pt;}
.y12_c01137{bottom:85.440000pt;}
.yd_c01137{bottom:89.280000pt;}
.y11_c01137{bottom:124.800000pt;}
.yc_c01137{bottom:133.116000pt;}
.y10_c01137{bottom:143.680000pt;}
.yb_c01137{bottom:157.120000pt;}
.yf_c01137{bottom:163.520000pt;}
.ya_c01137{bottom:199.040000pt;}
.y15_c01137{bottom:240.000000pt;}
.y9_c01137{bottom:242.240000pt;}
.y8_c01137{bottom:285.440000pt;}
.y7_c01137{bottom:328.640000pt;}
.y6_c01137{bottom:371.840000pt;}
.y5_c01137{bottom:415.040000pt;}
.y4_c01137{bottom:458.240000pt;}
.y3_c01137{bottom:501.448000pt;}
.y2_c01137{bottom:541.120000pt;}
.y1_c01137{bottom:618.880000pt;}
.h8_c01137{height:34.464000pt;}
.h5_c01137{height:45.952000pt;}
.h4_c01137{height:51.744000pt;}
.h3_c01137{height:61.653333pt;}
.h6_c01137{height:62.122667pt;}
.h2_c01137{height:66.528000pt;}
.h7_c01137{height:69.984000pt;}
.h1_c01137{height:108.800000pt;}
.h0_c01137{height:720.000000pt;}
.w0_c01137{width:1280.000000pt;}
.x0_c01137{left:0.000000pt;}
.x3_c01137{left:82.352933pt;}
.x2_c01137{left:112.480533pt;}
.x1_c01137{left:123.011867pt;}
.x6_c01137{left:645.646533pt;}
.x4_c01137{left:850.353067pt;}
.x5_c01137{left:854.017067pt;}
.x7_c01137{left:1122.847600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6b95310c1e70191d37ea1b7d.woff2')format("woff");}.ff1_c01138{font-family:ff1_c01138;line-height:0.853000;font-style:normal;font-weight:normal;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_5d0e25c5cdfc3b27f01f106d.woff2')format("woff");}.ff2_c01138{font-family:ff2_c01138;line-height:0.896000;font-style:normal;font-weight:normal;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_fb83f23e433381d4ff11e045.woff2')format("woff");}.ff3_c01138{font-family:ff3_c01138;line-height:0.855000;font-style: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;}
.ls2_c01138{letter-spacing:-0.037800px;}
.ls1_c01138{letter-spacing:0.000000px;}
.ls0_c01138{letter-spacing:0.033600px;}
.sc__c01138{text-shadow:none;}
.sc0_c01138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01138{-webkit-text-stroke:0px transparent;}
.sc0_c01138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01138{word-spacing:0.000000px;}
._2_c01138{margin-left:-9.528000px;}
._0_c01138{margin-left:-2.520000px;}
._1_c01138{margin-left:-1.152000px;}
._3_c01138{width:1.104000px;}
.fc1_c01138{color:transparent;}
.fc0_c01138{color:rgb(0,0,0);}
.fs2_c01138{font-size:54.000000px;}
.fs1_c01138{font-size:120.000000px;}
.fs0_c01138{font-size:168.000000px;}
.y0_c01138{bottom:0.000000px;}
.ya_c01138{bottom:47.160000px;}
.y9_c01138{bottom:210.240000px;}
.y8_c01138{bottom:246.240000px;}
.y7_c01138{bottom:282.240000px;}
.y6_c01138{bottom:318.240000px;}
.y5_c01138{bottom:354.240000px;}
.y4_c01138{bottom:390.240000px;}
.y3_c01138{bottom:426.240000px;}
.y2_c01138{bottom:462.240000px;}
.y1_c01138{bottom:533.520000px;}
.h3_c01138{height:38.772000px;}
.h2_c01138{height:86.160000px;}
.h1_c01138{height:113.568000px;}
.h0_c01138{height:810.000000px;}
.w0_c01138{width:1440.000000px;}
.x0_c01138{left:0.000000px;}
.x1_c01138{left:129.699000px;}
.x2_c01138{left:327.388950px;}
.x3_c01138{left:1263.203550px;}
@media print{
.v0_c01138{vertical-align:0.000000pt;}
.ls2_c01138{letter-spacing:-0.033600pt;}
.ls1_c01138{letter-spacing:0.000000pt;}
.ls0_c01138{letter-spacing:0.029867pt;}
.ws0_c01138{word-spacing:0.000000pt;}
._2_c01138{margin-left:-8.469333pt;}
._0_c01138{margin-left:-2.240000pt;}
._1_c01138{margin-left:-1.024000pt;}
._3_c01138{width:0.981333pt;}
.fs2_c01138{font-size:48.000000pt;}
.fs1_c01138{font-size:106.666667pt;}
.fs0_c01138{font-size:149.333333pt;}
.y0_c01138{bottom:0.000000pt;}
.ya_c01138{bottom:41.920000pt;}
.y9_c01138{bottom:186.880000pt;}
.y8_c01138{bottom:218.880000pt;}
.y7_c01138{bottom:250.880000pt;}
.y6_c01138{bottom:282.880000pt;}
.y5_c01138{bottom:314.880000pt;}
.y4_c01138{bottom:346.880000pt;}
.y3_c01138{bottom:378.880000pt;}
.y2_c01138{bottom:410.880000pt;}
.y1_c01138{bottom:474.240000pt;}
.h3_c01138{height:34.464000pt;}
.h2_c01138{height:76.586667pt;}
.h1_c01138{height:100.949333pt;}
.h0_c01138{height:720.000000pt;}
.w0_c01138{width:1280.000000pt;}
.x0_c01138{left:0.000000pt;}
.x1_c01138{left:115.288000pt;}
.x2_c01138{left:291.012400pt;}
.x3_c01138{left:1122.847600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e6ae2db55d5e1b2bd41c0b10.woff2')format("woff");}.ff1_c01139{font-family:ff1_c01139;line-height:0.625000;font-style:normal;font-weight:normal;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_5d0e25c5cdfc3b27f01f106d.woff2')format("woff");}.ff2_c01139{font-family:ff2_c01139;line-height:0.896000;font-style:normal;font-weight:normal;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_6b95310c1e70191d37ea1b7d.woff2')format("woff");}.ff3_c01139{font-family:ff3_c01139;line-height:0.853000;font-style:normal;font-weight:normal;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_fb83f23e433381d4ff11e045.woff2')format("woff");}.ff4_c01139{font-family:ff4_c01139;line-height:0.855000;font-style: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;}
.ls3_c01139{letter-spacing:-0.037800px;}
.ls1_c01139{letter-spacing:0.000000px;}
.ls2_c01139{letter-spacing:0.033600px;}
.ls0_c01139{letter-spacing:120.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;}
}
.ws0_c01139{word-spacing:0.000000px;}
._6_c01139{margin-left:-12.168000px;}
._0_c01139{margin-left:-8.460000px;}
._5_c01139{margin-left:-7.320000px;}
._3_c01139{margin-left:-3.792000px;}
._1_c01139{margin-left:-1.836000px;}
._2_c01139{width:1.032000px;}
._4_c01139{width:5.100000px;}
.fc0_c01139{color:rgb(0,0,0);}
.fs2_c01139{font-size:54.000000px;}
.fs0_c01139{font-size:120.000000px;}
.fs1_c01139{font-size:168.000000px;}
.y0_c01139{bottom:0.000000px;}
.yb_c01139{bottom:47.160000px;}
.y9_c01139{bottom:128.160000px;}
.y8_c01139{bottom:164.160000px;}
.y7_c01139{bottom:200.160000px;}
.y6_c01139{bottom:272.160000px;}
.y5_c01139{bottom:308.160000px;}
.y4_c01139{bottom:344.160000px;}
.y3_c01139{bottom:416.160000px;}
.y2_c01139{bottom:452.160000px;}
.y1_c01139{bottom:488.160000px;}
.ya_c01139{bottom:541.080000px;}
.h3_c01139{height:38.772000px;}
.h1_c01139{height:86.160000px;}
.h2_c01139{height:113.568000px;}
.h0_c01139{height:810.000000px;}
.w0_c01139{width:1440.000000px;}
.x0_c01139{left:0.000000px;}
.x3_c01139{left:153.226950px;}
.x1_c01139{left:232.332150px;}
.x2_c01139{left:272.832150px;}
.x4_c01139{left:1263.203550px;}
@media print{
.v0_c01139{vertical-align:0.000000pt;}
.ls3_c01139{letter-spacing:-0.033600pt;}
.ls1_c01139{letter-spacing:0.000000pt;}
.ls2_c01139{letter-spacing:0.029867pt;}
.ls0_c01139{letter-spacing:106.666667pt;}
.ws0_c01139{word-spacing:0.000000pt;}
._6_c01139{margin-left:-10.816000pt;}
._0_c01139{margin-left:-7.520000pt;}
._5_c01139{margin-left:-6.506667pt;}
._3_c01139{margin-left:-3.370667pt;}
._1_c01139{margin-left:-1.632000pt;}
._2_c01139{width:0.917333pt;}
._4_c01139{width:4.533333pt;}
.fs2_c01139{font-size:48.000000pt;}
.fs0_c01139{font-size:106.666667pt;}
.fs1_c01139{font-size:149.333333pt;}
.y0_c01139{bottom:0.000000pt;}
.yb_c01139{bottom:41.920000pt;}
.y9_c01139{bottom:113.920000pt;}
.y8_c01139{bottom:145.920000pt;}
.y7_c01139{bottom:177.920000pt;}
.y6_c01139{bottom:241.920000pt;}
.y5_c01139{bottom:273.920000pt;}
.y4_c01139{bottom:305.920000pt;}
.y3_c01139{bottom:369.920000pt;}
.y2_c01139{bottom:401.920000pt;}
.y1_c01139{bottom:433.920000pt;}
.ya_c01139{bottom:480.960000pt;}
.h3_c01139{height:34.464000pt;}
.h1_c01139{height:76.586667pt;}
.h2_c01139{height:100.949333pt;}
.h0_c01139{height:720.000000pt;}
.w0_c01139{width:1280.000000pt;}
.x0_c01139{left:0.000000pt;}
.x3_c01139{left:136.201733pt;}
.x1_c01139{left:206.517467pt;}
.x2_c01139{left:242.517467pt;}
.x4_c01139{left:1122.847600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_333c2478586309501dcfc5f1.woff2')format("woff");}.ff1_c01140{font-family:ff1_c01140;line-height:0.891000;font-style:normal;font-weight:normal;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_f1797763faf27821bfb68ade.woff2')format("woff");}.ff2_c01140{font-family:ff2_c01140;line-height:0.855000;font-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_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);}
.m0_c01140{transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);}
.v0_c01140{vertical-align:0.000000px;}
.ls10_c01140{letter-spacing:-29.184000px;}
.ls8_c01140{letter-spacing:-4.602000px;}
.ls11_c01140{letter-spacing:-4.038000px;}
.ls6_c01140{letter-spacing:-1.176000px;}
.lsf_c01140{letter-spacing:-0.396000px;}
.ls7_c01140{letter-spacing:-0.096000px;}
.ls5_c01140{letter-spacing:0.000000px;}
.ls2_c01140{letter-spacing:0.132000px;}
.ls12_c01140{letter-spacing:0.210000px;}
.ls4_c01140{letter-spacing:0.222000px;}
.ls0_c01140{letter-spacing:0.363185px;}
.lsb_c01140{letter-spacing:0.378000px;}
.lsc_c01140{letter-spacing:0.450000px;}
.lse_c01140{letter-spacing:0.456000px;}
.ls3_c01140{letter-spacing:0.486000px;}
.ls9_c01140{letter-spacing:0.504000px;}
.lsd_c01140{letter-spacing:0.570000px;}
.ls1_c01140{letter-spacing:0.608819px;}
.lsa_c01140{letter-spacing:0.648000px;}
.sc__c01140{text-shadow:none;}
.sc1_c01140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0_c01140{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01140{-webkit-text-stroke:0px transparent;}
.sc1_c01140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0_c01140{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
}
.ws0_c01140{word-spacing:-37.572000px;}
.ws1_c01140{word-spacing:-8.784000px;}
.ws4_c01140{word-spacing:-7.524000px;}
.ws3_c01140{word-spacing:-6.876000px;}
.ws2_c01140{word-spacing:0.000000px;}
._0_c01140{margin-left:-13.354656px;}
._1_c01140{margin-left:-1.200000px;}
.fc0_c01140{color:rgb(255,255,255);}
.fs1_c01140{font-size:60.000000px;}
.fs0_c01140{font-size:168.000000px;}
.y0_c01140{bottom:0.000000px;}
.y3_c01140{bottom:22.680000px;}
.y2_c01140{bottom:408.756000px;}
.y1_c01140{bottom:455.124000px;}
.h2_c01140{height:43.080000px;}
.h1_c01140{height:119.784000px;}
.h0_c01140{height:810.000000px;}
.w0_c01140{width:1440.000000px;}
.x0_c01140{left:0.000000px;}
.x2_c01140{left:82.053000px;}
.x1_c01140{left:137.434500px;}
.x3_c01140{left:1294.588950px;}
@media print{
.v0_c01140{vertical-align:0.000000pt;}
.ls10_c01140{letter-spacing:-25.941333pt;}
.ls8_c01140{letter-spacing:-4.090667pt;}
.ls11_c01140{letter-spacing:-3.589333pt;}
.ls6_c01140{letter-spacing:-1.045333pt;}
.lsf_c01140{letter-spacing:-0.352000pt;}
.ls7_c01140{letter-spacing:-0.085333pt;}
.ls5_c01140{letter-spacing:0.000000pt;}
.ls2_c01140{letter-spacing:0.117333pt;}
.ls12_c01140{letter-spacing:0.186667pt;}
.ls4_c01140{letter-spacing:0.197333pt;}
.ls0_c01140{letter-spacing:0.322831pt;}
.lsb_c01140{letter-spacing:0.336000pt;}
.lsc_c01140{letter-spacing:0.400000pt;}
.lse_c01140{letter-spacing:0.405333pt;}
.ls3_c01140{letter-spacing:0.432000pt;}
.ls9_c01140{letter-spacing:0.448000pt;}
.lsd_c01140{letter-spacing:0.506667pt;}
.ls1_c01140{letter-spacing:0.541173pt;}
.lsa_c01140{letter-spacing:0.576000pt;}
.ws0_c01140{word-spacing:-33.397333pt;}
.ws1_c01140{word-spacing:-7.808000pt;}
.ws4_c01140{word-spacing:-6.688000pt;}
.ws3_c01140{word-spacing:-6.112000pt;}
.ws2_c01140{word-spacing:0.000000pt;}
._0_c01140{margin-left:-11.870805pt;}
._1_c01140{margin-left:-1.066667pt;}
.fs1_c01140{font-size:53.333333pt;}
.fs0_c01140{font-size:149.333333pt;}
.y0_c01140{bottom:0.000000pt;}
.y3_c01140{bottom:20.160000pt;}
.y2_c01140{bottom:363.338667pt;}
.y1_c01140{bottom:404.554667pt;}
.h2_c01140{height:38.293333pt;}
.h1_c01140{height:106.474667pt;}
.h0_c01140{height:720.000000pt;}
.w0_c01140{width:1280.000000pt;}
.x0_c01140{left:0.000000pt;}
.x2_c01140{left:72.936000pt;}
.x1_c01140{left:122.164000pt;}
.x3_c01140{left:1150.745733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cd3931e85c0f3975840095ae.woff2')format("woff");}.ff1_c01141{font-family:ff1_c01141;line-height:0.891000;font-style:normal;font-weight:normal;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_e6ae2db55d5e1b2bd41c0b10.woff2')format("woff");}.ff2_c01141{font-family:ff2_c01141;line-height:0.625000;font-style:normal;font-weight:normal;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_25e89c72e9e8c013a59477fc.woff2')format("woff");}.ff3_c01141{font-family:ff3_c01141;line-height:0.862000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01141;src:url('chunks/assets/font_c578b99c0c979dcb5793da16.woff2')format("woff");}.ff4_c01141{font-family:ff4_c01141;line-height:0.862000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01141;src:url('chunks/assets/font_fb83f23e433381d4ff11e045.woff2')format("woff");}.ff5_c01141{font-family:ff5_c01141;line-height:0.855000;font-style: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);}
.v1_c01141{vertical-align:-38.880000px;}
.v0_c01141{vertical-align:0.000000px;}
.ls7_c01141{letter-spacing:-4.822200px;}
.ls9_c01141{letter-spacing:-0.313200px;}
.ls8_c01141{letter-spacing:-0.205200px;}
.ls2_c01141{letter-spacing:-0.144000px;}
.ls1_c01141{letter-spacing:-0.072000px;}
.lsa_c01141{letter-spacing:-0.037800px;}
.ls3_c01141{letter-spacing:-0.011400px;}
.ls4_c01141{letter-spacing:0.000000px;}
.ls6_c01141{letter-spacing:0.148200px;}
.ls5_c01141{letter-spacing:0.171000px;}
.ls0_c01141{letter-spacing:68.058000px;}
.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:-54.096000px;}
.ws1_c01141{word-spacing:0.000000px;}
._1_c01141{margin-left:-18.240000px;}
._4_c01141{margin-left:-4.172400px;}
._0_c01141{margin-left:-2.400000px;}
._3_c01141{margin-left:-1.248000px;}
._2_c01141{width:1.266000px;}
._5_c01141{width:2.405400px;}
._6_c01141{width:3.990000px;}
._7_c01141{width:5.358000px;}
._8_c01141{width:2575.409400px;}
.fc1_c01141{color:rgb(0,117,188);}
.fc0_c01141{color:rgb(0,0,0);}
.fs3_c01141{font-size:54.000000px;}
.fs2_c01141{font-size:108.000000px;}
.fs1_c01141{font-size:114.000000px;}
.fs0_c01141{font-size:240.000000px;}
.y0_c01141{bottom:0.000000px;}
.y10_c01141{bottom:24.840000px;}
.yf_c01141{bottom:56.160000px;}
.ye_c01141{bottom:109.849500px;}
.yd_c01141{bottom:139.717500px;}
.yc_c01141{bottom:180.387000px;}
.yb_c01141{bottom:210.255000px;}
.ya_c01141{bottom:250.582500px;}
.y9_c01141{bottom:280.821000px;}
.y8_c01141{bottom:321.148500px;}
.y7_c01141{bottom:351.387000px;}
.y6_c01141{bottom:391.714500px;}
.y5_c01141{bottom:421.582500px;}
.y4_c01141{bottom:462.252000px;}
.y3_c01141{bottom:492.120000px;}
.y2_c01141{bottom:579.960000px;}
.y1_c01141{bottom:644.760000px;}
.h3_c01141{height:73.872000px;}
.h2_c01141{height:77.976000px;}
.h1_c01141{height:171.120000px;}
.h0_c01141{height:810.000000px;}
.w0_c01141{width:1440.000000px;}
.x0_c01141{left:0.000000px;}
.x1_c01141{left:105.840000px;}
.x2_c01141{left:119.340000px;}
.x3_c01141{left:146.329500px;}
.x4_c01141{left:452.118000px;}
@media print{
.v1_c01141{vertical-align:-34.560000pt;}
.v0_c01141{vertical-align:0.000000pt;}
.ls7_c01141{letter-spacing:-4.286400pt;}
.ls9_c01141{letter-spacing:-0.278400pt;}
.ls8_c01141{letter-spacing:-0.182400pt;}
.ls2_c01141{letter-spacing:-0.128000pt;}
.ls1_c01141{letter-spacing:-0.064000pt;}
.lsa_c01141{letter-spacing:-0.033600pt;}
.ls3_c01141{letter-spacing:-0.010133pt;}
.ls4_c01141{letter-spacing:0.000000pt;}
.ls6_c01141{letter-spacing:0.131733pt;}
.ls5_c01141{letter-spacing:0.152000pt;}
.ls0_c01141{letter-spacing:60.496000pt;}
.ws0_c01141{word-spacing:-48.085333pt;}
.ws1_c01141{word-spacing:0.000000pt;}
._1_c01141{margin-left:-16.213333pt;}
._4_c01141{margin-left:-3.708800pt;}
._0_c01141{margin-left:-2.133333pt;}
._3_c01141{margin-left:-1.109333pt;}
._2_c01141{width:1.125333pt;}
._5_c01141{width:2.138133pt;}
._6_c01141{width:3.546667pt;}
._7_c01141{width:4.762667pt;}
._8_c01141{width:2289.252800pt;}
.fs3_c01141{font-size:48.000000pt;}
.fs2_c01141{font-size:96.000000pt;}
.fs1_c01141{font-size:101.333333pt;}
.fs0_c01141{font-size:213.333333pt;}
.y0_c01141{bottom:0.000000pt;}
.y10_c01141{bottom:22.080000pt;}
.yf_c01141{bottom:49.920000pt;}
.ye_c01141{bottom:97.644000pt;}
.yd_c01141{bottom:124.193333pt;}
.yc_c01141{bottom:160.344000pt;}
.yb_c01141{bottom:186.893333pt;}
.ya_c01141{bottom:222.740000pt;}
.y9_c01141{bottom:249.618667pt;}
.y8_c01141{bottom:285.465333pt;}
.y7_c01141{bottom:312.344000pt;}
.y6_c01141{bottom:348.190667pt;}
.y5_c01141{bottom:374.740000pt;}
.y4_c01141{bottom:410.890667pt;}
.y3_c01141{bottom:437.440000pt;}
.y2_c01141{bottom:515.520000pt;}
.y1_c01141{bottom:573.120000pt;}
.h3_c01141{height:65.664000pt;}
.h2_c01141{height:69.312000pt;}
.h1_c01141{height:152.106667pt;}
.h0_c01141{height:720.000000pt;}
.w0_c01141{width:1280.000000pt;}
.x0_c01141{left:0.000000pt;}
.x1_c01141{left:94.080000pt;}
.x2_c01141{left:106.080000pt;}
.x3_c01141{left:130.070667pt;}
.x4_c01141{left:401.882667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c50cc21761db8bad631e606f.woff2')format("woff");}.ff1_c01142{font-family:ff1_c01142;line-height:0.741000;font-style:normal;font-weight:normal;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_513246d30666723c07908a5d.woff2')format("woff");}.ff2_c01142{font-family:ff2_c01142;line-height:0.625000;font-style:normal;font-weight:normal;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_fb83f23e433381d4ff11e045.woff2')format("woff");}.ff3_c01142{font-family:ff3_c01142;line-height:0.855000;font-style: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.037800px;}
.ls1_c01142{letter-spacing:0.000000px;}
.ls0_c01142{letter-spacing:0.021600px;}
.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:-30.045600px;}
.ws1_c01142{word-spacing:0.000000px;}
._0_c01142{margin-left:-1.134000px;}
.fc0_c01142{color:rgb(0,0,0);}
.fs1_c01142{font-size:48.000000px;}
.fs2_c01142{font-size:54.000000px;}
.fs0_c01142{font-size:108.000000px;}
.y0_c01142{bottom:0.000000px;}
.y3_c01142{bottom:25.560000px;}
.y1_c01142{bottom:102.600000px;}
.y2_c01142{bottom:207.720000px;}
.h2_c01142{height:30.000000px;}
.h3_c01142{height:38.772000px;}
.h1_c01142{height:78.732000px;}
.h0_c01142{height:810.000000px;}
.w0_c01142{width:1440.000000px;}
.x0_c01142{left:0.000000px;}
.x1_c01142{left:847.800000px;}
.x2_c01142{left:1216.800000px;}
.x3_c01142{left:1282.198650px;}
@media print{
.v0_c01142{vertical-align:0.000000pt;}
.ls2_c01142{letter-spacing:-0.033600pt;}
.ls1_c01142{letter-spacing:0.000000pt;}
.ls0_c01142{letter-spacing:0.019200pt;}
.ws0_c01142{word-spacing:-26.707200pt;}
.ws1_c01142{word-spacing:0.000000pt;}
._0_c01142{margin-left:-1.008000pt;}
.fs1_c01142{font-size:42.666667pt;}
.fs2_c01142{font-size:48.000000pt;}
.fs0_c01142{font-size:96.000000pt;}
.y0_c01142{bottom:0.000000pt;}
.y3_c01142{bottom:22.720000pt;}
.y1_c01142{bottom:91.200000pt;}
.y2_c01142{bottom:184.640000pt;}
.h2_c01142{height:26.666667pt;}
.h3_c01142{height:34.464000pt;}
.h1_c01142{height:69.984000pt;}
.h0_c01142{height:720.000000pt;}
.w0_c01142{width:1280.000000pt;}
.x0_c01142{left:0.000000pt;}
.x1_c01142{left:753.600000pt;}
.x2_c01142{left:1081.600000pt;}
.x3_c01142{left:1139.732133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a7dcb24d1212415165c78fa9.woff2')format("woff");}.ff1_c01143{font-family:ff1_c01143;line-height:0.862000;font-style:normal;font-weight:normal;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_fb83f23e433381d4ff11e045.woff2')format("woff");}.ff2_c01143{font-family:ff2_c01143;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01143{vertical-align:0.000000px;}
.ls0_c01143{letter-spacing:-5.649600px;}
.ls1_c01143{letter-spacing:-0.037800px;}
.sc__c01143{text-shadow:none;}
.sc0_c01143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01143{-webkit-text-stroke:0px transparent;}
.sc0_c01143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01143{word-spacing:0.000000px;}
._3_c01143{margin-left:-17.952000px;}
._4_c01143{margin-left:-1.134000px;}
._2_c01143{width:2.904000px;}
._0_c01143{width:5.808000px;}
._1_c01143{width:7.920000px;}
.fc0_c01143{color:rgb(0,0,0);}
.fs1_c01143{font-size:54.000000px;}
.fs0_c01143{font-size:264.000000px;}
.y0_c01143{bottom:0.000000px;}
.y2_c01143{bottom:30.240000px;}
.y1_c01143{bottom:757.800000px;}
.h2_c01143{height:38.772000px;}
.h1_c01143{height:180.576000px;}
.h0_c01143{height:810.000000px;}
.w0_c01143{width:1440.000000px;}
.x0_c01143{left:0.000000px;}
.x1_c01143{left:205.402500px;}
.x2_c01143{left:1261.032750px;}
@media print{
.v0_c01143{vertical-align:0.000000pt;}
.ls0_c01143{letter-spacing:-5.021867pt;}
.ls1_c01143{letter-spacing:-0.033600pt;}
.ws0_c01143{word-spacing:0.000000pt;}
._3_c01143{margin-left:-15.957333pt;}
._4_c01143{margin-left:-1.008000pt;}
._2_c01143{width:2.581333pt;}
._0_c01143{width:5.162667pt;}
._1_c01143{width:7.040000pt;}
.fs1_c01143{font-size:48.000000pt;}
.fs0_c01143{font-size:234.666667pt;}
.y0_c01143{bottom:0.000000pt;}
.y2_c01143{bottom:26.880000pt;}
.y1_c01143{bottom:673.600000pt;}
.h2_c01143{height:34.464000pt;}
.h1_c01143{height:160.512000pt;}
.h0_c01143{height:720.000000pt;}
.w0_c01143{width:1280.000000pt;}
.x0_c01143{left:0.000000pt;}
.x1_c01143{left:182.580000pt;}
.x2_c01143{left:1120.918000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb83f23e433381d4ff11e045.woff2')format("woff");}.ff1_c01144{font-family:ff1_c01144;line-height:0.855000;font-style: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;}
.ls0_c01144{letter-spacing:-0.037800px;}
.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:0.000000px;}
._0_c01144{margin-left:-1.134000px;}
.fc0_c01144{color:rgb(0,0,0);}
.fs0_c01144{font-size:54.000000px;}
.y0_c01144{bottom:0.000000px;}
.y1_c01144{bottom:31.680000px;}
.h1_c01144{height:38.772000px;}
.h0_c01144{height:810.000000px;}
.w0_c01144{width:1440.000000px;}
.x0_c01144{left:0.000000px;}
.x1_c01144{left:1270.800000px;}
@media print{
.v0_c01144{vertical-align:0.000000pt;}
.ls0_c01144{letter-spacing:-0.033600pt;}
.ws0_c01144{word-spacing:0.000000pt;}
._0_c01144{margin-left:-1.008000pt;}
.fs0_c01144{font-size:48.000000pt;}
.y0_c01144{bottom:0.000000pt;}
.y1_c01144{bottom:28.160000pt;}
.h1_c01144{height:34.464000pt;}
.h0_c01144{height:720.000000pt;}
.w0_c01144{width:1280.000000pt;}
.x0_c01144{left:0.000000pt;}
.x1_c01144{left:1129.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_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_6b95310c1e70191d37ea1b7d.woff2')format("woff");}.ff1_c01145{font-family:ff1_c01145;line-height:0.853000;font-style:normal;font-weight:normal;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_e6ae2db55d5e1b2bd41c0b10.woff2')format("woff");}.ff2_c01145{font-family:ff2_c01145;line-height:0.625000;font-style:normal;font-weight:normal;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_5d0e25c5cdfc3b27f01f106d.woff2')format("woff");}.ff3_c01145{font-family:ff3_c01145;line-height:0.896000;font-style:normal;font-weight:normal;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_fb83f23e433381d4ff11e045.woff2')format("woff");}.ff4_c01145{font-family:ff4_c01145;line-height:0.855000;font-style: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;}
.ls3_c01145{letter-spacing:-0.037800px;}
.ls2_c01145{letter-spacing:0.000000px;}
.ls1_c01145{letter-spacing:0.369600px;}
.ls0_c01145{letter-spacing:120.000000px;}
.sc__c01145{text-shadow:none;}
.sc0_c01145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01145{-webkit-text-stroke:0px transparent;}
.sc0_c01145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01145{word-spacing:0.000000px;}
._1_c01145{margin-left:-2.688000px;}
._0_c01145{margin-left:-1.344000px;}
._2_c01145{width:1.116000px;}
.fc0_c01145{color:rgb(0,0,0);}
.fs2_c01145{font-size:54.000000px;}
.fs1_c01145{font-size:120.000000px;}
.fs0_c01145{font-size:168.000000px;}
.y0_c01145{bottom:0.000000px;}
.y8_c01145{bottom:37.080000px;}
.y7_c01145{bottom:231.840000px;}
.y6_c01145{bottom:267.840000px;}
.y5_c01145{bottom:303.840000px;}
.y4_c01145{bottom:353.160000px;}
.y3_c01145{bottom:389.160000px;}
.y2_c01145{bottom:461.160000px;}
.y1_c01145{bottom:524.880000px;}
.h3_c01145{height:38.772000px;}
.h2_c01145{height:86.160000px;}
.h1_c01145{height:113.568000px;}
.h0_c01145{height:810.000000px;}
.w0_c01145{width:1440.000000px;}
.x0_c01145{left:0.000000px;}
.x1_c01145{left:131.655000px;}
.x2_c01145{left:231.093450px;}
.x3_c01145{left:271.593450px;}
.x4_c01145{left:1283.283900px;}
@media print{
.v0_c01145{vertical-align:0.000000pt;}
.ls3_c01145{letter-spacing:-0.033600pt;}
.ls2_c01145{letter-spacing:0.000000pt;}
.ls1_c01145{letter-spacing:0.328533pt;}
.ls0_c01145{letter-spacing:106.666667pt;}
.ws0_c01145{word-spacing:0.000000pt;}
._1_c01145{margin-left:-2.389333pt;}
._0_c01145{margin-left:-1.194667pt;}
._2_c01145{width:0.992000pt;}
.fs2_c01145{font-size:48.000000pt;}
.fs1_c01145{font-size:106.666667pt;}
.fs0_c01145{font-size:149.333333pt;}
.y0_c01145{bottom:0.000000pt;}
.y8_c01145{bottom:32.960000pt;}
.y7_c01145{bottom:206.080000pt;}
.y6_c01145{bottom:238.080000pt;}
.y5_c01145{bottom:270.080000pt;}
.y4_c01145{bottom:313.920000pt;}
.y3_c01145{bottom:345.920000pt;}
.y2_c01145{bottom:409.920000pt;}
.y1_c01145{bottom:466.560000pt;}
.h3_c01145{height:34.464000pt;}
.h2_c01145{height:76.586667pt;}
.h1_c01145{height:100.949333pt;}
.h0_c01145{height:720.000000pt;}
.w0_c01145{width:1280.000000pt;}
.x0_c01145{left:0.000000pt;}
.x1_c01145{left:117.026667pt;}
.x2_c01145{left:205.416400pt;}
.x3_c01145{left:241.416400pt;}
.x4_c01145{left:1140.696800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a02b9b0a0a351bcb4c4729b.woff2')format("woff");}.ff1_c01146{font-family:ff1_c01146;line-height:0.707000;font-style:normal;font-weight:normal;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_11d418036c04e688e345518a.woff2')format("woff");}.ff2_c01146{font-family:ff2_c01146;line-height:0.857000;font-style:normal;font-weight:normal;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_72725eca6ff8ed10888f9d29.woff2')format("woff");}.ff3_c01146{font-family:ff3_c01146;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01146;src:url('chunks/assets/font_6b95310c1e70191d37ea1b7d.woff2')format("woff");}.ff4_c01146{font-family:ff4_c01146;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01146;src:url('chunks/assets/font_fb83f23e433381d4ff11e045.woff2')format("woff");}.ff5_c01146{font-family:ff5_c01146;line-height:0.855000;font-style: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;}
.ls7_c01146{letter-spacing:-0.387000px;}
.lsa_c01146{letter-spacing:-0.207000px;}
.ls9_c01146{letter-spacing:-0.037800px;}
.ls6_c01146{letter-spacing:-0.027000px;}
.ls4_c01146{letter-spacing:0.000000px;}
.ls2_c01146{letter-spacing:0.117000px;}
.ls8_c01146{letter-spacing:0.168000px;}
.ls5_c01146{letter-spacing:0.180000px;}
.ls3_c01146{letter-spacing:1.520400px;}
.ls0_c01146{letter-spacing:20.400000px;}
.ls1_c01146{letter-spacing:20.430000px;}
.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;}
}
.ws2_c01146{word-spacing:-20.520000px;}
.ws3_c01146{word-spacing:-20.133000px;}
.ws0_c01146{word-spacing:-19.953000px;}
.ws1_c01146{word-spacing:-0.198000px;}
.ws4_c01146{word-spacing:0.000000px;}
._4_c01146{margin-left:-13.272000px;}
._3_c01146{margin-left:-6.885000px;}
._1_c01146{margin-left:-3.150000px;}
._0_c01146{margin-left:-1.512000px;}
._2_c01146{width:1.260000px;}
._5_c01146{width:19.134000px;}
.fc0_c01146{color:rgb(0,0,0);}
.fs3_c01146{font-size:54.000000px;}
.fs1_c01146{font-size:84.000000px;}
.fs0_c01146{font-size:90.000000px;}
.fs2_c01146{font-size:168.000000px;}
.y0_c01146{bottom:0.000000px;}
.y10_c01146{bottom:47.160000px;}
.ye_c01146{bottom:159.480000px;}
.y1d_c01146{bottom:185.400000px;}
.yd_c01146{bottom:186.480000px;}
.y1c_c01146{bottom:212.400000px;}
.yc_c01146{bottom:213.480000px;}
.y1b_c01146{bottom:239.400000px;}
.yb_c01146{bottom:240.480000px;}
.y1a_c01146{bottom:266.400000px;}
.ya_c01146{bottom:267.480000px;}
.y19_c01146{bottom:293.400000px;}
.y9_c01146{bottom:294.480000px;}
.y26_c01146{bottom:297.720000px;}
.y18_c01146{bottom:320.400000px;}
.y8_c01146{bottom:321.480000px;}
.y25_c01146{bottom:324.720000px;}
.y17_c01146{bottom:347.400000px;}
.y7_c01146{bottom:348.480000px;}
.y24_c01146{bottom:351.720000px;}
.y16_c01146{bottom:374.400000px;}
.y6_c01146{bottom:375.480000px;}
.y23_c01146{bottom:378.720000px;}
.y15_c01146{bottom:401.400000px;}
.y5_c01146{bottom:402.480000px;}
.y22_c01146{bottom:405.720000px;}
.y14_c01146{bottom:428.400000px;}
.y4_c01146{bottom:429.480000px;}
.y21_c01146{bottom:432.720000px;}
.y13_c01146{bottom:455.400000px;}
.y3_c01146{bottom:456.480000px;}
.y20_c01146{bottom:459.720000px;}
.y12_c01146{bottom:482.400000px;}
.y2_c01146{bottom:483.480000px;}
.y1f_c01146{bottom:486.720000px;}
.y11_c01146{bottom:509.400000px;}
.y1_c01146{bottom:510.480000px;}
.y1e_c01146{bottom:513.720000px;}
.yf_c01146{bottom:553.320000px;}
.h4_c01146{height:38.772000px;}
.h1_c01146{height:62.280000px;}
.h2_c01146{height:64.620000px;}
.h3_c01146{height:113.568000px;}
.h0_c01146{height:810.000000px;}
.w0_c01146{width:1440.000000px;}
.x0_c01146{left:0.000000px;}
.x1_c01146{left:28.228800px;}
.x2_c01146{left:402.014400px;}
.x4_c01146{left:473.418300px;}
.x5_c01146{left:979.375800px;}
.x3_c01146{left:1263.203550px;}
@media print{
.v0_c01146{vertical-align:0.000000pt;}
.ls7_c01146{letter-spacing:-0.344000pt;}
.lsa_c01146{letter-spacing:-0.184000pt;}
.ls9_c01146{letter-spacing:-0.033600pt;}
.ls6_c01146{letter-spacing:-0.024000pt;}
.ls4_c01146{letter-spacing:0.000000pt;}
.ls2_c01146{letter-spacing:0.104000pt;}
.ls8_c01146{letter-spacing:0.149333pt;}
.ls5_c01146{letter-spacing:0.160000pt;}
.ls3_c01146{letter-spacing:1.351467pt;}
.ls0_c01146{letter-spacing:18.133333pt;}
.ls1_c01146{letter-spacing:18.160000pt;}
.ws2_c01146{word-spacing:-18.240000pt;}
.ws3_c01146{word-spacing:-17.896000pt;}
.ws0_c01146{word-spacing:-17.736000pt;}
.ws1_c01146{word-spacing:-0.176000pt;}
.ws4_c01146{word-spacing:0.000000pt;}
._4_c01146{margin-left:-11.797333pt;}
._3_c01146{margin-left:-6.120000pt;}
._1_c01146{margin-left:-2.800000pt;}
._0_c01146{margin-left:-1.344000pt;}
._2_c01146{width:1.120000pt;}
._5_c01146{width:17.008000pt;}
.fs3_c01146{font-size:48.000000pt;}
.fs1_c01146{font-size:74.666667pt;}
.fs0_c01146{font-size:80.000000pt;}
.fs2_c01146{font-size:149.333333pt;}
.y0_c01146{bottom:0.000000pt;}
.y10_c01146{bottom:41.920000pt;}
.ye_c01146{bottom:141.760000pt;}
.y1d_c01146{bottom:164.800000pt;}
.yd_c01146{bottom:165.760000pt;}
.y1c_c01146{bottom:188.800000pt;}
.yc_c01146{bottom:189.760000pt;}
.y1b_c01146{bottom:212.800000pt;}
.yb_c01146{bottom:213.760000pt;}
.y1a_c01146{bottom:236.800000pt;}
.ya_c01146{bottom:237.760000pt;}
.y19_c01146{bottom:260.800000pt;}
.y9_c01146{bottom:261.760000pt;}
.y26_c01146{bottom:264.640000pt;}
.y18_c01146{bottom:284.800000pt;}
.y8_c01146{bottom:285.760000pt;}
.y25_c01146{bottom:288.640000pt;}
.y17_c01146{bottom:308.800000pt;}
.y7_c01146{bottom:309.760000pt;}
.y24_c01146{bottom:312.640000pt;}
.y16_c01146{bottom:332.800000pt;}
.y6_c01146{bottom:333.760000pt;}
.y23_c01146{bottom:336.640000pt;}
.y15_c01146{bottom:356.800000pt;}
.y5_c01146{bottom:357.760000pt;}
.y22_c01146{bottom:360.640000pt;}
.y14_c01146{bottom:380.800000pt;}
.y4_c01146{bottom:381.760000pt;}
.y21_c01146{bottom:384.640000pt;}
.y13_c01146{bottom:404.800000pt;}
.y3_c01146{bottom:405.760000pt;}
.y20_c01146{bottom:408.640000pt;}
.y12_c01146{bottom:428.800000pt;}
.y2_c01146{bottom:429.760000pt;}
.y1f_c01146{bottom:432.640000pt;}
.y11_c01146{bottom:452.800000pt;}
.y1_c01146{bottom:453.760000pt;}
.y1e_c01146{bottom:456.640000pt;}
.yf_c01146{bottom:491.840000pt;}
.h4_c01146{height:34.464000pt;}
.h1_c01146{height:55.360000pt;}
.h2_c01146{height:57.440000pt;}
.h3_c01146{height:100.949333pt;}
.h0_c01146{height:720.000000pt;}
.w0_c01146{width:1280.000000pt;}
.x0_c01146{left:0.000000pt;}
.x1_c01146{left:25.092267pt;}
.x2_c01146{left:357.346133pt;}
.x4_c01146{left:420.816267pt;}
.x5_c01146{left:870.556267pt;}
.x3_c01146{left:1122.847600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_986016cb74c373d31c8173e6.woff2')format("woff");}.ff1_c01147{font-family:ff1_c01147;line-height:0.741000;font-style:normal;font-weight:normal;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_4aebf18b4ecc4def275309fa.woff2')format("woff");}.ff2_c01147{font-family:ff2_c01147;line-height:0.938000;font-style:normal;font-weight:normal;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_6b95310c1e70191d37ea1b7d.woff2')format("woff");}.ff3_c01147{font-family:ff3_c01147;line-height:0.853000;font-style:normal;font-weight:normal;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_f1797763faf27821bfb68ade.woff2')format("woff");}.ff4_c01147{font-family:ff4_c01147;line-height:0.855000;font-style: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;}
.ls5_c01147{letter-spacing:-2.671200px;}
.ls4_c01147{letter-spacing:-0.043200px;}
.ls3_c01147{letter-spacing:0.000000px;}
.ls2_c01147{letter-spacing:0.010800px;}
.ls1_c01147{letter-spacing:0.021600px;}
.ls6_c01147{letter-spacing:0.210000px;}
.ls0_c01147{letter-spacing:70.200000px;}
.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:-30.034800px;}
.ws1_c01147{word-spacing:-29.980800px;}
.ws2_c01147{word-spacing:0.000000px;}
._0_c01147{margin-left:-3.996000px;}
._1_c01147{margin-left:-1.080000px;}
._2_c01147{width:1.344000px;}
._3_c01147{width:2.520000px;}
.fc3_c01147{color:rgb(255,255,255);}
.fc2_c01147{color:rgb(0,0,0);}
.fc1_c01147{color:rgb(180,199,231);}
.fc0_c01147{color:rgb(47,85,151);}
.fs2_c01147{font-size:60.000000px;}
.fs0_c01147{font-size:108.000000px;}
.fs1_c01147{font-size:168.000000px;}
.y0_c01147{bottom:0.000000px;}
.ye_c01147{bottom:27.000000px;}
.yc_c01147{bottom:58.986000px;}
.yb_c01147{bottom:96.786000px;}
.ya_c01147{bottom:120.546000px;}
.y9_c01147{bottom:157.995000px;}
.y8_c01147{bottom:195.795000px;}
.y7_c01147{bottom:233.244000px;}
.y6_c01147{bottom:270.693000px;}
.y5_c01147{bottom:308.142000px;}
.y4_c01147{bottom:345.591000px;}
.y3_c01147{bottom:383.040000px;}
.y2_c01147{bottom:422.271000px;}
.y1_c01147{bottom:459.720000px;}
.yd_c01147{bottom:516.960000px;}
.h4_c01147{height:43.080000px;}
.h2_c01147{height:78.624000px;}
.h1_c01147{height:78.732000px;}
.h3_c01147{height:113.568000px;}
.h0_c01147{height:810.000000px;}
.w0_c01147{width:1440.000000px;}
.x0_c01147{left:0.000000px;}
.x3_c01147{left:86.783400px;}
.x1_c01147{left:115.669200px;}
.x2_c01147{left:142.669200px;}
.x4_c01147{left:1276.000950px;}
@media print{
.v0_c01147{vertical-align:0.000000pt;}
.ls5_c01147{letter-spacing:-2.374400pt;}
.ls4_c01147{letter-spacing:-0.038400pt;}
.ls3_c01147{letter-spacing:0.000000pt;}
.ls2_c01147{letter-spacing:0.009600pt;}
.ls1_c01147{letter-spacing:0.019200pt;}
.ls6_c01147{letter-spacing:0.186667pt;}
.ls0_c01147{letter-spacing:62.400000pt;}
.ws0_c01147{word-spacing:-26.697600pt;}
.ws1_c01147{word-spacing:-26.649600pt;}
.ws2_c01147{word-spacing:0.000000pt;}
._0_c01147{margin-left:-3.552000pt;}
._1_c01147{margin-left:-0.960000pt;}
._2_c01147{width:1.194667pt;}
._3_c01147{width:2.240000pt;}
.fs2_c01147{font-size:53.333333pt;}
.fs0_c01147{font-size:96.000000pt;}
.fs1_c01147{font-size:149.333333pt;}
.y0_c01147{bottom:0.000000pt;}
.ye_c01147{bottom:24.000000pt;}
.yc_c01147{bottom:52.432000pt;}
.yb_c01147{bottom:86.032000pt;}
.ya_c01147{bottom:107.152000pt;}
.y9_c01147{bottom:140.440000pt;}
.y8_c01147{bottom:174.040000pt;}
.y7_c01147{bottom:207.328000pt;}
.y6_c01147{bottom:240.616000pt;}
.y5_c01147{bottom:273.904000pt;}
.y4_c01147{bottom:307.192000pt;}
.y3_c01147{bottom:340.480000pt;}
.y2_c01147{bottom:375.352000pt;}
.y1_c01147{bottom:408.640000pt;}
.yd_c01147{bottom:459.520000pt;}
.h4_c01147{height:38.293333pt;}
.h2_c01147{height:69.888000pt;}
.h1_c01147{height:69.984000pt;}
.h3_c01147{height:100.949333pt;}
.h0_c01147{height:720.000000pt;}
.w0_c01147{width:1280.000000pt;}
.x0_c01147{left:0.000000pt;}
.x3_c01147{left:77.140800pt;}
.x1_c01147{left:102.817067pt;}
.x2_c01147{left:126.817067pt;}
.x4_c01147{left:1134.223067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fb83f23e433381d4ff11e045.woff2')format("woff");}.ff1_c01148{font-family:ff1_c01148;line-height:0.855000;font-style:normal;font-weight:normal;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_eefe2672839c914a88599912.woff2')format("woff");}.ff2_c01148{font-family:ff2_c01148;line-height:0.650000;font-style:normal;font-weight:normal;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_4c0c88b1624e7d3fb0de2960.woff2')format("woff");}.ff3_c01148{font-family:ff3_c01148;line-height:0.871000;font-style: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);}
.m1_c01148{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01148{vertical-align:0.000000px;}
.ls5_c01148{letter-spacing:-0.334800px;}
.ls4_c01148{letter-spacing:-0.075600px;}
.ls1_c01148{letter-spacing:-0.037800px;}
.ls7_c01148{letter-spacing:-0.010800px;}
.ls6_c01148{letter-spacing:0.000000px;}
.ls0_c01148{letter-spacing:0.010800px;}
.ls3_c01148{letter-spacing:0.183600px;}
.ls2_c01148{letter-spacing:0.345600px;}
.sc__c01148{text-shadow:none;}
.sc0_c01148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01148{-webkit-text-stroke:0px transparent;}
.sc0_c01148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01148{word-spacing:-24.332400px;}
.ws1_c01148{word-spacing:0.000000px;}
._1_c01148{margin-left:-14.256000px;}
._4_c01148{margin-left:-10.724400px;}
._2_c01148{margin-left:-2.700000px;}
._0_c01148{margin-left:-1.296000px;}
._3_c01148{width:1.112400px;}
.fc1_c01148{color:rgb(5,99,193);}
.fc0_c01148{color:rgb(0,0,0);}
.fs0_c01148{font-size:54.000000px;}
.fs2_c01148{font-size:108.000000px;}
.fs1_c01148{font-size:432.000000px;}
.y0_c01148{bottom:0.000000px;}
.y1_c01148{bottom:30.600000px;}
.y5_c01148{bottom:102.600000px;}
.y4_c01148{bottom:135.720000px;}
.y3_c01148{bottom:167.040000px;}
.y2_c01148{bottom:321.840000px;}
.h1_c01148{height:38.772000px;}
.h3_c01148{height:74.844000px;}
.h2_c01148{height:276.912000px;}
.h0_c01148{height:810.000000px;}
.w0_c01148{width:1440.000000px;}
.x0_c01148{left:0.000000px;}
.x3_c01148{left:57.234750px;}
.x2_c01148{left:419.151300px;}
.x1_c01148{left:1284.912150px;}
@media print{
.v0_c01148{vertical-align:0.000000pt;}
.ls5_c01148{letter-spacing:-0.297600pt;}
.ls4_c01148{letter-spacing:-0.067200pt;}
.ls1_c01148{letter-spacing:-0.033600pt;}
.ls7_c01148{letter-spacing:-0.009600pt;}
.ls6_c01148{letter-spacing:0.000000pt;}
.ls0_c01148{letter-spacing:0.009600pt;}
.ls3_c01148{letter-spacing:0.163200pt;}
.ls2_c01148{letter-spacing:0.307200pt;}
.ws0_c01148{word-spacing:-21.628800pt;}
.ws1_c01148{word-spacing:0.000000pt;}
._1_c01148{margin-left:-12.672000pt;}
._4_c01148{margin-left:-9.532800pt;}
._2_c01148{margin-left:-2.400000pt;}
._0_c01148{margin-left:-1.152000pt;}
._3_c01148{width:0.988800pt;}
.fs0_c01148{font-size:48.000000pt;}
.fs2_c01148{font-size:96.000000pt;}
.fs1_c01148{font-size:384.000000pt;}
.y0_c01148{bottom:0.000000pt;}
.y1_c01148{bottom:27.200000pt;}
.y5_c01148{bottom:91.200000pt;}
.y4_c01148{bottom:120.640000pt;}
.y3_c01148{bottom:148.480000pt;}
.y2_c01148{bottom:286.080000pt;}
.h1_c01148{height:34.464000pt;}
.h3_c01148{height:66.528000pt;}
.h2_c01148{height:246.144000pt;}
.h0_c01148{height:720.000000pt;}
.w0_c01148{width:1280.000000pt;}
.x0_c01148{left:0.000000pt;}
.x3_c01148{left:50.875333pt;}
.x2_c01148{left:372.578933pt;}
.x1_c01148{left:1142.144133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fba395440e6714a7ff7dcd3f.woff2')format("woff");}.ff1_c01149{font-family:ff1_c01149;line-height:0.910645;font-style:normal;font-weight:normal;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_0698cdf5fe6028c01fb2cc0e.woff2')format("woff");}.ff2_c01149{font-family:ff2_c01149;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01149;src:url('chunks/assets/font_c5b4f3addde3549249a7e807.woff2')format("woff");}.ff3_c01149{font-family:ff3_c01149;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01149;src:url('chunks/assets/font_51ed78a472d01c922d172517.woff2')format("woff");}.ff4_c01149{font-family:ff4_c01149;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01149{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01149{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01149{vertical-align:0.000000px;}
.ls12_c01149{letter-spacing:-0.810000px;}
.lsd_c01149{letter-spacing:-0.378000px;}
.ls10_c01149{letter-spacing:-0.358560px;}
.ls11_c01149{letter-spacing:-0.324000px;}
.lse_c01149{letter-spacing:-0.288000px;}
.ls14_c01149{letter-spacing:-0.239040px;}
.lsb_c01149{letter-spacing:-0.216000px;}
.ls13_c01149{letter-spacing:-0.108000px;}
.ls15_c01149{letter-spacing:-0.059760px;}
.lsa_c01149{letter-spacing:0.000000px;}
.ls2_c01149{letter-spacing:0.018000px;}
.lsf_c01149{letter-spacing:0.059760px;}
.lsc_c01149{letter-spacing:0.108000px;}
.ls16_c01149{letter-spacing:0.119520px;}
.ls5_c01149{letter-spacing:0.162000px;}
.ls8_c01149{letter-spacing:0.179280px;}
.ls4_c01149{letter-spacing:0.358560px;}
.ls0_c01149{letter-spacing:0.360000px;}
.ls1_c01149{letter-spacing:0.378000px;}
.ls6_c01149{letter-spacing:0.394200px;}
.ls3_c01149{letter-spacing:0.720000px;}
.ls9_c01149{letter-spacing:3.047760px;}
.ls7_c01149{letter-spacing:12.430080px;}
.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;}
}
.ws2_c01149{word-spacing:-17.712000px;}
.ws3_c01149{word-spacing:-15.298560px;}
.ws5_c01149{word-spacing:-15.119280px;}
.wsd_c01149{word-spacing:-15.059520px;}
.ws4_c01149{word-spacing:-14.940000px;}
.wsc_c01149{word-spacing:-14.700960px;}
.wsb_c01149{word-spacing:-13.878000px;}
.wsa_c01149{word-spacing:-13.608000px;}
.ws1_c01149{word-spacing:-13.500000px;}
.ws9_c01149{word-spacing:-13.392000px;}
.ws6_c01149{word-spacing:-13.284000px;}
.ws7_c01149{word-spacing:-13.176000px;}
.ws0_c01149{word-spacing:-13.122000px;}
.ws8_c01149{word-spacing:-12.690000px;}
.ws20_c01149{word-spacing:-3.047760px;}
.ws23_c01149{word-spacing:-2.629440px;}
.ws27_c01149{word-spacing:-2.330640px;}
.ws21_c01149{word-spacing:-1.613520px;}
.ws1e_c01149{word-spacing:-0.918000px;}
.ws31_c01149{word-spacing:-0.896400px;}
.ws13_c01149{word-spacing:-0.702000px;}
.ws12_c01149{word-spacing:-0.648000px;}
.ws10_c01149{word-spacing:-0.540000px;}
.ws1c_c01149{word-spacing:-0.378000px;}
.ws30_c01149{word-spacing:-0.358560px;}
.ws15_c01149{word-spacing:-0.216000px;}
.ws17_c01149{word-spacing:-0.191520px;}
.ws22_c01149{word-spacing:-0.179280px;}
.ws26_c01149{word-spacing:-0.119520px;}
.ws1a_c01149{word-spacing:-0.059760px;}
.wsf_c01149{word-spacing:0.000000px;}
.ws32_c01149{word-spacing:0.059760px;}
.wse_c01149{word-spacing:0.162000px;}
.ws11_c01149{word-spacing:0.216000px;}
.ws18_c01149{word-spacing:0.288000px;}
.ws1b_c01149{word-spacing:0.358560px;}
.ws1d_c01149{word-spacing:0.378000px;}
.ws14_c01149{word-spacing:0.540000px;}
.ws16_c01149{word-spacing:0.574560px;}
.ws19_c01149{word-spacing:0.720000px;}
.ws1f_c01149{word-spacing:0.810000px;}
.ws28_c01149{word-spacing:2.689200px;}
.ws33_c01149{word-spacing:3.406320px;}
.ws25_c01149{word-spacing:4.123440px;}
.ws24_c01149{word-spacing:4.840560px;}
.ws34_c01149{word-spacing:5.557680px;}
.ws2b_c01149{word-spacing:6.274800px;}
.ws2c_c01149{word-spacing:7.051680px;}
.ws2d_c01149{word-spacing:7.290720px;}
.ws2e_c01149{word-spacing:7.470000px;}
.ws2a_c01149{word-spacing:7.768800px;}
.ws29_c01149{word-spacing:9.920160px;}
.ws2f_c01149{word-spacing:12.071520px;}
._6_c01149{margin-left:-12.843360px;}
._3_c01149{margin-left:-3.250800px;}
._2_c01149{margin-left:-2.203200px;}
._0_c01149{margin-left:-1.042200px;}
._1_c01149{width:1.042200px;}
._7_c01149{width:3.705120px;}
._5_c01149{width:6.704280px;}
._4_c01149{width:8.119440px;}
.fc0_c01149{color:rgb(0,0,0);}
.fs1_c01149{font-size:12.240000px;}
.fs0_c01149{font-size:54.000000px;}
.fs4_c01149{font-size:59.760000px;}
.fs3_c01149{font-size:72.000000px;}
.fs2_c01149{font-size:95.760000px;}
.y0_c01149{bottom:0.000000px;}
.y2_c01149{bottom:3.240000px;}
.y3_c01149{bottom:54.900000px;}
.y1_c01149{bottom:57.600000px;}
.y2e_c01149{bottom:103.131000px;}
.y2d_c01149{bottom:118.615500px;}
.y2c_c01149{bottom:134.275500px;}
.y2b_c01149{bottom:149.760000px;}
.y2a_c01149{bottom:165.469320px;}
.y29_c01149{bottom:182.754900px;}
.y28_c01149{bottom:200.040480px;}
.y27_c01149{bottom:226.140660px;}
.y26_c01149{bottom:243.426240px;}
.y25_c01149{bottom:260.711820px;}
.y24_c01149{bottom:277.997400px;}
.y23_c01149{bottom:295.282980px;}
.y22_c01149{bottom:312.568560px;}
.y21_c01149{bottom:329.674860px;}
.y20_c01149{bottom:346.960440px;}
.y1f_c01149{bottom:364.246020px;}
.y1e_c01149{bottom:381.531600px;}
.y1d_c01149{bottom:398.817180px;}
.y1c_c01149{bottom:415.923480px;}
.y1b_c01149{bottom:433.209060px;}
.y1a_c01149{bottom:450.494640px;}
.y19_c01149{bottom:467.780220px;}
.y18_c01149{bottom:485.065800px;}
.y17_c01149{bottom:502.351380px;}
.y16_c01149{bottom:519.457680px;}
.y15_c01149{bottom:536.743260px;}
.y14_c01149{bottom:554.028840px;}
.y13_c01149{bottom:571.314420px;}
.y12_c01149{bottom:588.600000px;}
.y11_c01149{bottom:641.515500px;}
.y10_c01149{bottom:657.000000px;}
.yf_c01149{bottom:687.591000px;}
.ye_c01149{bottom:703.075500px;}
.yd_c01149{bottom:718.560000px;}
.yc_c01149{bottom:752.400000px;}
.yb_c01149{bottom:779.400000px;}
.ya_c01149{bottom:800.100000px;}
.y9_c01149{bottom:820.800000px;}
.y8_c01149{bottom:841.500000px;}
.y7_c01149{bottom:862.200000px;}
.y6_c01149{bottom:900.900000px;}
.y5_c01149{bottom:949.497480px;}
.y4_c01149{bottom:977.220000px;}
.h3_c01149{height:8.504648px;}
.h1_c01149{height:24.480000px;}
.h2_c01149{height:37.520508px;}
.h8_c01149{height:41.493516px;}
.h6_c01149{height:41.522695px;}
.h7_c01149{height:41.558695px;}
.h5_c01149{height:50.027344px;}
.h4_c01149{height:65.554453px;}
.h0_c01149{height:1084.500000px;}
.w2_c01149{width:616.500000px;}
.w1_c01149{width:744.000000px;}
.w0_c01149{width:744.300000px;}
.x0_c01149{left:0.000000px;}
.x2_c01149{left:15.300000px;}
.x1_c01149{left:63.900000px;}
.x3_c01149{left:76.500000px;}
.xc_c01149{left:102.240000px;}
.xd_c01149{left:117.360000px;}
.xe_c01149{left:201.964500px;}
.x4_c01149{left:203.765040px;}
.x7_c01149{left:208.260000px;}
.x9_c01149{left:217.260000px;}
.x8_c01149{left:221.040000px;}
.xb_c01149{left:250.920000px;}
.x6_c01149{left:288.900000px;}
.xa_c01149{left:298.620000px;}
.x5_c01149{left:307.800000px;}
@media print{
.v0_c01149{vertical-align:0.000000pt;}
.ls12_c01149{letter-spacing:-0.720000pt;}
.lsd_c01149{letter-spacing:-0.336000pt;}
.ls10_c01149{letter-spacing:-0.318720pt;}
.ls11_c01149{letter-spacing:-0.288000pt;}
.lse_c01149{letter-spacing:-0.256000pt;}
.ls14_c01149{letter-spacing:-0.212480pt;}
.lsb_c01149{letter-spacing:-0.192000pt;}
.ls13_c01149{letter-spacing:-0.096000pt;}
.ls15_c01149{letter-spacing:-0.053120pt;}
.lsa_c01149{letter-spacing:0.000000pt;}
.ls2_c01149{letter-spacing:0.016000pt;}
.lsf_c01149{letter-spacing:0.053120pt;}
.lsc_c01149{letter-spacing:0.096000pt;}
.ls16_c01149{letter-spacing:0.106240pt;}
.ls5_c01149{letter-spacing:0.144000pt;}
.ls8_c01149{letter-spacing:0.159360pt;}
.ls4_c01149{letter-spacing:0.318720pt;}
.ls0_c01149{letter-spacing:0.320000pt;}
.ls1_c01149{letter-spacing:0.336000pt;}
.ls6_c01149{letter-spacing:0.350400pt;}
.ls3_c01149{letter-spacing:0.640000pt;}
.ls9_c01149{letter-spacing:2.709120pt;}
.ls7_c01149{letter-spacing:11.048960pt;}
.ws2_c01149{word-spacing:-15.744000pt;}
.ws3_c01149{word-spacing:-13.598720pt;}
.ws5_c01149{word-spacing:-13.439360pt;}
.wsd_c01149{word-spacing:-13.386240pt;}
.ws4_c01149{word-spacing:-13.280000pt;}
.wsc_c01149{word-spacing:-13.067520pt;}
.wsb_c01149{word-spacing:-12.336000pt;}
.wsa_c01149{word-spacing:-12.096000pt;}
.ws1_c01149{word-spacing:-12.000000pt;}
.ws9_c01149{word-spacing:-11.904000pt;}
.ws6_c01149{word-spacing:-11.808000pt;}
.ws7_c01149{word-spacing:-11.712000pt;}
.ws0_c01149{word-spacing:-11.664000pt;}
.ws8_c01149{word-spacing:-11.280000pt;}
.ws20_c01149{word-spacing:-2.709120pt;}
.ws23_c01149{word-spacing:-2.337280pt;}
.ws27_c01149{word-spacing:-2.071680pt;}
.ws21_c01149{word-spacing:-1.434240pt;}
.ws1e_c01149{word-spacing:-0.816000pt;}
.ws31_c01149{word-spacing:-0.796800pt;}
.ws13_c01149{word-spacing:-0.624000pt;}
.ws12_c01149{word-spacing:-0.576000pt;}
.ws10_c01149{word-spacing:-0.480000pt;}
.ws1c_c01149{word-spacing:-0.336000pt;}
.ws30_c01149{word-spacing:-0.318720pt;}
.ws15_c01149{word-spacing:-0.192000pt;}
.ws17_c01149{word-spacing:-0.170240pt;}
.ws22_c01149{word-spacing:-0.159360pt;}
.ws26_c01149{word-spacing:-0.106240pt;}
.ws1a_c01149{word-spacing:-0.053120pt;}
.wsf_c01149{word-spacing:0.000000pt;}
.ws32_c01149{word-spacing:0.053120pt;}
.wse_c01149{word-spacing:0.144000pt;}
.ws11_c01149{word-spacing:0.192000pt;}
.ws18_c01149{word-spacing:0.256000pt;}
.ws1b_c01149{word-spacing:0.318720pt;}
.ws1d_c01149{word-spacing:0.336000pt;}
.ws14_c01149{word-spacing:0.480000pt;}
.ws16_c01149{word-spacing:0.510720pt;}
.ws19_c01149{word-spacing:0.640000pt;}
.ws1f_c01149{word-spacing:0.720000pt;}
.ws28_c01149{word-spacing:2.390400pt;}
.ws33_c01149{word-spacing:3.027840pt;}
.ws25_c01149{word-spacing:3.665280pt;}
.ws24_c01149{word-spacing:4.302720pt;}
.ws34_c01149{word-spacing:4.940160pt;}
.ws2b_c01149{word-spacing:5.577600pt;}
.ws2c_c01149{word-spacing:6.268160pt;}
.ws2d_c01149{word-spacing:6.480640pt;}
.ws2e_c01149{word-spacing:6.640000pt;}
.ws2a_c01149{word-spacing:6.905600pt;}
.ws29_c01149{word-spacing:8.817920pt;}
.ws2f_c01149{word-spacing:10.730240pt;}
._6_c01149{margin-left:-11.416320pt;}
._3_c01149{margin-left:-2.889600pt;}
._2_c01149{margin-left:-1.958400pt;}
._0_c01149{margin-left:-0.926400pt;}
._1_c01149{width:0.926400pt;}
._7_c01149{width:3.293440pt;}
._5_c01149{width:5.959360pt;}
._4_c01149{width:7.217280pt;}
.fs1_c01149{font-size:10.880000pt;}
.fs0_c01149{font-size:48.000000pt;}
.fs4_c01149{font-size:53.120000pt;}
.fs3_c01149{font-size:64.000000pt;}
.fs2_c01149{font-size:85.120000pt;}
.y0_c01149{bottom:0.000000pt;}
.y2_c01149{bottom:2.880000pt;}
.y3_c01149{bottom:48.800000pt;}
.y1_c01149{bottom:51.200000pt;}
.y2e_c01149{bottom:91.672000pt;}
.y2d_c01149{bottom:105.436000pt;}
.y2c_c01149{bottom:119.356000pt;}
.y2b_c01149{bottom:133.120000pt;}
.y2a_c01149{bottom:147.083840pt;}
.y29_c01149{bottom:162.448800pt;}
.y28_c01149{bottom:177.813760pt;}
.y27_c01149{bottom:201.013920pt;}
.y26_c01149{bottom:216.378880pt;}
.y25_c01149{bottom:231.743840pt;}
.y24_c01149{bottom:247.108800pt;}
.y23_c01149{bottom:262.473760pt;}
.y22_c01149{bottom:277.838720pt;}
.y21_c01149{bottom:293.044320pt;}
.y20_c01149{bottom:308.409280pt;}
.y1f_c01149{bottom:323.774240pt;}
.y1e_c01149{bottom:339.139200pt;}
.y1d_c01149{bottom:354.504160pt;}
.y1c_c01149{bottom:369.709760pt;}
.y1b_c01149{bottom:385.074720pt;}
.y1a_c01149{bottom:400.439680pt;}
.y19_c01149{bottom:415.804640pt;}
.y18_c01149{bottom:431.169600pt;}
.y17_c01149{bottom:446.534560pt;}
.y16_c01149{bottom:461.740160pt;}
.y15_c01149{bottom:477.105120pt;}
.y14_c01149{bottom:492.470080pt;}
.y13_c01149{bottom:507.835040pt;}
.y12_c01149{bottom:523.200000pt;}
.y11_c01149{bottom:570.236000pt;}
.y10_c01149{bottom:584.000000pt;}
.yf_c01149{bottom:611.192000pt;}
.ye_c01149{bottom:624.956000pt;}
.yd_c01149{bottom:638.720000pt;}
.yc_c01149{bottom:668.800000pt;}
.yb_c01149{bottom:692.800000pt;}
.ya_c01149{bottom:711.200000pt;}
.y9_c01149{bottom:729.600000pt;}
.y8_c01149{bottom:748.000000pt;}
.y7_c01149{bottom:766.400000pt;}
.y6_c01149{bottom:800.800000pt;}
.y5_c01149{bottom:843.997760pt;}
.y4_c01149{bottom:868.640000pt;}
.h3_c01149{height:7.559687pt;}
.h1_c01149{height:21.760000pt;}
.h2_c01149{height:33.351562pt;}
.h8_c01149{height:36.883125pt;}
.h6_c01149{height:36.909063pt;}
.h7_c01149{height:36.941062pt;}
.h5_c01149{height:44.468750pt;}
.h4_c01149{height:58.270625pt;}
.h0_c01149{height:964.000000pt;}
.w2_c01149{width:548.000000pt;}
.w1_c01149{width:661.333333pt;}
.w0_c01149{width:661.600000pt;}
.x0_c01149{left:0.000000pt;}
.x2_c01149{left:13.600000pt;}
.x1_c01149{left:56.800000pt;}
.x3_c01149{left:68.000000pt;}
.xc_c01149{left:90.880000pt;}
.xd_c01149{left:104.320000pt;}
.xe_c01149{left:179.524000pt;}
.x4_c01149{left:181.124480pt;}
.x7_c01149{left:185.120000pt;}
.x9_c01149{left:193.120000pt;}
.x8_c01149{left:196.480000pt;}
.xb_c01149{left:223.040000pt;}
.x6_c01149{left:256.800000pt;}
.xa_c01149{left:265.440000pt;}
.x5_c01149{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_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_790362a5fd3405e92e58811e.woff2')format("woff");}.ff1_c01150{font-family:ff1_c01150;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01150;src:url('chunks/assets/font_5374f2ad6c01477d410eaf33.woff2')format("woff");}.ff2_c01150{font-family:ff2_c01150;line-height:0.910645;font-style:normal;font-weight:normal;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_d877757b6d3bab3f4f8d698e.woff2')format("woff");}.ff3_c01150{font-family:ff3_c01150;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01150;src:url('chunks/assets/font_d7f5db4e549cbd0bd8b8f8d8.woff2')format("woff");}.ff4_c01150{font-family:ff4_c01150;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls11_c01150{letter-spacing:-0.861120px;}
.lse_c01150{letter-spacing:-0.728640px;}
.ls12_c01150{letter-spacing:-0.596160px;}
.ls13_c01150{letter-spacing:-0.397440px;}
.lsb_c01150{letter-spacing:-0.378000px;}
.ls10_c01150{letter-spacing:-0.331200px;}
.lsd_c01150{letter-spacing:-0.144000px;}
.lsf_c01150{letter-spacing:-0.132480px;}
.lsc_c01150{letter-spacing:-0.108000px;}
.ls9_c01150{letter-spacing:-0.056880px;}
.lsa_c01150{letter-spacing:0.000000px;}
.ls5_c01150{letter-spacing:0.132480px;}
.ls3_c01150{letter-spacing:0.264960px;}
.ls14_c01150{letter-spacing:0.331200px;}
.ls0_c01150{letter-spacing:0.341280px;}
.ls1_c01150{letter-spacing:0.378000px;}
.ls6_c01150{letter-spacing:0.728640px;}
.ls4_c01150{letter-spacing:3.576960px;}
.ls7_c01150{letter-spacing:5.762880px;}
.ls8_c01150{letter-spacing:7.948800px;}
.ls2_c01150{letter-spacing:8.611200px;}
.sc__c01150{text-shadow:none;}
.sc1_c01150{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1_c01150{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01150{word-spacing:-16.824960px;}
.ws7_c01150{word-spacing:-16.692480px;}
.ws3_c01150{word-spacing:-16.560000px;}
.ws5_c01150{word-spacing:-16.427520px;}
.ws9_c01150{word-spacing:-16.228800px;}
.ws8_c01150{word-spacing:-15.963840px;}
.ws2_c01150{word-spacing:-15.831360px;}
.ws6_c01150{word-spacing:-15.698880px;}
.ws0_c01150{word-spacing:-14.561280px;}
.ws1_c01150{word-spacing:-13.122000px;}
.ws1e_c01150{word-spacing:-4.438080px;}
.ws1d_c01150{word-spacing:-3.974400px;}
.ws23_c01150{word-spacing:-3.576960px;}
.ws25_c01150{word-spacing:-2.848320px;}
.ws1f_c01150{word-spacing:-2.318400px;}
.ws2e_c01150{word-spacing:-1.788480px;}
.ws2f_c01150{word-spacing:-0.861120px;}
.ws1b_c01150{word-spacing:-0.728640px;}
.wsc_c01150{word-spacing:-0.540000px;}
.ws30_c01150{word-spacing:-0.331200px;}
.ws1c_c01150{word-spacing:-0.216000px;}
.ws20_c01150{word-spacing:-0.132480px;}
.wsb_c01150{word-spacing:0.000000px;}
.ws10_c01150{word-spacing:0.144000px;}
.wsa_c01150{word-spacing:0.227520px;}
.wsd_c01150{word-spacing:0.270000px;}
.wsf_c01150{word-spacing:0.378000px;}
.wse_c01150{word-spacing:0.540000px;}
.ws11_c01150{word-spacing:0.596160px;}
.ws1a_c01150{word-spacing:0.728640px;}
.ws26_c01150{word-spacing:1.126080px;}
.ws15_c01150{word-spacing:1.324800px;}
.ws24_c01150{word-spacing:1.457280px;}
.ws14_c01150{word-spacing:2.053440px;}
.ws19_c01150{word-spacing:2.914560px;}
.ws2a_c01150{word-spacing:3.245760px;}
.ws21_c01150{word-spacing:3.444480px;}
.ws22_c01150{word-spacing:3.576960px;}
.ws12_c01150{word-spacing:4.173120px;}
.ws28_c01150{word-spacing:5.630400px;}
.ws27_c01150{word-spacing:5.762880px;}
.ws2b_c01150{word-spacing:7.087680px;}
.ws2c_c01150{word-spacing:7.816320px;}
.ws16_c01150{word-spacing:8.611200px;}
.ws17_c01150{word-spacing:9.207360px;}
.ws18_c01150{word-spacing:9.339840px;}
.ws2d_c01150{word-spacing:9.936000px;}
.ws13_c01150{word-spacing:10.664640px;}
.ws29_c01150{word-spacing:14.374080px;}
._3_c01150{margin-left:-4.073040px;}
._4_c01150{margin-left:-2.431008px;}
._1_c01150{margin-left:-1.218816px;}
._0_c01150{width:1.109160px;}
._2_c01150{width:3.497472px;}
._5_c01150{width:6.120576px;}
._7_c01150{width:7.482168px;}
._6_c01150{width:14.666256px;}
.fc5_c01150{color:rgb(255,192,0);}
.fc4_c01150{color:rgb(230,0,230);}
.fc3_c01150{color:rgb(255,0,0);}
.fc2_c01150{color:rgb(0,255,0);}
.fc1_c01150{color:rgb(0,0,255);}
.fc0_c01150{color:rgb(0,0,0);}
.fs1_c01150{font-size:12.240000px;}
.fs6_c01150{font-size:48.240000px;}
.fs2_c01150{font-size:54.000000px;}
.fs0_c01150{font-size:56.880000px;}
.fs5_c01150{font-size:59.760000px;}
.fs4_c01150{font-size:66.240000px;}
.fs3_c01150{font-size:72.000000px;}
.y0_c01150{bottom:0.000000px;}
.y2_c01150{bottom:7.920000px;}
.y4_c01150{bottom:57.420000px;}
.y24_c01150{bottom:97.740000px;}
.y23_c01150{bottom:117.241920px;}
.y22_c01150{bottom:136.136880px;}
.y21_c01150{bottom:159.536160px;}
.y20_c01150{bottom:178.613280px;}
.y1f_c01150{bottom:197.508240px;}
.y1e_c01150{bottom:221.089680px;}
.y1d_c01150{bottom:239.984640px;}
.y1c_c01150{bottom:258.879600px;}
.y1b_c01150{bottom:277.956720px;}
.y1a_c01150{bottom:301.356000px;}
.y19_c01150{bottom:320.433120px;}
.y18_c01150{bottom:339.328080px;}
.y17_c01150{bottom:358.223040px;}
.y16_c01150{bottom:381.804480px;}
.y15_c01150{bottom:400.699440px;}
.y14_c01150{bottom:419.776560px;}
.y13_c01150{bottom:438.671520px;}
.y12_c01150{bottom:457.748640px;}
.y11_c01150{bottom:481.147920px;}
.y10_c01150{bottom:500.042880px;}
.yf_c01150{bottom:519.120000px;}
.ye_c01150{bottom:546.300000px;}
.yd_c01150{bottom:567.540000px;}
.yc_c01150{bottom:840.983760px;}
.yb_c01150{bottom:859.878720px;}
.ya_c01150{bottom:878.955840px;}
.y9_c01150{bottom:897.850800px;}
.y8_c01150{bottom:916.927920px;}
.y7_c01150{bottom:935.822880px;}
.y6_c01150{bottom:954.900000px;}
.y5_c01150{bottom:982.800000px;}
.y3_c01150{bottom:1006.200000px;}
.y1_c01150{bottom:1009.620000px;}
.h4_c01150{height:8.504648px;}
.h1_c01150{height:20.878500px;}
.h9_c01150{height:33.518320px;}
.h5_c01150{height:37.520508px;}
.h2_c01150{height:39.493828px;}
.h3_c01150{height:39.521602px;}
.h8_c01150{height:41.522695px;}
.h7_c01150{height:46.025156px;}
.h6_c01150{height:49.289062px;}
.h0_c01150{height:1084.500000px;}
.w3_c01150{width:47.520000px;}
.w2_c01150{width:568.980000px;}
.w1_c01150{width:744.000000px;}
.w0_c01150{width:744.300000px;}
.x0_c01150{left:0.000000px;}
.x2_c01150{left:8.100000px;}
.x4_c01150{left:18.000000px;}
.x1_c01150{left:63.900000px;}
.x8_c01150{left:93.625200px;}
.x7_c01150{left:231.120000px;}
.x5_c01150{left:291.060000px;}
.x3_c01150{left:632.880000px;}
.x6_c01150{left:680.760000px;}
@media print{
.v0_c01150{vertical-align:0.000000pt;}
.ls11_c01150{letter-spacing:-0.765440pt;}
.lse_c01150{letter-spacing:-0.647680pt;}
.ls12_c01150{letter-spacing:-0.529920pt;}
.ls13_c01150{letter-spacing:-0.353280pt;}
.lsb_c01150{letter-spacing:-0.336000pt;}
.ls10_c01150{letter-spacing:-0.294400pt;}
.lsd_c01150{letter-spacing:-0.128000pt;}
.lsf_c01150{letter-spacing:-0.117760pt;}
.lsc_c01150{letter-spacing:-0.096000pt;}
.ls9_c01150{letter-spacing:-0.050560pt;}
.lsa_c01150{letter-spacing:0.000000pt;}
.ls5_c01150{letter-spacing:0.117760pt;}
.ls3_c01150{letter-spacing:0.235520pt;}
.ls14_c01150{letter-spacing:0.294400pt;}
.ls0_c01150{letter-spacing:0.303360pt;}
.ls1_c01150{letter-spacing:0.336000pt;}
.ls6_c01150{letter-spacing:0.647680pt;}
.ls4_c01150{letter-spacing:3.179520pt;}
.ls7_c01150{letter-spacing:5.122560pt;}
.ls8_c01150{letter-spacing:7.065600pt;}
.ls2_c01150{letter-spacing:7.654400pt;}
.ws4_c01150{word-spacing:-14.955520pt;}
.ws7_c01150{word-spacing:-14.837760pt;}
.ws3_c01150{word-spacing:-14.720000pt;}
.ws5_c01150{word-spacing:-14.602240pt;}
.ws9_c01150{word-spacing:-14.425600pt;}
.ws8_c01150{word-spacing:-14.190080pt;}
.ws2_c01150{word-spacing:-14.072320pt;}
.ws6_c01150{word-spacing:-13.954560pt;}
.ws0_c01150{word-spacing:-12.943360pt;}
.ws1_c01150{word-spacing:-11.664000pt;}
.ws1e_c01150{word-spacing:-3.944960pt;}
.ws1d_c01150{word-spacing:-3.532800pt;}
.ws23_c01150{word-spacing:-3.179520pt;}
.ws25_c01150{word-spacing:-2.531840pt;}
.ws1f_c01150{word-spacing:-2.060800pt;}
.ws2e_c01150{word-spacing:-1.589760pt;}
.ws2f_c01150{word-spacing:-0.765440pt;}
.ws1b_c01150{word-spacing:-0.647680pt;}
.wsc_c01150{word-spacing:-0.480000pt;}
.ws30_c01150{word-spacing:-0.294400pt;}
.ws1c_c01150{word-spacing:-0.192000pt;}
.ws20_c01150{word-spacing:-0.117760pt;}
.wsb_c01150{word-spacing:0.000000pt;}
.ws10_c01150{word-spacing:0.128000pt;}
.wsa_c01150{word-spacing:0.202240pt;}
.wsd_c01150{word-spacing:0.240000pt;}
.wsf_c01150{word-spacing:0.336000pt;}
.wse_c01150{word-spacing:0.480000pt;}
.ws11_c01150{word-spacing:0.529920pt;}
.ws1a_c01150{word-spacing:0.647680pt;}
.ws26_c01150{word-spacing:1.000960pt;}
.ws15_c01150{word-spacing:1.177600pt;}
.ws24_c01150{word-spacing:1.295360pt;}
.ws14_c01150{word-spacing:1.825280pt;}
.ws19_c01150{word-spacing:2.590720pt;}
.ws2a_c01150{word-spacing:2.885120pt;}
.ws21_c01150{word-spacing:3.061760pt;}
.ws22_c01150{word-spacing:3.179520pt;}
.ws12_c01150{word-spacing:3.709440pt;}
.ws28_c01150{word-spacing:5.004800pt;}
.ws27_c01150{word-spacing:5.122560pt;}
.ws2b_c01150{word-spacing:6.300160pt;}
.ws2c_c01150{word-spacing:6.947840pt;}
.ws16_c01150{word-spacing:7.654400pt;}
.ws17_c01150{word-spacing:8.184320pt;}
.ws18_c01150{word-spacing:8.302080pt;}
.ws2d_c01150{word-spacing:8.832000pt;}
.ws13_c01150{word-spacing:9.479680pt;}
.ws29_c01150{word-spacing:12.776960pt;}
._3_c01150{margin-left:-3.620480pt;}
._4_c01150{margin-left:-2.160896pt;}
._1_c01150{margin-left:-1.083392pt;}
._0_c01150{width:0.985920pt;}
._2_c01150{width:3.108864pt;}
._5_c01150{width:5.440512pt;}
._7_c01150{width:6.650816pt;}
._6_c01150{width:13.036672pt;}
.fs1_c01150{font-size:10.880000pt;}
.fs6_c01150{font-size:42.880000pt;}
.fs2_c01150{font-size:48.000000pt;}
.fs0_c01150{font-size:50.560000pt;}
.fs5_c01150{font-size:53.120000pt;}
.fs4_c01150{font-size:58.880000pt;}
.fs3_c01150{font-size:64.000000pt;}
.y0_c01150{bottom:0.000000pt;}
.y2_c01150{bottom:7.040000pt;}
.y4_c01150{bottom:51.040000pt;}
.y24_c01150{bottom:86.880000pt;}
.y23_c01150{bottom:104.215040pt;}
.y22_c01150{bottom:121.010560pt;}
.y21_c01150{bottom:141.809920pt;}
.y20_c01150{bottom:158.767360pt;}
.y1f_c01150{bottom:175.562880pt;}
.y1e_c01150{bottom:196.524160pt;}
.y1d_c01150{bottom:213.319680pt;}
.y1c_c01150{bottom:230.115200pt;}
.y1b_c01150{bottom:247.072640pt;}
.y1a_c01150{bottom:267.872000pt;}
.y19_c01150{bottom:284.829440pt;}
.y18_c01150{bottom:301.624960pt;}
.y17_c01150{bottom:318.420480pt;}
.y16_c01150{bottom:339.381760pt;}
.y15_c01150{bottom:356.177280pt;}
.y14_c01150{bottom:373.134720pt;}
.y13_c01150{bottom:389.930240pt;}
.y12_c01150{bottom:406.887680pt;}
.y11_c01150{bottom:427.687040pt;}
.y10_c01150{bottom:444.482560pt;}
.yf_c01150{bottom:461.440000pt;}
.ye_c01150{bottom:485.600000pt;}
.yd_c01150{bottom:504.480000pt;}
.yc_c01150{bottom:747.541120pt;}
.yb_c01150{bottom:764.336640pt;}
.ya_c01150{bottom:781.294080pt;}
.y9_c01150{bottom:798.089600pt;}
.y8_c01150{bottom:815.047040pt;}
.y7_c01150{bottom:831.842560pt;}
.y6_c01150{bottom:848.800000pt;}
.y5_c01150{bottom:873.600000pt;}
.y3_c01150{bottom:894.400000pt;}
.y1_c01150{bottom:897.440000pt;}
.h4_c01150{height:7.559687pt;}
.h1_c01150{height:18.558667pt;}
.h9_c01150{height:29.794062pt;}
.h5_c01150{height:33.351562pt;}
.h2_c01150{height:35.105625pt;}
.h3_c01150{height:35.130313pt;}
.h8_c01150{height:36.909063pt;}
.h7_c01150{height:40.911250pt;}
.h6_c01150{height:43.812500pt;}
.h0_c01150{height:964.000000pt;}
.w3_c01150{width:42.240000pt;}
.w2_c01150{width:505.760000pt;}
.w1_c01150{width:661.333333pt;}
.w0_c01150{width:661.600000pt;}
.x0_c01150{left:0.000000pt;}
.x2_c01150{left:7.200000pt;}
.x4_c01150{left:16.000000pt;}
.x1_c01150{left:56.800000pt;}
.x8_c01150{left:83.222400pt;}
.x7_c01150{left:205.440000pt;}
.x5_c01150{left:258.720000pt;}
.x3_c01150{left:562.560000pt;}
.x6_c01150{left:605.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_79fb9f7c8c499204cb9c406e.woff2')format("woff");}.ff1_c01151{font-family:ff1_c01151;line-height:0.910645;font-style:normal;font-weight:normal;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_37c41ca509c186886cd912de.woff2')format("woff");}.ff2_c01151{font-family:ff2_c01151;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01151;src:url('chunks/assets/font_8aa50a9ec1c973dc91a6bd79.woff2')format("woff");}.ff3_c01151{font-family:ff3_c01151;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01151;src:url('chunks/assets/font_d7f5db4e549cbd0bd8b8f8d8.woff2')format("woff");}.ff4_c01151{font-family:ff4_c01151;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c01151{letter-spacing:-0.728640px;}
.lsc_c01151{letter-spacing:-0.596160px;}
.ls5_c01151{letter-spacing:-0.378000px;}
.ls7_c01151{letter-spacing:-0.144000px;}
.ls8_c01151{letter-spacing:-0.132480px;}
.ls6_c01151{letter-spacing:-0.108000px;}
.ls4_c01151{letter-spacing:0.000000px;}
.lsa_c01151{letter-spacing:0.132480px;}
.ls2_c01151{letter-spacing:0.216000px;}
.lsd_c01151{letter-spacing:0.331200px;}
.ls0_c01151{letter-spacing:0.341280px;}
.ls1_c01151{letter-spacing:0.378000px;}
.ls9_c01151{letter-spacing:0.756000px;}
.ls3_c01151{letter-spacing:2.848320px;}
.sc__c01151{text-shadow:none;}
.sc1_c01151{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1_c01151{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01151{word-spacing:-16.692480px;}
.ws2_c01151{word-spacing:-16.427520px;}
.ws4_c01151{word-spacing:-15.831360px;}
.ws0_c01151{word-spacing:-14.561280px;}
.ws3_c01151{word-spacing:-14.256000px;}
.ws1_c01151{word-spacing:-13.122000px;}
.ws13_c01151{word-spacing:-3.576960px;}
.wse_c01151{word-spacing:-2.185920px;}
.wsf_c01151{word-spacing:-1.457280px;}
.ws10_c01151{word-spacing:-0.918000px;}
.ws14_c01151{word-spacing:-0.728640px;}
.ws8_c01151{word-spacing:-0.540000px;}
.ws16_c01151{word-spacing:-0.331200px;}
.wsc_c01151{word-spacing:-0.216000px;}
.ws7_c01151{word-spacing:-0.170640px;}
.ws12_c01151{word-spacing:-0.132480px;}
.ws6_c01151{word-spacing:0.000000px;}
.wsd_c01151{word-spacing:0.144000px;}
.ws9_c01151{word-spacing:0.270000px;}
.wsb_c01151{word-spacing:0.378000px;}
.wsa_c01151{word-spacing:0.540000px;}
.ws15_c01151{word-spacing:0.596160px;}
.ws11_c01151{word-spacing:2.053440px;}
.ws17_c01151{word-spacing:2.583360px;}
.ws19_c01151{word-spacing:2.782080px;}
.ws18_c01151{word-spacing:2.914560px;}
._1_c01151{margin-left:-2.553912px;}
._0_c01151{margin-left:-1.245672px;}
._2_c01151{width:1.204200px;}
._5_c01151{width:2.969712px;}
._4_c01151{width:18.017280px;}
._3_c01151{width:21.594240px;}
.fc0_c01151{color:rgb(0,0,0);}
.fs1_c01151{font-size:12.240000px;}
.fs2_c01151{font-size:54.000000px;}
.fs0_c01151{font-size:56.880000px;}
.fs4_c01151{font-size:66.240000px;}
.fs3_c01151{font-size:72.000000px;}
.y0_c01151{bottom:0.000000px;}
.y2_c01151{bottom:7.920000px;}
.y4_c01151{bottom:57.420000px;}
.y13_c01151{bottom:100.820880px;}
.y12_c01151{bottom:119.898000px;}
.y11_c01151{bottom:138.792960px;}
.y10_c01151{bottom:157.870080px;}
.yf_c01151{bottom:176.765040px;}
.ye_c01151{bottom:195.660000px;}
.yd_c01151{bottom:223.024500px;}
.yc_c01151{bottom:244.260000px;}
.yb_c01151{bottom:579.970080px;}
.ya_c01151{bottom:598.865040px;}
.y9_c01151{bottom:617.760000px;}
.y8_c01151{bottom:645.124500px;}
.y7_c01151{bottom:935.822880px;}
.y6_c01151{bottom:954.900000px;}
.y5_c01151{bottom:982.800000px;}
.y3_c01151{bottom:1006.200000px;}
.y1_c01151{bottom:1009.620000px;}
.h4_c01151{height:8.504648px;}
.h1_c01151{height:20.878500px;}
.h5_c01151{height:37.520508px;}
.h3_c01151{height:39.493828px;}
.h2_c01151{height:39.521602px;}
.h7_c01151{height:46.025156px;}
.h6_c01151{height:49.289062px;}
.h0_c01151{height:1084.500000px;}
.w2_c01151{width:48.600000px;}
.w3_c01151{width:567.900000px;}
.w1_c01151{width:744.000000px;}
.w0_c01151{width:744.300000px;}
.x0_c01151{left:0.000000px;}
.x2_c01151{left:8.100000px;}
.x4_c01151{left:40.860000px;}
.x1_c01151{left:63.900000px;}
.xa_c01151{left:95.943600px;}
.x3_c01151{left:112.500000px;}
.xb_c01151{left:116.991360px;}
.x6_c01151{left:176.040000px;}
.x9_c01151{left:195.835500px;}
.x7_c01151{left:257.935500px;}
.x5_c01151{left:433.620000px;}
.x8_c01151{left:644.400000px;}
@media print{
.v0_c01151{vertical-align:0.000000pt;}
.lsb_c01151{letter-spacing:-0.647680pt;}
.lsc_c01151{letter-spacing:-0.529920pt;}
.ls5_c01151{letter-spacing:-0.336000pt;}
.ls7_c01151{letter-spacing:-0.128000pt;}
.ls8_c01151{letter-spacing:-0.117760pt;}
.ls6_c01151{letter-spacing:-0.096000pt;}
.ls4_c01151{letter-spacing:0.000000pt;}
.lsa_c01151{letter-spacing:0.117760pt;}
.ls2_c01151{letter-spacing:0.192000pt;}
.lsd_c01151{letter-spacing:0.294400pt;}
.ls0_c01151{letter-spacing:0.303360pt;}
.ls1_c01151{letter-spacing:0.336000pt;}
.ls9_c01151{letter-spacing:0.672000pt;}
.ls3_c01151{letter-spacing:2.531840pt;}
.ws5_c01151{word-spacing:-14.837760pt;}
.ws2_c01151{word-spacing:-14.602240pt;}
.ws4_c01151{word-spacing:-14.072320pt;}
.ws0_c01151{word-spacing:-12.943360pt;}
.ws3_c01151{word-spacing:-12.672000pt;}
.ws1_c01151{word-spacing:-11.664000pt;}
.ws13_c01151{word-spacing:-3.179520pt;}
.wse_c01151{word-spacing:-1.943040pt;}
.wsf_c01151{word-spacing:-1.295360pt;}
.ws10_c01151{word-spacing:-0.816000pt;}
.ws14_c01151{word-spacing:-0.647680pt;}
.ws8_c01151{word-spacing:-0.480000pt;}
.ws16_c01151{word-spacing:-0.294400pt;}
.wsc_c01151{word-spacing:-0.192000pt;}
.ws7_c01151{word-spacing:-0.151680pt;}
.ws12_c01151{word-spacing:-0.117760pt;}
.ws6_c01151{word-spacing:0.000000pt;}
.wsd_c01151{word-spacing:0.128000pt;}
.ws9_c01151{word-spacing:0.240000pt;}
.wsb_c01151{word-spacing:0.336000pt;}
.wsa_c01151{word-spacing:0.480000pt;}
.ws15_c01151{word-spacing:0.529920pt;}
.ws11_c01151{word-spacing:1.825280pt;}
.ws17_c01151{word-spacing:2.296320pt;}
.ws19_c01151{word-spacing:2.472960pt;}
.ws18_c01151{word-spacing:2.590720pt;}
._1_c01151{margin-left:-2.270144pt;}
._0_c01151{margin-left:-1.107264pt;}
._2_c01151{width:1.070400pt;}
._5_c01151{width:2.639744pt;}
._4_c01151{width:16.015360pt;}
._3_c01151{width:19.194880pt;}
.fs1_c01151{font-size:10.880000pt;}
.fs2_c01151{font-size:48.000000pt;}
.fs0_c01151{font-size:50.560000pt;}
.fs4_c01151{font-size:58.880000pt;}
.fs3_c01151{font-size:64.000000pt;}
.y0_c01151{bottom:0.000000pt;}
.y2_c01151{bottom:7.040000pt;}
.y4_c01151{bottom:51.040000pt;}
.y13_c01151{bottom:89.618560pt;}
.y12_c01151{bottom:106.576000pt;}
.y11_c01151{bottom:123.371520pt;}
.y10_c01151{bottom:140.328960pt;}
.yf_c01151{bottom:157.124480pt;}
.ye_c01151{bottom:173.920000pt;}
.yd_c01151{bottom:198.244000pt;}
.yc_c01151{bottom:217.120000pt;}
.yb_c01151{bottom:515.528960pt;}
.ya_c01151{bottom:532.324480pt;}
.y9_c01151{bottom:549.120000pt;}
.y8_c01151{bottom:573.444000pt;}
.y7_c01151{bottom:831.842560pt;}
.y6_c01151{bottom:848.800000pt;}
.y5_c01151{bottom:873.600000pt;}
.y3_c01151{bottom:894.400000pt;}
.y1_c01151{bottom:897.440000pt;}
.h4_c01151{height:7.559687pt;}
.h1_c01151{height:18.558667pt;}
.h5_c01151{height:33.351562pt;}
.h3_c01151{height:35.105625pt;}
.h2_c01151{height:35.130313pt;}
.h7_c01151{height:40.911250pt;}
.h6_c01151{height:43.812500pt;}
.h0_c01151{height:964.000000pt;}
.w2_c01151{width:43.200000pt;}
.w3_c01151{width:504.800000pt;}
.w1_c01151{width:661.333333pt;}
.w0_c01151{width:661.600000pt;}
.x0_c01151{left:0.000000pt;}
.x2_c01151{left:7.200000pt;}
.x4_c01151{left:36.320000pt;}
.x1_c01151{left:56.800000pt;}
.xa_c01151{left:85.283200pt;}
.x3_c01151{left:100.000000pt;}
.xb_c01151{left:103.992320pt;}
.x6_c01151{left:156.480000pt;}
.x9_c01151{left:174.076000pt;}
.x7_c01151{left:229.276000pt;}
.x5_c01151{left:385.440000pt;}
.x8_c01151{left:572.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_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_790362a5fd3405e92e58811e.woff2')format("woff");}.ff1_c01152{font-family:ff1_c01152;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01152;src:url('chunks/assets/font_0cf59cafc8799d6f40abc927.woff2')format("woff");}.ff2_c01152{font-family:ff2_c01152;line-height:0.910645;font-style:normal;font-weight:normal;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_7e99067ac1347edd84d9b2dc.woff2')format("woff");}.ff3_c01152{font-family:ff3_c01152;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01152;src:url('chunks/assets/font_d7f5db4e549cbd0bd8b8f8d8.woff2')format("woff");}.ff4_c01152{font-family:ff4_c01152;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls10_c01152{letter-spacing:-0.972000px;}
.ls14_c01152{letter-spacing:-0.861120px;}
.ls15_c01152{letter-spacing:-0.728640px;}
.lsc_c01152{letter-spacing:-0.596160px;}
.lse_c01152{letter-spacing:-0.463680px;}
.lsa_c01152{letter-spacing:-0.397440px;}
.ls7_c01152{letter-spacing:-0.378000px;}
.ls13_c01152{letter-spacing:-0.331200px;}
.ls11_c01152{letter-spacing:-0.216000px;}
.ls12_c01152{letter-spacing:-0.144000px;}
.lsd_c01152{letter-spacing:-0.132480px;}
.ls8_c01152{letter-spacing:-0.108000px;}
.ls5_c01152{letter-spacing:-0.056880px;}
.ls6_c01152{letter-spacing:0.000000px;}
.lsf_c01152{letter-spacing:0.108000px;}
.lsb_c01152{letter-spacing:0.132480px;}
.ls3_c01152{letter-spacing:0.162000px;}
.ls9_c01152{letter-spacing:0.331200px;}
.ls0_c01152{letter-spacing:0.341280px;}
.ls1_c01152{letter-spacing:0.378000px;}
.ls4_c01152{letter-spacing:0.728640px;}
.ls2_c01152{letter-spacing:0.756000px;}
.sc__c01152{text-shadow:none;}
.sc1_c01152{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1_c01152{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c01152{word-spacing:-16.692480px;}
.ws2_c01152{word-spacing:-16.427520px;}
.ws8_c01152{word-spacing:-16.228800px;}
.ws3_c01152{word-spacing:-16.096320px;}
.wsa_c01152{word-spacing:-15.831360px;}
.ws9_c01152{word-spacing:-15.698880px;}
.ws0_c01152{word-spacing:-14.561280px;}
.ws5_c01152{word-spacing:-13.500000px;}
.ws6_c01152{word-spacing:-13.284000px;}
.ws1_c01152{word-spacing:-13.122000px;}
.ws4_c01152{word-spacing:-12.528000px;}
.ws12_c01152{word-spacing:-3.908160px;}
.ws11_c01152{word-spacing:-2.848320px;}
.ws13_c01152{word-spacing:-2.450880px;}
.ws1a_c01152{word-spacing:-2.318400px;}
.ws1b_c01152{word-spacing:-2.185920px;}
.ws19_c01152{word-spacing:-1.457280px;}
.ws18_c01152{word-spacing:-0.728640px;}
.wsd_c01152{word-spacing:-0.540000px;}
.ws1d_c01152{word-spacing:-0.216000px;}
.ws14_c01152{word-spacing:-0.132480px;}
.wsc_c01152{word-spacing:0.000000px;}
.ws1c_c01152{word-spacing:0.054000px;}
.ws1e_c01152{word-spacing:0.108000px;}
.ws20_c01152{word-spacing:0.144000px;}
.ws1f_c01152{word-spacing:0.162000px;}
.wsb_c01152{word-spacing:0.227520px;}
.wse_c01152{word-spacing:0.270000px;}
.ws10_c01152{word-spacing:0.378000px;}
.wsf_c01152{word-spacing:0.540000px;}
.ws15_c01152{word-spacing:0.596160px;}
.ws23_c01152{word-spacing:0.728640px;}
.ws16_c01152{word-spacing:7.220160px;}
.ws17_c01152{word-spacing:7.617600px;}
.ws22_c01152{word-spacing:7.816320px;}
.ws21_c01152{word-spacing:8.346240px;}
._4_c01152{margin-left:-3.528360px;}
._2_c01152{margin-left:-2.386872px;}
._1_c01152{margin-left:-1.371168px;}
._0_c01152{width:1.109160px;}
._3_c01152{width:8.409528px;}
.fc0_c01152{color:rgb(0,0,0);}
.fs1_c01152{font-size:12.240000px;}
.fs2_c01152{font-size:54.000000px;}
.fs0_c01152{font-size:56.880000px;}
.fs5_c01152{font-size:59.760000px;}
.fs3_c01152{font-size:66.240000px;}
.fs4_c01152{font-size:72.000000px;}
.y0_c01152{bottom:0.000000px;}
.y2_c01152{bottom:7.920000px;}
.y4_c01152{bottom:57.420000px;}
.y1a_c01152{bottom:89.647920px;}
.y19_c01152{bottom:108.725040px;}
.y18_c01152{bottom:135.900000px;}
.y17_c01152{bottom:157.140000px;}
.y16_c01152{bottom:427.695840px;}
.y15_c01152{bottom:446.590800px;}
.y14_c01152{bottom:465.667920px;}
.y13_c01152{bottom:484.562880px;}
.y12_c01152{bottom:503.640000px;}
.y11_c01152{bottom:531.540000px;}
.y10_c01152{bottom:578.502000px;}
.yf_c01152{bottom:593.986500px;}
.ye_c01152{bottom:609.471000px;}
.yd_c01152{bottom:624.955500px;}
.yc_c01152{bottom:640.615500px;}
.yb_c01152{bottom:656.100000px;}
.ya_c01152{bottom:677.160000px;}
.y9_c01152{bottom:908.655840px;}
.y8_c01152{bottom:927.550800px;}
.y7_c01152{bottom:946.627920px;}
.y6_c01152{bottom:965.522880px;}
.y5_c01152{bottom:984.600000px;}
.y3_c01152{bottom:1006.200000px;}
.y1_c01152{bottom:1009.620000px;}
.h4_c01152{height:8.504648px;}
.h1_c01152{height:20.878500px;}
.h5_c01152{height:37.520508px;}
.h2_c01152{height:39.493828px;}
.h3_c01152{height:39.521602px;}
.h8_c01152{height:41.522695px;}
.h9_c01152{height:45.992812px;}
.h6_c01152{height:46.025156px;}
.h7_c01152{height:49.289062px;}
.h0_c01152{height:1084.500000px;}
.w3_c01152{width:47.520000px;}
.w2_c01152{width:568.980000px;}
.w1_c01152{width:744.000000px;}
.w0_c01152{width:744.300000px;}
.x0_c01152{left:0.000000px;}
.x2_c01152{left:8.100000px;}
.x4_c01152{left:18.000000px;}
.x1_c01152{left:63.900000px;}
.xa_c01152{left:65.884500px;}
.x6_c01152{left:70.744500px;}
.x7_c01152{left:72.000000px;}
.x9_c01152{left:73.620000px;}
.x8_c01152{left:82.624500px;}
.xc_c01152{left:117.360000px;}
.xe_c01152{left:250.380000px;}
.xb_c01152{left:331.929000px;}
.x3_c01152{left:632.880000px;}
.xd_c01152{left:639.900000px;}
.x5_c01152{left:644.400000px;}
@media print{
.v0_c01152{vertical-align:0.000000pt;}
.ls10_c01152{letter-spacing:-0.864000pt;}
.ls14_c01152{letter-spacing:-0.765440pt;}
.ls15_c01152{letter-spacing:-0.647680pt;}
.lsc_c01152{letter-spacing:-0.529920pt;}
.lse_c01152{letter-spacing:-0.412160pt;}
.lsa_c01152{letter-spacing:-0.353280pt;}
.ls7_c01152{letter-spacing:-0.336000pt;}
.ls13_c01152{letter-spacing:-0.294400pt;}
.ls11_c01152{letter-spacing:-0.192000pt;}
.ls12_c01152{letter-spacing:-0.128000pt;}
.lsd_c01152{letter-spacing:-0.117760pt;}
.ls8_c01152{letter-spacing:-0.096000pt;}
.ls5_c01152{letter-spacing:-0.050560pt;}
.ls6_c01152{letter-spacing:0.000000pt;}
.lsf_c01152{letter-spacing:0.096000pt;}
.lsb_c01152{letter-spacing:0.117760pt;}
.ls3_c01152{letter-spacing:0.144000pt;}
.ls9_c01152{letter-spacing:0.294400pt;}
.ls0_c01152{letter-spacing:0.303360pt;}
.ls1_c01152{letter-spacing:0.336000pt;}
.ls4_c01152{letter-spacing:0.647680pt;}
.ls2_c01152{letter-spacing:0.672000pt;}
.ws7_c01152{word-spacing:-14.837760pt;}
.ws2_c01152{word-spacing:-14.602240pt;}
.ws8_c01152{word-spacing:-14.425600pt;}
.ws3_c01152{word-spacing:-14.307840pt;}
.wsa_c01152{word-spacing:-14.072320pt;}
.ws9_c01152{word-spacing:-13.954560pt;}
.ws0_c01152{word-spacing:-12.943360pt;}
.ws5_c01152{word-spacing:-12.000000pt;}
.ws6_c01152{word-spacing:-11.808000pt;}
.ws1_c01152{word-spacing:-11.664000pt;}
.ws4_c01152{word-spacing:-11.136000pt;}
.ws12_c01152{word-spacing:-3.473920pt;}
.ws11_c01152{word-spacing:-2.531840pt;}
.ws13_c01152{word-spacing:-2.178560pt;}
.ws1a_c01152{word-spacing:-2.060800pt;}
.ws1b_c01152{word-spacing:-1.943040pt;}
.ws19_c01152{word-spacing:-1.295360pt;}
.ws18_c01152{word-spacing:-0.647680pt;}
.wsd_c01152{word-spacing:-0.480000pt;}
.ws1d_c01152{word-spacing:-0.192000pt;}
.ws14_c01152{word-spacing:-0.117760pt;}
.wsc_c01152{word-spacing:0.000000pt;}
.ws1c_c01152{word-spacing:0.048000pt;}
.ws1e_c01152{word-spacing:0.096000pt;}
.ws20_c01152{word-spacing:0.128000pt;}
.ws1f_c01152{word-spacing:0.144000pt;}
.wsb_c01152{word-spacing:0.202240pt;}
.wse_c01152{word-spacing:0.240000pt;}
.ws10_c01152{word-spacing:0.336000pt;}
.wsf_c01152{word-spacing:0.480000pt;}
.ws15_c01152{word-spacing:0.529920pt;}
.ws23_c01152{word-spacing:0.647680pt;}
.ws16_c01152{word-spacing:6.417920pt;}
.ws17_c01152{word-spacing:6.771200pt;}
.ws22_c01152{word-spacing:6.947840pt;}
.ws21_c01152{word-spacing:7.418880pt;}
._4_c01152{margin-left:-3.136320pt;}
._2_c01152{margin-left:-2.121664pt;}
._1_c01152{margin-left:-1.218816pt;}
._0_c01152{width:0.985920pt;}
._3_c01152{width:7.475136pt;}
.fs1_c01152{font-size:10.880000pt;}
.fs2_c01152{font-size:48.000000pt;}
.fs0_c01152{font-size:50.560000pt;}
.fs5_c01152{font-size:53.120000pt;}
.fs3_c01152{font-size:58.880000pt;}
.fs4_c01152{font-size:64.000000pt;}
.y0_c01152{bottom:0.000000pt;}
.y2_c01152{bottom:7.040000pt;}
.y4_c01152{bottom:51.040000pt;}
.y1a_c01152{bottom:79.687040pt;}
.y19_c01152{bottom:96.644480pt;}
.y18_c01152{bottom:120.800000pt;}
.y17_c01152{bottom:139.680000pt;}
.y16_c01152{bottom:380.174080pt;}
.y15_c01152{bottom:396.969600pt;}
.y14_c01152{bottom:413.927040pt;}
.y13_c01152{bottom:430.722560pt;}
.y12_c01152{bottom:447.680000pt;}
.y11_c01152{bottom:472.480000pt;}
.y10_c01152{bottom:514.224000pt;}
.yf_c01152{bottom:527.988000pt;}
.ye_c01152{bottom:541.752000pt;}
.yd_c01152{bottom:555.516000pt;}
.yc_c01152{bottom:569.436000pt;}
.yb_c01152{bottom:583.200000pt;}
.ya_c01152{bottom:601.920000pt;}
.y9_c01152{bottom:807.694080pt;}
.y8_c01152{bottom:824.489600pt;}
.y7_c01152{bottom:841.447040pt;}
.y6_c01152{bottom:858.242560pt;}
.y5_c01152{bottom:875.200000pt;}
.y3_c01152{bottom:894.400000pt;}
.y1_c01152{bottom:897.440000pt;}
.h4_c01152{height:7.559687pt;}
.h1_c01152{height:18.558667pt;}
.h5_c01152{height:33.351562pt;}
.h2_c01152{height:35.105625pt;}
.h3_c01152{height:35.130313pt;}
.h8_c01152{height:36.909063pt;}
.h9_c01152{height:40.882500pt;}
.h6_c01152{height:40.911250pt;}
.h7_c01152{height:43.812500pt;}
.h0_c01152{height:964.000000pt;}
.w3_c01152{width:42.240000pt;}
.w2_c01152{width:505.760000pt;}
.w1_c01152{width:661.333333pt;}
.w0_c01152{width:661.600000pt;}
.x0_c01152{left:0.000000pt;}
.x2_c01152{left:7.200000pt;}
.x4_c01152{left:16.000000pt;}
.x1_c01152{left:56.800000pt;}
.xa_c01152{left:58.564000pt;}
.x6_c01152{left:62.884000pt;}
.x7_c01152{left:64.000000pt;}
.x9_c01152{left:65.440000pt;}
.x8_c01152{left:73.444000pt;}
.xc_c01152{left:104.320000pt;}
.xe_c01152{left:222.560000pt;}
.xb_c01152{left:295.048000pt;}
.x3_c01152{left:562.560000pt;}
.xd_c01152{left:568.800000pt;}
.x5_c01152{left:572.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_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_2900c8e5231d202da032b17d.woff2')format("woff");}.ff1_c01153{font-family:ff1_c01153;line-height:0.910645;font-style:normal;font-weight:normal;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_37c41ca509c186886cd912de.woff2')format("woff");}.ff2_c01153{font-family:ff2_c01153;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01153{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01153{vertical-align:0.000000px;}
.ls7_c01153{letter-spacing:-0.486000px;}
.ls4_c01153{letter-spacing:-0.378000px;}
.ls6_c01153{letter-spacing:-0.216000px;}
.ls5_c01153{letter-spacing:-0.108000px;}
.ls3_c01153{letter-spacing:0.000000px;}
.ls8_c01153{letter-spacing:0.108000px;}
.ls2_c01153{letter-spacing:0.162000px;}
.ls0_c01153{letter-spacing:0.341280px;}
.ls1_c01153{letter-spacing:0.378000px;}
.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:-14.561280px;}
.ws2_c01153{word-spacing:-13.878000px;}
.ws4_c01153{word-spacing:-13.608000px;}
.ws3_c01153{word-spacing:-13.500000px;}
.ws1_c01153{word-spacing:-13.122000px;}
.wsd_c01153{word-spacing:-0.918000px;}
.ws7_c01153{word-spacing:-0.540000px;}
.wsb_c01153{word-spacing:-0.378000px;}
.wsc_c01153{word-spacing:-0.216000px;}
.ws6_c01153{word-spacing:-0.170640px;}
.ws5_c01153{word-spacing:0.000000px;}
.wsf_c01153{word-spacing:0.054000px;}
.ws8_c01153{word-spacing:0.270000px;}
.wsa_c01153{word-spacing:0.378000px;}
.ws9_c01153{word-spacing:0.540000px;}
.wse_c01153{word-spacing:0.648000px;}
._1_c01153{margin-left:-2.553912px;}
._0_c01153{margin-left:-1.245672px;}
._2_c01153{width:1.204200px;}
.fc0_c01153{color:rgb(0,0,0);}
.fs1_c01153{font-size:12.240000px;}
.fs2_c01153{font-size:54.000000px;}
.fs0_c01153{font-size:56.880000px;}
.y0_c01153{bottom:0.000000px;}
.y2_c01153{bottom:7.920000px;}
.y4_c01153{bottom:57.420000px;}
.y16_c01153{bottom:94.126500px;}
.y15_c01153{bottom:109.611000px;}
.y14_c01153{bottom:125.095500px;}
.y13_c01153{bottom:140.580000px;}
.y12_c01153{bottom:156.064500px;}
.y11_c01153{bottom:171.724500px;}
.y10_c01153{bottom:192.960000px;}
.yf_c01153{bottom:390.235500px;}
.ye_c01153{bottom:405.895500px;}
.yd_c01153{bottom:421.380000px;}
.yc_c01153{bottom:442.615500px;}
.yb_c01153{bottom:601.915500px;}
.ya_c01153{bottom:617.400000px;}
.y9_c01153{bottom:633.060000px;}
.y8_c01153{bottom:654.295500px;}
.y7_c01153{bottom:788.580000px;}
.y6_c01153{bottom:804.064500px;}
.y5_c01153{bottom:825.300000px;}
.y3_c01153{bottom:1006.200000px;}
.y1_c01153{bottom:1009.620000px;}
.h4_c01153{height:8.504648px;}
.h1_c01153{height:20.878500px;}
.h5_c01153{height:37.520508px;}
.h3_c01153{height:39.493828px;}
.h2_c01153{height:39.521602px;}
.h0_c01153{height:1084.500000px;}
.w2_c01153{width:48.600000px;}
.w3_c01153{width:567.900000px;}
.w1_c01153{width:744.000000px;}
.w0_c01153{width:744.300000px;}
.x0_c01153{left:0.000000px;}
.x2_c01153{left:8.100000px;}
.x4_c01153{left:40.860000px;}
.x1_c01153{left:63.900000px;}
.x12_c01153{left:65.988000px;}
.xf_c01153{left:68.350500px;}
.xd_c01153{left:74.655000px;}
.x10_c01153{left:77.152500px;}
.xc_c01153{left:79.893000px;}
.x7_c01153{left:81.000000px;}
.x11_c01153{left:85.617000px;}
.x8_c01153{left:92.151000px;}
.x3_c01153{left:112.500000px;}
.xe_c01153{left:268.690500px;}
.xa_c01153{left:287.428500px;}
.x5_c01153{left:433.620000px;}
.xb_c01153{left:614.128500px;}
.x6_c01153{left:616.140000px;}
.x9_c01153{left:619.555500px;}
@media print{
.v0_c01153{vertical-align:0.000000pt;}
.ls7_c01153{letter-spacing:-0.432000pt;}
.ls4_c01153{letter-spacing:-0.336000pt;}
.ls6_c01153{letter-spacing:-0.192000pt;}
.ls5_c01153{letter-spacing:-0.096000pt;}
.ls3_c01153{letter-spacing:0.000000pt;}
.ls8_c01153{letter-spacing:0.096000pt;}
.ls2_c01153{letter-spacing:0.144000pt;}
.ls0_c01153{letter-spacing:0.303360pt;}
.ls1_c01153{letter-spacing:0.336000pt;}
.ws0_c01153{word-spacing:-12.943360pt;}
.ws2_c01153{word-spacing:-12.336000pt;}
.ws4_c01153{word-spacing:-12.096000pt;}
.ws3_c01153{word-spacing:-12.000000pt;}
.ws1_c01153{word-spacing:-11.664000pt;}
.wsd_c01153{word-spacing:-0.816000pt;}
.ws7_c01153{word-spacing:-0.480000pt;}
.wsb_c01153{word-spacing:-0.336000pt;}
.wsc_c01153{word-spacing:-0.192000pt;}
.ws6_c01153{word-spacing:-0.151680pt;}
.ws5_c01153{word-spacing:0.000000pt;}
.wsf_c01153{word-spacing:0.048000pt;}
.ws8_c01153{word-spacing:0.240000pt;}
.wsa_c01153{word-spacing:0.336000pt;}
.ws9_c01153{word-spacing:0.480000pt;}
.wse_c01153{word-spacing:0.576000pt;}
._1_c01153{margin-left:-2.270144pt;}
._0_c01153{margin-left:-1.107264pt;}
._2_c01153{width:1.070400pt;}
.fs1_c01153{font-size:10.880000pt;}
.fs2_c01153{font-size:48.000000pt;}
.fs0_c01153{font-size:50.560000pt;}
.y0_c01153{bottom:0.000000pt;}
.y2_c01153{bottom:7.040000pt;}
.y4_c01153{bottom:51.040000pt;}
.y16_c01153{bottom:83.668000pt;}
.y15_c01153{bottom:97.432000pt;}
.y14_c01153{bottom:111.196000pt;}
.y13_c01153{bottom:124.960000pt;}
.y12_c01153{bottom:138.724000pt;}
.y11_c01153{bottom:152.644000pt;}
.y10_c01153{bottom:171.520000pt;}
.yf_c01153{bottom:346.876000pt;}
.ye_c01153{bottom:360.796000pt;}
.yd_c01153{bottom:374.560000pt;}
.yc_c01153{bottom:393.436000pt;}
.yb_c01153{bottom:535.036000pt;}
.ya_c01153{bottom:548.800000pt;}
.y9_c01153{bottom:562.720000pt;}
.y8_c01153{bottom:581.596000pt;}
.y7_c01153{bottom:700.960000pt;}
.y6_c01153{bottom:714.724000pt;}
.y5_c01153{bottom:733.600000pt;}
.y3_c01153{bottom:894.400000pt;}
.y1_c01153{bottom:897.440000pt;}
.h4_c01153{height:7.559687pt;}
.h1_c01153{height:18.558667pt;}
.h5_c01153{height:33.351562pt;}
.h3_c01153{height:35.105625pt;}
.h2_c01153{height:35.130313pt;}
.h0_c01153{height:964.000000pt;}
.w2_c01153{width:43.200000pt;}
.w3_c01153{width:504.800000pt;}
.w1_c01153{width:661.333333pt;}
.w0_c01153{width:661.600000pt;}
.x0_c01153{left:0.000000pt;}
.x2_c01153{left:7.200000pt;}
.x4_c01153{left:36.320000pt;}
.x1_c01153{left:56.800000pt;}
.x12_c01153{left:58.656000pt;}
.xf_c01153{left:60.756000pt;}
.xd_c01153{left:66.360000pt;}
.x10_c01153{left:68.580000pt;}
.xc_c01153{left:71.016000pt;}
.x7_c01153{left:72.000000pt;}
.x11_c01153{left:76.104000pt;}
.x8_c01153{left:81.912000pt;}
.x3_c01153{left:100.000000pt;}
.xe_c01153{left:238.836000pt;}
.xa_c01153{left:255.492000pt;}
.x5_c01153{left:385.440000pt;}
.xb_c01153{left:545.892000pt;}
.x6_c01153{left:547.680000pt;}
.x9_c01153{left:550.716000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_790362a5fd3405e92e58811e.woff2')format("woff");}.ff1_c01154{font-family:ff1_c01154;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01154;src:url('chunks/assets/font_175dc73eba83cdc3b857dcf2.woff2')format("woff");}.ff2_c01154{font-family:ff2_c01154;line-height:0.910645;font-style:normal;font-weight:normal;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_5410bcd0e4269c8b5c6cdfd8.woff2')format("woff");}.ff3_c01154{font-family:ff3_c01154;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01154;src:url('chunks/assets/font_c7d5da0bfab29e72731fbdc7.woff2')format("woff");}.ff4_c01154{font-family:ff4_c01154;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c01154{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01154{vertical-align:0.000000px;}
.ls9_c01154{letter-spacing:-0.861120px;}
.lsc_c01154{letter-spacing:-0.810000px;}
.lsd_c01154{letter-spacing:-0.728640px;}
.ls5_c01154{letter-spacing:-0.378000px;}
.lsa_c01154{letter-spacing:-0.216000px;}
.ls6_c01154{letter-spacing:-0.108000px;}
.ls3_c01154{letter-spacing:-0.056880px;}
.ls4_c01154{letter-spacing:0.000000px;}
.lsb_c01154{letter-spacing:0.108000px;}
.ls7_c01154{letter-spacing:0.132480px;}
.ls2_c01154{letter-spacing:0.162000px;}
.ls8_c01154{letter-spacing:0.331200px;}
.ls0_c01154{letter-spacing:0.341280px;}
.ls1_c01154{letter-spacing:0.378000px;}
.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;}
}
.ws6_c01154{word-spacing:-54.000000px;}
.ws2_c01154{word-spacing:-16.560000px;}
.ws7_c01154{word-spacing:-15.831360px;}
.ws3_c01154{word-spacing:-15.698880px;}
.ws0_c01154{word-spacing:-14.561280px;}
.ws4_c01154{word-spacing:-13.878000px;}
.ws5_c01154{word-spacing:-13.500000px;}
.ws1_c01154{word-spacing:-13.122000px;}
.ws1e_c01154{word-spacing:-2.318400px;}
.wse_c01154{word-spacing:-0.728640px;}
.ws18_c01154{word-spacing:-0.648000px;}
.wsa_c01154{word-spacing:-0.540000px;}
.ws19_c01154{word-spacing:-0.331200px;}
.ws14_c01154{word-spacing:-0.216000px;}
.ws20_c01154{word-spacing:-0.132480px;}
.ws15_c01154{word-spacing:-0.108000px;}
.ws9_c01154{word-spacing:0.000000px;}
.ws16_c01154{word-spacing:0.054000px;}
.ws8_c01154{word-spacing:0.227520px;}
.wsb_c01154{word-spacing:0.270000px;}
.wsd_c01154{word-spacing:0.378000px;}
.wsc_c01154{word-spacing:0.540000px;}
.ws17_c01154{word-spacing:0.972000px;}
.ws12_c01154{word-spacing:2.185920px;}
.ws13_c01154{word-spacing:2.782080px;}
.ws10_c01154{word-spacing:3.245760px;}
.ws11_c01154{word-spacing:3.576960px;}
.wsf_c01154{word-spacing:5.630400px;}
.ws1d_c01154{word-spacing:5.762880px;}
.ws1f_c01154{word-spacing:10.797120px;}
.ws1c_c01154{word-spacing:11.393280px;}
.ws1a_c01154{word-spacing:16.427520px;}
.ws1b_c01154{word-spacing:16.560000px;}
._2_c01154{margin-left:-2.288808px;}
._1_c01154{margin-left:-1.042920px;}
._0_c01154{width:1.109160px;}
._3_c01154{width:3.179520px;}
.fc0_c01154{color:rgb(0,0,0);}
.fs1_c01154{font-size:12.240000px;}
.fs2_c01154{font-size:54.000000px;}
.fs0_c01154{font-size:56.880000px;}
.fs3_c01154{font-size:66.240000px;}
.y0_c01154{bottom:0.000000px;}
.y2_c01154{bottom:7.920000px;}
.y4_c01154{bottom:57.420000px;}
.y33_c01154{bottom:134.275500px;}
.y32_c01154{bottom:149.935500px;}
.y31_c01154{bottom:165.420000px;}
.y30_c01154{bottom:181.080000px;}
.y2f_c01154{bottom:211.320000px;}
.y2e_c01154{bottom:227.908800px;}
.y2d_c01154{bottom:255.812400px;}
.y2c_c01154{bottom:274.707360px;}
.y2b_c01154{bottom:293.784480px;}
.y2a_c01154{bottom:312.679440px;}
.y29_c01154{bottom:331.756560px;}
.y28_c01154{bottom:350.651520px;}
.y27_c01154{bottom:369.546480px;}
.y26_c01154{bottom:388.623600px;}
.y25_c01154{bottom:407.518560px;}
.y24_c01154{bottom:435.240000px;}
.y23_c01154{bottom:462.708000px;}
.y22_c01154{bottom:478.192500px;}
.y21_c01154{bottom:493.677000px;}
.y20_c01154{bottom:509.337000px;}
.y1f_c01154{bottom:524.821500px;}
.y1e_c01154{bottom:540.306000px;}
.y1d_c01154{bottom:565.861500px;}
.y1c_c01154{bottom:581.346000px;}
.y1b_c01154{bottom:597.006000px;}
.y1a_c01154{bottom:612.490500px;}
.y19_c01154{bottom:627.975000px;}
.y18_c01154{bottom:653.530500px;}
.y17_c01154{bottom:669.015000px;}
.y16_c01154{bottom:684.499500px;}
.y15_c01154{bottom:700.159500px;}
.y14_c01154{bottom:715.644000px;}
.y13_c01154{bottom:731.128500px;}
.y12_c01154{bottom:746.613000px;}
.y11_c01154{bottom:771.277500px;}
.y10_c01154{bottom:786.762000px;}
.yf_c01154{bottom:802.246500px;}
.ye_c01154{bottom:817.731000px;}
.yd_c01154{bottom:833.391000px;}
.yc_c01154{bottom:848.875500px;}
.yb_c01154{bottom:864.360000px;}
.ya_c01154{bottom:880.574400px;}
.y9_c01154{bottom:899.651520px;}
.y8_c01154{bottom:918.546480px;}
.y7_c01154{bottom:937.623600px;}
.y6_c01154{bottom:956.518560px;}
.y5_c01154{bottom:984.240000px;}
.y3_c01154{bottom:1006.200000px;}
.y1_c01154{bottom:1009.620000px;}
.h4_c01154{height:8.504648px;}
.h1_c01154{height:20.878500px;}
.h5_c01154{height:37.520508px;}
.h2_c01154{height:39.493828px;}
.h3_c01154{height:39.521602px;}
.h7_c01154{height:45.345937px;}
.h6_c01154{height:46.025156px;}
.h0_c01154{height:1084.500000px;}
.w3_c01154{width:47.520000px;}
.w2_c01154{width:568.980000px;}
.w1_c01154{width:744.000000px;}
.w0_c01154{width:744.300000px;}
.x0_c01154{left:0.000000px;}
.x2_c01154{left:8.100000px;}
.x4_c01154{left:18.000000px;}
.x1_c01154{left:63.900000px;}
.x5_c01154{left:93.600000px;}
.x14_c01154{left:282.234960px;}
.x17_c01154{left:286.924500px;}
.x16_c01154{left:298.089000px;}
.x15_c01154{left:306.364500px;}
.x18_c01154{left:320.404500px;}
.xd_c01154{left:383.400000px;}
.x10_c01154{left:385.722000px;}
.x7_c01154{left:388.071000px;}
.x6_c01154{left:389.880000px;}
.x9_c01154{left:392.040000px;}
.xe_c01154{left:394.375500px;}
.xa_c01154{left:399.411000px;}
.x12_c01154{left:401.746500px;}
.x8_c01154{left:404.635500px;}
.xc_c01154{left:408.955500px;}
.x13_c01154{left:427.842000px;}
.xf_c01154{left:447.295500px;}
.xb_c01154{left:460.431000px;}
.x11_c01154{left:465.817500px;}
.x3_c01154{left:632.880000px;}
@media print{
.v0_c01154{vertical-align:0.000000pt;}
.ls9_c01154{letter-spacing:-0.765440pt;}
.lsc_c01154{letter-spacing:-0.720000pt;}
.lsd_c01154{letter-spacing:-0.647680pt;}
.ls5_c01154{letter-spacing:-0.336000pt;}
.lsa_c01154{letter-spacing:-0.192000pt;}
.ls6_c01154{letter-spacing:-0.096000pt;}
.ls3_c01154{letter-spacing:-0.050560pt;}
.ls4_c01154{letter-spacing:0.000000pt;}
.lsb_c01154{letter-spacing:0.096000pt;}
.ls7_c01154{letter-spacing:0.117760pt;}
.ls2_c01154{letter-spacing:0.144000pt;}
.ls8_c01154{letter-spacing:0.294400pt;}
.ls0_c01154{letter-spacing:0.303360pt;}
.ls1_c01154{letter-spacing:0.336000pt;}
.ws6_c01154{word-spacing:-48.000000pt;}
.ws2_c01154{word-spacing:-14.720000pt;}
.ws7_c01154{word-spacing:-14.072320pt;}
.ws3_c01154{word-spacing:-13.954560pt;}
.ws0_c01154{word-spacing:-12.943360pt;}
.ws4_c01154{word-spacing:-12.336000pt;}
.ws5_c01154{word-spacing:-12.000000pt;}
.ws1_c01154{word-spacing:-11.664000pt;}
.ws1e_c01154{word-spacing:-2.060800pt;}
.wse_c01154{word-spacing:-0.647680pt;}
.ws18_c01154{word-spacing:-0.576000pt;}
.wsa_c01154{word-spacing:-0.480000pt;}
.ws19_c01154{word-spacing:-0.294400pt;}
.ws14_c01154{word-spacing:-0.192000pt;}
.ws20_c01154{word-spacing:-0.117760pt;}
.ws15_c01154{word-spacing:-0.096000pt;}
.ws9_c01154{word-spacing:0.000000pt;}
.ws16_c01154{word-spacing:0.048000pt;}
.ws8_c01154{word-spacing:0.202240pt;}
.wsb_c01154{word-spacing:0.240000pt;}
.wsd_c01154{word-spacing:0.336000pt;}
.wsc_c01154{word-spacing:0.480000pt;}
.ws17_c01154{word-spacing:0.864000pt;}
.ws12_c01154{word-spacing:1.943040pt;}
.ws13_c01154{word-spacing:2.472960pt;}
.ws10_c01154{word-spacing:2.885120pt;}
.ws11_c01154{word-spacing:3.179520pt;}
.wsf_c01154{word-spacing:5.004800pt;}
.ws1d_c01154{word-spacing:5.122560pt;}
.ws1f_c01154{word-spacing:9.597440pt;}
.ws1c_c01154{word-spacing:10.127360pt;}
.ws1a_c01154{word-spacing:14.602240pt;}
.ws1b_c01154{word-spacing:14.720000pt;}
._2_c01154{margin-left:-2.034496pt;}
._1_c01154{margin-left:-0.927040pt;}
._0_c01154{width:0.985920pt;}
._3_c01154{width:2.826240pt;}
.fs1_c01154{font-size:10.880000pt;}
.fs2_c01154{font-size:48.000000pt;}
.fs0_c01154{font-size:50.560000pt;}
.fs3_c01154{font-size:58.880000pt;}
.y0_c01154{bottom:0.000000pt;}
.y2_c01154{bottom:7.040000pt;}
.y4_c01154{bottom:51.040000pt;}
.y33_c01154{bottom:119.356000pt;}
.y32_c01154{bottom:133.276000pt;}
.y31_c01154{bottom:147.040000pt;}
.y30_c01154{bottom:160.960000pt;}
.y2f_c01154{bottom:187.840000pt;}
.y2e_c01154{bottom:202.585600pt;}
.y2d_c01154{bottom:227.388800pt;}
.y2c_c01154{bottom:244.184320pt;}
.y2b_c01154{bottom:261.141760pt;}
.y2a_c01154{bottom:277.937280pt;}
.y29_c01154{bottom:294.894720pt;}
.y28_c01154{bottom:311.690240pt;}
.y27_c01154{bottom:328.485760pt;}
.y26_c01154{bottom:345.443200pt;}
.y25_c01154{bottom:362.238720pt;}
.y24_c01154{bottom:386.880000pt;}
.y23_c01154{bottom:411.296000pt;}
.y22_c01154{bottom:425.060000pt;}
.y21_c01154{bottom:438.824000pt;}
.y20_c01154{bottom:452.744000pt;}
.y1f_c01154{bottom:466.508000pt;}
.y1e_c01154{bottom:480.272000pt;}
.y1d_c01154{bottom:502.988000pt;}
.y1c_c01154{bottom:516.752000pt;}
.y1b_c01154{bottom:530.672000pt;}
.y1a_c01154{bottom:544.436000pt;}
.y19_c01154{bottom:558.200000pt;}
.y18_c01154{bottom:580.916000pt;}
.y17_c01154{bottom:594.680000pt;}
.y16_c01154{bottom:608.444000pt;}
.y15_c01154{bottom:622.364000pt;}
.y14_c01154{bottom:636.128000pt;}
.y13_c01154{bottom:649.892000pt;}
.y12_c01154{bottom:663.656000pt;}
.y11_c01154{bottom:685.580000pt;}
.y10_c01154{bottom:699.344000pt;}
.yf_c01154{bottom:713.108000pt;}
.ye_c01154{bottom:726.872000pt;}
.yd_c01154{bottom:740.792000pt;}
.yc_c01154{bottom:754.556000pt;}
.yb_c01154{bottom:768.320000pt;}
.ya_c01154{bottom:782.732800pt;}
.y9_c01154{bottom:799.690240pt;}
.y8_c01154{bottom:816.485760pt;}
.y7_c01154{bottom:833.443200pt;}
.y6_c01154{bottom:850.238720pt;}
.y5_c01154{bottom:874.880000pt;}
.y3_c01154{bottom:894.400000pt;}
.y1_c01154{bottom:897.440000pt;}
.h4_c01154{height:7.559687pt;}
.h1_c01154{height:18.558667pt;}
.h5_c01154{height:33.351562pt;}
.h2_c01154{height:35.105625pt;}
.h3_c01154{height:35.130313pt;}
.h7_c01154{height:40.307500pt;}
.h6_c01154{height:40.911250pt;}
.h0_c01154{height:964.000000pt;}
.w3_c01154{width:42.240000pt;}
.w2_c01154{width:505.760000pt;}
.w1_c01154{width:661.333333pt;}
.w0_c01154{width:661.600000pt;}
.x0_c01154{left:0.000000pt;}
.x2_c01154{left:7.200000pt;}
.x4_c01154{left:16.000000pt;}
.x1_c01154{left:56.800000pt;}
.x5_c01154{left:83.200000pt;}
.x14_c01154{left:250.875520pt;}
.x17_c01154{left:255.044000pt;}
.x16_c01154{left:264.968000pt;}
.x15_c01154{left:272.324000pt;}
.x18_c01154{left:284.804000pt;}
.xd_c01154{left:340.800000pt;}
.x10_c01154{left:342.864000pt;}
.x7_c01154{left:344.952000pt;}
.x6_c01154{left:346.560000pt;}
.x9_c01154{left:348.480000pt;}
.xe_c01154{left:350.556000pt;}
.xa_c01154{left:355.032000pt;}
.x12_c01154{left:357.108000pt;}
.x8_c01154{left:359.676000pt;}
.xc_c01154{left:363.516000pt;}
.x13_c01154{left:380.304000pt;}
.xf_c01154{left:397.596000pt;}
.xb_c01154{left:409.272000pt;}
.x11_c01154{left:414.060000pt;}
.x3_c01154{left:562.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_21bc1124c9da0209073c1555.woff2')format("woff");}.ff1_c01155{font-family:ff1_c01155;line-height:0.910645;font-style:normal;font-weight:normal;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_37c41ca509c186886cd912de.woff2')format("woff");}.ff2_c01155{font-family:ff2_c01155;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01155;src:url('chunks/assets/font_e45936a0935562af77b8cad1.woff2')format("woff");}.ff3_c01155{font-family:ff3_c01155;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01155{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01155{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01155{vertical-align:0.000000px;}
.ls14_c01155{letter-spacing:-1.374480px;}
.lsf_c01155{letter-spacing:-0.861120px;}
.lsc_c01155{letter-spacing:-0.728640px;}
.lsa_c01155{letter-spacing:-0.378000px;}
.ls11_c01155{letter-spacing:-0.216000px;}
.ls13_c01155{letter-spacing:-0.119520px;}
.lsb_c01155{letter-spacing:-0.108000px;}
.ls9_c01155{letter-spacing:0.000000px;}
.ls10_c01155{letter-spacing:0.108000px;}
.lse_c01155{letter-spacing:0.132480px;}
.ls7_c01155{letter-spacing:0.151200px;}
.ls6_c01155{letter-spacing:0.162000px;}
.ls12_c01155{letter-spacing:0.239040px;}
.lsd_c01155{letter-spacing:0.331200px;}
.ls0_c01155{letter-spacing:0.341280px;}
.ls1_c01155{letter-spacing:0.378000px;}
.ls2_c01155{letter-spacing:0.728640px;}
.ls8_c01155{letter-spacing:1.386720px;}
.ls5_c01155{letter-spacing:1.457280px;}
.ls3_c01155{letter-spacing:4.305600px;}
.ls4_c01155{letter-spacing:15.831360px;}
.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;}
}
.ws5_c01155{word-spacing:-16.493760px;}
.ws3_c01155{word-spacing:-15.831360px;}
.ws2_c01155{word-spacing:-15.698880px;}
.ws6_c01155{word-spacing:-15.238800px;}
.ws0_c01155{word-spacing:-14.561280px;}
.ws4_c01155{word-spacing:-13.878000px;}
.ws1_c01155{word-spacing:-13.122000px;}
.ws1d_c01155{word-spacing:-3.709440px;}
.wsd_c01155{word-spacing:-2.119680px;}
.ws15_c01155{word-spacing:-1.589760px;}
.ws14_c01155{word-spacing:-1.457280px;}
.ws21_c01155{word-spacing:-1.059840px;}
.ws22_c01155{word-spacing:-0.918000px;}
.ws1b_c01155{word-spacing:-0.861120px;}
.ws1a_c01155{word-spacing:-0.728640px;}
.ws9_c01155{word-spacing:-0.540000px;}
.ws1c_c01155{word-spacing:-0.216000px;}
.ws8_c01155{word-spacing:-0.170640px;}
.ws10_c01155{word-spacing:-0.132480px;}
.ws7_c01155{word-spacing:0.000000px;}
.ws23_c01155{word-spacing:0.054000px;}
.wsa_c01155{word-spacing:0.270000px;}
.wsc_c01155{word-spacing:0.378000px;}
.wsb_c01155{word-spacing:0.540000px;}
.ws12_c01155{word-spacing:0.596160px;}
.ws11_c01155{word-spacing:0.728640px;}
.ws24_c01155{word-spacing:1.135440px;}
.ws20_c01155{word-spacing:1.457280px;}
.wse_c01155{word-spacing:2.185920px;}
.ws19_c01155{word-spacing:2.914560px;}
.ws18_c01155{word-spacing:3.576960px;}
.ws16_c01155{word-spacing:5.034240px;}
.wsf_c01155{word-spacing:6.160320px;}
.ws17_c01155{word-spacing:8.478720px;}
.ws1e_c01155{word-spacing:15.102720px;}
.ws13_c01155{word-spacing:15.698880px;}
.ws1f_c01155{word-spacing:15.831360px;}
._4_c01155{margin-left:-3.737088px;}
._1_c01155{margin-left:-2.553912px;}
._0_c01155{margin-left:-1.245672px;}
._2_c01155{width:1.204200px;}
._5_c01155{width:2.426112px;}
._3_c01155{width:4.095000px;}
.fc2_c01155{color:rgb(255,0,0);}
.fc1_c01155{color:rgb(0,176,80);}
.fc0_c01155{color:rgb(0,0,0);}
.fs1_c01155{font-size:12.240000px;}
.fs4_c01155{font-size:48.240000px;}
.fs2_c01155{font-size:54.000000px;}
.fs0_c01155{font-size:56.880000px;}
.fs5_c01155{font-size:59.760000px;}
.fs3_c01155{font-size:66.240000px;}
.y0_c01155{bottom:0.000000px;}
.y26_c01155{bottom:3.060000px;}
.y2_c01155{bottom:7.920000px;}
.y4_c01155{bottom:57.420000px;}
.y24_c01155{bottom:91.260000px;}
.y23_c01155{bottom:106.744500px;}
.y22_c01155{bottom:137.160000px;}
.y21_c01155{bottom:167.764500px;}
.y20_c01155{bottom:198.180000px;}
.y1f_c01155{bottom:228.438360px;}
.y1e_c01155{bottom:257.237640px;}
.y1d_c01155{bottom:286.036920px;}
.y1c_c01155{bottom:314.836200px;}
.y1b_c01155{bottom:328.693140px;}
.y1a_c01155{bottom:342.550080px;}
.y19_c01155{bottom:356.226120px;}
.y18_c01155{bottom:370.083060px;}
.y17_c01155{bottom:383.940000px;}
.y16_c01155{bottom:398.892960px;}
.y15_c01155{bottom:417.787920px;}
.y14_c01155{bottom:436.865040px;}
.y13_c01155{bottom:455.760000px;}
.y12_c01155{bottom:482.940000px;}
.y27_c01155{bottom:556.920000px;}
.y25_c01155{bottom:633.240000px;}
.y11_c01155{bottom:756.949680px;}
.y10_c01155{bottom:775.844640px;}
.yf_c01155{bottom:794.739600px;}
.ye_c01155{bottom:813.816720px;}
.yd_c01155{bottom:832.711680px;}
.yc_c01155{bottom:851.788800px;}
.yb_c01155{bottom:870.683760px;}
.ya_c01155{bottom:889.578720px;}
.y9_c01155{bottom:908.655840px;}
.y8_c01155{bottom:927.550800px;}
.y7_c01155{bottom:946.627920px;}
.y6_c01155{bottom:965.522880px;}
.y5_c01155{bottom:984.600000px;}
.y3_c01155{bottom:1006.200000px;}
.y1_c01155{bottom:1009.620000px;}
.h4_c01155{height:8.504648px;}
.ha_c01155{height:16.740000px;}
.h8_c01155{height:16.920000px;}
.h1_c01155{height:20.878500px;}
.h7_c01155{height:33.518320px;}
.h5_c01155{height:37.520508px;}
.h3_c01155{height:39.493828px;}
.h2_c01155{height:39.521602px;}
.h9_c01155{height:43.536094px;}
.h6_c01155{height:46.025156px;}
.h0_c01155{height:1084.500000px;}
.w2_c01155{width:48.600000px;}
.w4_c01155{width:77.040000px;}
.w5_c01155{width:91.440000px;}
.w3_c01155{width:567.900000px;}
.w1_c01155{width:744.000000px;}
.w0_c01155{width:744.300000px;}
.x0_c01155{left:0.000000px;}
.x2_c01155{left:8.100000px;}
.xb_c01155{left:10.800000px;}
.x4_c01155{left:40.860000px;}
.x1_c01155{left:63.900000px;}
.x8_c01155{left:77.400000px;}
.x7_c01155{left:103.854780px;}
.x3_c01155{left:112.500000px;}
.xa_c01155{left:116.100000px;}
.x6_c01155{left:120.780000px;}
.x9_c01155{left:228.937500px;}
.x5_c01155{left:433.620000px;}
.xc_c01155{left:501.120000px;}
@media print{
.v0_c01155{vertical-align:0.000000pt;}
.ls14_c01155{letter-spacing:-1.221760pt;}
.lsf_c01155{letter-spacing:-0.765440pt;}
.lsc_c01155{letter-spacing:-0.647680pt;}
.lsa_c01155{letter-spacing:-0.336000pt;}
.ls11_c01155{letter-spacing:-0.192000pt;}
.ls13_c01155{letter-spacing:-0.106240pt;}
.lsb_c01155{letter-spacing:-0.096000pt;}
.ls9_c01155{letter-spacing:0.000000pt;}
.ls10_c01155{letter-spacing:0.096000pt;}
.lse_c01155{letter-spacing:0.117760pt;}
.ls7_c01155{letter-spacing:0.134400pt;}
.ls6_c01155{letter-spacing:0.144000pt;}
.ls12_c01155{letter-spacing:0.212480pt;}
.lsd_c01155{letter-spacing:0.294400pt;}
.ls0_c01155{letter-spacing:0.303360pt;}
.ls1_c01155{letter-spacing:0.336000pt;}
.ls2_c01155{letter-spacing:0.647680pt;}
.ls8_c01155{letter-spacing:1.232640pt;}
.ls5_c01155{letter-spacing:1.295360pt;}
.ls3_c01155{letter-spacing:3.827200pt;}
.ls4_c01155{letter-spacing:14.072320pt;}
.ws5_c01155{word-spacing:-14.661120pt;}
.ws3_c01155{word-spacing:-14.072320pt;}
.ws2_c01155{word-spacing:-13.954560pt;}
.ws6_c01155{word-spacing:-13.545600pt;}
.ws0_c01155{word-spacing:-12.943360pt;}
.ws4_c01155{word-spacing:-12.336000pt;}
.ws1_c01155{word-spacing:-11.664000pt;}
.ws1d_c01155{word-spacing:-3.297280pt;}
.wsd_c01155{word-spacing:-1.884160pt;}
.ws15_c01155{word-spacing:-1.413120pt;}
.ws14_c01155{word-spacing:-1.295360pt;}
.ws21_c01155{word-spacing:-0.942080pt;}
.ws22_c01155{word-spacing:-0.816000pt;}
.ws1b_c01155{word-spacing:-0.765440pt;}
.ws1a_c01155{word-spacing:-0.647680pt;}
.ws9_c01155{word-spacing:-0.480000pt;}
.ws1c_c01155{word-spacing:-0.192000pt;}
.ws8_c01155{word-spacing:-0.151680pt;}
.ws10_c01155{word-spacing:-0.117760pt;}
.ws7_c01155{word-spacing:0.000000pt;}
.ws23_c01155{word-spacing:0.048000pt;}
.wsa_c01155{word-spacing:0.240000pt;}
.wsc_c01155{word-spacing:0.336000pt;}
.wsb_c01155{word-spacing:0.480000pt;}
.ws12_c01155{word-spacing:0.529920pt;}
.ws11_c01155{word-spacing:0.647680pt;}
.ws24_c01155{word-spacing:1.009280pt;}
.ws20_c01155{word-spacing:1.295360pt;}
.wse_c01155{word-spacing:1.943040pt;}
.ws19_c01155{word-spacing:2.590720pt;}
.ws18_c01155{word-spacing:3.179520pt;}
.ws16_c01155{word-spacing:4.474880pt;}
.wsf_c01155{word-spacing:5.475840pt;}
.ws17_c01155{word-spacing:7.536640pt;}
.ws1e_c01155{word-spacing:13.424640pt;}
.ws13_c01155{word-spacing:13.954560pt;}
.ws1f_c01155{word-spacing:14.072320pt;}
._4_c01155{margin-left:-3.321856pt;}
._1_c01155{margin-left:-2.270144pt;}
._0_c01155{margin-left:-1.107264pt;}
._2_c01155{width:1.070400pt;}
._5_c01155{width:2.156544pt;}
._3_c01155{width:3.640000pt;}
.fs1_c01155{font-size:10.880000pt;}
.fs4_c01155{font-size:42.880000pt;}
.fs2_c01155{font-size:48.000000pt;}
.fs0_c01155{font-size:50.560000pt;}
.fs5_c01155{font-size:53.120000pt;}
.fs3_c01155{font-size:58.880000pt;}
.y0_c01155{bottom:0.000000pt;}
.y26_c01155{bottom:2.720000pt;}
.y2_c01155{bottom:7.040000pt;}
.y4_c01155{bottom:51.040000pt;}
.y24_c01155{bottom:81.120000pt;}
.y23_c01155{bottom:94.884000pt;}
.y22_c01155{bottom:121.920000pt;}
.y21_c01155{bottom:149.124000pt;}
.y20_c01155{bottom:176.160000pt;}
.y1f_c01155{bottom:203.056320pt;}
.y1e_c01155{bottom:228.655680pt;}
.y1d_c01155{bottom:254.255040pt;}
.y1c_c01155{bottom:279.854400pt;}
.y1b_c01155{bottom:292.171680pt;}
.y1a_c01155{bottom:304.488960pt;}
.y19_c01155{bottom:316.645440pt;}
.y18_c01155{bottom:328.962720pt;}
.y17_c01155{bottom:341.280000pt;}
.y16_c01155{bottom:354.571520pt;}
.y15_c01155{bottom:371.367040pt;}
.y14_c01155{bottom:388.324480pt;}
.y13_c01155{bottom:405.120000pt;}
.y12_c01155{bottom:429.280000pt;}
.y27_c01155{bottom:495.040000pt;}
.y25_c01155{bottom:562.880000pt;}
.y11_c01155{bottom:672.844160pt;}
.y10_c01155{bottom:689.639680pt;}
.yf_c01155{bottom:706.435200pt;}
.ye_c01155{bottom:723.392640pt;}
.yd_c01155{bottom:740.188160pt;}
.yc_c01155{bottom:757.145600pt;}
.yb_c01155{bottom:773.941120pt;}
.ya_c01155{bottom:790.736640pt;}
.y9_c01155{bottom:807.694080pt;}
.y8_c01155{bottom:824.489600pt;}
.y7_c01155{bottom:841.447040pt;}
.y6_c01155{bottom:858.242560pt;}
.y5_c01155{bottom:875.200000pt;}
.y3_c01155{bottom:894.400000pt;}
.y1_c01155{bottom:897.440000pt;}
.h4_c01155{height:7.559687pt;}
.ha_c01155{height:14.880000pt;}
.h8_c01155{height:15.040000pt;}
.h1_c01155{height:18.558667pt;}
.h7_c01155{height:29.794062pt;}
.h5_c01155{height:33.351562pt;}
.h3_c01155{height:35.105625pt;}
.h2_c01155{height:35.130313pt;}
.h9_c01155{height:38.698750pt;}
.h6_c01155{height:40.911250pt;}
.h0_c01155{height:964.000000pt;}
.w2_c01155{width:43.200000pt;}
.w4_c01155{width:68.480000pt;}
.w5_c01155{width:81.280000pt;}
.w3_c01155{width:504.800000pt;}
.w1_c01155{width:661.333333pt;}
.w0_c01155{width:661.600000pt;}
.x0_c01155{left:0.000000pt;}
.x2_c01155{left:7.200000pt;}
.xb_c01155{left:9.600000pt;}
.x4_c01155{left:36.320000pt;}
.x1_c01155{left:56.800000pt;}
.x8_c01155{left:68.800000pt;}
.x7_c01155{left:92.315360pt;}
.x3_c01155{left:100.000000pt;}
.xa_c01155{left:103.200000pt;}
.x6_c01155{left:107.360000pt;}
.x9_c01155{left:203.500000pt;}
.x5_c01155{left:385.440000pt;}
.xc_c01155{left:445.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_790362a5fd3405e92e58811e.woff2')format("woff");}.ff1_c01156{font-family:ff1_c01156;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01156;src:url('chunks/assets/font_24d01280279f6acab9eb404a.woff2')format("woff");}.ff2_c01156{font-family:ff2_c01156;line-height:0.910645;font-style:normal;font-weight:normal;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_6a2c06221aa7fd678e0781fd.woff2')format("woff");}.ff3_c01156{font-family:ff3_c01156;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c01156{letter-spacing:-0.728640px;}
.ls4_c01156{letter-spacing:-0.378000px;}
.lsa_c01156{letter-spacing:-0.331200px;}
.ls9_c01156{letter-spacing:-0.216000px;}
.ls6_c01156{letter-spacing:-0.132480px;}
.ls5_c01156{letter-spacing:-0.108000px;}
.ls2_c01156{letter-spacing:-0.056880px;}
.ls3_c01156{letter-spacing:0.000000px;}
.lsc_c01156{letter-spacing:0.108000px;}
.ls7_c01156{letter-spacing:0.132480px;}
.ls8_c01156{letter-spacing:0.331200px;}
.ls0_c01156{letter-spacing:0.341280px;}
.ls1_c01156{letter-spacing:0.378000px;}
.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;}
}
.ws3_c01156{word-spacing:-16.560000px;}
.ws2_c01156{word-spacing:-16.427520px;}
.ws5_c01156{word-spacing:-15.831360px;}
.ws0_c01156{word-spacing:-14.561280px;}
.ws4_c01156{word-spacing:-13.878000px;}
.ws6_c01156{word-spacing:-13.608000px;}
.ws1_c01156{word-spacing:-13.122000px;}
.wse_c01156{word-spacing:-2.980800px;}
.wsd_c01156{word-spacing:-2.848320px;}
.ws17_c01156{word-spacing:-2.185920px;}
.ws19_c01156{word-spacing:-0.918000px;}
.ws9_c01156{word-spacing:-0.540000px;}
.ws10_c01156{word-spacing:-0.331200px;}
.ws18_c01156{word-spacing:-0.216000px;}
.wsf_c01156{word-spacing:-0.132480px;}
.ws1c_c01156{word-spacing:-0.108000px;}
.ws8_c01156{word-spacing:0.000000px;}
.ws1d_c01156{word-spacing:0.054000px;}
.ws11_c01156{word-spacing:0.216000px;}
.ws7_c01156{word-spacing:0.227520px;}
.wsa_c01156{word-spacing:0.270000px;}
.ws12_c01156{word-spacing:0.331200px;}
.wsc_c01156{word-spacing:0.378000px;}
.wsb_c01156{word-spacing:0.540000px;}
.ws14_c01156{word-spacing:2.053440px;}
.ws1a_c01156{word-spacing:2.914560px;}
.ws1b_c01156{word-spacing:7.948800px;}
.ws15_c01156{word-spacing:10.068480px;}
.ws16_c01156{word-spacing:18.745920px;}
.ws13_c01156{word-spacing:27.357120px;}
._2_c01156{margin-left:-2.570112px;}
._1_c01156{margin-left:-1.331424px;}
._0_c01156{width:1.109160px;}
._4_c01156{width:2.715840px;}
._3_c01156{width:11.343960px;}
.fc0_c01156{color:rgb(0,0,0);}
.fs1_c01156{font-size:12.240000px;}
.fs2_c01156{font-size:54.000000px;}
.fs0_c01156{font-size:56.880000px;}
.fs4_c01156{font-size:59.760000px;}
.fs3_c01156{font-size:66.240000px;}
.y0_c01156{bottom:0.000000px;}
.y2_c01156{bottom:7.920000px;}
.y4_c01156{bottom:57.420000px;}
.y29_c01156{bottom:100.254240px;}
.y28_c01156{bottom:128.340000px;}
.y27_c01156{bottom:155.497500px;}
.y26_c01156{bottom:170.982000px;}
.y25_c01156{bottom:186.466500px;}
.y24_c01156{bottom:202.126500px;}
.y23_c01156{bottom:217.611000px;}
.y22_c01156{bottom:233.095500px;}
.y21_c01156{bottom:248.580000px;}
.y20_c01156{bottom:264.408840px;}
.y1f_c01156{bottom:281.694420px;}
.y1e_c01156{bottom:298.980000px;}
.y1d_c01156{bottom:316.622880px;}
.y1c_c01156{bottom:335.700000px;}
.y1b_c01156{bottom:354.594960px;}
.y1a_c01156{bottom:382.134240px;}
.y19_c01156{bottom:410.220000px;}
.y18_c01156{bottom:443.502000px;}
.y17_c01156{bottom:459.337500px;}
.y16_c01156{bottom:474.822000px;}
.y15_c01156{bottom:490.306500px;}
.y14_c01156{bottom:505.791000px;}
.y13_c01156{bottom:521.451000px;}
.y12_c01156{bottom:536.935500px;}
.y11_c01156{bottom:552.420000px;}
.y10_c01156{bottom:568.821600px;}
.yf_c01156{bottom:587.716560px;}
.ye_c01156{bottom:606.611520px;}
.yd_c01156{bottom:625.688640px;}
.yc_c01156{bottom:644.583600px;}
.yb_c01156{bottom:663.660720px;}
.ya_c01156{bottom:691.200000px;}
.y9_c01156{bottom:718.744500px;}
.y8_c01156{bottom:739.980000px;}
.y7_c01156{bottom:946.627920px;}
.y6_c01156{bottom:965.522880px;}
.y5_c01156{bottom:984.600000px;}
.y3_c01156{bottom:1006.200000px;}
.y1_c01156{bottom:1009.620000px;}
.h4_c01156{height:8.504648px;}
.h1_c01156{height:20.878500px;}
.h8_c01156{height:37.494141px;}
.h5_c01156{height:37.520508px;}
.h2_c01156{height:39.493828px;}
.h3_c01156{height:39.521602px;}
.h9_c01156{height:41.522695px;}
.h7_c01156{height:45.345937px;}
.h6_c01156{height:46.025156px;}
.h0_c01156{height:1084.500000px;}
.w3_c01156{width:47.520000px;}
.w2_c01156{width:568.980000px;}
.w1_c01156{width:744.000000px;}
.w0_c01156{width:744.300000px;}
.x0_c01156{left:0.000000px;}
.x2_c01156{left:8.100000px;}
.x4_c01156{left:18.000000px;}
.x1_c01156{left:63.900000px;}
.x7_c01156{left:93.600000px;}
.x6_c01156{left:94.675500px;}
.x8_c01156{left:416.337840px;}
.x9_c01156{left:434.875500px;}
.xa_c01156{left:470.691000px;}
.xb_c01156{left:579.600000px;}
.xe_c01156{left:582.480000px;}
.xd_c01156{left:584.100000px;}
.xc_c01156{left:592.200000px;}
.xf_c01156{left:605.700000px;}
.x10_c01156{left:618.660000px;}
.x3_c01156{left:632.880000px;}
.x5_c01156{left:669.060000px;}
@media print{
.v0_c01156{vertical-align:0.000000pt;}
.lsb_c01156{letter-spacing:-0.647680pt;}
.ls4_c01156{letter-spacing:-0.336000pt;}
.lsa_c01156{letter-spacing:-0.294400pt;}
.ls9_c01156{letter-spacing:-0.192000pt;}
.ls6_c01156{letter-spacing:-0.117760pt;}
.ls5_c01156{letter-spacing:-0.096000pt;}
.ls2_c01156{letter-spacing:-0.050560pt;}
.ls3_c01156{letter-spacing:0.000000pt;}
.lsc_c01156{letter-spacing:0.096000pt;}
.ls7_c01156{letter-spacing:0.117760pt;}
.ls8_c01156{letter-spacing:0.294400pt;}
.ls0_c01156{letter-spacing:0.303360pt;}
.ls1_c01156{letter-spacing:0.336000pt;}
.ws3_c01156{word-spacing:-14.720000pt;}
.ws2_c01156{word-spacing:-14.602240pt;}
.ws5_c01156{word-spacing:-14.072320pt;}
.ws0_c01156{word-spacing:-12.943360pt;}
.ws4_c01156{word-spacing:-12.336000pt;}
.ws6_c01156{word-spacing:-12.096000pt;}
.ws1_c01156{word-spacing:-11.664000pt;}
.wse_c01156{word-spacing:-2.649600pt;}
.wsd_c01156{word-spacing:-2.531840pt;}
.ws17_c01156{word-spacing:-1.943040pt;}
.ws19_c01156{word-spacing:-0.816000pt;}
.ws9_c01156{word-spacing:-0.480000pt;}
.ws10_c01156{word-spacing:-0.294400pt;}
.ws18_c01156{word-spacing:-0.192000pt;}
.wsf_c01156{word-spacing:-0.117760pt;}
.ws1c_c01156{word-spacing:-0.096000pt;}
.ws8_c01156{word-spacing:0.000000pt;}
.ws1d_c01156{word-spacing:0.048000pt;}
.ws11_c01156{word-spacing:0.192000pt;}
.ws7_c01156{word-spacing:0.202240pt;}
.wsa_c01156{word-spacing:0.240000pt;}
.ws12_c01156{word-spacing:0.294400pt;}
.wsc_c01156{word-spacing:0.336000pt;}
.wsb_c01156{word-spacing:0.480000pt;}
.ws14_c01156{word-spacing:1.825280pt;}
.ws1a_c01156{word-spacing:2.590720pt;}
.ws1b_c01156{word-spacing:7.065600pt;}
.ws15_c01156{word-spacing:8.949760pt;}
.ws16_c01156{word-spacing:16.663040pt;}
.ws13_c01156{word-spacing:24.317440pt;}
._2_c01156{margin-left:-2.284544pt;}
._1_c01156{margin-left:-1.183488pt;}
._0_c01156{width:0.985920pt;}
._4_c01156{width:2.414080pt;}
._3_c01156{width:10.083520pt;}
.fs1_c01156{font-size:10.880000pt;}
.fs2_c01156{font-size:48.000000pt;}
.fs0_c01156{font-size:50.560000pt;}
.fs4_c01156{font-size:53.120000pt;}
.fs3_c01156{font-size:58.880000pt;}
.y0_c01156{bottom:0.000000pt;}
.y2_c01156{bottom:7.040000pt;}
.y4_c01156{bottom:51.040000pt;}
.y29_c01156{bottom:89.114880pt;}
.y28_c01156{bottom:114.080000pt;}
.y27_c01156{bottom:138.220000pt;}
.y26_c01156{bottom:151.984000pt;}
.y25_c01156{bottom:165.748000pt;}
.y24_c01156{bottom:179.668000pt;}
.y23_c01156{bottom:193.432000pt;}
.y22_c01156{bottom:207.196000pt;}
.y21_c01156{bottom:220.960000pt;}
.y20_c01156{bottom:235.030080pt;}
.y1f_c01156{bottom:250.395040pt;}
.y1e_c01156{bottom:265.760000pt;}
.y1d_c01156{bottom:281.442560pt;}
.y1c_c01156{bottom:298.400000pt;}
.y1b_c01156{bottom:315.195520pt;}
.y1a_c01156{bottom:339.674880pt;}
.y19_c01156{bottom:364.640000pt;}
.y18_c01156{bottom:394.224000pt;}
.y17_c01156{bottom:408.300000pt;}
.y16_c01156{bottom:422.064000pt;}
.y15_c01156{bottom:435.828000pt;}
.y14_c01156{bottom:449.592000pt;}
.y13_c01156{bottom:463.512000pt;}
.y12_c01156{bottom:477.276000pt;}
.y11_c01156{bottom:491.040000pt;}
.y10_c01156{bottom:505.619200pt;}
.yf_c01156{bottom:522.414720pt;}
.ye_c01156{bottom:539.210240pt;}
.yd_c01156{bottom:556.167680pt;}
.yc_c01156{bottom:572.963200pt;}
.yb_c01156{bottom:589.920640pt;}
.ya_c01156{bottom:614.400000pt;}
.y9_c01156{bottom:638.884000pt;}
.y8_c01156{bottom:657.760000pt;}
.y7_c01156{bottom:841.447040pt;}
.y6_c01156{bottom:858.242560pt;}
.y5_c01156{bottom:875.200000pt;}
.y3_c01156{bottom:894.400000pt;}
.y1_c01156{bottom:897.440000pt;}
.h4_c01156{height:7.559687pt;}
.h1_c01156{height:18.558667pt;}
.h8_c01156{height:33.328125pt;}
.h5_c01156{height:33.351562pt;}
.h2_c01156{height:35.105625pt;}
.h3_c01156{height:35.130313pt;}
.h9_c01156{height:36.909063pt;}
.h7_c01156{height:40.307500pt;}
.h6_c01156{height:40.911250pt;}
.h0_c01156{height:964.000000pt;}
.w3_c01156{width:42.240000pt;}
.w2_c01156{width:505.760000pt;}
.w1_c01156{width:661.333333pt;}
.w0_c01156{width:661.600000pt;}
.x0_c01156{left:0.000000pt;}
.x2_c01156{left:7.200000pt;}
.x4_c01156{left:16.000000pt;}
.x1_c01156{left:56.800000pt;}
.x7_c01156{left:83.200000pt;}
.x6_c01156{left:84.156000pt;}
.x8_c01156{left:370.078080pt;}
.x9_c01156{left:386.556000pt;}
.xa_c01156{left:418.392000pt;}
.xb_c01156{left:515.200000pt;}
.xe_c01156{left:517.760000pt;}
.xd_c01156{left:519.200000pt;}
.xc_c01156{left:526.400000pt;}
.xf_c01156{left:538.400000pt;}
.x10_c01156{left:549.920000pt;}
.x3_c01156{left:562.560000pt;}
.x5_c01156{left:594.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f3a40c76363375bedd35862.woff2')format("woff");}.ff1_c01157{font-family:ff1_c01157;line-height:0.910645;font-style:normal;font-weight:normal;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_37c41ca509c186886cd912de.woff2')format("woff");}.ff2_c01157{font-family:ff2_c01157;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c01157{letter-spacing:-0.861120px;}
.ls7_c01157{letter-spacing:-0.728640px;}
.ls5_c01157{letter-spacing:-0.378000px;}
.ls9_c01157{letter-spacing:-0.264960px;}
.lsa_c01157{letter-spacing:-0.216000px;}
.ls6_c01157{letter-spacing:-0.108000px;}
.ls4_c01157{letter-spacing:0.000000px;}
.lsb_c01157{letter-spacing:0.108000px;}
.ls2_c01157{letter-spacing:0.132480px;}
.ls3_c01157{letter-spacing:0.162000px;}
.ls8_c01157{letter-spacing:0.331200px;}
.ls0_c01157{letter-spacing:0.341280px;}
.ls1_c01157{letter-spacing:0.378000px;}
.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;}
}
.ws4_c01157{word-spacing:-16.560000px;}
.ws2_c01157{word-spacing:-15.831360px;}
.ws6_c01157{word-spacing:-15.698880px;}
.ws0_c01157{word-spacing:-14.561280px;}
.ws3_c01157{word-spacing:-13.878000px;}
.ws5_c01157{word-spacing:-13.284000px;}
.ws1_c01157{word-spacing:-13.122000px;}
.ws15_c01157{word-spacing:-2.848320px;}
.ws14_c01157{word-spacing:-2.517120px;}
.ws16_c01157{word-spacing:-2.318400px;}
.ws17_c01157{word-spacing:-2.185920px;}
.ws18_c01157{word-spacing:-1.920960px;}
.wsf_c01157{word-spacing:-1.457280px;}
.ws19_c01157{word-spacing:-0.918000px;}
.ws11_c01157{word-spacing:-0.861120px;}
.wse_c01157{word-spacing:-0.728640px;}
.ws9_c01157{word-spacing:-0.540000px;}
.ws13_c01157{word-spacing:-0.216000px;}
.ws8_c01157{word-spacing:-0.170640px;}
.ws12_c01157{word-spacing:-0.132480px;}
.ws7_c01157{word-spacing:0.000000px;}
.ws1a_c01157{word-spacing:0.054000px;}
.wsa_c01157{word-spacing:0.270000px;}
.wsc_c01157{word-spacing:0.378000px;}
.wsb_c01157{word-spacing:0.540000px;}
.ws10_c01157{word-spacing:0.728640px;}
.ws1e_c01157{word-spacing:2.185920px;}
.ws1b_c01157{word-spacing:3.576960px;}
.wsd_c01157{word-spacing:4.901760px;}
.ws1c_c01157{word-spacing:5.431680px;}
.ws1d_c01157{word-spacing:6.359040px;}
._1_c01157{margin-left:-2.553912px;}
._0_c01157{margin-left:-1.245672px;}
._2_c01157{width:1.204200px;}
._3_c01157{width:3.553200px;}
._4_c01157{width:6.521112px;}
.fc0_c01157{color:rgb(0,0,0);}
.fs1_c01157{font-size:12.240000px;}
.fs6_c01157{font-size:48.240000px;}
.fs2_c01157{font-size:54.000000px;}
.fs0_c01157{font-size:56.880000px;}
.fs5_c01157{font-size:59.760000px;}
.fs3_c01157{font-size:66.240000px;}
.fs4_c01157{font-size:84.240000px;}
.y0_c01157{bottom:0.000000px;}
.y2_c01157{bottom:7.920000px;}
.y4_c01157{bottom:57.420000px;}
.y2f_c01157{bottom:102.967920px;}
.y2e_c01157{bottom:122.045040px;}
.y2d_c01157{bottom:140.940000px;}
.y2c_c01157{bottom:168.115500px;}
.y2b_c01157{bottom:183.775500px;}
.y2a_c01157{bottom:199.260000px;}
.y29_c01157{bottom:214.380000px;}
.y28_c01157{bottom:228.874140px;}
.y27_c01157{bottom:245.980440px;}
.y26_c01157{bottom:263.266020px;}
.y25_c01157{bottom:280.551600px;}
.y24_c01157{bottom:297.837180px;}
.y23_c01157{bottom:315.122760px;}
.y22_c01157{bottom:332.408340px;}
.y21_c01157{bottom:349.514640px;}
.y20_c01157{bottom:366.800220px;}
.y1f_c01157{bottom:384.085800px;}
.y1e_c01157{bottom:401.371380px;}
.y1d_c01157{bottom:418.656960px;}
.y1c_c01157{bottom:435.763260px;}
.y1b_c01157{bottom:453.048840px;}
.y1a_c01157{bottom:470.334420px;}
.y19_c01157{bottom:487.620000px;}
.y18_c01157{bottom:514.267200px;}
.y17_c01157{bottom:542.352960px;}
.y16_c01157{bottom:561.247920px;}
.y15_c01157{bottom:580.142880px;}
.y14_c01157{bottom:599.220000px;}
.y13_c01157{bottom:626.400000px;}
.y12_c01157{bottom:652.680000px;}
.y11_c01157{bottom:684.880560px;}
.y10_c01157{bottom:712.784160px;}
.yf_c01157{bottom:740.687760px;}
.ye_c01157{bottom:768.773520px;}
.yd_c01157{bottom:796.677120px;}
.yc_c01157{bottom:824.762880px;}
.yb_c01157{bottom:852.666480px;}
.ya_c01157{bottom:880.570080px;}
.y9_c01157{bottom:908.655840px;}
.y8_c01157{bottom:927.550800px;}
.y7_c01157{bottom:946.627920px;}
.y6_c01157{bottom:965.522880px;}
.y5_c01157{bottom:984.600000px;}
.y3_c01157{bottom:1006.200000px;}
.y1_c01157{bottom:1009.620000px;}
.h4_c01157{height:8.504648px;}
.h1_c01157{height:20.878500px;}
.h9_c01157{height:33.518320px;}
.h5_c01157{height:37.520508px;}
.h3_c01157{height:39.493828px;}
.h2_c01157{height:39.521602px;}
.h8_c01157{height:41.522695px;}
.h6_c01157{height:46.025156px;}
.h7_c01157{height:58.531992px;}
.h0_c01157{height:1084.500000px;}
.w2_c01157{width:48.600000px;}
.w3_c01157{width:567.900000px;}
.w1_c01157{width:744.000000px;}
.w0_c01157{width:744.300000px;}
.x0_c01157{left:0.000000px;}
.x2_c01157{left:8.100000px;}
.x4_c01157{left:40.860000px;}
.x1_c01157{left:63.900000px;}
.x8_c01157{left:73.620000px;}
.x7_c01157{left:79.560000px;}
.x3_c01157{left:112.500000px;}
.x6_c01157{left:221.400000px;}
.x9_c01157{left:224.455500px;}
.x5_c01157{left:433.620000px;}
@media print{
.v0_c01157{vertical-align:0.000000pt;}
.lsc_c01157{letter-spacing:-0.765440pt;}
.ls7_c01157{letter-spacing:-0.647680pt;}
.ls5_c01157{letter-spacing:-0.336000pt;}
.ls9_c01157{letter-spacing:-0.235520pt;}
.lsa_c01157{letter-spacing:-0.192000pt;}
.ls6_c01157{letter-spacing:-0.096000pt;}
.ls4_c01157{letter-spacing:0.000000pt;}
.lsb_c01157{letter-spacing:0.096000pt;}
.ls2_c01157{letter-spacing:0.117760pt;}
.ls3_c01157{letter-spacing:0.144000pt;}
.ls8_c01157{letter-spacing:0.294400pt;}
.ls0_c01157{letter-spacing:0.303360pt;}
.ls1_c01157{letter-spacing:0.336000pt;}
.ws4_c01157{word-spacing:-14.720000pt;}
.ws2_c01157{word-spacing:-14.072320pt;}
.ws6_c01157{word-spacing:-13.954560pt;}
.ws0_c01157{word-spacing:-12.943360pt;}
.ws3_c01157{word-spacing:-12.336000pt;}
.ws5_c01157{word-spacing:-11.808000pt;}
.ws1_c01157{word-spacing:-11.664000pt;}
.ws15_c01157{word-spacing:-2.531840pt;}
.ws14_c01157{word-spacing:-2.237440pt;}
.ws16_c01157{word-spacing:-2.060800pt;}
.ws17_c01157{word-spacing:-1.943040pt;}
.ws18_c01157{word-spacing:-1.707520pt;}
.wsf_c01157{word-spacing:-1.295360pt;}
.ws19_c01157{word-spacing:-0.816000pt;}
.ws11_c01157{word-spacing:-0.765440pt;}
.wse_c01157{word-spacing:-0.647680pt;}
.ws9_c01157{word-spacing:-0.480000pt;}
.ws13_c01157{word-spacing:-0.192000pt;}
.ws8_c01157{word-spacing:-0.151680pt;}
.ws12_c01157{word-spacing:-0.117760pt;}
.ws7_c01157{word-spacing:0.000000pt;}
.ws1a_c01157{word-spacing:0.048000pt;}
.wsa_c01157{word-spacing:0.240000pt;}
.wsc_c01157{word-spacing:0.336000pt;}
.wsb_c01157{word-spacing:0.480000pt;}
.ws10_c01157{word-spacing:0.647680pt;}
.ws1e_c01157{word-spacing:1.943040pt;}
.ws1b_c01157{word-spacing:3.179520pt;}
.wsd_c01157{word-spacing:4.357120pt;}
.ws1c_c01157{word-spacing:4.828160pt;}
.ws1d_c01157{word-spacing:5.652480pt;}
._1_c01157{margin-left:-2.270144pt;}
._0_c01157{margin-left:-1.107264pt;}
._2_c01157{width:1.070400pt;}
._3_c01157{width:3.158400pt;}
._4_c01157{width:5.796544pt;}
.fs1_c01157{font-size:10.880000pt;}
.fs6_c01157{font-size:42.880000pt;}
.fs2_c01157{font-size:48.000000pt;}
.fs0_c01157{font-size:50.560000pt;}
.fs5_c01157{font-size:53.120000pt;}
.fs3_c01157{font-size:58.880000pt;}
.fs4_c01157{font-size:74.880000pt;}
.y0_c01157{bottom:0.000000pt;}
.y2_c01157{bottom:7.040000pt;}
.y4_c01157{bottom:51.040000pt;}
.y2f_c01157{bottom:91.527040pt;}
.y2e_c01157{bottom:108.484480pt;}
.y2d_c01157{bottom:125.280000pt;}
.y2c_c01157{bottom:149.436000pt;}
.y2b_c01157{bottom:163.356000pt;}
.y2a_c01157{bottom:177.120000pt;}
.y29_c01157{bottom:190.560000pt;}
.y28_c01157{bottom:203.443680pt;}
.y27_c01157{bottom:218.649280pt;}
.y26_c01157{bottom:234.014240pt;}
.y25_c01157{bottom:249.379200pt;}
.y24_c01157{bottom:264.744160pt;}
.y23_c01157{bottom:280.109120pt;}
.y22_c01157{bottom:295.474080pt;}
.y21_c01157{bottom:310.679680pt;}
.y20_c01157{bottom:326.044640pt;}
.y1f_c01157{bottom:341.409600pt;}
.y1e_c01157{bottom:356.774560pt;}
.y1d_c01157{bottom:372.139520pt;}
.y1c_c01157{bottom:387.345120pt;}
.y1b_c01157{bottom:402.710080pt;}
.y1a_c01157{bottom:418.075040pt;}
.y19_c01157{bottom:433.440000pt;}
.y18_c01157{bottom:457.126400pt;}
.y17_c01157{bottom:482.091520pt;}
.y16_c01157{bottom:498.887040pt;}
.y15_c01157{bottom:515.682560pt;}
.y14_c01157{bottom:532.640000pt;}
.y13_c01157{bottom:556.800000pt;}
.y12_c01157{bottom:580.160000pt;}
.y11_c01157{bottom:608.782720pt;}
.y10_c01157{bottom:633.585920pt;}
.yf_c01157{bottom:658.389120pt;}
.ye_c01157{bottom:683.354240pt;}
.yd_c01157{bottom:708.157440pt;}
.yc_c01157{bottom:733.122560pt;}
.yb_c01157{bottom:757.925760pt;}
.ya_c01157{bottom:782.728960pt;}
.y9_c01157{bottom:807.694080pt;}
.y8_c01157{bottom:824.489600pt;}
.y7_c01157{bottom:841.447040pt;}
.y6_c01157{bottom:858.242560pt;}
.y5_c01157{bottom:875.200000pt;}
.y3_c01157{bottom:894.400000pt;}
.y1_c01157{bottom:897.440000pt;}
.h4_c01157{height:7.559687pt;}
.h1_c01157{height:18.558667pt;}
.h9_c01157{height:29.794062pt;}
.h5_c01157{height:33.351562pt;}
.h3_c01157{height:35.105625pt;}
.h2_c01157{height:35.130313pt;}
.h8_c01157{height:36.909063pt;}
.h6_c01157{height:40.911250pt;}
.h7_c01157{height:52.028437pt;}
.h0_c01157{height:964.000000pt;}
.w2_c01157{width:43.200000pt;}
.w3_c01157{width:504.800000pt;}
.w1_c01157{width:661.333333pt;}
.w0_c01157{width:661.600000pt;}
.x0_c01157{left:0.000000pt;}
.x2_c01157{left:7.200000pt;}
.x4_c01157{left:36.320000pt;}
.x1_c01157{left:56.800000pt;}
.x8_c01157{left:65.440000pt;}
.x7_c01157{left:70.720000pt;}
.x3_c01157{left:100.000000pt;}
.x6_c01157{left:196.800000pt;}
.x9_c01157{left:199.516000pt;}
.x5_c01157{left:385.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_790362a5fd3405e92e58811e.woff2')format("woff");}.ff1_c01158{font-family:ff1_c01158;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01158;src:url('chunks/assets/font_492b14390e16399540f679ab.woff2')format("woff");}.ff2_c01158{font-family:ff2_c01158;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01158{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01158{vertical-align:0.000000px;}
.ls8_c01158{letter-spacing:-0.861120px;}
.lsb_c01158{letter-spacing:-0.728640px;}
.lsa_c01158{letter-spacing:-0.596160px;}
.lsd_c01158{letter-spacing:-0.594000px;}
.ls6_c01158{letter-spacing:-0.378000px;}
.lsc_c01158{letter-spacing:-0.216000px;}
.ls7_c01158{letter-spacing:-0.108000px;}
.ls4_c01158{letter-spacing:-0.056880px;}
.ls5_c01158{letter-spacing:0.000000px;}
.lse_c01158{letter-spacing:0.108000px;}
.ls2_c01158{letter-spacing:0.132480px;}
.ls3_c01158{letter-spacing:0.180000px;}
.ls9_c01158{letter-spacing:0.331200px;}
.ls0_c01158{letter-spacing:0.341280px;}
.ls1_c01158{letter-spacing:0.378000px;}
.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;}
}
.ws2_c01158{word-spacing:-15.698880px;}
.ws0_c01158{word-spacing:-14.561280px;}
.ws4_c01158{word-spacing:-13.878000px;}
.ws1_c01158{word-spacing:-13.122000px;}
.wsc_c01158{word-spacing:-3.709440px;}
.wsd_c01158{word-spacing:-3.576960px;}
.wsf_c01158{word-spacing:-2.848320px;}
.ws12_c01158{word-spacing:-2.119680px;}
.ws13_c01158{word-spacing:-0.861120px;}
.ws7_c01158{word-spacing:-0.540000px;}
.ws10_c01158{word-spacing:-0.331200px;}
.ws16_c01158{word-spacing:-0.324000px;}
.ws15_c01158{word-spacing:-0.216000px;}
.wsb_c01158{word-spacing:-0.132480px;}
.ws6_c01158{word-spacing:0.000000px;}
.ws18_c01158{word-spacing:0.054000px;}
.ws5_c01158{word-spacing:0.227520px;}
.ws8_c01158{word-spacing:0.270000px;}
.wsa_c01158{word-spacing:0.378000px;}
.ws9_c01158{word-spacing:0.540000px;}
.ws17_c01158{word-spacing:0.594000px;}
.ws11_c01158{word-spacing:0.596160px;}
.ws14_c01158{word-spacing:3.576960px;}
.wse_c01158{word-spacing:14.374080px;}
.ws3_c01158{word-spacing:30.934080px;}
._2_c01158{margin-left:-4.159872px;}
._1_c01158{margin-left:-1.728864px;}
._0_c01158{width:1.109160px;}
.fc0_c01158{color:rgb(0,0,0);}
.fs1_c01158{font-size:54.000000px;}
.fs0_c01158{font-size:56.880000px;}
.fs2_c01158{font-size:66.240000px;}
.y0_c01158{bottom:0.000000px;}
.y2_c01158{bottom:7.920000px;}
.y3_c01158{bottom:57.420000px;}
.y17_c01158{bottom:73.440000px;}
.y10_c01158{bottom:85.500000px;}
.y16_c01158{bottom:91.440000px;}
.y1b_c01158{bottom:102.595500px;}
.y1a_c01158{bottom:118.255500px;}
.y19_c01158{bottom:133.740000px;}
.y18_c01158{bottom:149.400000px;}
.yf_c01158{bottom:417.780000px;}
.y15_c01158{bottom:425.691000px;}
.y14_c01158{bottom:441.175500px;}
.y13_c01158{bottom:456.655500px;}
.y12_c01158{bottom:472.315500px;}
.y11_c01158{bottom:487.800000px;}
.ye_c01158{bottom:794.739600px;}
.yd_c01158{bottom:813.816720px;}
.yc_c01158{bottom:832.711680px;}
.yb_c01158{bottom:851.788800px;}
.ya_c01158{bottom:870.683760px;}
.y9_c01158{bottom:889.578720px;}
.y8_c01158{bottom:908.655840px;}
.y7_c01158{bottom:927.550800px;}
.y6_c01158{bottom:946.627920px;}
.y5_c01158{bottom:965.522880px;}
.y4_c01158{bottom:984.600000px;}
.y1_c01158{bottom:1009.620000px;}
.h1_c01158{height:20.878500px;}
.h4_c01158{height:37.520508px;}
.h7_c01158{height:37.538508px;}
.h2_c01158{height:39.493828px;}
.h3_c01158{height:39.521602px;}
.h5_c01158{height:46.025156px;}
.h8_c01158{height:85.680000px;}
.h6_c01158{height:97.740000px;}
.h0_c01158{height:1084.500000px;}
.w3_c01158{width:47.520000px;}
.w5_c01158{width:152.820000px;}
.w4_c01158{width:350.818500px;}
.w2_c01158{width:568.980000px;}
.w1_c01158{width:744.000000px;}
.w0_c01158{width:744.300000px;}
.x0_c01158{left:0.000000px;}
.x2_c01158{left:8.100000px;}
.xd_c01158{left:14.760000px;}
.x4_c01158{left:18.000000px;}
.x1_c01158{left:63.900000px;}
.x5_c01158{left:93.608640px;}
.x6_c01158{left:307.080000px;}
.xa_c01158{left:325.246500px;}
.x7_c01158{left:326.700000px;}
.xb_c01158{left:327.771000px;}
.x8_c01158{left:331.560000px;}
.x9_c01158{left:332.640000px;}
.xc_c01158{left:519.300000px;}
.xe_c01158{left:534.600000px;}
.xf_c01158{left:537.300000px;}
.x10_c01158{left:545.764500px;}
.x3_c01158{left:632.880000px;}
@media print{
.v0_c01158{vertical-align:0.000000pt;}
.ls8_c01158{letter-spacing:-0.765440pt;}
.lsb_c01158{letter-spacing:-0.647680pt;}
.lsa_c01158{letter-spacing:-0.529920pt;}
.lsd_c01158{letter-spacing:-0.528000pt;}
.ls6_c01158{letter-spacing:-0.336000pt;}
.lsc_c01158{letter-spacing:-0.192000pt;}
.ls7_c01158{letter-spacing:-0.096000pt;}
.ls4_c01158{letter-spacing:-0.050560pt;}
.ls5_c01158{letter-spacing:0.000000pt;}
.lse_c01158{letter-spacing:0.096000pt;}
.ls2_c01158{letter-spacing:0.117760pt;}
.ls3_c01158{letter-spacing:0.160000pt;}
.ls9_c01158{letter-spacing:0.294400pt;}
.ls0_c01158{letter-spacing:0.303360pt;}
.ls1_c01158{letter-spacing:0.336000pt;}
.ws2_c01158{word-spacing:-13.954560pt;}
.ws0_c01158{word-spacing:-12.943360pt;}
.ws4_c01158{word-spacing:-12.336000pt;}
.ws1_c01158{word-spacing:-11.664000pt;}
.wsc_c01158{word-spacing:-3.297280pt;}
.wsd_c01158{word-spacing:-3.179520pt;}
.wsf_c01158{word-spacing:-2.531840pt;}
.ws12_c01158{word-spacing:-1.884160pt;}
.ws13_c01158{word-spacing:-0.765440pt;}
.ws7_c01158{word-spacing:-0.480000pt;}
.ws10_c01158{word-spacing:-0.294400pt;}
.ws16_c01158{word-spacing:-0.288000pt;}
.ws15_c01158{word-spacing:-0.192000pt;}
.wsb_c01158{word-spacing:-0.117760pt;}
.ws6_c01158{word-spacing:0.000000pt;}
.ws18_c01158{word-spacing:0.048000pt;}
.ws5_c01158{word-spacing:0.202240pt;}
.ws8_c01158{word-spacing:0.240000pt;}
.wsa_c01158{word-spacing:0.336000pt;}
.ws9_c01158{word-spacing:0.480000pt;}
.ws17_c01158{word-spacing:0.528000pt;}
.ws11_c01158{word-spacing:0.529920pt;}
.ws14_c01158{word-spacing:3.179520pt;}
.wse_c01158{word-spacing:12.776960pt;}
.ws3_c01158{word-spacing:27.496960pt;}
._2_c01158{margin-left:-3.697664pt;}
._1_c01158{margin-left:-1.536768pt;}
._0_c01158{width:0.985920pt;}
.fs1_c01158{font-size:48.000000pt;}
.fs0_c01158{font-size:50.560000pt;}
.fs2_c01158{font-size:58.880000pt;}
.y0_c01158{bottom:0.000000pt;}
.y2_c01158{bottom:7.040000pt;}
.y3_c01158{bottom:51.040000pt;}
.y17_c01158{bottom:65.280000pt;}
.y10_c01158{bottom:76.000000pt;}
.y16_c01158{bottom:81.280000pt;}
.y1b_c01158{bottom:91.196000pt;}
.y1a_c01158{bottom:105.116000pt;}
.y19_c01158{bottom:118.880000pt;}
.y18_c01158{bottom:132.800000pt;}
.yf_c01158{bottom:371.360000pt;}
.y15_c01158{bottom:378.392000pt;}
.y14_c01158{bottom:392.156000pt;}
.y13_c01158{bottom:405.916000pt;}
.y12_c01158{bottom:419.836000pt;}
.y11_c01158{bottom:433.600000pt;}
.ye_c01158{bottom:706.435200pt;}
.yd_c01158{bottom:723.392640pt;}
.yc_c01158{bottom:740.188160pt;}
.yb_c01158{bottom:757.145600pt;}
.ya_c01158{bottom:773.941120pt;}
.y9_c01158{bottom:790.736640pt;}
.y8_c01158{bottom:807.694080pt;}
.y7_c01158{bottom:824.489600pt;}
.y6_c01158{bottom:841.447040pt;}
.y5_c01158{bottom:858.242560pt;}
.y4_c01158{bottom:875.200000pt;}
.y1_c01158{bottom:897.440000pt;}
.h1_c01158{height:18.558667pt;}
.h4_c01158{height:33.351562pt;}
.h7_c01158{height:33.367563pt;}
.h2_c01158{height:35.105625pt;}
.h3_c01158{height:35.130313pt;}
.h5_c01158{height:40.911250pt;}
.h8_c01158{height:76.160000pt;}
.h6_c01158{height:86.880000pt;}
.h0_c01158{height:964.000000pt;}
.w3_c01158{width:42.240000pt;}
.w5_c01158{width:135.840000pt;}
.w4_c01158{width:311.838667pt;}
.w2_c01158{width:505.760000pt;}
.w1_c01158{width:661.333333pt;}
.w0_c01158{width:661.600000pt;}
.x0_c01158{left:0.000000pt;}
.x2_c01158{left:7.200000pt;}
.xd_c01158{left:13.120000pt;}
.x4_c01158{left:16.000000pt;}
.x1_c01158{left:56.800000pt;}
.x5_c01158{left:83.207680pt;}
.x6_c01158{left:272.960000pt;}
.xa_c01158{left:289.108000pt;}
.x7_c01158{left:290.400000pt;}
.xb_c01158{left:291.352000pt;}
.x8_c01158{left:294.720000pt;}
.x9_c01158{left:295.680000pt;}
.xc_c01158{left:461.600000pt;}
.xe_c01158{left:475.200000pt;}
.xf_c01158{left:477.600000pt;}
.x10_c01158{left:485.124000pt;}
.x3_c01158{left:562.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_31ade513b49ab8537a9c69c8.woff2')format("woff");}.ff1_c01159{font-family:ff1_c01159;line-height:0.910645;font-style:normal;font-weight:normal;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_37c41ca509c186886cd912de.woff2')format("woff");}.ff2_c01159{font-family:ff2_c01159;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01159;src:url('chunks/assets/font_f9a237306a28dc6ba6641807.woff2')format("woff");}.ff3_c01159{font-family:ff3_c01159;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01159;src:url('chunks/assets/font_d7f5db4e549cbd0bd8b8f8d8.woff2')format("woff");}.ff4_c01159{font-family:ff4_c01159;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c01159{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01159{vertical-align:0.000000px;}
.ls7_c01159{letter-spacing:-1.457280px;}
.ls6_c01159{letter-spacing:-0.728640px;}
.ls3_c01159{letter-spacing:-0.378000px;}
.ls9_c01159{letter-spacing:-0.216000px;}
.lsa_c01159{letter-spacing:-0.144000px;}
.ls5_c01159{letter-spacing:-0.132480px;}
.ls4_c01159{letter-spacing:-0.108000px;}
.ls2_c01159{letter-spacing:0.000000px;}
.ls8_c01159{letter-spacing:0.132480px;}
.ls0_c01159{letter-spacing:0.341280px;}
.ls1_c01159{letter-spacing:0.378000px;}
.sc__c01159{text-shadow:none;}
.sc1_c01159{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1_c01159{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01159{word-spacing:-16.427520px;}
.ws2_c01159{word-spacing:-15.831360px;}
.ws0_c01159{word-spacing:-14.561280px;}
.ws4_c01159{word-spacing:-13.878000px;}
.ws1_c01159{word-spacing:-13.122000px;}
.wsd_c01159{word-spacing:-3.576960px;}
.wsc_c01159{word-spacing:-2.185920px;}
.ws7_c01159{word-spacing:-0.540000px;}
.ws12_c01159{word-spacing:-0.216000px;}
.ws6_c01159{word-spacing:-0.170640px;}
.ws11_c01159{word-spacing:-0.132480px;}
.ws5_c01159{word-spacing:0.000000px;}
.wsb_c01159{word-spacing:0.132480px;}
.ws14_c01159{word-spacing:0.144000px;}
.ws13_c01159{word-spacing:0.216000px;}
.ws8_c01159{word-spacing:0.270000px;}
.wsa_c01159{word-spacing:0.378000px;}
.ws9_c01159{word-spacing:0.540000px;}
.wsf_c01159{word-spacing:1.457280px;}
.ws10_c01159{word-spacing:3.576960px;}
.wse_c01159{word-spacing:4.305600px;}
._1_c01159{margin-left:-2.553912px;}
._0_c01159{margin-left:-1.245672px;}
._2_c01159{width:1.204200px;}
._4_c01159{width:3.775680px;}
._3_c01159{width:5.022360px;}
.fc0_c01159{color:rgb(0,0,0);}
.fs1_c01159{font-size:12.240000px;}
.fs4_c01159{font-size:30.240000px;}
.fs2_c01159{font-size:54.000000px;}
.fs0_c01159{font-size:56.880000px;}
.fs5_c01159{font-size:59.760000px;}
.fs3_c01159{font-size:66.240000px;}
.fs6_c01159{font-size:72.000000px;}
.y0_c01159{bottom:0.000000px;}
.y2_c01159{bottom:7.920000px;}
.y4_c01159{bottom:57.420000px;}
.y15_c01159{bottom:91.611000px;}
.y14_c01159{bottom:107.095500px;}
.y13_c01159{bottom:131.760000px;}
.y12_c01159{bottom:153.000000px;}
.y11_c01159{bottom:462.960000px;}
.y10_c01159{bottom:509.931000px;}
.yf_c01159{bottom:525.415500px;}
.ye_c01159{bottom:540.900000px;}
.yd_c01159{bottom:556.560000px;}
.yc_c01159{bottom:577.800000px;}
.yb_c01159{bottom:869.760000px;}
.ya_c01159{bottom:880.574400px;}
.y9_c01159{bottom:899.651520px;}
.y8_c01159{bottom:918.546480px;}
.y7_c01159{bottom:937.623600px;}
.y6_c01159{bottom:956.518560px;}
.y5_c01159{bottom:984.240000px;}
.y3_c01159{bottom:1006.200000px;}
.y1_c01159{bottom:1009.620000px;}
.h4_c01159{height:8.504648px;}
.h1_c01159{height:20.878500px;}
.h8_c01159{height:21.011484px;}
.h5_c01159{height:37.520508px;}
.h3_c01159{height:39.493828px;}
.h2_c01159{height:39.521602px;}
.h9_c01159{height:41.522695px;}
.h6_c01159{height:45.345937px;}
.h7_c01159{height:46.025156px;}
.ha_c01159{height:49.289062px;}
.h0_c01159{height:1084.500000px;}
.w2_c01159{width:48.600000px;}
.w3_c01159{width:567.900000px;}
.w1_c01159{width:744.000000px;}
.w0_c01159{width:744.300000px;}
.x0_c01159{left:0.000000px;}
.x2_c01159{left:8.100000px;}
.x4_c01159{left:40.860000px;}
.x1_c01159{left:63.900000px;}
.xa_c01159{left:66.415500px;}
.x8_c01159{left:76.500000px;}
.x9_c01159{left:90.540000px;}
.x6_c01159{left:93.600000px;}
.x3_c01159{left:112.500000px;}
.xc_c01159{left:130.320000px;}
.xb_c01159{left:178.020000px;}
.xe_c01159{left:200.880000px;}
.x5_c01159{left:433.620000px;}
.x7_c01159{left:621.000000px;}
.xd_c01159{left:680.400000px;}
@media print{
.v0_c01159{vertical-align:0.000000pt;}
.ls7_c01159{letter-spacing:-1.295360pt;}
.ls6_c01159{letter-spacing:-0.647680pt;}
.ls3_c01159{letter-spacing:-0.336000pt;}
.ls9_c01159{letter-spacing:-0.192000pt;}
.lsa_c01159{letter-spacing:-0.128000pt;}
.ls5_c01159{letter-spacing:-0.117760pt;}
.ls4_c01159{letter-spacing:-0.096000pt;}
.ls2_c01159{letter-spacing:0.000000pt;}
.ls8_c01159{letter-spacing:0.117760pt;}
.ls0_c01159{letter-spacing:0.303360pt;}
.ls1_c01159{letter-spacing:0.336000pt;}
.ws3_c01159{word-spacing:-14.602240pt;}
.ws2_c01159{word-spacing:-14.072320pt;}
.ws0_c01159{word-spacing:-12.943360pt;}
.ws4_c01159{word-spacing:-12.336000pt;}
.ws1_c01159{word-spacing:-11.664000pt;}
.wsd_c01159{word-spacing:-3.179520pt;}
.wsc_c01159{word-spacing:-1.943040pt;}
.ws7_c01159{word-spacing:-0.480000pt;}
.ws12_c01159{word-spacing:-0.192000pt;}
.ws6_c01159{word-spacing:-0.151680pt;}
.ws11_c01159{word-spacing:-0.117760pt;}
.ws5_c01159{word-spacing:0.000000pt;}
.wsb_c01159{word-spacing:0.117760pt;}
.ws14_c01159{word-spacing:0.128000pt;}
.ws13_c01159{word-spacing:0.192000pt;}
.ws8_c01159{word-spacing:0.240000pt;}
.wsa_c01159{word-spacing:0.336000pt;}
.ws9_c01159{word-spacing:0.480000pt;}
.wsf_c01159{word-spacing:1.295360pt;}
.ws10_c01159{word-spacing:3.179520pt;}
.wse_c01159{word-spacing:3.827200pt;}
._1_c01159{margin-left:-2.270144pt;}
._0_c01159{margin-left:-1.107264pt;}
._2_c01159{width:1.070400pt;}
._4_c01159{width:3.356160pt;}
._3_c01159{width:4.464320pt;}
.fs1_c01159{font-size:10.880000pt;}
.fs4_c01159{font-size:26.880000pt;}
.fs2_c01159{font-size:48.000000pt;}
.fs0_c01159{font-size:50.560000pt;}
.fs5_c01159{font-size:53.120000pt;}
.fs3_c01159{font-size:58.880000pt;}
.fs6_c01159{font-size:64.000000pt;}
.y0_c01159{bottom:0.000000pt;}
.y2_c01159{bottom:7.040000pt;}
.y4_c01159{bottom:51.040000pt;}
.y15_c01159{bottom:81.432000pt;}
.y14_c01159{bottom:95.196000pt;}
.y13_c01159{bottom:117.120000pt;}
.y12_c01159{bottom:136.000000pt;}
.y11_c01159{bottom:411.520000pt;}
.y10_c01159{bottom:453.272000pt;}
.yf_c01159{bottom:467.036000pt;}
.ye_c01159{bottom:480.800000pt;}
.yd_c01159{bottom:494.720000pt;}
.yc_c01159{bottom:513.600000pt;}
.yb_c01159{bottom:773.120000pt;}
.ya_c01159{bottom:782.732800pt;}
.y9_c01159{bottom:799.690240pt;}
.y8_c01159{bottom:816.485760pt;}
.y7_c01159{bottom:833.443200pt;}
.y6_c01159{bottom:850.238720pt;}
.y5_c01159{bottom:874.880000pt;}
.y3_c01159{bottom:894.400000pt;}
.y1_c01159{bottom:897.440000pt;}
.h4_c01159{height:7.559687pt;}
.h1_c01159{height:18.558667pt;}
.h8_c01159{height:18.676875pt;}
.h5_c01159{height:33.351562pt;}
.h3_c01159{height:35.105625pt;}
.h2_c01159{height:35.130313pt;}
.h9_c01159{height:36.909063pt;}
.h6_c01159{height:40.307500pt;}
.h7_c01159{height:40.911250pt;}
.ha_c01159{height:43.812500pt;}
.h0_c01159{height:964.000000pt;}
.w2_c01159{width:43.200000pt;}
.w3_c01159{width:504.800000pt;}
.w1_c01159{width:661.333333pt;}
.w0_c01159{width:661.600000pt;}
.x0_c01159{left:0.000000pt;}
.x2_c01159{left:7.200000pt;}
.x4_c01159{left:36.320000pt;}
.x1_c01159{left:56.800000pt;}
.xa_c01159{left:59.036000pt;}
.x8_c01159{left:68.000000pt;}
.x9_c01159{left:80.480000pt;}
.x6_c01159{left:83.200000pt;}
.x3_c01159{left:100.000000pt;}
.xc_c01159{left:115.840000pt;}
.xb_c01159{left:158.240000pt;}
.xe_c01159{left:178.560000pt;}
.x5_c01159{left:385.440000pt;}
.x7_c01159{left:552.000000pt;}
.xd_c01159{left:604.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_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_790362a5fd3405e92e58811e.woff2')format("woff");}.ff1_c01160{font-family:ff1_c01160;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01160;src:url('chunks/assets/font_16a203af97423485f8952037.woff2')format("woff");}.ff2_c01160{font-family:ff2_c01160;line-height:0.910645;font-style:normal;font-weight:normal;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_cbf9cf3175e3e447458b7386.woff2')format("woff");}.ff3_c01160{font-family:ff3_c01160;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c01160{letter-spacing:-0.861120px;}
.lsc_c01160{letter-spacing:-0.728640px;}
.ls8_c01160{letter-spacing:-0.397440px;}
.ls5_c01160{letter-spacing:-0.378000px;}
.ls7_c01160{letter-spacing:-0.331200px;}
.lsa_c01160{letter-spacing:-0.216000px;}
.ls6_c01160{letter-spacing:-0.108000px;}
.ls3_c01160{letter-spacing:-0.056880px;}
.ls4_c01160{letter-spacing:0.000000px;}
.lsb_c01160{letter-spacing:0.132480px;}
.lsd_c01160{letter-spacing:0.331200px;}
.ls0_c01160{letter-spacing:0.341280px;}
.ls1_c01160{letter-spacing:0.378000px;}
.ls2_c01160{letter-spacing:3.576960px;}
.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;}
}
.ws4_c01160{word-spacing:-15.831360px;}
.ws2_c01160{word-spacing:-15.698880px;}
.ws0_c01160{word-spacing:-14.561280px;}
.ws3_c01160{word-spacing:-13.878000px;}
.ws1_c01160{word-spacing:-13.122000px;}
.ws11_c01160{word-spacing:-2.318400px;}
.wse_c01160{word-spacing:-1.589760px;}
.wsf_c01160{word-spacing:-0.861120px;}
.ws10_c01160{word-spacing:-0.728640px;}
.ws7_c01160{word-spacing:-0.540000px;}
.ws16_c01160{word-spacing:-0.331200px;}
.ws17_c01160{word-spacing:-0.216000px;}
.ws6_c01160{word-spacing:0.000000px;}
.ws5_c01160{word-spacing:0.227520px;}
.ws8_c01160{word-spacing:0.270000px;}
.wsb_c01160{word-spacing:0.331200px;}
.wsa_c01160{word-spacing:0.378000px;}
.ws9_c01160{word-spacing:0.540000px;}
.ws13_c01160{word-spacing:2.782080px;}
.ws12_c01160{word-spacing:2.914560px;}
.wsd_c01160{word-spacing:3.576960px;}
.wsc_c01160{word-spacing:3.974400px;}
.ws15_c01160{word-spacing:5.630400px;}
.ws14_c01160{word-spacing:5.762880px;}
._3_c01160{margin-left:-2.219760px;}
._1_c01160{margin-left:-1.062072px;}
._0_c01160{width:1.109160px;}
._2_c01160{width:2.818152px;}
.fc0_c01160{color:rgb(0,0,0);}
.fs1_c01160{font-size:12.240000px;}
.fs5_c01160{font-size:23.760000px;}
.fs6_c01160{font-size:30.240000px;}
.fs4_c01160{font-size:36.000000px;}
.fs2_c01160{font-size:54.000000px;}
.fs0_c01160{font-size:56.880000px;}
.fs7_c01160{font-size:59.760000px;}
.fs3_c01160{font-size:66.240000px;}
.y0_c01160{bottom:0.000000px;}
.y2_c01160{bottom:7.920000px;}
.y4_c01160{bottom:57.420000px;}
.y1f_c01160{bottom:89.100000px;}
.y1e_c01160{bottom:106.006500px;}
.y1d_c01160{bottom:136.246500px;}
.y1c_c01160{bottom:166.851000px;}
.y1b_c01160{bottom:197.455500px;}
.y1a_c01160{bottom:227.871000px;}
.y19_c01160{bottom:258.475500px;}
.y18_c01160{bottom:288.891000px;}
.y17_c01160{bottom:319.495500px;}
.y16_c01160{bottom:349.911000px;}
.y15_c01160{bottom:380.515500px;}
.y14_c01160{bottom:411.120000px;}
.y13_c01160{bottom:441.535500px;}
.y12_c01160{bottom:472.140000px;}
.y11_c01160{bottom:486.360000px;}
.y10_c01160{bottom:494.640000px;}
.yf_c01160{bottom:504.015840px;}
.ye_c01160{bottom:523.092960px;}
.yd_c01160{bottom:541.987920px;}
.yc_c01160{bottom:561.065040px;}
.yb_c01160{bottom:579.960000px;}
.ya_c01160{bottom:607.144500px;}
.y9_c01160{bottom:628.380000px;}
.y8_c01160{bottom:925.380000px;}
.y7_c01160{bottom:937.623600px;}
.y6_c01160{bottom:956.518560px;}
.y5_c01160{bottom:984.240000px;}
.y3_c01160{bottom:1006.200000px;}
.y1_c01160{bottom:1009.620000px;}
.h4_c01160{height:8.504648px;}
.h9_c01160{height:16.509023px;}
.h1_c01160{height:20.878500px;}
.ha_c01160{height:21.011484px;}
.h8_c01160{height:25.013672px;}
.h5_c01160{height:37.520508px;}
.h2_c01160{height:39.493828px;}
.h3_c01160{height:39.521602px;}
.hb_c01160{height:41.522695px;}
.h6_c01160{height:45.345937px;}
.h7_c01160{height:46.025156px;}
.h0_c01160{height:1084.500000px;}
.w3_c01160{width:47.520000px;}
.w2_c01160{width:568.980000px;}
.w1_c01160{width:744.000000px;}
.w0_c01160{width:744.300000px;}
.x0_c01160{left:0.000000px;}
.x2_c01160{left:8.100000px;}
.x4_c01160{left:18.000000px;}
.x1_c01160{left:63.900000px;}
.x5_c01160{left:93.600000px;}
.x8_c01160{left:96.120000px;}
.x9_c01160{left:173.515500px;}
.x7_c01160{left:293.944500px;}
.x6_c01160{left:555.480000px;}
.x3_c01160{left:632.880000px;}
@media print{
.v0_c01160{vertical-align:0.000000pt;}
.ls9_c01160{letter-spacing:-0.765440pt;}
.lsc_c01160{letter-spacing:-0.647680pt;}
.ls8_c01160{letter-spacing:-0.353280pt;}
.ls5_c01160{letter-spacing:-0.336000pt;}
.ls7_c01160{letter-spacing:-0.294400pt;}
.lsa_c01160{letter-spacing:-0.192000pt;}
.ls6_c01160{letter-spacing:-0.096000pt;}
.ls3_c01160{letter-spacing:-0.050560pt;}
.ls4_c01160{letter-spacing:0.000000pt;}
.lsb_c01160{letter-spacing:0.117760pt;}
.lsd_c01160{letter-spacing:0.294400pt;}
.ls0_c01160{letter-spacing:0.303360pt;}
.ls1_c01160{letter-spacing:0.336000pt;}
.ls2_c01160{letter-spacing:3.179520pt;}
.ws4_c01160{word-spacing:-14.072320pt;}
.ws2_c01160{word-spacing:-13.954560pt;}
.ws0_c01160{word-spacing:-12.943360pt;}
.ws3_c01160{word-spacing:-12.336000pt;}
.ws1_c01160{word-spacing:-11.664000pt;}
.ws11_c01160{word-spacing:-2.060800pt;}
.wse_c01160{word-spacing:-1.413120pt;}
.wsf_c01160{word-spacing:-0.765440pt;}
.ws10_c01160{word-spacing:-0.647680pt;}
.ws7_c01160{word-spacing:-0.480000pt;}
.ws16_c01160{word-spacing:-0.294400pt;}
.ws17_c01160{word-spacing:-0.192000pt;}
.ws6_c01160{word-spacing:0.000000pt;}
.ws5_c01160{word-spacing:0.202240pt;}
.ws8_c01160{word-spacing:0.240000pt;}
.wsb_c01160{word-spacing:0.294400pt;}
.wsa_c01160{word-spacing:0.336000pt;}
.ws9_c01160{word-spacing:0.480000pt;}
.ws13_c01160{word-spacing:2.472960pt;}
.ws12_c01160{word-spacing:2.590720pt;}
.wsd_c01160{word-spacing:3.179520pt;}
.wsc_c01160{word-spacing:3.532800pt;}
.ws15_c01160{word-spacing:5.004800pt;}
.ws14_c01160{word-spacing:5.122560pt;}
._3_c01160{margin-left:-1.973120pt;}
._1_c01160{margin-left:-0.944064pt;}
._0_c01160{width:0.985920pt;}
._2_c01160{width:2.505024pt;}
.fs1_c01160{font-size:10.880000pt;}
.fs5_c01160{font-size:21.120000pt;}
.fs6_c01160{font-size:26.880000pt;}
.fs4_c01160{font-size:32.000000pt;}
.fs2_c01160{font-size:48.000000pt;}
.fs0_c01160{font-size:50.560000pt;}
.fs7_c01160{font-size:53.120000pt;}
.fs3_c01160{font-size:58.880000pt;}
.y0_c01160{bottom:0.000000pt;}
.y2_c01160{bottom:7.040000pt;}
.y4_c01160{bottom:51.040000pt;}
.y1f_c01160{bottom:79.200000pt;}
.y1e_c01160{bottom:94.228000pt;}
.y1d_c01160{bottom:121.108000pt;}
.y1c_c01160{bottom:148.312000pt;}
.y1b_c01160{bottom:175.516000pt;}
.y1a_c01160{bottom:202.552000pt;}
.y19_c01160{bottom:229.756000pt;}
.y18_c01160{bottom:256.792000pt;}
.y17_c01160{bottom:283.996000pt;}
.y16_c01160{bottom:311.032000pt;}
.y15_c01160{bottom:338.236000pt;}
.y14_c01160{bottom:365.440000pt;}
.y13_c01160{bottom:392.476000pt;}
.y12_c01160{bottom:419.680000pt;}
.y11_c01160{bottom:432.320000pt;}
.y10_c01160{bottom:439.680000pt;}
.yf_c01160{bottom:448.014080pt;}
.ye_c01160{bottom:464.971520pt;}
.yd_c01160{bottom:481.767040pt;}
.yc_c01160{bottom:498.724480pt;}
.yb_c01160{bottom:515.520000pt;}
.ya_c01160{bottom:539.684000pt;}
.y9_c01160{bottom:558.560000pt;}
.y8_c01160{bottom:822.560000pt;}
.y7_c01160{bottom:833.443200pt;}
.y6_c01160{bottom:850.238720pt;}
.y5_c01160{bottom:874.880000pt;}
.y3_c01160{bottom:894.400000pt;}
.y1_c01160{bottom:897.440000pt;}
.h4_c01160{height:7.559687pt;}
.h9_c01160{height:14.674687pt;}
.h1_c01160{height:18.558667pt;}
.ha_c01160{height:18.676875pt;}
.h8_c01160{height:22.234375pt;}
.h5_c01160{height:33.351562pt;}
.h2_c01160{height:35.105625pt;}
.h3_c01160{height:35.130313pt;}
.hb_c01160{height:36.909063pt;}
.h6_c01160{height:40.307500pt;}
.h7_c01160{height:40.911250pt;}
.h0_c01160{height:964.000000pt;}
.w3_c01160{width:42.240000pt;}
.w2_c01160{width:505.760000pt;}
.w1_c01160{width:661.333333pt;}
.w0_c01160{width:661.600000pt;}
.x0_c01160{left:0.000000pt;}
.x2_c01160{left:7.200000pt;}
.x4_c01160{left:16.000000pt;}
.x1_c01160{left:56.800000pt;}
.x5_c01160{left:83.200000pt;}
.x8_c01160{left:85.440000pt;}
.x9_c01160{left:154.236000pt;}
.x7_c01160{left:261.284000pt;}
.x6_c01160{left:493.760000pt;}
.x3_c01160{left:562.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e73e943ee9e4365a2cc61fea.woff2')format("woff");}.ff1_c01161{font-family:ff1_c01161;line-height:0.910645;font-style:normal;font-weight:normal;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_37c41ca509c186886cd912de.woff2')format("woff");}.ff2_c01161{font-family:ff2_c01161;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01161;src:url('chunks/assets/font_a2e89d765d24b8651d6f96f7.woff2')format("woff");}.ff3_c01161{font-family:ff3_c01161;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c01161{letter-spacing:-1.192320px;}
.lsa_c01161{letter-spacing:-0.861120px;}
.lsf_c01161{letter-spacing:-0.810000px;}
.lsb_c01161{letter-spacing:-0.728640px;}
.ls6_c01161{letter-spacing:-0.378000px;}
.lsc_c01161{letter-spacing:-0.216000px;}
.ls7_c01161{letter-spacing:-0.108000px;}
.ls5_c01161{letter-spacing:0.000000px;}
.ls2_c01161{letter-spacing:0.108000px;}
.ls8_c01161{letter-spacing:0.132480px;}
.ls3_c01161{letter-spacing:0.162000px;}
.lse_c01161{letter-spacing:0.216000px;}
.ls9_c01161{letter-spacing:0.331200px;}
.ls0_c01161{letter-spacing:0.341280px;}
.ls1_c01161{letter-spacing:0.378000px;}
.ls4_c01161{letter-spacing:345.762000px;}
.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;}
}
.ws4_c01161{word-spacing:-15.831360px;}
.ws2_c01161{word-spacing:-15.698880px;}
.ws0_c01161{word-spacing:-14.561280px;}
.ws3_c01161{word-spacing:-13.878000px;}
.ws5_c01161{word-spacing:-13.716000px;}
.ws1_c01161{word-spacing:-13.122000px;}
.ws18_c01161{word-spacing:-2.848320px;}
.wsf_c01161{word-spacing:-2.517120px;}
.wse_c01161{word-spacing:-2.318400px;}
.ws10_c01161{word-spacing:-2.185920px;}
.ws11_c01161{word-spacing:-1.059840px;}
.ws1b_c01161{word-spacing:-0.918000px;}
.ws13_c01161{word-spacing:-0.728640px;}
.ws8_c01161{word-spacing:-0.540000px;}
.ws15_c01161{word-spacing:-0.378000px;}
.ws19_c01161{word-spacing:-0.331200px;}
.ws14_c01161{word-spacing:-0.216000px;}
.ws7_c01161{word-spacing:-0.170640px;}
.wsc_c01161{word-spacing:-0.132480px;}
.ws6_c01161{word-spacing:0.000000px;}
.ws16_c01161{word-spacing:0.054000px;}
.ws1a_c01161{word-spacing:0.162000px;}
.ws1c_c01161{word-spacing:0.216000px;}
.ws9_c01161{word-spacing:0.270000px;}
.wsb_c01161{word-spacing:0.378000px;}
.wsa_c01161{word-spacing:0.540000px;}
.ws12_c01161{word-spacing:0.728640px;}
.ws1d_c01161{word-spacing:0.810000px;}
.ws17_c01161{word-spacing:1.192320px;}
.wsd_c01161{word-spacing:5.630400px;}
._1_c01161{margin-left:-2.553912px;}
._0_c01161{margin-left:-1.245672px;}
._2_c01161{width:1.204200px;}
._3_c01161{width:1029.618000px;}
.fc0_c01161{color:rgb(0,0,0);}
.fs1_c01161{font-size:12.240000px;}
.fs5_c01161{font-size:30.240000px;}
.fs6_c01161{font-size:41.760000px;}
.fs2_c01161{font-size:54.000000px;}
.fs0_c01161{font-size:56.880000px;}
.fs4_c01161{font-size:59.760000px;}
.fs3_c01161{font-size:66.240000px;}
.y0_c01161{bottom:0.000000px;}
.y2_c01161{bottom:7.920000px;}
.y4_c01161{bottom:57.420000px;}
.y23_c01161{bottom:91.800000px;}
.y22_c01161{bottom:107.635500px;}
.y21_c01161{bottom:119.880000px;}
.y20_c01161{bottom:302.940000px;}
.y1f_c01161{bottom:316.628640px;}
.y1e_c01161{bottom:335.523600px;}
.y1d_c01161{bottom:354.600720px;}
.y1c_c01161{bottom:382.140000px;}
.y1b_c01161{bottom:408.240000px;}
.y1a_c01161{bottom:418.680000px;}
.y19_c01161{bottom:450.324000px;}
.y18_c01161{bottom:466.159500px;}
.y17_c01161{bottom:481.644000px;}
.y16_c01161{bottom:497.128500px;}
.y15_c01161{bottom:512.613000px;}
.y14_c01161{bottom:528.273000px;}
.y13_c01161{bottom:543.757500px;}
.y12_c01161{bottom:559.242000px;}
.y11_c01161{bottom:574.726500px;}
.y10_c01161{bottom:590.386500px;}
.yf_c01161{bottom:605.871000px;}
.ye_c01161{bottom:621.355500px;}
.yd_c01161{bottom:636.840000px;}
.yc_c01161{bottom:679.500000px;}
.yb_c01161{bottom:700.749360px;}
.ya_c01161{bottom:880.574400px;}
.y9_c01161{bottom:899.651520px;}
.y8_c01161{bottom:918.546480px;}
.y7_c01161{bottom:937.623600px;}
.y6_c01161{bottom:956.518560px;}
.y5_c01161{bottom:984.240000px;}
.y3_c01161{bottom:1006.200000px;}
.y1_c01161{bottom:1009.620000px;}
.h4_c01161{height:8.504648px;}
.h1_c01161{height:20.878500px;}
.h9_c01161{height:21.011484px;}
.ha_c01161{height:29.015859px;}
.h5_c01161{height:37.520508px;}
.h3_c01161{height:39.493828px;}
.h2_c01161{height:39.521602px;}
.h8_c01161{height:41.522695px;}
.h6_c01161{height:45.345937px;}
.h7_c01161{height:46.025156px;}
.h0_c01161{height:1084.500000px;}
.w2_c01161{width:48.600000px;}
.w3_c01161{width:567.900000px;}
.w1_c01161{width:744.000000px;}
.w0_c01161{width:744.300000px;}
.x0_c01161{left:0.000000px;}
.x2_c01161{left:8.100000px;}
.x4_c01161{left:40.860000px;}
.x1_c01161{left:63.900000px;}
.x6_c01161{left:93.600000px;}
.x3_c01161{left:112.500000px;}
.x11_c01161{left:129.055500px;}
.xb_c01161{left:373.675500px;}
.xc_c01161{left:375.120000px;}
.xd_c01161{left:377.820000px;}
.xa_c01161{left:382.855500px;}
.x9_c01161{left:384.840000px;}
.x8_c01161{left:391.860000px;}
.xe_c01161{left:394.020000px;}
.x10_c01161{left:415.620000px;}
.x5_c01161{left:433.620000px;}
.x12_c01161{left:450.355500px;}
.xf_c01161{left:460.980000px;}
.x7_c01161{left:553.669920px;}
@media print{
.v0_c01161{vertical-align:0.000000pt;}
.lsd_c01161{letter-spacing:-1.059840pt;}
.lsa_c01161{letter-spacing:-0.765440pt;}
.lsf_c01161{letter-spacing:-0.720000pt;}
.lsb_c01161{letter-spacing:-0.647680pt;}
.ls6_c01161{letter-spacing:-0.336000pt;}
.lsc_c01161{letter-spacing:-0.192000pt;}
.ls7_c01161{letter-spacing:-0.096000pt;}
.ls5_c01161{letter-spacing:0.000000pt;}
.ls2_c01161{letter-spacing:0.096000pt;}
.ls8_c01161{letter-spacing:0.117760pt;}
.ls3_c01161{letter-spacing:0.144000pt;}
.lse_c01161{letter-spacing:0.192000pt;}
.ls9_c01161{letter-spacing:0.294400pt;}
.ls0_c01161{letter-spacing:0.303360pt;}
.ls1_c01161{letter-spacing:0.336000pt;}
.ls4_c01161{letter-spacing:307.344000pt;}
.ws4_c01161{word-spacing:-14.072320pt;}
.ws2_c01161{word-spacing:-13.954560pt;}
.ws0_c01161{word-spacing:-12.943360pt;}
.ws3_c01161{word-spacing:-12.336000pt;}
.ws5_c01161{word-spacing:-12.192000pt;}
.ws1_c01161{word-spacing:-11.664000pt;}
.ws18_c01161{word-spacing:-2.531840pt;}
.wsf_c01161{word-spacing:-2.237440pt;}
.wse_c01161{word-spacing:-2.060800pt;}
.ws10_c01161{word-spacing:-1.943040pt;}
.ws11_c01161{word-spacing:-0.942080pt;}
.ws1b_c01161{word-spacing:-0.816000pt;}
.ws13_c01161{word-spacing:-0.647680pt;}
.ws8_c01161{word-spacing:-0.480000pt;}
.ws15_c01161{word-spacing:-0.336000pt;}
.ws19_c01161{word-spacing:-0.294400pt;}
.ws14_c01161{word-spacing:-0.192000pt;}
.ws7_c01161{word-spacing:-0.151680pt;}
.wsc_c01161{word-spacing:-0.117760pt;}
.ws6_c01161{word-spacing:0.000000pt;}
.ws16_c01161{word-spacing:0.048000pt;}
.ws1a_c01161{word-spacing:0.144000pt;}
.ws1c_c01161{word-spacing:0.192000pt;}
.ws9_c01161{word-spacing:0.240000pt;}
.wsb_c01161{word-spacing:0.336000pt;}
.wsa_c01161{word-spacing:0.480000pt;}
.ws12_c01161{word-spacing:0.647680pt;}
.ws1d_c01161{word-spacing:0.720000pt;}
.ws17_c01161{word-spacing:1.059840pt;}
.wsd_c01161{word-spacing:5.004800pt;}
._1_c01161{margin-left:-2.270144pt;}
._0_c01161{margin-left:-1.107264pt;}
._2_c01161{width:1.070400pt;}
._3_c01161{width:915.216000pt;}
.fs1_c01161{font-size:10.880000pt;}
.fs5_c01161{font-size:26.880000pt;}
.fs6_c01161{font-size:37.120000pt;}
.fs2_c01161{font-size:48.000000pt;}
.fs0_c01161{font-size:50.560000pt;}
.fs4_c01161{font-size:53.120000pt;}
.fs3_c01161{font-size:58.880000pt;}
.y0_c01161{bottom:0.000000pt;}
.y2_c01161{bottom:7.040000pt;}
.y4_c01161{bottom:51.040000pt;}
.y23_c01161{bottom:81.600000pt;}
.y22_c01161{bottom:95.676000pt;}
.y21_c01161{bottom:106.560000pt;}
.y20_c01161{bottom:269.280000pt;}
.y1f_c01161{bottom:281.447680pt;}
.y1e_c01161{bottom:298.243200pt;}
.y1d_c01161{bottom:315.200640pt;}
.y1c_c01161{bottom:339.680000pt;}
.y1b_c01161{bottom:362.880000pt;}
.y1a_c01161{bottom:372.160000pt;}
.y19_c01161{bottom:400.288000pt;}
.y18_c01161{bottom:414.364000pt;}
.y17_c01161{bottom:428.128000pt;}
.y16_c01161{bottom:441.892000pt;}
.y15_c01161{bottom:455.656000pt;}
.y14_c01161{bottom:469.576000pt;}
.y13_c01161{bottom:483.340000pt;}
.y12_c01161{bottom:497.104000pt;}
.y11_c01161{bottom:510.868000pt;}
.y10_c01161{bottom:524.788000pt;}
.yf_c01161{bottom:538.552000pt;}
.ye_c01161{bottom:552.316000pt;}
.yd_c01161{bottom:566.080000pt;}
.yc_c01161{bottom:604.000000pt;}
.yb_c01161{bottom:622.888320pt;}
.ya_c01161{bottom:782.732800pt;}
.y9_c01161{bottom:799.690240pt;}
.y8_c01161{bottom:816.485760pt;}
.y7_c01161{bottom:833.443200pt;}
.y6_c01161{bottom:850.238720pt;}
.y5_c01161{bottom:874.880000pt;}
.y3_c01161{bottom:894.400000pt;}
.y1_c01161{bottom:897.440000pt;}
.h4_c01161{height:7.559687pt;}
.h1_c01161{height:18.558667pt;}
.h9_c01161{height:18.676875pt;}
.ha_c01161{height:25.791875pt;}
.h5_c01161{height:33.351562pt;}
.h3_c01161{height:35.105625pt;}
.h2_c01161{height:35.130313pt;}
.h8_c01161{height:36.909063pt;}
.h6_c01161{height:40.307500pt;}
.h7_c01161{height:40.911250pt;}
.h0_c01161{height:964.000000pt;}
.w2_c01161{width:43.200000pt;}
.w3_c01161{width:504.800000pt;}
.w1_c01161{width:661.333333pt;}
.w0_c01161{width:661.600000pt;}
.x0_c01161{left:0.000000pt;}
.x2_c01161{left:7.200000pt;}
.x4_c01161{left:36.320000pt;}
.x1_c01161{left:56.800000pt;}
.x6_c01161{left:83.200000pt;}
.x3_c01161{left:100.000000pt;}
.x11_c01161{left:114.716000pt;}
.xb_c01161{left:332.156000pt;}
.xc_c01161{left:333.440000pt;}
.xd_c01161{left:335.840000pt;}
.xa_c01161{left:340.316000pt;}
.x9_c01161{left:342.080000pt;}
.x8_c01161{left:348.320000pt;}
.xe_c01161{left:350.240000pt;}
.x10_c01161{left:369.440000pt;}
.x5_c01161{left:385.440000pt;}
.x12_c01161{left:400.316000pt;}
.xf_c01161{left:409.760000pt;}
.x7_c01161{left:492.151040pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_790362a5fd3405e92e58811e.woff2')format("woff");}.ff1_c01162{font-family:ff1_c01162;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01162;src:url('chunks/assets/font_3fda9c82f74b7a5d79f1f2c1.woff2')format("woff");}.ff2_c01162{font-family:ff2_c01162;line-height:0.910645;font-style:normal;font-weight:normal;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_d83f3540abdb094418aed045.woff2')format("woff");}.ff3_c01162{font-family:ff3_c01162;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01162;src:url('chunks/assets/font_d7f5db4e549cbd0bd8b8f8d8.woff2')format("woff");}.ff4_c01162{font-family:ff4_c01162;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls8_c01162{letter-spacing:-0.861120px;}
.lsb_c01162{letter-spacing:-0.728640px;}
.lsa_c01162{letter-spacing:-0.596160px;}
.lse_c01162{letter-spacing:-0.540000px;}
.ls5_c01162{letter-spacing:-0.378000px;}
.lsf_c01162{letter-spacing:-0.216000px;}
.ls7_c01162{letter-spacing:-0.144000px;}
.ls10_c01162{letter-spacing:-0.132480px;}
.ls6_c01162{letter-spacing:-0.108000px;}
.ls3_c01162{letter-spacing:-0.056880px;}
.ls4_c01162{letter-spacing:0.000000px;}
.lsd_c01162{letter-spacing:0.108000px;}
.ls9_c01162{letter-spacing:0.132480px;}
.ls2_c01162{letter-spacing:0.162000px;}
.lsc_c01162{letter-spacing:0.331200px;}
.ls0_c01162{letter-spacing:0.341280px;}
.ls1_c01162{letter-spacing:0.378000px;}
.sc__c01162{text-shadow:none;}
.sc1_c01162{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1_c01162{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01162{word-spacing:-15.963840px;}
.ws5_c01162{word-spacing:-15.831360px;}
.ws2_c01162{word-spacing:-15.698880px;}
.ws0_c01162{word-spacing:-14.561280px;}
.ws3_c01162{word-spacing:-13.878000px;}
.ws1_c01162{word-spacing:-13.122000px;}
.ws19_c01162{word-spacing:-4.438080px;}
.ws18_c01162{word-spacing:-3.576960px;}
.ws16_c01162{word-spacing:-2.185920px;}
.ws12_c01162{word-spacing:-1.457280px;}
.ws8_c01162{word-spacing:-0.540000px;}
.ws11_c01162{word-spacing:-0.331200px;}
.wse_c01162{word-spacing:-0.216000px;}
.wsf_c01162{word-spacing:-0.132480px;}
.ws7_c01162{word-spacing:0.000000px;}
.ws13_c01162{word-spacing:0.054000px;}
.ws15_c01162{word-spacing:0.132480px;}
.wsc_c01162{word-spacing:0.144000px;}
.ws6_c01162{word-spacing:0.227520px;}
.ws9_c01162{word-spacing:0.270000px;}
.wsb_c01162{word-spacing:0.378000px;}
.wsa_c01162{word-spacing:0.540000px;}
.ws10_c01162{word-spacing:0.596160px;}
.ws14_c01162{word-spacing:1.134000px;}
.wsd_c01162{word-spacing:1.457280px;}
.ws17_c01162{word-spacing:2.914560px;}
._3_c01162{margin-left:-2.891016px;}
._1_c01162{margin-left:-1.172448px;}
._0_c01162{width:1.109160px;}
._2_c01162{width:2.332368px;}
.fc0_c01162{color:rgb(0,0,0);}
.fs1_c01162{font-size:12.240000px;}
.fs5_c01162{font-size:36.000000px;}
.fs2_c01162{font-size:54.000000px;}
.fs0_c01162{font-size:56.880000px;}
.fs4_c01162{font-size:66.240000px;}
.fs3_c01162{font-size:72.000000px;}
.y0_c01162{bottom:0.000000px;}
.y2_c01162{bottom:7.920000px;}
.y4_c01162{bottom:57.420000px;}
.y17_c01162{bottom:94.153680px;}
.y16_c01162{bottom:113.048640px;}
.y15_c01162{bottom:131.943600px;}
.y14_c01162{bottom:151.020720px;}
.y13_c01162{bottom:178.560000px;}
.y12_c01162{bottom:206.100000px;}
.y11_c01162{bottom:221.760000px;}
.y10_c01162{bottom:236.160000px;}
.yf_c01162{bottom:244.260000px;}
.ye_c01162{bottom:523.620000px;}
.yd_c01162{bottom:535.869360px;}
.yc_c01162{bottom:554.764320px;}
.yb_c01162{bottom:573.659280px;}
.ya_c01162{bottom:601.380720px;}
.y9_c01162{bottom:628.924500px;}
.y8_c01162{bottom:650.160000px;}
.y7_c01162{bottom:935.822880px;}
.y6_c01162{bottom:954.900000px;}
.y5_c01162{bottom:982.800000px;}
.y3_c01162{bottom:1006.200000px;}
.y1_c01162{bottom:1009.620000px;}
.h4_c01162{height:8.504648px;}
.h1_c01162{height:20.878500px;}
.ha_c01162{height:25.013672px;}
.h5_c01162{height:37.520508px;}
.h2_c01162{height:39.493828px;}
.h3_c01162{height:39.521602px;}
.h9_c01162{height:45.345937px;}
.h8_c01162{height:45.974812px;}
.h7_c01162{height:46.025156px;}
.h6_c01162{height:49.289062px;}
.h0_c01162{height:1084.500000px;}
.w3_c01162{width:47.520000px;}
.w2_c01162{width:568.980000px;}
.w1_c01162{width:744.000000px;}
.w0_c01162{width:744.300000px;}
.x0_c01162{left:0.000000px;}
.x2_c01162{left:8.100000px;}
.x4_c01162{left:18.000000px;}
.x1_c01162{left:63.900000px;}
.x8_c01162{left:93.604320px;}
.x5_c01162{left:134.280000px;}
.x7_c01162{left:174.784500px;}
.xa_c01162{left:209.164500px;}
.x9_c01162{left:528.480000px;}
.x3_c01162{left:632.880000px;}
.x6_c01162{left:680.400000px;}
@media print{
.v0_c01162{vertical-align:0.000000pt;}
.ls8_c01162{letter-spacing:-0.765440pt;}
.lsb_c01162{letter-spacing:-0.647680pt;}
.lsa_c01162{letter-spacing:-0.529920pt;}
.lse_c01162{letter-spacing:-0.480000pt;}
.ls5_c01162{letter-spacing:-0.336000pt;}
.lsf_c01162{letter-spacing:-0.192000pt;}
.ls7_c01162{letter-spacing:-0.128000pt;}
.ls10_c01162{letter-spacing:-0.117760pt;}
.ls6_c01162{letter-spacing:-0.096000pt;}
.ls3_c01162{letter-spacing:-0.050560pt;}
.ls4_c01162{letter-spacing:0.000000pt;}
.lsd_c01162{letter-spacing:0.096000pt;}
.ls9_c01162{letter-spacing:0.117760pt;}
.ls2_c01162{letter-spacing:0.144000pt;}
.lsc_c01162{letter-spacing:0.294400pt;}
.ls0_c01162{letter-spacing:0.303360pt;}
.ls1_c01162{letter-spacing:0.336000pt;}
.ws4_c01162{word-spacing:-14.190080pt;}
.ws5_c01162{word-spacing:-14.072320pt;}
.ws2_c01162{word-spacing:-13.954560pt;}
.ws0_c01162{word-spacing:-12.943360pt;}
.ws3_c01162{word-spacing:-12.336000pt;}
.ws1_c01162{word-spacing:-11.664000pt;}
.ws19_c01162{word-spacing:-3.944960pt;}
.ws18_c01162{word-spacing:-3.179520pt;}
.ws16_c01162{word-spacing:-1.943040pt;}
.ws12_c01162{word-spacing:-1.295360pt;}
.ws8_c01162{word-spacing:-0.480000pt;}
.ws11_c01162{word-spacing:-0.294400pt;}
.wse_c01162{word-spacing:-0.192000pt;}
.wsf_c01162{word-spacing:-0.117760pt;}
.ws7_c01162{word-spacing:0.000000pt;}
.ws13_c01162{word-spacing:0.048000pt;}
.ws15_c01162{word-spacing:0.117760pt;}
.wsc_c01162{word-spacing:0.128000pt;}
.ws6_c01162{word-spacing:0.202240pt;}
.ws9_c01162{word-spacing:0.240000pt;}
.wsb_c01162{word-spacing:0.336000pt;}
.wsa_c01162{word-spacing:0.480000pt;}
.ws10_c01162{word-spacing:0.529920pt;}
.ws14_c01162{word-spacing:1.008000pt;}
.wsd_c01162{word-spacing:1.295360pt;}
.ws17_c01162{word-spacing:2.590720pt;}
._3_c01162{margin-left:-2.569792pt;}
._1_c01162{margin-left:-1.042176pt;}
._0_c01162{width:0.985920pt;}
._2_c01162{width:2.073216pt;}
.fs1_c01162{font-size:10.880000pt;}
.fs5_c01162{font-size:32.000000pt;}
.fs2_c01162{font-size:48.000000pt;}
.fs0_c01162{font-size:50.560000pt;}
.fs4_c01162{font-size:58.880000pt;}
.fs3_c01162{font-size:64.000000pt;}
.y0_c01162{bottom:0.000000pt;}
.y2_c01162{bottom:7.040000pt;}
.y4_c01162{bottom:51.040000pt;}
.y17_c01162{bottom:83.692160pt;}
.y16_c01162{bottom:100.487680pt;}
.y15_c01162{bottom:117.283200pt;}
.y14_c01162{bottom:134.240640pt;}
.y13_c01162{bottom:158.720000pt;}
.y12_c01162{bottom:183.200000pt;}
.y11_c01162{bottom:197.120000pt;}
.y10_c01162{bottom:209.920000pt;}
.yf_c01162{bottom:217.120000pt;}
.ye_c01162{bottom:465.440000pt;}
.yd_c01162{bottom:476.328320pt;}
.yc_c01162{bottom:493.123840pt;}
.yb_c01162{bottom:509.919360pt;}
.ya_c01162{bottom:534.560640pt;}
.y9_c01162{bottom:559.044000pt;}
.y8_c01162{bottom:577.920000pt;}
.y7_c01162{bottom:831.842560pt;}
.y6_c01162{bottom:848.800000pt;}
.y5_c01162{bottom:873.600000pt;}
.y3_c01162{bottom:894.400000pt;}
.y1_c01162{bottom:897.440000pt;}
.h4_c01162{height:7.559687pt;}
.h1_c01162{height:18.558667pt;}
.ha_c01162{height:22.234375pt;}
.h5_c01162{height:33.351562pt;}
.h2_c01162{height:35.105625pt;}
.h3_c01162{height:35.130313pt;}
.h9_c01162{height:40.307500pt;}
.h8_c01162{height:40.866500pt;}
.h7_c01162{height:40.911250pt;}
.h6_c01162{height:43.812500pt;}
.h0_c01162{height:964.000000pt;}
.w3_c01162{width:42.240000pt;}
.w2_c01162{width:505.760000pt;}
.w1_c01162{width:661.333333pt;}
.w0_c01162{width:661.600000pt;}
.x0_c01162{left:0.000000pt;}
.x2_c01162{left:7.200000pt;}
.x4_c01162{left:16.000000pt;}
.x1_c01162{left:56.800000pt;}
.x8_c01162{left:83.203840pt;}
.x5_c01162{left:119.360000pt;}
.x7_c01162{left:155.364000pt;}
.xa_c01162{left:185.924000pt;}
.x9_c01162{left:469.760000pt;}
.x3_c01162{left:562.560000pt;}
.x6_c01162{left:604.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_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_fd39722db49147ebb65b2c94.woff2')format("woff");}.ff1_c01163{font-family:ff1_c01163;line-height:0.910645;font-style:normal;font-weight:normal;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_37c41ca509c186886cd912de.woff2')format("woff");}.ff2_c01163{font-family:ff2_c01163;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01163;src:url('chunks/assets/font_1751dfc2e770e1a4e5007fff.woff2')format("woff");}.ff3_c01163{font-family:ff3_c01163;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01163;src:url('chunks/assets/font_d7f5db4e549cbd0bd8b8f8d8.woff2')format("woff");}.ff4_c01163{font-family:ff4_c01163;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01163{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01163{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01163{vertical-align:0.000000px;}
.ls8_c01163{letter-spacing:-0.728640px;}
.ls3_c01163{letter-spacing:-0.378000px;}
.ls5_c01163{letter-spacing:-0.216000px;}
.ls7_c01163{letter-spacing:-0.144000px;}
.ls4_c01163{letter-spacing:-0.108000px;}
.ls2_c01163{letter-spacing:0.000000px;}
.ls6_c01163{letter-spacing:0.108000px;}
.ls9_c01163{letter-spacing:0.132480px;}
.lsa_c01163{letter-spacing:0.264960px;}
.ls0_c01163{letter-spacing:0.341280px;}
.ls1_c01163{letter-spacing:0.378000px;}
.sc__c01163{text-shadow:none;}
.sc1_c01163{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1_c01163{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01163{word-spacing:-16.824960px;}
.ws4_c01163{word-spacing:-15.831360px;}
.ws0_c01163{word-spacing:-14.561280px;}
.ws2_c01163{word-spacing:-13.878000px;}
.ws3_c01163{word-spacing:-13.608000px;}
.ws1_c01163{word-spacing:-13.122000px;}
.ws8_c01163{word-spacing:-0.540000px;}
.wsc_c01163{word-spacing:-0.216000px;}
.ws7_c01163{word-spacing:-0.170640px;}
.ws12_c01163{word-spacing:-0.132480px;}
.ws6_c01163{word-spacing:0.000000px;}
.wsd_c01163{word-spacing:0.144000px;}
.ws9_c01163{word-spacing:0.270000px;}
.wsb_c01163{word-spacing:0.378000px;}
.wsa_c01163{word-spacing:0.540000px;}
.wsf_c01163{word-spacing:2.053440px;}
.wse_c01163{word-spacing:2.914560px;}
.ws11_c01163{word-spacing:6.359040px;}
.ws10_c01163{word-spacing:6.491520px;}
._1_c01163{margin-left:-2.553912px;}
._0_c01163{margin-left:-1.245672px;}
._2_c01163{width:1.204200px;}
._3_c01163{width:3.497976px;}
.fc0_c01163{color:rgb(0,0,0);}
.fs1_c01163{font-size:12.240000px;}
.fs6_c01163{font-size:36.000000px;}
.fs2_c01163{font-size:54.000000px;}
.fs0_c01163{font-size:56.880000px;}
.fs3_c01163{font-size:59.760000px;}
.fs5_c01163{font-size:66.240000px;}
.fs4_c01163{font-size:72.000000px;}
.y0_c01163{bottom:0.000000px;}
.y2_c01163{bottom:7.920000px;}
.y4_c01163{bottom:57.420000px;}
.ye_c01163{bottom:91.980000px;}
.yd_c01163{bottom:104.047920px;}
.yc_c01163{bottom:123.125040px;}
.yb_c01163{bottom:142.020000px;}
.ya_c01163{bottom:169.920000px;}
.y9_c01163{bottom:216.900000px;}
.y8_c01163{bottom:238.140000px;}
.y7_c01163{bottom:653.769000px;}
.y6_c01163{bottom:669.429000px;}
.y5_c01163{bottom:690.664500px;}
.y3_c01163{bottom:1006.200000px;}
.y1_c01163{bottom:1009.620000px;}
.h4_c01163{height:8.504648px;}
.h1_c01163{height:20.878500px;}
.h9_c01163{height:25.013672px;}
.h5_c01163{height:37.520508px;}
.h3_c01163{height:39.493828px;}
.h2_c01163{height:39.521602px;}
.h6_c01163{height:41.522695px;}
.h8_c01163{height:46.025156px;}
.h7_c01163{height:49.289062px;}
.h0_c01163{height:1084.500000px;}
.w2_c01163{width:48.600000px;}
.w3_c01163{width:567.900000px;}
.w1_c01163{width:744.000000px;}
.w0_c01163{width:744.300000px;}
.x0_c01163{left:0.000000px;}
.x2_c01163{left:8.100000px;}
.x4_c01163{left:40.860000px;}
.x1_c01163{left:63.900000px;}
.x7_c01163{left:69.660000px;}
.x9_c01163{left:109.620000px;}
.x3_c01163{left:112.500000px;}
.x8_c01163{left:250.735500px;}
.xa_c01163{left:252.360000px;}
.x5_c01163{left:433.620000px;}
.x6_c01163{left:606.595500px;}
@media print{
.v0_c01163{vertical-align:0.000000pt;}
.ls8_c01163{letter-spacing:-0.647680pt;}
.ls3_c01163{letter-spacing:-0.336000pt;}
.ls5_c01163{letter-spacing:-0.192000pt;}
.ls7_c01163{letter-spacing:-0.128000pt;}
.ls4_c01163{letter-spacing:-0.096000pt;}
.ls2_c01163{letter-spacing:0.000000pt;}
.ls6_c01163{letter-spacing:0.096000pt;}
.ls9_c01163{letter-spacing:0.117760pt;}
.lsa_c01163{letter-spacing:0.235520pt;}
.ls0_c01163{letter-spacing:0.303360pt;}
.ls1_c01163{letter-spacing:0.336000pt;}
.ws5_c01163{word-spacing:-14.955520pt;}
.ws4_c01163{word-spacing:-14.072320pt;}
.ws0_c01163{word-spacing:-12.943360pt;}
.ws2_c01163{word-spacing:-12.336000pt;}
.ws3_c01163{word-spacing:-12.096000pt;}
.ws1_c01163{word-spacing:-11.664000pt;}
.ws8_c01163{word-spacing:-0.480000pt;}
.wsc_c01163{word-spacing:-0.192000pt;}
.ws7_c01163{word-spacing:-0.151680pt;}
.ws12_c01163{word-spacing:-0.117760pt;}
.ws6_c01163{word-spacing:0.000000pt;}
.wsd_c01163{word-spacing:0.128000pt;}
.ws9_c01163{word-spacing:0.240000pt;}
.wsb_c01163{word-spacing:0.336000pt;}
.wsa_c01163{word-spacing:0.480000pt;}
.wsf_c01163{word-spacing:1.825280pt;}
.wse_c01163{word-spacing:2.590720pt;}
.ws11_c01163{word-spacing:5.652480pt;}
.ws10_c01163{word-spacing:5.770240pt;}
._1_c01163{margin-left:-2.270144pt;}
._0_c01163{margin-left:-1.107264pt;}
._2_c01163{width:1.070400pt;}
._3_c01163{width:3.109312pt;}
.fs1_c01163{font-size:10.880000pt;}
.fs6_c01163{font-size:32.000000pt;}
.fs2_c01163{font-size:48.000000pt;}
.fs0_c01163{font-size:50.560000pt;}
.fs3_c01163{font-size:53.120000pt;}
.fs5_c01163{font-size:58.880000pt;}
.fs4_c01163{font-size:64.000000pt;}
.y0_c01163{bottom:0.000000pt;}
.y2_c01163{bottom:7.040000pt;}
.y4_c01163{bottom:51.040000pt;}
.ye_c01163{bottom:81.760000pt;}
.yd_c01163{bottom:92.487040pt;}
.yc_c01163{bottom:109.444480pt;}
.yb_c01163{bottom:126.240000pt;}
.ya_c01163{bottom:151.040000pt;}
.y9_c01163{bottom:192.800000pt;}
.y8_c01163{bottom:211.680000pt;}
.y7_c01163{bottom:581.128000pt;}
.y6_c01163{bottom:595.048000pt;}
.y5_c01163{bottom:613.924000pt;}
.y3_c01163{bottom:894.400000pt;}
.y1_c01163{bottom:897.440000pt;}
.h4_c01163{height:7.559687pt;}
.h1_c01163{height:18.558667pt;}
.h9_c01163{height:22.234375pt;}
.h5_c01163{height:33.351562pt;}
.h3_c01163{height:35.105625pt;}
.h2_c01163{height:35.130313pt;}
.h6_c01163{height:36.909063pt;}
.h8_c01163{height:40.911250pt;}
.h7_c01163{height:43.812500pt;}
.h0_c01163{height:964.000000pt;}
.w2_c01163{width:43.200000pt;}
.w3_c01163{width:504.800000pt;}
.w1_c01163{width:661.333333pt;}
.w0_c01163{width:661.600000pt;}
.x0_c01163{left:0.000000pt;}
.x2_c01163{left:7.200000pt;}
.x4_c01163{left:36.320000pt;}
.x1_c01163{left:56.800000pt;}
.x7_c01163{left:61.920000pt;}
.x9_c01163{left:97.440000pt;}
.x3_c01163{left:100.000000pt;}
.x8_c01163{left:222.876000pt;}
.xa_c01163{left:224.320000pt;}
.x5_c01163{left:385.440000pt;}
.x6_c01163{left:539.196000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_790362a5fd3405e92e58811e.woff2')format("woff");}.ff1_c01164{font-family:ff1_c01164;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01164;src:url('chunks/assets/font_dd5572ee4d65709b933ce381.woff2')format("woff");}.ff2_c01164{font-family:ff2_c01164;line-height:0.910645;font-style: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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(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;}
.ls8_c01164{letter-spacing:-0.728640px;}
.ls5_c01164{letter-spacing:-0.378000px;}
.ls7_c01164{letter-spacing:-0.216000px;}
.ls6_c01164{letter-spacing:-0.108000px;}
.ls3_c01164{letter-spacing:-0.056880px;}
.ls4_c01164{letter-spacing:0.000000px;}
.lsa_c01164{letter-spacing:0.108000px;}
.ls2_c01164{letter-spacing:0.113400px;}
.ls9_c01164{letter-spacing:0.331200px;}
.ls0_c01164{letter-spacing:0.341280px;}
.ls1_c01164{letter-spacing:0.378000px;}
.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;}
}
.ws3_c01164{word-spacing:-15.831360px;}
.ws0_c01164{word-spacing:-14.561280px;}
.ws2_c01164{word-spacing:-13.878000px;}
.ws1_c01164{word-spacing:-13.122000px;}
.ws6_c01164{word-spacing:-0.540000px;}
.wsc_c01164{word-spacing:-0.331200px;}
.wsa_c01164{word-spacing:-0.216000px;}
.ws5_c01164{word-spacing:0.000000px;}
.wsd_c01164{word-spacing:0.054000px;}
.ws4_c01164{word-spacing:0.227520px;}
.ws7_c01164{word-spacing:0.270000px;}
.ws9_c01164{word-spacing:0.378000px;}
.ws8_c01164{word-spacing:0.540000px;}
.wsb_c01164{word-spacing:4.305600px;}
._2_c01164{margin-left:-2.432160px;}
._1_c01164{margin-left:-1.217160px;}
._0_c01164{width:1.109160px;}
._3_c01164{width:4.471920px;}
.fc1_c01164{color:rgb(31,73,125);}
.fc0_c01164{color:rgb(0,0,0);}
.fs1_c01164{font-size:12.240000px;}
.fs4_c01164{font-size:36.000000px;}
.fs2_c01164{font-size:54.000000px;}
.fs0_c01164{font-size:56.880000px;}
.fs5_c01164{font-size:59.760000px;}
.fs3_c01164{font-size:66.240000px;}
.y0_c01164{bottom:0.000000px;}
.y2_c01164{bottom:7.920000px;}
.y4_c01164{bottom:57.420000px;}
.y12_c01164{bottom:91.975500px;}
.y11_c01164{bottom:107.460000px;}
.y10_c01164{bottom:128.700000px;}
.yf_c01164{bottom:392.220000px;}
.ye_c01164{bottom:404.465040px;}
.yd_c01164{bottom:423.360000px;}
.yc_c01164{bottom:450.540000px;}
.yb_c01164{bottom:466.200000px;}
.ya_c01164{bottom:481.684500px;}
.y9_c01164{bottom:502.920000px;}
.y8_c01164{bottom:690.664500px;}
.y7_c01164{bottom:706.149000px;}
.y6_c01164{bottom:721.809000px;}
.y5_c01164{bottom:743.044500px;}
.y3_c01164{bottom:1006.200000px;}
.y1_c01164{bottom:1009.620000px;}
.h4_c01164{height:8.504648px;}
.h1_c01164{height:20.878500px;}
.h7_c01164{height:25.013672px;}
.h5_c01164{height:37.520508px;}
.h2_c01164{height:39.493828px;}
.h3_c01164{height:39.521602px;}
.h8_c01164{height:41.522695px;}
.h6_c01164{height:46.025156px;}
.h0_c01164{height:1084.500000px;}
.w3_c01164{width:47.520000px;}
.w2_c01164{width:568.980000px;}
.w1_c01164{width:744.000000px;}
.w0_c01164{width:744.300000px;}
.x0_c01164{left:0.000000px;}
.x2_c01164{left:8.100000px;}
.x4_c01164{left:18.000000px;}
.x1_c01164{left:63.900000px;}
.x7_c01164{left:68.220000px;}
.xc_c01164{left:69.480000px;}
.x9_c01164{left:71.473500px;}
.x6_c01164{left:97.380000px;}
.x8_c01164{left:112.689000px;}
.xd_c01164{left:261.544500px;}
.xa_c01164{left:313.744500px;}
.xb_c01164{left:504.900000px;}
.x5_c01164{left:624.055500px;}
.x3_c01164{left:632.880000px;}
@media print{
.v0_c01164{vertical-align:0.000000pt;}
.ls8_c01164{letter-spacing:-0.647680pt;}
.ls5_c01164{letter-spacing:-0.336000pt;}
.ls7_c01164{letter-spacing:-0.192000pt;}
.ls6_c01164{letter-spacing:-0.096000pt;}
.ls3_c01164{letter-spacing:-0.050560pt;}
.ls4_c01164{letter-spacing:0.000000pt;}
.lsa_c01164{letter-spacing:0.096000pt;}
.ls2_c01164{letter-spacing:0.100800pt;}
.ls9_c01164{letter-spacing:0.294400pt;}
.ls0_c01164{letter-spacing:0.303360pt;}
.ls1_c01164{letter-spacing:0.336000pt;}
.ws3_c01164{word-spacing:-14.072320pt;}
.ws0_c01164{word-spacing:-12.943360pt;}
.ws2_c01164{word-spacing:-12.336000pt;}
.ws1_c01164{word-spacing:-11.664000pt;}
.ws6_c01164{word-spacing:-0.480000pt;}
.wsc_c01164{word-spacing:-0.294400pt;}
.wsa_c01164{word-spacing:-0.192000pt;}
.ws5_c01164{word-spacing:0.000000pt;}
.wsd_c01164{word-spacing:0.048000pt;}
.ws4_c01164{word-spacing:0.202240pt;}
.ws7_c01164{word-spacing:0.240000pt;}
.ws9_c01164{word-spacing:0.336000pt;}
.ws8_c01164{word-spacing:0.480000pt;}
.wsb_c01164{word-spacing:3.827200pt;}
._2_c01164{margin-left:-2.161920pt;}
._1_c01164{margin-left:-1.081920pt;}
._0_c01164{width:0.985920pt;}
._3_c01164{width:3.975040pt;}
.fs1_c01164{font-size:10.880000pt;}
.fs4_c01164{font-size:32.000000pt;}
.fs2_c01164{font-size:48.000000pt;}
.fs0_c01164{font-size:50.560000pt;}
.fs5_c01164{font-size:53.120000pt;}
.fs3_c01164{font-size:58.880000pt;}
.y0_c01164{bottom:0.000000pt;}
.y2_c01164{bottom:7.040000pt;}
.y4_c01164{bottom:51.040000pt;}
.y12_c01164{bottom:81.756000pt;}
.y11_c01164{bottom:95.520000pt;}
.y10_c01164{bottom:114.400000pt;}
.yf_c01164{bottom:348.640000pt;}
.ye_c01164{bottom:359.524480pt;}
.yd_c01164{bottom:376.320000pt;}
.yc_c01164{bottom:400.480000pt;}
.yb_c01164{bottom:414.400000pt;}
.ya_c01164{bottom:428.164000pt;}
.y9_c01164{bottom:447.040000pt;}
.y8_c01164{bottom:613.924000pt;}
.y7_c01164{bottom:627.688000pt;}
.y6_c01164{bottom:641.608000pt;}
.y5_c01164{bottom:660.484000pt;}
.y3_c01164{bottom:894.400000pt;}
.y1_c01164{bottom:897.440000pt;}
.h4_c01164{height:7.559687pt;}
.h1_c01164{height:18.558667pt;}
.h7_c01164{height:22.234375pt;}
.h5_c01164{height:33.351562pt;}
.h2_c01164{height:35.105625pt;}
.h3_c01164{height:35.130313pt;}
.h8_c01164{height:36.909063pt;}
.h6_c01164{height:40.911250pt;}
.h0_c01164{height:964.000000pt;}
.w3_c01164{width:42.240000pt;}
.w2_c01164{width:505.760000pt;}
.w1_c01164{width:661.333333pt;}
.w0_c01164{width:661.600000pt;}
.x0_c01164{left:0.000000pt;}
.x2_c01164{left:7.200000pt;}
.x4_c01164{left:16.000000pt;}
.x1_c01164{left:56.800000pt;}
.x7_c01164{left:60.640000pt;}
.xc_c01164{left:61.760000pt;}
.x9_c01164{left:63.532000pt;}
.x6_c01164{left:86.560000pt;}
.x8_c01164{left:100.168000pt;}
.xd_c01164{left:232.484000pt;}
.xa_c01164{left:278.884000pt;}
.xb_c01164{left:448.800000pt;}
.x5_c01164{left:554.716000pt;}
.x3_c01164{left:562.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_14a8c6cc8a73236a526bba3b.woff2')format("woff");}.ff1_c01165{font-family:ff1_c01165;line-height:0.910645;font-style:normal;font-weight:normal;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_5016aa4e388ecafa6166eed4.woff2')format("woff");}.ff2_c01165{font-family:ff2_c01165;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01165;src:url('chunks/assets/font_d055a32af29ffa18c66672a3.woff2')format("woff");}.ff3_c01165{font-family:ff3_c01165;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01165;src:url('chunks/assets/font_d7f5db4e549cbd0bd8b8f8d8.woff2')format("woff");}.ff4_c01165{font-family:ff4_c01165;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.m1_c01165{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01165{vertical-align:0.000000px;}
.ls28_c01165{letter-spacing:-1.080000px;}
.ls21_c01165{letter-spacing:-1.059840px;}
.ls2b_c01165{letter-spacing:-0.972000px;}
.ls2d_c01165{letter-spacing:-0.918000px;}
.ls24_c01165{letter-spacing:-0.861120px;}
.ls29_c01165{letter-spacing:-0.810000px;}
.ls22_c01165{letter-spacing:-0.728640px;}
.ls2c_c01165{letter-spacing:-0.702000px;}
.ls20_c01165{letter-spacing:-0.596160px;}
.ls2a_c01165{letter-spacing:-0.594000px;}
.ls27_c01165{letter-spacing:-0.540000px;}
.ls1d_c01165{letter-spacing:-0.378000px;}
.ls23_c01165{letter-spacing:-0.331200px;}
.ls25_c01165{letter-spacing:-0.216000px;}
.ls1f_c01165{letter-spacing:-0.144000px;}
.ls1e_c01165{letter-spacing:-0.108000px;}
.ls1c_c01165{letter-spacing:0.000000px;}
.lsa_c01165{letter-spacing:0.091800px;}
.ls10_c01165{letter-spacing:0.108000px;}
.ls5_c01165{letter-spacing:0.132480px;}
.ls9_c01165{letter-spacing:0.162000px;}
.ls26_c01165{letter-spacing:0.216000px;}
.ls7_c01165{letter-spacing:0.331200px;}
.ls0_c01165{letter-spacing:0.341280px;}
.ls1_c01165{letter-spacing:0.378000px;}
.ls4_c01165{letter-spacing:0.728640px;}
.lsf_c01165{letter-spacing:0.756000px;}
.ls8_c01165{letter-spacing:0.918000px;}
.ls15_c01165{letter-spacing:1.440000px;}
.ls3_c01165{letter-spacing:1.457280px;}
.ls2_c01165{letter-spacing:2.185920px;}
.lsd_c01165{letter-spacing:3.709800px;}
.lsc_c01165{letter-spacing:3.780000px;}
.ls16_c01165{letter-spacing:4.482000px;}
.ls6_c01165{letter-spacing:5.034240px;}
.lsb_c01165{letter-spacing:5.238000px;}
.ls18_c01165{letter-spacing:7.290000px;}
.ls1a_c01165{letter-spacing:7.322400px;}
.ls19_c01165{letter-spacing:7.344000px;}
.ls17_c01165{letter-spacing:7.398000px;}
.ls11_c01165{letter-spacing:28.998000px;}
.lse_c01165{letter-spacing:29.700000px;}
.ls1b_c01165{letter-spacing:30.402000px;}
.ls14_c01165{letter-spacing:32.562000px;}
.ls12_c01165{letter-spacing:67.122000px;}
.ls13_c01165{letter-spacing:67.878000px;}
.sc__c01165{text-shadow:none;}
.sc1_c01165{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1_c01165{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c01165{word-spacing:-18.216000px;}
.ws2_c01165{word-spacing:-17.856000px;}
.ws3_c01165{word-spacing:-16.891200px;}
.ws5_c01165{word-spacing:-16.692480px;}
.ws4_c01165{word-spacing:-15.831360px;}
.ws6_c01165{word-spacing:-15.698880px;}
.ws0_c01165{word-spacing:-14.561280px;}
.ws7_c01165{word-spacing:-13.878000px;}
.ws8_c01165{word-spacing:-13.716000px;}
.ws10_c01165{word-spacing:-13.662000px;}
.wsd_c01165{word-spacing:-13.608000px;}
.ws12_c01165{word-spacing:-13.500000px;}
.wsa_c01165{word-spacing:-13.392000px;}
.wsb_c01165{word-spacing:-13.284000px;}
.ws1_c01165{word-spacing:-13.122000px;}
.wsc_c01165{word-spacing:-12.960000px;}
.ws11_c01165{word-spacing:-12.906000px;}
.ws14_c01165{word-spacing:-12.798000px;}
.wsf_c01165{word-spacing:-12.690000px;}
.ws15_c01165{word-spacing:-12.582000px;}
.ws13_c01165{word-spacing:-12.528000px;}
.wse_c01165{word-spacing:-12.420000px;}
.ws28_c01165{word-spacing:-4.305600px;}
.ws27_c01165{word-spacing:-3.709440px;}
.ws29_c01165{word-spacing:-3.576960px;}
.ws2d_c01165{word-spacing:-2.318400px;}
.ws2e_c01165{word-spacing:-2.185920px;}
.ws1e_c01165{word-spacing:-0.861120px;}
.ws21_c01165{word-spacing:-0.728640px;}
.ws18_c01165{word-spacing:-0.540000px;}
.ws34_c01165{word-spacing:-0.378000px;}
.ws2c_c01165{word-spacing:-0.331200px;}
.ws35_c01165{word-spacing:-0.324000px;}
.ws32_c01165{word-spacing:-0.216000px;}
.ws17_c01165{word-spacing:-0.170640px;}
.ws1f_c01165{word-spacing:-0.132480px;}
.ws16_c01165{word-spacing:0.000000px;}
.ws36_c01165{word-spacing:0.054000px;}
.ws33_c01165{word-spacing:0.216000px;}
.ws19_c01165{word-spacing:0.270000px;}
.ws1b_c01165{word-spacing:0.378000px;}
.ws1a_c01165{word-spacing:0.540000px;}
.ws20_c01165{word-spacing:0.596160px;}
.ws23_c01165{word-spacing:0.728640px;}
.ws22_c01165{word-spacing:1.059840px;}
.ws25_c01165{word-spacing:1.126080px;}
.ws26_c01165{word-spacing:1.324800px;}
.ws24_c01165{word-spacing:1.457280px;}
.ws1d_c01165{word-spacing:2.053440px;}
.ws1c_c01165{word-spacing:2.185920px;}
.ws2b_c01165{word-spacing:5.762880px;}
.ws2a_c01165{word-spacing:6.094080px;}
.ws38_c01165{word-spacing:7.236000px;}
.ws31_c01165{word-spacing:12.121920px;}
.ws2f_c01165{word-spacing:16.957440px;}
.ws30_c01165{word-spacing:17.288640px;}
.ws37_c01165{word-spacing:32.184000px;}
._3_c01165{margin-left:-4.357152px;}
._1_c01165{margin-left:-2.553912px;}
._0_c01165{margin-left:-1.245672px;}
._2_c01165{width:1.204200px;}
._6_c01165{width:2.251800px;}
._7_c01165{width:3.305592px;}
._5_c01165{width:4.387536px;}
._4_c01165{width:5.932296px;}
._c_c01165{width:7.867512px;}
._9_c01165{width:28.844784px;}
._8_c01165{width:30.089016px;}
._d_c01165{width:31.116744px;}
._b_c01165{width:32.216184px;}
._a_c01165{width:67.345056px;}
.fc0_c01165{color:rgb(0,0,0);}
.fs1_c01165{font-size:12.240000px;}
.fs2_c01165{font-size:54.000000px;}
.fs0_c01165{font-size:56.880000px;}
.fs4_c01165{font-size:66.240000px;}
.fs3_c01165{font-size:72.000000px;}
.y0_c01165{bottom:0.000000px;}
.y2_c01165{bottom:7.920000px;}
.y4_c01165{bottom:57.420000px;}
.y28_c01165{bottom:95.206500px;}
.y27_c01165{bottom:110.866500px;}
.y26_c01165{bottom:126.351000px;}
.y25_c01165{bottom:141.835500px;}
.y24_c01165{bottom:157.320000px;}
.y23_c01165{bottom:172.975500px;}
.y22_c01165{bottom:188.455500px;}
.y21_c01165{bottom:203.913000px;}
.y20_c01165{bottom:219.397500px;}
.y1f_c01165{bottom:235.057500px;}
.y1e_c01165{bottom:250.542000px;}
.y1d_c01165{bottom:266.026500px;}
.y1c_c01165{bottom:281.511000px;}
.y1b_c01165{bottom:297.171000px;}
.y1a_c01165{bottom:312.655500px;}
.y19_c01165{bottom:328.140000px;}
.y18_c01165{bottom:344.335500px;}
.y17_c01165{bottom:362.695500px;}
.y16_c01165{bottom:378.180000px;}
.y15_c01165{bottom:403.380000px;}
.y14_c01165{bottom:451.080000px;}
.y13_c01165{bottom:478.980000px;}
.y12_c01165{bottom:526.135500px;}
.y11_c01165{bottom:538.380000px;}
.y10_c01165{bottom:765.039600px;}
.yf_c01165{bottom:784.116720px;}
.ye_c01165{bottom:803.011680px;}
.yd_c01165{bottom:822.088800px;}
.yc_c01165{bottom:840.983760px;}
.yb_c01165{bottom:859.878720px;}
.ya_c01165{bottom:878.955840px;}
.y9_c01165{bottom:897.850800px;}
.y8_c01165{bottom:916.927920px;}
.y7_c01165{bottom:935.822880px;}
.y6_c01165{bottom:954.900000px;}
.y5_c01165{bottom:982.800000px;}
.y3_c01165{bottom:1006.200000px;}
.y1_c01165{bottom:1009.620000px;}
.h4_c01165{height:8.504648px;}
.h1_c01165{height:20.878500px;}
.h5_c01165{height:37.520508px;}
.h9_c01165{height:37.538508px;}
.h3_c01165{height:39.493828px;}
.h2_c01165{height:39.521602px;}
.h7_c01165{height:46.025156px;}
.h8_c01165{height:46.043156px;}
.h6_c01165{height:49.289062px;}
.h0_c01165{height:1084.500000px;}
.w2_c01165{width:48.600000px;}
.w3_c01165{width:567.900000px;}
.w1_c01165{width:744.000000px;}
.w0_c01165{width:744.300000px;}
.x0_c01165{left:0.000000px;}
.x2_c01165{left:8.100000px;}
.x4_c01165{left:40.860000px;}
.x1_c01165{left:63.900000px;}
.xb_c01165{left:106.398000px;}
.x3_c01165{left:112.500000px;}
.x8_c01165{left:163.975500px;}
.x9_c01165{left:266.040000px;}
.x6_c01165{left:297.000000px;}
.xa_c01165{left:311.580000px;}
.x5_c01165{left:433.620000px;}
.x7_c01165{left:566.100000px;}
@media print{
.v0_c01165{vertical-align:0.000000pt;}
.ls28_c01165{letter-spacing:-0.960000pt;}
.ls21_c01165{letter-spacing:-0.942080pt;}
.ls2b_c01165{letter-spacing:-0.864000pt;}
.ls2d_c01165{letter-spacing:-0.816000pt;}
.ls24_c01165{letter-spacing:-0.765440pt;}
.ls29_c01165{letter-spacing:-0.720000pt;}
.ls22_c01165{letter-spacing:-0.647680pt;}
.ls2c_c01165{letter-spacing:-0.624000pt;}
.ls20_c01165{letter-spacing:-0.529920pt;}
.ls2a_c01165{letter-spacing:-0.528000pt;}
.ls27_c01165{letter-spacing:-0.480000pt;}
.ls1d_c01165{letter-spacing:-0.336000pt;}
.ls23_c01165{letter-spacing:-0.294400pt;}
.ls25_c01165{letter-spacing:-0.192000pt;}
.ls1f_c01165{letter-spacing:-0.128000pt;}
.ls1e_c01165{letter-spacing:-0.096000pt;}
.ls1c_c01165{letter-spacing:0.000000pt;}
.lsa_c01165{letter-spacing:0.081600pt;}
.ls10_c01165{letter-spacing:0.096000pt;}
.ls5_c01165{letter-spacing:0.117760pt;}
.ls9_c01165{letter-spacing:0.144000pt;}
.ls26_c01165{letter-spacing:0.192000pt;}
.ls7_c01165{letter-spacing:0.294400pt;}
.ls0_c01165{letter-spacing:0.303360pt;}
.ls1_c01165{letter-spacing:0.336000pt;}
.ls4_c01165{letter-spacing:0.647680pt;}
.lsf_c01165{letter-spacing:0.672000pt;}
.ls8_c01165{letter-spacing:0.816000pt;}
.ls15_c01165{letter-spacing:1.280000pt;}
.ls3_c01165{letter-spacing:1.295360pt;}
.ls2_c01165{letter-spacing:1.943040pt;}
.lsd_c01165{letter-spacing:3.297600pt;}
.lsc_c01165{letter-spacing:3.360000pt;}
.ls16_c01165{letter-spacing:3.984000pt;}
.ls6_c01165{letter-spacing:4.474880pt;}
.lsb_c01165{letter-spacing:4.656000pt;}
.ls18_c01165{letter-spacing:6.480000pt;}
.ls1a_c01165{letter-spacing:6.508800pt;}
.ls19_c01165{letter-spacing:6.528000pt;}
.ls17_c01165{letter-spacing:6.576000pt;}
.ls11_c01165{letter-spacing:25.776000pt;}
.lse_c01165{letter-spacing:26.400000pt;}
.ls1b_c01165{letter-spacing:27.024000pt;}
.ls14_c01165{letter-spacing:28.944000pt;}
.ls12_c01165{letter-spacing:59.664000pt;}
.ls13_c01165{letter-spacing:60.336000pt;}
.ws9_c01165{word-spacing:-16.192000pt;}
.ws2_c01165{word-spacing:-15.872000pt;}
.ws3_c01165{word-spacing:-15.014400pt;}
.ws5_c01165{word-spacing:-14.837760pt;}
.ws4_c01165{word-spacing:-14.072320pt;}
.ws6_c01165{word-spacing:-13.954560pt;}
.ws0_c01165{word-spacing:-12.943360pt;}
.ws7_c01165{word-spacing:-12.336000pt;}
.ws8_c01165{word-spacing:-12.192000pt;}
.ws10_c01165{word-spacing:-12.144000pt;}
.wsd_c01165{word-spacing:-12.096000pt;}
.ws12_c01165{word-spacing:-12.000000pt;}
.wsa_c01165{word-spacing:-11.904000pt;}
.wsb_c01165{word-spacing:-11.808000pt;}
.ws1_c01165{word-spacing:-11.664000pt;}
.wsc_c01165{word-spacing:-11.520000pt;}
.ws11_c01165{word-spacing:-11.472000pt;}
.ws14_c01165{word-spacing:-11.376000pt;}
.wsf_c01165{word-spacing:-11.280000pt;}
.ws15_c01165{word-spacing:-11.184000pt;}
.ws13_c01165{word-spacing:-11.136000pt;}
.wse_c01165{word-spacing:-11.040000pt;}
.ws28_c01165{word-spacing:-3.827200pt;}
.ws27_c01165{word-spacing:-3.297280pt;}
.ws29_c01165{word-spacing:-3.179520pt;}
.ws2d_c01165{word-spacing:-2.060800pt;}
.ws2e_c01165{word-spacing:-1.943040pt;}
.ws1e_c01165{word-spacing:-0.765440pt;}
.ws21_c01165{word-spacing:-0.647680pt;}
.ws18_c01165{word-spacing:-0.480000pt;}
.ws34_c01165{word-spacing:-0.336000pt;}
.ws2c_c01165{word-spacing:-0.294400pt;}
.ws35_c01165{word-spacing:-0.288000pt;}
.ws32_c01165{word-spacing:-0.192000pt;}
.ws17_c01165{word-spacing:-0.151680pt;}
.ws1f_c01165{word-spacing:-0.117760pt;}
.ws16_c01165{word-spacing:0.000000pt;}
.ws36_c01165{word-spacing:0.048000pt;}
.ws33_c01165{word-spacing:0.192000pt;}
.ws19_c01165{word-spacing:0.240000pt;}
.ws1b_c01165{word-spacing:0.336000pt;}
.ws1a_c01165{word-spacing:0.480000pt;}
.ws20_c01165{word-spacing:0.529920pt;}
.ws23_c01165{word-spacing:0.647680pt;}
.ws22_c01165{word-spacing:0.942080pt;}
.ws25_c01165{word-spacing:1.000960pt;}
.ws26_c01165{word-spacing:1.177600pt;}
.ws24_c01165{word-spacing:1.295360pt;}
.ws1d_c01165{word-spacing:1.825280pt;}
.ws1c_c01165{word-spacing:1.943040pt;}
.ws2b_c01165{word-spacing:5.122560pt;}
.ws2a_c01165{word-spacing:5.416960pt;}
.ws38_c01165{word-spacing:6.432000pt;}
.ws31_c01165{word-spacing:10.775040pt;}
.ws2f_c01165{word-spacing:15.073280pt;}
.ws30_c01165{word-spacing:15.367680pt;}
.ws37_c01165{word-spacing:28.608000pt;}
._3_c01165{margin-left:-3.873024pt;}
._1_c01165{margin-left:-2.270144pt;}
._0_c01165{margin-left:-1.107264pt;}
._2_c01165{width:1.070400pt;}
._6_c01165{width:2.001600pt;}
._7_c01165{width:2.938304pt;}
._5_c01165{width:3.900032pt;}
._4_c01165{width:5.273152pt;}
._c_c01165{width:6.993344pt;}
._9_c01165{width:25.639808pt;}
._8_c01165{width:26.745792pt;}
._d_c01165{width:27.659328pt;}
._b_c01165{width:28.636608pt;}
._a_c01165{width:59.862272pt;}
.fs1_c01165{font-size:10.880000pt;}
.fs2_c01165{font-size:48.000000pt;}
.fs0_c01165{font-size:50.560000pt;}
.fs4_c01165{font-size:58.880000pt;}
.fs3_c01165{font-size:64.000000pt;}
.y0_c01165{bottom:0.000000pt;}
.y2_c01165{bottom:7.040000pt;}
.y4_c01165{bottom:51.040000pt;}
.y28_c01165{bottom:84.628000pt;}
.y27_c01165{bottom:98.548000pt;}
.y26_c01165{bottom:112.312000pt;}
.y25_c01165{bottom:126.076000pt;}
.y24_c01165{bottom:139.840000pt;}
.y23_c01165{bottom:153.756000pt;}
.y22_c01165{bottom:167.516000pt;}
.y21_c01165{bottom:181.256000pt;}
.y20_c01165{bottom:195.020000pt;}
.y1f_c01165{bottom:208.940000pt;}
.y1e_c01165{bottom:222.704000pt;}
.y1d_c01165{bottom:236.468000pt;}
.y1c_c01165{bottom:250.232000pt;}
.y1b_c01165{bottom:264.152000pt;}
.y1a_c01165{bottom:277.916000pt;}
.y19_c01165{bottom:291.680000pt;}
.y18_c01165{bottom:306.076000pt;}
.y17_c01165{bottom:322.396000pt;}
.y16_c01165{bottom:336.160000pt;}
.y15_c01165{bottom:358.560000pt;}
.y14_c01165{bottom:400.960000pt;}
.y13_c01165{bottom:425.760000pt;}
.y12_c01165{bottom:467.676000pt;}
.y11_c01165{bottom:478.560000pt;}
.y10_c01165{bottom:680.035200pt;}
.yf_c01165{bottom:696.992640pt;}
.ye_c01165{bottom:713.788160pt;}
.yd_c01165{bottom:730.745600pt;}
.yc_c01165{bottom:747.541120pt;}
.yb_c01165{bottom:764.336640pt;}
.ya_c01165{bottom:781.294080pt;}
.y9_c01165{bottom:798.089600pt;}
.y8_c01165{bottom:815.047040pt;}
.y7_c01165{bottom:831.842560pt;}
.y6_c01165{bottom:848.800000pt;}
.y5_c01165{bottom:873.600000pt;}
.y3_c01165{bottom:894.400000pt;}
.y1_c01165{bottom:897.440000pt;}
.h4_c01165{height:7.559687pt;}
.h1_c01165{height:18.558667pt;}
.h5_c01165{height:33.351562pt;}
.h9_c01165{height:33.367563pt;}
.h3_c01165{height:35.105625pt;}
.h2_c01165{height:35.130313pt;}
.h7_c01165{height:40.911250pt;}
.h8_c01165{height:40.927250pt;}
.h6_c01165{height:43.812500pt;}
.h0_c01165{height:964.000000pt;}
.w2_c01165{width:43.200000pt;}
.w3_c01165{width:504.800000pt;}
.w1_c01165{width:661.333333pt;}
.w0_c01165{width:661.600000pt;}
.x0_c01165{left:0.000000pt;}
.x2_c01165{left:7.200000pt;}
.x4_c01165{left:36.320000pt;}
.x1_c01165{left:56.800000pt;}
.xb_c01165{left:94.576000pt;}
.x3_c01165{left:100.000000pt;}
.x8_c01165{left:145.756000pt;}
.x9_c01165{left:236.480000pt;}
.x6_c01165{left:264.000000pt;}
.xa_c01165{left:276.960000pt;}
.x5_c01165{left:385.440000pt;}
.x7_c01165{left:503.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_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_574054e5e0b45af05310865f.woff2')format("woff");}.ff1_c01166{font-family:ff1_c01166;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01166;src:url('chunks/assets/font_dcb40082dce0d4d44ce26c79.woff2')format("woff");}.ff2_c01166{font-family:ff2_c01166;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01166{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01166{vertical-align:0.000000px;}
.v1_c01166{vertical-align:18.036000px;}
.ls34_c01166{letter-spacing:-1.242000px;}
.ls3b_c01166{letter-spacing:-1.080000px;}
.ls36_c01166{letter-spacing:-1.044000px;}
.ls39_c01166{letter-spacing:-0.972000px;}
.ls30_c01166{letter-spacing:-0.918000px;}
.ls38_c01166{letter-spacing:-0.864000px;}
.ls2e_c01166{letter-spacing:-0.810000px;}
.ls37_c01166{letter-spacing:-0.720000px;}
.ls3a_c01166{letter-spacing:-0.702000px;}
.ls32_c01166{letter-spacing:-0.594000px;}
.ls33_c01166{letter-spacing:-0.540000px;}
.ls2b_c01166{letter-spacing:-0.378000px;}
.ls35_c01166{letter-spacing:-0.324000px;}
.ls2d_c01166{letter-spacing:-0.216000px;}
.ls2c_c01166{letter-spacing:-0.108000px;}
.ls29_c01166{letter-spacing:-0.056880px;}
.ls2a_c01166{letter-spacing:0.000000px;}
.ls12_c01166{letter-spacing:0.018000px;}
.ls31_c01166{letter-spacing:0.072000px;}
.ls4_c01166{letter-spacing:0.108000px;}
.ls9_c01166{letter-spacing:0.162000px;}
.ls2f_c01166{letter-spacing:0.216000px;}
.ls0_c01166{letter-spacing:0.341280px;}
.ls1_c01166{letter-spacing:0.378000px;}
.ls26_c01166{letter-spacing:0.720000px;}
.ls17_c01166{letter-spacing:0.756000px;}
.lsa_c01166{letter-spacing:0.918000px;}
.lsd_c01166{letter-spacing:2.322000px;}
.lsc_c01166{letter-spacing:3.078000px;}
.lsf_c01166{letter-spacing:4.422600px;}
.ls6_c01166{letter-spacing:4.482000px;}
.ls10_c01166{letter-spacing:5.184000px;}
.lse_c01166{letter-spacing:5.238000px;}
.ls7_c01166{letter-spacing:5.760000px;}
.ls8_c01166{letter-spacing:5.940000px;}
.lsb_c01166{letter-spacing:6.642000px;}
.ls1a_c01166{letter-spacing:7.327800px;}
.ls19_c01166{letter-spacing:7.398000px;}
.ls1b_c01166{letter-spacing:8.083800px;}
.ls18_c01166{letter-spacing:8.100000px;}
.ls20_c01166{letter-spacing:9.558000px;}
.ls1f_c01166{letter-spacing:10.080000px;}
.ls15_c01166{letter-spacing:13.878000px;}
.ls14_c01166{letter-spacing:14.531400px;}
.ls13_c01166{letter-spacing:14.580000px;}
.ls11_c01166{letter-spacing:16.038000px;}
.ls16_c01166{letter-spacing:20.358000px;}
.ls3_c01166{letter-spacing:34.722000px;}
.ls2_c01166{letter-spacing:35.478000px;}
.ls5_c01166{letter-spacing:36.720000px;}
.ls24_c01166{letter-spacing:42.660000px;}
.ls25_c01166{letter-spacing:42.676200px;}
.ls1e_c01166{letter-spacing:46.980000px;}
.ls1d_c01166{letter-spacing:47.633400px;}
.ls1c_c01166{letter-spacing:47.682000px;}
.ls23_c01166{letter-spacing:63.450000px;}
.ls21_c01166{letter-spacing:63.558000px;}
.ls22_c01166{letter-spacing:64.260000px;}
.ls27_c01166{letter-spacing:116.024400px;}
.ls28_c01166{letter-spacing:116.100000px;}
.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;}
}
.ws7_c01166{word-spacing:-16.560000px;}
.ws0_c01166{word-spacing:-14.561280px;}
.ws16_c01166{word-spacing:-14.418000px;}
.ws2_c01166{word-spacing:-13.878000px;}
.ws8_c01166{word-spacing:-13.716000px;}
.wsb_c01166{word-spacing:-13.662000px;}
.ws4_c01166{word-spacing:-13.608000px;}
.wsd_c01166{word-spacing:-13.500000px;}
.ws5_c01166{word-spacing:-13.392000px;}
.ws3_c01166{word-spacing:-13.284000px;}
.wsf_c01166{word-spacing:-13.176000px;}
.ws1_c01166{word-spacing:-13.122000px;}
.ws13_c01166{word-spacing:-12.960000px;}
.wsa_c01166{word-spacing:-12.906000px;}
.ws15_c01166{word-spacing:-12.798000px;}
.ws6_c01166{word-spacing:-12.690000px;}
.ws12_c01166{word-spacing:-12.636000px;}
.wse_c01166{word-spacing:-12.582000px;}
.ws14_c01166{word-spacing:-12.528000px;}
.ws17_c01166{word-spacing:-12.420000px;}
.ws9_c01166{word-spacing:-9.072000px;}
.wsc_c01166{word-spacing:-9.000000px;}
.ws11_c01166{word-spacing:-8.280000px;}
.ws10_c01166{word-spacing:-7.956000px;}
.ws2d_c01166{word-spacing:-1.782000px;}
.ws28_c01166{word-spacing:-0.918000px;}
.ws1a_c01166{word-spacing:-0.540000px;}
.ws2a_c01166{word-spacing:-0.378000px;}
.ws31_c01166{word-spacing:-0.324000px;}
.ws23_c01166{word-spacing:-0.216000px;}
.ws24_c01166{word-spacing:-0.162000px;}
.ws2b_c01166{word-spacing:-0.108000px;}
.ws19_c01166{word-spacing:0.000000px;}
.ws25_c01166{word-spacing:0.108000px;}
.ws26_c01166{word-spacing:0.216000px;}
.ws18_c01166{word-spacing:0.227520px;}
.ws1b_c01166{word-spacing:0.270000px;}
.ws1d_c01166{word-spacing:0.378000px;}
.ws1c_c01166{word-spacing:0.540000px;}
.ws34_c01166{word-spacing:0.594000px;}
.ws29_c01166{word-spacing:0.756000px;}
.ws2f_c01166{word-spacing:0.972000px;}
.ws2c_c01166{word-spacing:1.242000px;}
.ws27_c01166{word-spacing:3.294000px;}
.ws1e_c01166{word-spacing:4.104000px;}
.ws1f_c01166{word-spacing:4.860000px;}
.ws22_c01166{word-spacing:5.832000px;}
.ws20_c01166{word-spacing:6.156000px;}
.ws21_c01166{word-spacing:6.858000px;}
.ws2e_c01166{word-spacing:13.500000px;}
.ws30_c01166{word-spacing:15.660000px;}
.ws32_c01166{word-spacing:19.980000px;}
.ws33_c01166{word-spacing:20.574000px;}
.ws35_c01166{word-spacing:115.020000px;}
._5_c01166{margin-left:-2.562840px;}
._1_c01166{margin-left:-1.541160px;}
._0_c01166{width:1.109160px;}
._3_c01166{width:2.180520px;}
._4_c01166{width:4.914000px;}
._8_c01166{width:5.951880px;}
._6_c01166{width:7.301880px;}
._a_c01166{width:8.303040px;}
._c_c01166{width:9.558000px;}
._9_c01166{width:14.682600px;}
._7_c01166{width:16.137360px;}
._2_c01166{width:35.993160px;}
._e_c01166{width:42.701040px;}
._b_c01166{width:47.723040px;}
._d_c01166{width:64.044000px;}
._f_c01166{width:116.063280px;}
.fc1_c01166{color:rgb(255,0,0);}
.fc0_c01166{color:rgb(0,0,0);}
.fs1_c01166{font-size:12.240000px;}
.fs4_c01166{font-size:36.000000px;}
.fs2_c01166{font-size:54.000000px;}
.fs0_c01166{font-size:56.880000px;}
.fs3_c01166{font-size:66.240000px;}
.y0_c01166{bottom:0.000000px;}
.y2_c01166{bottom:7.920000px;}
.y4_c01166{bottom:57.420000px;}
.y3d_c01166{bottom:107.455500px;}
.y3c_c01166{bottom:123.115500px;}
.y3b_c01166{bottom:138.600000px;}
.y3a_c01166{bottom:154.084500px;}
.y39_c01166{bottom:170.455500px;}
.y38_c01166{bottom:188.640000px;}
.y37_c01166{bottom:204.840000px;}
.y36_c01166{bottom:223.020000px;}
.y35_c01166{bottom:238.680000px;}
.y34_c01166{bottom:254.151000px;}
.y33_c01166{bottom:269.635500px;}
.y32_c01166{bottom:285.075000px;}
.y31_c01166{bottom:300.735000px;}
.y30_c01166{bottom:316.219500px;}
.y2f_c01166{bottom:331.704000px;}
.y2e_c01166{bottom:347.188500px;}
.y2d_c01166{bottom:362.848500px;}
.y2c_c01166{bottom:378.333000px;}
.y2b_c01166{bottom:393.817500px;}
.y2a_c01166{bottom:409.302000px;}
.y29_c01166{bottom:424.962000px;}
.y28_c01166{bottom:440.446500px;}
.y27_c01166{bottom:455.931000px;}
.y26_c01166{bottom:471.415500px;}
.y25_c01166{bottom:487.080000px;}
.y24_c01166{bottom:502.537500px;}
.y23_c01166{bottom:518.022000px;}
.y22_c01166{bottom:533.506500px;}
.y21_c01166{bottom:549.166500px;}
.y20_c01166{bottom:564.651000px;}
.y1f_c01166{bottom:580.135500px;}
.y1e_c01166{bottom:595.620000px;}
.y1d_c01166{bottom:611.248500px;}
.y1c_c01166{bottom:626.733000px;}
.y1b_c01166{bottom:642.217500px;}
.y1a_c01166{bottom:657.702000px;}
.y19_c01166{bottom:673.186500px;}
.y18_c01166{bottom:688.846500px;}
.y17_c01166{bottom:704.331000px;}
.y16_c01166{bottom:719.815500px;}
.y15_c01166{bottom:735.300000px;}
.y14_c01166{bottom:750.951000px;}
.y13_c01166{bottom:766.435500px;}
.y12_c01166{bottom:781.902000px;}
.y11_c01166{bottom:797.386500px;}
.y10_c01166{bottom:813.046500px;}
.yf_c01166{bottom:828.531000px;}
.ye_c01166{bottom:844.015500px;}
.yd_c01166{bottom:859.491000px;}
.yc_c01166{bottom:875.151000px;}
.yb_c01166{bottom:890.635500px;}
.ya_c01166{bottom:906.111000px;}
.y9_c01166{bottom:921.595500px;}
.y8_c01166{bottom:937.255500px;}
.y7_c01166{bottom:952.740000px;}
.y6_c01166{bottom:968.940000px;}
.y5_c01166{bottom:987.300000px;}
.y3_c01166{bottom:1006.200000px;}
.y1_c01166{bottom:1009.620000px;}
.h4_c01166{height:8.504648px;}
.h1_c01166{height:20.878500px;}
.h5_c01166{height:37.520508px;}
.h9_c01166{height:37.574508px;}
.hb_c01166{height:37.628508px;}
.h2_c01166{height:39.493828px;}
.h3_c01166{height:39.521602px;}
.h7_c01166{height:43.032094px;}
.h8_c01166{height:43.068094px;}
.ha_c01166{height:43.139672px;}
.h6_c01166{height:46.025156px;}
.he_c01166{height:46.043156px;}
.hd_c01166{height:46.061156px;}
.hc_c01166{height:46.205156px;}
.h0_c01166{height:1084.500000px;}
.w3_c01166{width:47.520000px;}
.w2_c01166{width:568.980000px;}
.w1_c01166{width:744.000000px;}
.w0_c01166{width:744.300000px;}
.x0_c01166{left:0.000000px;}
.x2_c01166{left:8.100000px;}
.x4_c01166{left:18.000000px;}
.x1_c01166{left:63.900000px;}
.x5_c01166{left:106.384500px;}
.x3_c01166{left:632.880000px;}
@media print{
.v0_c01166{vertical-align:0.000000pt;}
.v1_c01166{vertical-align:16.032000pt;}
.ls34_c01166{letter-spacing:-1.104000pt;}
.ls3b_c01166{letter-spacing:-0.960000pt;}
.ls36_c01166{letter-spacing:-0.928000pt;}
.ls39_c01166{letter-spacing:-0.864000pt;}
.ls30_c01166{letter-spacing:-0.816000pt;}
.ls38_c01166{letter-spacing:-0.768000pt;}
.ls2e_c01166{letter-spacing:-0.720000pt;}
.ls37_c01166{letter-spacing:-0.640000pt;}
.ls3a_c01166{letter-spacing:-0.624000pt;}
.ls32_c01166{letter-spacing:-0.528000pt;}
.ls33_c01166{letter-spacing:-0.480000pt;}
.ls2b_c01166{letter-spacing:-0.336000pt;}
.ls35_c01166{letter-spacing:-0.288000pt;}
.ls2d_c01166{letter-spacing:-0.192000pt;}
.ls2c_c01166{letter-spacing:-0.096000pt;}
.ls29_c01166{letter-spacing:-0.050560pt;}
.ls2a_c01166{letter-spacing:0.000000pt;}
.ls12_c01166{letter-spacing:0.016000pt;}
.ls31_c01166{letter-spacing:0.064000pt;}
.ls4_c01166{letter-spacing:0.096000pt;}
.ls9_c01166{letter-spacing:0.144000pt;}
.ls2f_c01166{letter-spacing:0.192000pt;}
.ls0_c01166{letter-spacing:0.303360pt;}
.ls1_c01166{letter-spacing:0.336000pt;}
.ls26_c01166{letter-spacing:0.640000pt;}
.ls17_c01166{letter-spacing:0.672000pt;}
.lsa_c01166{letter-spacing:0.816000pt;}
.lsd_c01166{letter-spacing:2.064000pt;}
.lsc_c01166{letter-spacing:2.736000pt;}
.lsf_c01166{letter-spacing:3.931200pt;}
.ls6_c01166{letter-spacing:3.984000pt;}
.ls10_c01166{letter-spacing:4.608000pt;}
.lse_c01166{letter-spacing:4.656000pt;}
.ls7_c01166{letter-spacing:5.120000pt;}
.ls8_c01166{letter-spacing:5.280000pt;}
.lsb_c01166{letter-spacing:5.904000pt;}
.ls1a_c01166{letter-spacing:6.513600pt;}
.ls19_c01166{letter-spacing:6.576000pt;}
.ls1b_c01166{letter-spacing:7.185600pt;}
.ls18_c01166{letter-spacing:7.200000pt;}
.ls20_c01166{letter-spacing:8.496000pt;}
.ls1f_c01166{letter-spacing:8.960000pt;}
.ls15_c01166{letter-spacing:12.336000pt;}
.ls14_c01166{letter-spacing:12.916800pt;}
.ls13_c01166{letter-spacing:12.960000pt;}
.ls11_c01166{letter-spacing:14.256000pt;}
.ls16_c01166{letter-spacing:18.096000pt;}
.ls3_c01166{letter-spacing:30.864000pt;}
.ls2_c01166{letter-spacing:31.536000pt;}
.ls5_c01166{letter-spacing:32.640000pt;}
.ls24_c01166{letter-spacing:37.920000pt;}
.ls25_c01166{letter-spacing:37.934400pt;}
.ls1e_c01166{letter-spacing:41.760000pt;}
.ls1d_c01166{letter-spacing:42.340800pt;}
.ls1c_c01166{letter-spacing:42.384000pt;}
.ls23_c01166{letter-spacing:56.400000pt;}
.ls21_c01166{letter-spacing:56.496000pt;}
.ls22_c01166{letter-spacing:57.120000pt;}
.ls27_c01166{letter-spacing:103.132800pt;}
.ls28_c01166{letter-spacing:103.200000pt;}
.ws7_c01166{word-spacing:-14.720000pt;}
.ws0_c01166{word-spacing:-12.943360pt;}
.ws16_c01166{word-spacing:-12.816000pt;}
.ws2_c01166{word-spacing:-12.336000pt;}
.ws8_c01166{word-spacing:-12.192000pt;}
.wsb_c01166{word-spacing:-12.144000pt;}
.ws4_c01166{word-spacing:-12.096000pt;}
.wsd_c01166{word-spacing:-12.000000pt;}
.ws5_c01166{word-spacing:-11.904000pt;}
.ws3_c01166{word-spacing:-11.808000pt;}
.wsf_c01166{word-spacing:-11.712000pt;}
.ws1_c01166{word-spacing:-11.664000pt;}
.ws13_c01166{word-spacing:-11.520000pt;}
.wsa_c01166{word-spacing:-11.472000pt;}
.ws15_c01166{word-spacing:-11.376000pt;}
.ws6_c01166{word-spacing:-11.280000pt;}
.ws12_c01166{word-spacing:-11.232000pt;}
.wse_c01166{word-spacing:-11.184000pt;}
.ws14_c01166{word-spacing:-11.136000pt;}
.ws17_c01166{word-spacing:-11.040000pt;}
.ws9_c01166{word-spacing:-8.064000pt;}
.wsc_c01166{word-spacing:-8.000000pt;}
.ws11_c01166{word-spacing:-7.360000pt;}
.ws10_c01166{word-spacing:-7.072000pt;}
.ws2d_c01166{word-spacing:-1.584000pt;}
.ws28_c01166{word-spacing:-0.816000pt;}
.ws1a_c01166{word-spacing:-0.480000pt;}
.ws2a_c01166{word-spacing:-0.336000pt;}
.ws31_c01166{word-spacing:-0.288000pt;}
.ws23_c01166{word-spacing:-0.192000pt;}
.ws24_c01166{word-spacing:-0.144000pt;}
.ws2b_c01166{word-spacing:-0.096000pt;}
.ws19_c01166{word-spacing:0.000000pt;}
.ws25_c01166{word-spacing:0.096000pt;}
.ws26_c01166{word-spacing:0.192000pt;}
.ws18_c01166{word-spacing:0.202240pt;}
.ws1b_c01166{word-spacing:0.240000pt;}
.ws1d_c01166{word-spacing:0.336000pt;}
.ws1c_c01166{word-spacing:0.480000pt;}
.ws34_c01166{word-spacing:0.528000pt;}
.ws29_c01166{word-spacing:0.672000pt;}
.ws2f_c01166{word-spacing:0.864000pt;}
.ws2c_c01166{word-spacing:1.104000pt;}
.ws27_c01166{word-spacing:2.928000pt;}
.ws1e_c01166{word-spacing:3.648000pt;}
.ws1f_c01166{word-spacing:4.320000pt;}
.ws22_c01166{word-spacing:5.184000pt;}
.ws20_c01166{word-spacing:5.472000pt;}
.ws21_c01166{word-spacing:6.096000pt;}
.ws2e_c01166{word-spacing:12.000000pt;}
.ws30_c01166{word-spacing:13.920000pt;}
.ws32_c01166{word-spacing:17.760000pt;}
.ws33_c01166{word-spacing:18.288000pt;}
.ws35_c01166{word-spacing:102.240000pt;}
._5_c01166{margin-left:-2.278080pt;}
._1_c01166{margin-left:-1.369920pt;}
._0_c01166{width:0.985920pt;}
._3_c01166{width:1.938240pt;}
._4_c01166{width:4.368000pt;}
._8_c01166{width:5.290560pt;}
._6_c01166{width:6.490560pt;}
._a_c01166{width:7.380480pt;}
._c_c01166{width:8.496000pt;}
._9_c01166{width:13.051200pt;}
._7_c01166{width:14.344320pt;}
._2_c01166{width:31.993920pt;}
._e_c01166{width:37.956480pt;}
._b_c01166{width:42.420480pt;}
._d_c01166{width:56.928000pt;}
._f_c01166{width:103.167360pt;}
.fs1_c01166{font-size:10.880000pt;}
.fs4_c01166{font-size:32.000000pt;}
.fs2_c01166{font-size:48.000000pt;}
.fs0_c01166{font-size:50.560000pt;}
.fs3_c01166{font-size:58.880000pt;}
.y0_c01166{bottom:0.000000pt;}
.y2_c01166{bottom:7.040000pt;}
.y4_c01166{bottom:51.040000pt;}
.y3d_c01166{bottom:95.516000pt;}
.y3c_c01166{bottom:109.436000pt;}
.y3b_c01166{bottom:123.200000pt;}
.y3a_c01166{bottom:136.964000pt;}
.y39_c01166{bottom:151.516000pt;}
.y38_c01166{bottom:167.680000pt;}
.y37_c01166{bottom:182.080000pt;}
.y36_c01166{bottom:198.240000pt;}
.y35_c01166{bottom:212.160000pt;}
.y34_c01166{bottom:225.912000pt;}
.y33_c01166{bottom:239.676000pt;}
.y32_c01166{bottom:253.400000pt;}
.y31_c01166{bottom:267.320000pt;}
.y30_c01166{bottom:281.084000pt;}
.y2f_c01166{bottom:294.848000pt;}
.y2e_c01166{bottom:308.612000pt;}
.y2d_c01166{bottom:322.532000pt;}
.y2c_c01166{bottom:336.296000pt;}
.y2b_c01166{bottom:350.060000pt;}
.y2a_c01166{bottom:363.824000pt;}
.y29_c01166{bottom:377.744000pt;}
.y28_c01166{bottom:391.508000pt;}
.y27_c01166{bottom:405.272000pt;}
.y26_c01166{bottom:419.036000pt;}
.y25_c01166{bottom:432.960000pt;}
.y24_c01166{bottom:446.700000pt;}
.y23_c01166{bottom:460.464000pt;}
.y22_c01166{bottom:474.228000pt;}
.y21_c01166{bottom:488.148000pt;}
.y20_c01166{bottom:501.912000pt;}
.y1f_c01166{bottom:515.676000pt;}
.y1e_c01166{bottom:529.440000pt;}
.y1d_c01166{bottom:543.332000pt;}
.y1c_c01166{bottom:557.096000pt;}
.y1b_c01166{bottom:570.860000pt;}
.y1a_c01166{bottom:584.624000pt;}
.y19_c01166{bottom:598.388000pt;}
.y18_c01166{bottom:612.308000pt;}
.y17_c01166{bottom:626.072000pt;}
.y16_c01166{bottom:639.836000pt;}
.y15_c01166{bottom:653.600000pt;}
.y14_c01166{bottom:667.512000pt;}
.y13_c01166{bottom:681.276000pt;}
.y12_c01166{bottom:695.024000pt;}
.y11_c01166{bottom:708.788000pt;}
.y10_c01166{bottom:722.708000pt;}
.yf_c01166{bottom:736.472000pt;}
.ye_c01166{bottom:750.236000pt;}
.yd_c01166{bottom:763.992000pt;}
.yc_c01166{bottom:777.912000pt;}
.yb_c01166{bottom:791.676000pt;}
.ya_c01166{bottom:805.432000pt;}
.y9_c01166{bottom:819.196000pt;}
.y8_c01166{bottom:833.116000pt;}
.y7_c01166{bottom:846.880000pt;}
.y6_c01166{bottom:861.280000pt;}
.y5_c01166{bottom:877.600000pt;}
.y3_c01166{bottom:894.400000pt;}
.y1_c01166{bottom:897.440000pt;}
.h4_c01166{height:7.559687pt;}
.h1_c01166{height:18.558667pt;}
.h5_c01166{height:33.351562pt;}
.h9_c01166{height:33.399563pt;}
.hb_c01166{height:33.447563pt;}
.h2_c01166{height:35.105625pt;}
.h3_c01166{height:35.130313pt;}
.h7_c01166{height:38.250750pt;}
.h8_c01166{height:38.282750pt;}
.ha_c01166{height:38.346375pt;}
.h6_c01166{height:40.911250pt;}
.he_c01166{height:40.927250pt;}
.hd_c01166{height:40.943250pt;}
.hc_c01166{height:41.071250pt;}
.h0_c01166{height:964.000000pt;}
.w3_c01166{width:42.240000pt;}
.w2_c01166{width:505.760000pt;}
.w1_c01166{width:661.333333pt;}
.w0_c01166{width:661.600000pt;}
.x0_c01166{left:0.000000pt;}
.x2_c01166{left:7.200000pt;}
.x4_c01166{left:16.000000pt;}
.x1_c01166{left:56.800000pt;}
.x5_c01166{left:94.564000pt;}
.x3_c01166{left:562.560000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e668fb2d23440c4742980c15.woff2')format("woff");}.ff1_c01167{font-family:ff1_c01167;line-height:0.873535;font-style:normal;font-weight:normal;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_c75d7061fd2b3e41ab69b2ce.woff2')format("woff");}.ff2_c01167{font-family:ff2_c01167;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01167;src:url('chunks/assets/font_799828cf10d01b05148e032e.woff2')format("woff");}.ff3_c01167{font-family:ff3_c01167;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01167;src:url('chunks/assets/font_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff4_c01167{font-family:ff4_c01167;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01167{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01167{vertical-align:0.000000px;}
.v1_c01167{vertical-align:15.120000px;}
.ls21_c01167{letter-spacing:-0.964800px;}
.ls1b_c01167{letter-spacing:-0.675360px;}
.ls26_c01167{letter-spacing:-0.597600px;}
.ls19_c01167{letter-spacing:-0.530640px;}
.ls22_c01167{letter-spacing:-0.504000px;}
.ls23_c01167{letter-spacing:-0.358560px;}
.ls1a_c01167{letter-spacing:-0.337680px;}
.ls27_c01167{letter-spacing:-0.298800px;}
.ls15_c01167{letter-spacing:-0.289440px;}
.ls14_c01167{letter-spacing:-0.241200px;}
.ls1c_c01167{letter-spacing:-0.240480px;}
.ls20_c01167{letter-spacing:-0.239040px;}
.ls13_c01167{letter-spacing:-0.216000px;}
.ls29_c01167{letter-spacing:-0.179280px;}
.ls17_c01167{letter-spacing:-0.144720px;}
.ls1e_c01167{letter-spacing:-0.059760px;}
.ls12_c01167{letter-spacing:0.000000px;}
.ls4_c01167{letter-spacing:0.024120px;}
.ls16_c01167{letter-spacing:0.048240px;}
.ls24_c01167{letter-spacing:0.059760px;}
.ls5_c01167{letter-spacing:0.096480px;}
.ls25_c01167{letter-spacing:0.119520px;}
.ls1d_c01167{letter-spacing:0.120240px;}
.lsd_c01167{letter-spacing:0.179280px;}
.ls18_c01167{letter-spacing:0.192960px;}
.ls10_c01167{letter-spacing:0.197208px;}
.ls11_c01167{letter-spacing:0.216000px;}
.ls1f_c01167{letter-spacing:0.239040px;}
.ls9_c01167{letter-spacing:0.298800px;}
.ls0_c01167{letter-spacing:0.337680px;}
.ls28_c01167{letter-spacing:0.717120px;}
.ls3_c01167{letter-spacing:0.820080px;}
.ls8_c01167{letter-spacing:0.896400px;}
.lsc_c01167{letter-spacing:2.330640px;}
.lsb_c01167{letter-spacing:3.143376px;}
.lsf_c01167{letter-spacing:3.764880px;}
.lse_c01167{letter-spacing:4.482000px;}
.ls6_c01167{letter-spacing:5.916240px;}
.ls7_c01167{letter-spacing:5.928192px;}
.lsa_c01167{letter-spacing:14.581440px;}
.ls1_c01167{letter-spacing:91.318320px;}
.ls2_c01167{letter-spacing:305.166240px;}
.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;}
}
.ws8_c01167{word-spacing:-26.933760px;}
.ws14_c01167{word-spacing:-16.488000px;}
.ws0_c01167{word-spacing:-16.056000px;}
.wsd_c01167{word-spacing:-15.768000px;}
.ws13_c01167{word-spacing:-14.222880px;}
.wse_c01167{word-spacing:-13.804560px;}
.wsf_c01167{word-spacing:-13.685040px;}
.ws10_c01167{word-spacing:-13.625280px;}
.ws11_c01167{word-spacing:-13.505760px;}
.ws9_c01167{word-spacing:-13.446000px;}
.ws16_c01167{word-spacing:-13.326480px;}
.wsa_c01167{word-spacing:-13.266720px;}
.ws12_c01167{word-spacing:-13.206960px;}
.ws15_c01167{word-spacing:-13.147200px;}
.ws3_c01167{word-spacing:-11.095200px;}
.ws7_c01167{word-spacing:-10.950480px;}
.ws6_c01167{word-spacing:-10.902240px;}
.ws2_c01167{word-spacing:-10.757520px;}
.ws1_c01167{word-spacing:-10.661040px;}
.wsc_c01167{word-spacing:-10.612800px;}
.ws5_c01167{word-spacing:-10.564560px;}
.ws4_c01167{word-spacing:-10.226880px;}
.wsb_c01167{word-spacing:-9.937440px;}
.ws1e_c01167{word-spacing:-2.026080px;}
.ws1d_c01167{word-spacing:-1.591920px;}
.ws21_c01167{word-spacing:-1.302480px;}
.ws22_c01167{word-spacing:-1.206000px;}
.ws37_c01167{word-spacing:-0.836640px;}
.ws26_c01167{word-spacing:-0.601200px;}
.ws36_c01167{word-spacing:-0.478080px;}
.ws41_c01167{word-spacing:-0.298800px;}
.ws23_c01167{word-spacing:-0.289440px;}
.ws27_c01167{word-spacing:-0.239040px;}
.ws28_c01167{word-spacing:-0.192960px;}
.ws3b_c01167{word-spacing:-0.179280px;}
.ws1a_c01167{word-spacing:-0.144720px;}
.ws34_c01167{word-spacing:-0.119520px;}
.ws24_c01167{word-spacing:-0.060000px;}
.ws30_c01167{word-spacing:-0.059760px;}
.ws29_c01167{word-spacing:-0.048240px;}
.ws18_c01167{word-spacing:0.000000px;}
.ws1c_c01167{word-spacing:0.048240px;}
.ws3e_c01167{word-spacing:0.059760px;}
.ws17_c01167{word-spacing:0.072000px;}
.ws1b_c01167{word-spacing:0.144720px;}
.ws19_c01167{word-spacing:0.192960px;}
.ws31_c01167{word-spacing:0.239040px;}
.ws25_c01167{word-spacing:0.240480px;}
.ws20_c01167{word-spacing:0.241200px;}
.ws2d_c01167{word-spacing:0.358560px;}
.ws35_c01167{word-spacing:0.418320px;}
.ws1f_c01167{word-spacing:0.530640px;}
.ws38_c01167{word-spacing:0.597600px;}
.ws33_c01167{word-spacing:1.135440px;}
.ws40_c01167{word-spacing:2.031840px;}
.ws3f_c01167{word-spacing:2.390400px;}
.ws42_c01167{word-spacing:2.569680px;}
.ws3d_c01167{word-spacing:2.748960px;}
.ws3c_c01167{word-spacing:3.107520px;}
.ws45_c01167{word-spacing:3.466080px;}
.ws43_c01167{word-spacing:4.183200px;}
.ws44_c01167{word-spacing:4.541760px;}
.ws2b_c01167{word-spacing:5.617440px;}
.ws2c_c01167{word-spacing:5.976000px;}
.ws2a_c01167{word-spacing:6.155280px;}
.ws2e_c01167{word-spacing:6.274800px;}
.ws32_c01167{word-spacing:6.334560px;}
.ws2f_c01167{word-spacing:6.693120px;}
.ws39_c01167{word-spacing:14.282640px;}
.ws3a_c01167{word-spacing:14.402160px;}
.ws47_c01167{word-spacing:15.716880px;}
.ws48_c01167{word-spacing:15.776640px;}
.ws49_c01167{word-spacing:16.075440px;}
.ws46_c01167{word-spacing:16.254720px;}
._0_c01167{margin-left:-1.512000px;}
._1_c01167{width:1.296000px;}
._6_c01167{width:3.484080px;}
._5_c01167{width:5.825808px;}
._3_c01167{width:9.509760px;}
._7_c01167{width:15.409440px;}
._8_c01167{width:16.507440px;}
._2_c01167{width:261.949680px;}
._4_c01167{width:329.623920px;}
.fc1_c01167{color:rgb(0,0,0);}
.fc0_c01167{color:rgb(0,0,255);}
.fs4_c01167{font-size:30.240000px;}
.fs1_c01167{font-size:48.240000px;}
.fs2_c01167{font-size:59.760000px;}
.fs0_c01167{font-size:72.000000px;}
.fs3_c01167{font-size:120.240000px;}
.y0_c01167{bottom:0.000000px;}
.y2_c01167{bottom:15.120000px;}
.yb_c01167{bottom:67.680000px;}
.ya_c01167{bottom:85.318560px;}
.y9_c01167{bottom:100.080000px;}
.y8_c01167{bottom:114.660000px;}
.y7_c01167{bottom:129.240000px;}
.y2b_c01167{bottom:190.978200px;}
.y2a_c01167{bottom:212.940000px;}
.y29_c01167{bottom:242.460000px;}
.y28_c01167{bottom:284.546520px;}
.y27_c01167{bottom:306.508320px;}
.y26_c01167{bottom:328.470120px;}
.y25_c01167{bottom:350.431920px;}
.y24_c01167{bottom:372.393720px;}
.y23_c01167{bottom:394.355520px;}
.y22_c01167{bottom:416.317320px;}
.y21_c01167{bottom:438.279120px;}
.y20_c01167{bottom:460.240920px;}
.y1f_c01167{bottom:482.382000px;}
.y1e_c01167{bottom:504.343800px;}
.y1d_c01167{bottom:526.305600px;}
.y1c_c01167{bottom:548.267400px;}
.y1b_c01167{bottom:570.229200px;}
.y1a_c01167{bottom:592.191000px;}
.y19_c01167{bottom:614.152800px;}
.y18_c01167{bottom:636.114600px;}
.y17_c01167{bottom:658.076400px;}
.y16_c01167{bottom:680.038200px;}
.y15_c01167{bottom:702.000000px;}
.y14_c01167{bottom:731.520000px;}
.y13_c01167{bottom:821.696580px;}
.y12_c01167{bottom:836.458020px;}
.y11_c01167{bottom:851.038500px;}
.y10_c01167{bottom:880.380000px;}
.yf_c01167{bottom:894.960000px;}
.ye_c01167{bottom:910.260000px;}
.yd_c01167{bottom:962.642340px;}
.yc_c01167{bottom:1006.560000px;}
.y6_c01167{bottom:1075.496040px;}
.y5_c01167{bottom:1090.257480px;}
.y4_c01167{bottom:1104.838020px;}
.y3_c01167{bottom:1119.418500px;}
.y1_c01167{bottom:1145.520000px;}
.h2_c01167{height:32.400000px;}
.h5_c01167{height:34.625391px;}
.h4_c01167{height:34.625631px;}
.h9_c01167{height:34.639071px;}
.h8_c01167{height:36.825469px;}
.h6_c01167{height:42.894141px;}
.h3_c01167{height:50.062500px;}
.h7_c01167{height:83.604375px;}
.h0_c01167{height:1262.880000px;}
.h1_c01167{height:1263.000000px;}
.w2_c01167{width:723.060000px;}
.w0_c01167{width:892.980000px;}
.w1_c01167{width:893.250000px;}
.x0_c01167{left:0.000000px;}
.x2_c01167{left:8.100000px;}
.x1_c01167{left:84.960000px;}
.x3_c01167{left:442.620000px;}
@media print{
.v0_c01167{vertical-align:0.000000pt;}
.v1_c01167{vertical-align:13.440000pt;}
.ls21_c01167{letter-spacing:-0.857600pt;}
.ls1b_c01167{letter-spacing:-0.600320pt;}
.ls26_c01167{letter-spacing:-0.531200pt;}
.ls19_c01167{letter-spacing:-0.471680pt;}
.ls22_c01167{letter-spacing:-0.448000pt;}
.ls23_c01167{letter-spacing:-0.318720pt;}
.ls1a_c01167{letter-spacing:-0.300160pt;}
.ls27_c01167{letter-spacing:-0.265600pt;}
.ls15_c01167{letter-spacing:-0.257280pt;}
.ls14_c01167{letter-spacing:-0.214400pt;}
.ls1c_c01167{letter-spacing:-0.213760pt;}
.ls20_c01167{letter-spacing:-0.212480pt;}
.ls13_c01167{letter-spacing:-0.192000pt;}
.ls29_c01167{letter-spacing:-0.159360pt;}
.ls17_c01167{letter-spacing:-0.128640pt;}
.ls1e_c01167{letter-spacing:-0.053120pt;}
.ls12_c01167{letter-spacing:0.000000pt;}
.ls4_c01167{letter-spacing:0.021440pt;}
.ls16_c01167{letter-spacing:0.042880pt;}
.ls24_c01167{letter-spacing:0.053120pt;}
.ls5_c01167{letter-spacing:0.085760pt;}
.ls25_c01167{letter-spacing:0.106240pt;}
.ls1d_c01167{letter-spacing:0.106880pt;}
.lsd_c01167{letter-spacing:0.159360pt;}
.ls18_c01167{letter-spacing:0.171520pt;}
.ls10_c01167{letter-spacing:0.175296pt;}
.ls11_c01167{letter-spacing:0.192000pt;}
.ls1f_c01167{letter-spacing:0.212480pt;}
.ls9_c01167{letter-spacing:0.265600pt;}
.ls0_c01167{letter-spacing:0.300160pt;}
.ls28_c01167{letter-spacing:0.637440pt;}
.ls3_c01167{letter-spacing:0.728960pt;}
.ls8_c01167{letter-spacing:0.796800pt;}
.lsc_c01167{letter-spacing:2.071680pt;}
.lsb_c01167{letter-spacing:2.794112pt;}
.lsf_c01167{letter-spacing:3.346560pt;}
.lse_c01167{letter-spacing:3.984000pt;}
.ls6_c01167{letter-spacing:5.258880pt;}
.ls7_c01167{letter-spacing:5.269504pt;}
.lsa_c01167{letter-spacing:12.961280pt;}
.ls1_c01167{letter-spacing:81.171840pt;}
.ls2_c01167{letter-spacing:271.258880pt;}
.ws8_c01167{word-spacing:-23.941120pt;}
.ws14_c01167{word-spacing:-14.656000pt;}
.ws0_c01167{word-spacing:-14.272000pt;}
.wsd_c01167{word-spacing:-14.016000pt;}
.ws13_c01167{word-spacing:-12.642560pt;}
.wse_c01167{word-spacing:-12.270720pt;}
.wsf_c01167{word-spacing:-12.164480pt;}
.ws10_c01167{word-spacing:-12.111360pt;}
.ws11_c01167{word-spacing:-12.005120pt;}
.ws9_c01167{word-spacing:-11.952000pt;}
.ws16_c01167{word-spacing:-11.845760pt;}
.wsa_c01167{word-spacing:-11.792640pt;}
.ws12_c01167{word-spacing:-11.739520pt;}
.ws15_c01167{word-spacing:-11.686400pt;}
.ws3_c01167{word-spacing:-9.862400pt;}
.ws7_c01167{word-spacing:-9.733760pt;}
.ws6_c01167{word-spacing:-9.690880pt;}
.ws2_c01167{word-spacing:-9.562240pt;}
.ws1_c01167{word-spacing:-9.476480pt;}
.wsc_c01167{word-spacing:-9.433600pt;}
.ws5_c01167{word-spacing:-9.390720pt;}
.ws4_c01167{word-spacing:-9.090560pt;}
.wsb_c01167{word-spacing:-8.833280pt;}
.ws1e_c01167{word-spacing:-1.800960pt;}
.ws1d_c01167{word-spacing:-1.415040pt;}
.ws21_c01167{word-spacing:-1.157760pt;}
.ws22_c01167{word-spacing:-1.072000pt;}
.ws37_c01167{word-spacing:-0.743680pt;}
.ws26_c01167{word-spacing:-0.534400pt;}
.ws36_c01167{word-spacing:-0.424960pt;}
.ws41_c01167{word-spacing:-0.265600pt;}
.ws23_c01167{word-spacing:-0.257280pt;}
.ws27_c01167{word-spacing:-0.212480pt;}
.ws28_c01167{word-spacing:-0.171520pt;}
.ws3b_c01167{word-spacing:-0.159360pt;}
.ws1a_c01167{word-spacing:-0.128640pt;}
.ws34_c01167{word-spacing:-0.106240pt;}
.ws24_c01167{word-spacing:-0.053333pt;}
.ws30_c01167{word-spacing:-0.053120pt;}
.ws29_c01167{word-spacing:-0.042880pt;}
.ws18_c01167{word-spacing:0.000000pt;}
.ws1c_c01167{word-spacing:0.042880pt;}
.ws3e_c01167{word-spacing:0.053120pt;}
.ws17_c01167{word-spacing:0.064000pt;}
.ws1b_c01167{word-spacing:0.128640pt;}
.ws19_c01167{word-spacing:0.171520pt;}
.ws31_c01167{word-spacing:0.212480pt;}
.ws25_c01167{word-spacing:0.213760pt;}
.ws20_c01167{word-spacing:0.214400pt;}
.ws2d_c01167{word-spacing:0.318720pt;}
.ws35_c01167{word-spacing:0.371840pt;}
.ws1f_c01167{word-spacing:0.471680pt;}
.ws38_c01167{word-spacing:0.531200pt;}
.ws33_c01167{word-spacing:1.009280pt;}
.ws40_c01167{word-spacing:1.806080pt;}
.ws3f_c01167{word-spacing:2.124800pt;}
.ws42_c01167{word-spacing:2.284160pt;}
.ws3d_c01167{word-spacing:2.443520pt;}
.ws3c_c01167{word-spacing:2.762240pt;}
.ws45_c01167{word-spacing:3.080960pt;}
.ws43_c01167{word-spacing:3.718400pt;}
.ws44_c01167{word-spacing:4.037120pt;}
.ws2b_c01167{word-spacing:4.993280pt;}
.ws2c_c01167{word-spacing:5.312000pt;}
.ws2a_c01167{word-spacing:5.471360pt;}
.ws2e_c01167{word-spacing:5.577600pt;}
.ws32_c01167{word-spacing:5.630720pt;}
.ws2f_c01167{word-spacing:5.949440pt;}
.ws39_c01167{word-spacing:12.695680pt;}
.ws3a_c01167{word-spacing:12.801920pt;}
.ws47_c01167{word-spacing:13.970560pt;}
.ws48_c01167{word-spacing:14.023680pt;}
.ws49_c01167{word-spacing:14.289280pt;}
.ws46_c01167{word-spacing:14.448640pt;}
._0_c01167{margin-left:-1.344000pt;}
._1_c01167{width:1.152000pt;}
._6_c01167{width:3.096960pt;}
._5_c01167{width:5.178496pt;}
._3_c01167{width:8.453120pt;}
._7_c01167{width:13.697280pt;}
._8_c01167{width:14.673280pt;}
._2_c01167{width:232.844160pt;}
._4_c01167{width:292.999040pt;}
.fs4_c01167{font-size:26.880000pt;}
.fs1_c01167{font-size:42.880000pt;}
.fs2_c01167{font-size:53.120000pt;}
.fs0_c01167{font-size:64.000000pt;}
.fs3_c01167{font-size:106.880000pt;}
.y0_c01167{bottom:0.000000pt;}
.y2_c01167{bottom:13.440000pt;}
.yb_c01167{bottom:60.160000pt;}
.ya_c01167{bottom:75.838720pt;}
.y9_c01167{bottom:88.960000pt;}
.y8_c01167{bottom:101.920000pt;}
.y7_c01167{bottom:114.880000pt;}
.y2b_c01167{bottom:169.758400pt;}
.y2a_c01167{bottom:189.280000pt;}
.y29_c01167{bottom:215.520000pt;}
.y28_c01167{bottom:252.930240pt;}
.y27_c01167{bottom:272.451840pt;}
.y26_c01167{bottom:291.973440pt;}
.y25_c01167{bottom:311.495040pt;}
.y24_c01167{bottom:331.016640pt;}
.y23_c01167{bottom:350.538240pt;}
.y22_c01167{bottom:370.059840pt;}
.y21_c01167{bottom:389.581440pt;}
.y20_c01167{bottom:409.103040pt;}
.y1f_c01167{bottom:428.784000pt;}
.y1e_c01167{bottom:448.305600pt;}
.y1d_c01167{bottom:467.827200pt;}
.y1c_c01167{bottom:487.348800pt;}
.y1b_c01167{bottom:506.870400pt;}
.y1a_c01167{bottom:526.392000pt;}
.y19_c01167{bottom:545.913600pt;}
.y18_c01167{bottom:565.435200pt;}
.y17_c01167{bottom:584.956800pt;}
.y16_c01167{bottom:604.478400pt;}
.y15_c01167{bottom:624.000000pt;}
.y14_c01167{bottom:650.240000pt;}
.y13_c01167{bottom:730.396960pt;}
.y12_c01167{bottom:743.518240pt;}
.y11_c01167{bottom:756.478667pt;}
.y10_c01167{bottom:782.560000pt;}
.yf_c01167{bottom:795.520000pt;}
.ye_c01167{bottom:809.120000pt;}
.yd_c01167{bottom:855.682080pt;}
.yc_c01167{bottom:894.720000pt;}
.y6_c01167{bottom:955.996480pt;}
.y5_c01167{bottom:969.117760pt;}
.y4_c01167{bottom:982.078240pt;}
.y3_c01167{bottom:995.038667pt;}
.y1_c01167{bottom:1018.240000pt;}
.h2_c01167{height:28.800000pt;}
.h5_c01167{height:30.778125pt;}
.h4_c01167{height:30.778338pt;}
.h9_c01167{height:30.790285pt;}
.h8_c01167{height:32.733750pt;}
.h6_c01167{height:38.128125pt;}
.h3_c01167{height:44.500000pt;}
.h7_c01167{height:74.315000pt;}
.h0_c01167{height:1122.560000pt;}
.h1_c01167{height:1122.666667pt;}
.w2_c01167{width:642.720000pt;}
.w0_c01167{width:793.760000pt;}
.w1_c01167{width:794.000000pt;}
.x0_c01167{left:0.000000pt;}
.x2_c01167{left:7.200000pt;}
.x1_c01167{left:75.520000pt;}
.x3_c01167{left:393.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b7d0beea383f5a24649f856d.woff2')format("woff");}.ff1_c01168{font-family:ff1_c01168;line-height:0.873535;font-style:normal;font-weight:normal;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_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff2_c01168{font-family:ff2_c01168;line-height:0.910645;font-style:normal;font-weight:normal;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_6b399d107e5bbf818adf85e2.woff2')format("woff");}.ff3_c01168{font-family:ff3_c01168;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls11_c01168{letter-spacing:-0.589680px;}
.ls18_c01168{letter-spacing:-0.537840px;}
.ls10_c01168{letter-spacing:-0.421200px;}
.ls1a_c01168{letter-spacing:-0.358560px;}
.ls13_c01168{letter-spacing:-0.298800px;}
.ls14_c01168{letter-spacing:-0.239040px;}
.ls15_c01168{letter-spacing:-0.179280px;}
.ls17_c01168{letter-spacing:-0.119520px;}
.ls12_c01168{letter-spacing:-0.059760px;}
.lsf_c01168{letter-spacing:0.000000px;}
.ls19_c01168{letter-spacing:0.059760px;}
.ls5_c01168{letter-spacing:0.101592px;}
.ls16_c01168{letter-spacing:0.119520px;}
.ls3_c01168{letter-spacing:0.167328px;}
.ls2_c01168{letter-spacing:0.179280px;}
.lsa_c01168{letter-spacing:0.203184px;}
.lsb_c01168{letter-spacing:0.298800px;}
.lse_c01168{letter-spacing:0.358560px;}
.ls0_c01168{letter-spacing:0.418320px;}
.lsc_c01168{letter-spacing:0.896400px;}
.ls9_c01168{letter-spacing:0.920304px;}
.lsd_c01168{letter-spacing:1.613520px;}
.ls4_c01168{letter-spacing:3.047760px;}
.ls8_c01168{letter-spacing:3.764880px;}
.ls1_c01168{letter-spacing:4.482000px;}
.ls6_c01168{letter-spacing:5.199120px;}
.ls7_c01168{letter-spacing:5.916240px;}
.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;}
}
.ws1_c01168{word-spacing:-18.617040px;}
.ws2_c01168{word-spacing:-18.448560px;}
.ws4_c01168{word-spacing:-13.864320px;}
.ws5_c01168{word-spacing:-13.804560px;}
.ws7_c01168{word-spacing:-13.685040px;}
.ws8_c01168{word-spacing:-13.625280px;}
.ws0_c01168{word-spacing:-13.505760px;}
.wsb_c01168{word-spacing:-13.446000px;}
.ws9_c01168{word-spacing:-13.386240px;}
.ws6_c01168{word-spacing:-13.326480px;}
.ws3_c01168{word-spacing:-13.206960px;}
.wsa_c01168{word-spacing:-12.967920px;}
.wsf_c01168{word-spacing:-2.988000px;}
.ws26_c01168{word-spacing:-2.270880px;}
.ws23_c01168{word-spacing:-2.151360px;}
.ws24_c01168{word-spacing:-1.912320px;}
.ws25_c01168{word-spacing:-1.733040px;}
.ws20_c01168{word-spacing:-1.553760px;}
.ws22_c01168{word-spacing:-1.195200px;}
.ws21_c01168{word-spacing:-1.015920px;}
.ws15_c01168{word-spacing:-0.358560px;}
.wsc_c01168{word-spacing:-0.179280px;}
.ws14_c01168{word-spacing:-0.119520px;}
.ws27_c01168{word-spacing:-0.059760px;}
.wsd_c01168{word-spacing:0.000000px;}
.ws13_c01168{word-spacing:0.059760px;}
.ws1a_c01168{word-spacing:0.239040px;}
.ws1f_c01168{word-spacing:0.298800px;}
.ws2d_c01168{word-spacing:0.358560px;}
.ws1e_c01168{word-spacing:0.418320px;}
.ws28_c01168{word-spacing:0.597600px;}
.ws11_c01168{word-spacing:0.956160px;}
.ws1d_c01168{word-spacing:1.135440px;}
.ws2a_c01168{word-spacing:1.314720px;}
.ws29_c01168{word-spacing:1.434240px;}
.ws2c_c01168{word-spacing:1.494000px;}
.ws2b_c01168{word-spacing:1.972080px;}
.ws12_c01168{word-spacing:2.748960px;}
.ws1b_c01168{word-spacing:2.868480px;}
.wse_c01168{word-spacing:3.107520px;}
.ws1c_c01168{word-spacing:3.286800px;}
.ws10_c01168{word-spacing:3.466080px;}
.ws17_c01168{word-spacing:4.900320px;}
.ws16_c01168{word-spacing:5.019840px;}
.ws19_c01168{word-spacing:5.258880px;}
.ws18_c01168{word-spacing:5.438160px;}
._0_c01168{margin-left:-1.231056px;}
._2_c01168{width:1.507896px;}
._3_c01168{width:3.187296px;}
._5_c01168{width:5.414256px;}
._4_c01168{width:43.540896px;}
._1_c01168{width:108.164160px;}
.fc5_c01168{color:rgb(255,192,0);}
.fc4_c01168{color:rgb(230,0,230);}
.fc3_c01168{color:rgb(255,0,0);}
.fc2_c01168{color:rgb(0,255,0);}
.fc1_c01168{color:rgb(0,0,0);}
.fc0_c01168{color:rgb(0,0,255);}
.fs0_c01168{font-size:59.760000px;}
.fs1_c01168{font-size:84.240000px;}
.y0_c01168{bottom:0.000000px;}
.y2_c01168{bottom:71.286480px;}
.y1b_c01168{bottom:98.055180px;}
.y1a_c01168{bottom:120.196200px;}
.y19_c01168{bottom:164.119860px;}
.y18_c01168{bottom:186.081660px;}
.y17_c01168{bottom:208.043400px;}
.y16_c01168{bottom:251.967060px;}
.y15_c01168{bottom:273.928860px;}
.y14_c01168{bottom:295.890600px;}
.y13_c01168{bottom:339.814260px;}
.y12_c01168{bottom:361.776060px;}
.y11_c01168{bottom:383.737800px;}
.y10_c01168{bottom:427.840740px;}
.yf_c01168{bottom:449.802540px;}
.ye_c01168{bottom:471.764340px;}
.yd_c01168{bottom:493.726200px;}
.yc_c01168{bottom:537.649740px;}
.yb_c01168{bottom:559.611600px;}
.ya_c01168{bottom:599.934600px;}
.y9_c01168{bottom:974.331000px;}
.y8_c01168{bottom:996.292800px;}
.y7_c01168{bottom:1018.254600px;}
.y6_c01168{bottom:1040.216400px;}
.y5_c01168{bottom:1062.178200px;}
.y4_c01168{bottom:1084.140000px;}
.y3_c01168{bottom:1115.100000px;}
.y1_c01168{bottom:1163.520000px;}
.h2_c01168{height:41.551875px;}
.h5_c01168{height:42.893901px;}
.h3_c01168{height:42.894141px;}
.h6_c01168{height:42.894381px;}
.h4_c01168{height:58.573125px;}
.h0_c01168{height:1262.880000px;}
.h1_c01168{height:1263.000000px;}
.w0_c01168{width:892.980000px;}
.w1_c01168{width:893.250000px;}
.x0_c01168{left:0.000000px;}
.x1_c01168{left:84.960000px;}
.x2_c01168{left:442.623600px;}
@media print{
.v0_c01168{vertical-align:0.000000pt;}
.ls11_c01168{letter-spacing:-0.524160pt;}
.ls18_c01168{letter-spacing:-0.478080pt;}
.ls10_c01168{letter-spacing:-0.374400pt;}
.ls1a_c01168{letter-spacing:-0.318720pt;}
.ls13_c01168{letter-spacing:-0.265600pt;}
.ls14_c01168{letter-spacing:-0.212480pt;}
.ls15_c01168{letter-spacing:-0.159360pt;}
.ls17_c01168{letter-spacing:-0.106240pt;}
.ls12_c01168{letter-spacing:-0.053120pt;}
.lsf_c01168{letter-spacing:0.000000pt;}
.ls19_c01168{letter-spacing:0.053120pt;}
.ls5_c01168{letter-spacing:0.090304pt;}
.ls16_c01168{letter-spacing:0.106240pt;}
.ls3_c01168{letter-spacing:0.148736pt;}
.ls2_c01168{letter-spacing:0.159360pt;}
.lsa_c01168{letter-spacing:0.180608pt;}
.lsb_c01168{letter-spacing:0.265600pt;}
.lse_c01168{letter-spacing:0.318720pt;}
.ls0_c01168{letter-spacing:0.371840pt;}
.lsc_c01168{letter-spacing:0.796800pt;}
.ls9_c01168{letter-spacing:0.818048pt;}
.lsd_c01168{letter-spacing:1.434240pt;}
.ls4_c01168{letter-spacing:2.709120pt;}
.ls8_c01168{letter-spacing:3.346560pt;}
.ls1_c01168{letter-spacing:3.984000pt;}
.ls6_c01168{letter-spacing:4.621440pt;}
.ls7_c01168{letter-spacing:5.258880pt;}
.ws1_c01168{word-spacing:-16.548480pt;}
.ws2_c01168{word-spacing:-16.398720pt;}
.ws4_c01168{word-spacing:-12.323840pt;}
.ws5_c01168{word-spacing:-12.270720pt;}
.ws7_c01168{word-spacing:-12.164480pt;}
.ws8_c01168{word-spacing:-12.111360pt;}
.ws0_c01168{word-spacing:-12.005120pt;}
.wsb_c01168{word-spacing:-11.952000pt;}
.ws9_c01168{word-spacing:-11.898880pt;}
.ws6_c01168{word-spacing:-11.845760pt;}
.ws3_c01168{word-spacing:-11.739520pt;}
.wsa_c01168{word-spacing:-11.527040pt;}
.wsf_c01168{word-spacing:-2.656000pt;}
.ws26_c01168{word-spacing:-2.018560pt;}
.ws23_c01168{word-spacing:-1.912320pt;}
.ws24_c01168{word-spacing:-1.699840pt;}
.ws25_c01168{word-spacing:-1.540480pt;}
.ws20_c01168{word-spacing:-1.381120pt;}
.ws22_c01168{word-spacing:-1.062400pt;}
.ws21_c01168{word-spacing:-0.903040pt;}
.ws15_c01168{word-spacing:-0.318720pt;}
.wsc_c01168{word-spacing:-0.159360pt;}
.ws14_c01168{word-spacing:-0.106240pt;}
.ws27_c01168{word-spacing:-0.053120pt;}
.wsd_c01168{word-spacing:0.000000pt;}
.ws13_c01168{word-spacing:0.053120pt;}
.ws1a_c01168{word-spacing:0.212480pt;}
.ws1f_c01168{word-spacing:0.265600pt;}
.ws2d_c01168{word-spacing:0.318720pt;}
.ws1e_c01168{word-spacing:0.371840pt;}
.ws28_c01168{word-spacing:0.531200pt;}
.ws11_c01168{word-spacing:0.849920pt;}
.ws1d_c01168{word-spacing:1.009280pt;}
.ws2a_c01168{word-spacing:1.168640pt;}
.ws29_c01168{word-spacing:1.274880pt;}
.ws2c_c01168{word-spacing:1.328000pt;}
.ws2b_c01168{word-spacing:1.752960pt;}
.ws12_c01168{word-spacing:2.443520pt;}
.ws1b_c01168{word-spacing:2.549760pt;}
.wse_c01168{word-spacing:2.762240pt;}
.ws1c_c01168{word-spacing:2.921600pt;}
.ws10_c01168{word-spacing:3.080960pt;}
.ws17_c01168{word-spacing:4.355840pt;}
.ws16_c01168{word-spacing:4.462080pt;}
.ws19_c01168{word-spacing:4.674560pt;}
.ws18_c01168{word-spacing:4.833920pt;}
._0_c01168{margin-left:-1.094272pt;}
._2_c01168{width:1.340352pt;}
._3_c01168{width:2.833152pt;}
._5_c01168{width:4.812672pt;}
._4_c01168{width:38.703019pt;}
._1_c01168{width:96.145920pt;}
.fs0_c01168{font-size:53.120000pt;}
.fs1_c01168{font-size:74.880000pt;}
.y0_c01168{bottom:0.000000pt;}
.y2_c01168{bottom:63.365760pt;}
.y1b_c01168{bottom:87.160160pt;}
.y1a_c01168{bottom:106.841067pt;}
.y19_c01168{bottom:145.884320pt;}
.y18_c01168{bottom:165.405920pt;}
.y17_c01168{bottom:184.927467pt;}
.y16_c01168{bottom:223.970720pt;}
.y15_c01168{bottom:243.492320pt;}
.y14_c01168{bottom:263.013867pt;}
.y13_c01168{bottom:302.057120pt;}
.y12_c01168{bottom:321.578720pt;}
.y11_c01168{bottom:341.100267pt;}
.y10_c01168{bottom:380.302880pt;}
.yf_c01168{bottom:399.824480pt;}
.ye_c01168{bottom:419.346080pt;}
.yd_c01168{bottom:438.867733pt;}
.yc_c01168{bottom:477.910880pt;}
.yb_c01168{bottom:497.432533pt;}
.ya_c01168{bottom:533.275200pt;}
.y9_c01168{bottom:866.072000pt;}
.y8_c01168{bottom:885.593600pt;}
.y7_c01168{bottom:905.115200pt;}
.y6_c01168{bottom:924.636800pt;}
.y5_c01168{bottom:944.158400pt;}
.y4_c01168{bottom:963.680000pt;}
.y3_c01168{bottom:991.200000pt;}
.y1_c01168{bottom:1034.240000pt;}
.h2_c01168{height:36.935000pt;}
.h5_c01168{height:38.127912pt;}
.h3_c01168{height:38.128125pt;}
.h6_c01168{height:38.128338pt;}
.h4_c01168{height:52.065000pt;}
.h0_c01168{height:1122.560000pt;}
.h1_c01168{height:1122.666667pt;}
.w0_c01168{width:793.760000pt;}
.w1_c01168{width:794.000000pt;}
.x0_c01168{left:0.000000pt;}
.x1_c01168{left:75.520000pt;}
.x2_c01168{left:393.443200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e96cefebacfa2dedadc46a9.woff2')format("woff");}.ff1_c01169{font-family:ff1_c01169;line-height:0.873535;font-style:normal;font-weight:normal;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_0032c353f984160390543af0.woff2')format("woff");}.ff2_c01169{font-family:ff2_c01169;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls9_c01169{letter-spacing:-0.418320px;}
.ls7_c01169{letter-spacing:-0.358560px;}
.lsa_c01169{letter-spacing:-0.298800px;}
.lsc_c01169{letter-spacing:-0.239040px;}
.ls8_c01169{letter-spacing:-0.059760px;}
.ls3_c01169{letter-spacing:0.000000px;}
.lsb_c01169{letter-spacing:0.059760px;}
.ls5_c01169{letter-spacing:0.084240px;}
.ls4_c01169{letter-spacing:0.168480px;}
.ls0_c01169{letter-spacing:0.179280px;}
.ls6_c01169{letter-spacing:0.298800px;}
.ls2_c01169{letter-spacing:0.358560px;}
.ls1_c01169{letter-spacing:0.747000px;}
.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:-19.206720px;}
.ws2_c01169{word-spacing:-13.864320px;}
.ws6_c01169{word-spacing:-13.804560px;}
.ws5_c01169{word-spacing:-13.685040px;}
.ws3_c01169{word-spacing:-13.446000px;}
.ws4_c01169{word-spacing:-13.206960px;}
.ws1_c01169{word-spacing:-13.147200px;}
.ws1a_c01169{word-spacing:-2.988000px;}
.ws1c_c01169{word-spacing:-2.868480px;}
.ws1d_c01169{word-spacing:-2.629440px;}
.ws1b_c01169{word-spacing:-2.450160px;}
.wse_c01169{word-spacing:-0.896400px;}
.wsd_c01169{word-spacing:-0.836640px;}
.wsf_c01169{word-spacing:-0.717120px;}
.wsb_c01169{word-spacing:-0.505440px;}
.ws10_c01169{word-spacing:-0.478080px;}
.ws12_c01169{word-spacing:-0.358560px;}
.ws15_c01169{word-spacing:-0.298800px;}
.ws8_c01169{word-spacing:-0.179280px;}
.ws11_c01169{word-spacing:-0.119520px;}
.wsc_c01169{word-spacing:-0.084240px;}
.wsa_c01169{word-spacing:-0.060000px;}
.ws14_c01169{word-spacing:-0.059760px;}
.ws9_c01169{word-spacing:0.000000px;}
.ws13_c01169{word-spacing:0.239040px;}
.ws19_c01169{word-spacing:0.418320px;}
.ws18_c01169{word-spacing:0.597600px;}
.ws16_c01169{word-spacing:0.956160px;}
.ws17_c01169{word-spacing:1.135440px;}
.ws7_c01169{word-spacing:49.302000px;}
._4_c01169{margin-left:-2.450160px;}
._0_c01169{margin-left:-1.231056px;}
._2_c01169{width:1.105560px;}
._3_c01169{width:43.541136px;}
._1_c01169{width:108.164160px;}
.fc1_c01169{color:rgb(0,0,0);}
.fc0_c01169{color:rgb(0,0,255);}
.fs0_c01169{font-size:59.760000px;}
.fs1_c01169{font-size:84.240000px;}
.y0_c01169{bottom:0.000000px;}
.y2_c01169{bottom:67.680000px;}
.ye_c01169{bottom:123.991020px;}
.yd_c01169{bottom:145.952820px;}
.yc_c01169{bottom:167.914620px;}
.yb_c01169{bottom:189.876450px;}
.ya_c01169{bottom:230.199450px;}
.y9_c01169{bottom:595.064160px;}
.y8_c01169{bottom:617.025960px;}
.y7_c01169{bottom:638.987700px;}
.y6_c01169{bottom:679.310850px;}
.y5_c01169{bottom:1062.178200px;}
.y4_c01169{bottom:1084.140000px;}
.y3_c01169{bottom:1115.100000px;}
.y1_c01169{bottom:1163.520000px;}
.h2_c01169{height:41.551875px;}
.h5_c01169{height:42.894021px;}
.h3_c01169{height:42.894141px;}
.h7_c01169{height:42.894261px;}
.h6_c01169{height:42.894381px;}
.h4_c01169{height:58.573125px;}
.h0_c01169{height:1262.880000px;}
.h1_c01169{height:1263.000000px;}
.w0_c01169{width:892.980000px;}
.w1_c01169{width:893.250000px;}
.x0_c01169{left:0.000000px;}
.x1_c01169{left:84.960000px;}
.x2_c01169{left:442.620000px;}
@media print{
.v0_c01169{vertical-align:0.000000pt;}
.ls9_c01169{letter-spacing:-0.371840pt;}
.ls7_c01169{letter-spacing:-0.318720pt;}
.lsa_c01169{letter-spacing:-0.265600pt;}
.lsc_c01169{letter-spacing:-0.212480pt;}
.ls8_c01169{letter-spacing:-0.053120pt;}
.ls3_c01169{letter-spacing:0.000000pt;}
.lsb_c01169{letter-spacing:0.053120pt;}
.ls5_c01169{letter-spacing:0.074880pt;}
.ls4_c01169{letter-spacing:0.149760pt;}
.ls0_c01169{letter-spacing:0.159360pt;}
.ls6_c01169{letter-spacing:0.265600pt;}
.ls2_c01169{letter-spacing:0.318720pt;}
.ls1_c01169{letter-spacing:0.664000pt;}
.ws0_c01169{word-spacing:-17.072640pt;}
.ws2_c01169{word-spacing:-12.323840pt;}
.ws6_c01169{word-spacing:-12.270720pt;}
.ws5_c01169{word-spacing:-12.164480pt;}
.ws3_c01169{word-spacing:-11.952000pt;}
.ws4_c01169{word-spacing:-11.739520pt;}
.ws1_c01169{word-spacing:-11.686400pt;}
.ws1a_c01169{word-spacing:-2.656000pt;}
.ws1c_c01169{word-spacing:-2.549760pt;}
.ws1d_c01169{word-spacing:-2.337280pt;}
.ws1b_c01169{word-spacing:-2.177920pt;}
.wse_c01169{word-spacing:-0.796800pt;}
.wsd_c01169{word-spacing:-0.743680pt;}
.wsf_c01169{word-spacing:-0.637440pt;}
.wsb_c01169{word-spacing:-0.449280pt;}
.ws10_c01169{word-spacing:-0.424960pt;}
.ws12_c01169{word-spacing:-0.318720pt;}
.ws15_c01169{word-spacing:-0.265600pt;}
.ws8_c01169{word-spacing:-0.159360pt;}
.ws11_c01169{word-spacing:-0.106240pt;}
.wsc_c01169{word-spacing:-0.074880pt;}
.wsa_c01169{word-spacing:-0.053333pt;}
.ws14_c01169{word-spacing:-0.053120pt;}
.ws9_c01169{word-spacing:0.000000pt;}
.ws13_c01169{word-spacing:0.212480pt;}
.ws19_c01169{word-spacing:0.371840pt;}
.ws18_c01169{word-spacing:0.531200pt;}
.ws16_c01169{word-spacing:0.849920pt;}
.ws17_c01169{word-spacing:1.009280pt;}
.ws7_c01169{word-spacing:43.824000pt;}
._4_c01169{margin-left:-2.177920pt;}
._0_c01169{margin-left:-1.094272pt;}
._2_c01169{width:0.982720pt;}
._3_c01169{width:38.703232pt;}
._1_c01169{width:96.145920pt;}
.fs0_c01169{font-size:53.120000pt;}
.fs1_c01169{font-size:74.880000pt;}
.y0_c01169{bottom:0.000000pt;}
.y2_c01169{bottom:60.160000pt;}
.ye_c01169{bottom:110.214240pt;}
.yd_c01169{bottom:129.735840pt;}
.yc_c01169{bottom:149.257440pt;}
.yb_c01169{bottom:168.779067pt;}
.ya_c01169{bottom:204.621733pt;}
.y9_c01169{bottom:528.945920pt;}
.y8_c01169{bottom:548.467520pt;}
.y7_c01169{bottom:567.989067pt;}
.y6_c01169{bottom:603.831867pt;}
.y5_c01169{bottom:944.158400pt;}
.y4_c01169{bottom:963.680000pt;}
.y3_c01169{bottom:991.200000pt;}
.y1_c01169{bottom:1034.240000pt;}
.h2_c01169{height:36.935000pt;}
.h5_c01169{height:38.128018pt;}
.h3_c01169{height:38.128125pt;}
.h7_c01169{height:38.128232pt;}
.h6_c01169{height:38.128338pt;}
.h4_c01169{height:52.065000pt;}
.h0_c01169{height:1122.560000pt;}
.h1_c01169{height:1122.666667pt;}
.w0_c01169{width:793.760000pt;}
.w1_c01169{width:794.000000pt;}
.x0_c01169{left:0.000000pt;}
.x1_c01169{left:75.520000pt;}
.x2_c01169{left:393.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4b1a56d419743d980bfef8d4.woff2')format("woff");}.ff1_c01170{font-family:ff1_c01170;line-height:0.873535;font-style:normal;font-weight:normal;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_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff2_c01170{font-family:ff2_c01170;line-height:0.910645;font-style:normal;font-weight:normal;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_f79ee7d6609a403d90d3d1cd.woff2')format("woff");}.ff3_c01170{font-family:ff3_c01170;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsc_c01170{letter-spacing:-0.358560px;}
.lse_c01170{letter-spacing:-0.298800px;}
.lsd_c01170{letter-spacing:-0.239040px;}
.lsa_c01170{letter-spacing:-0.059760px;}
.ls9_c01170{letter-spacing:0.000000px;}
.lsb_c01170{letter-spacing:0.059760px;}
.ls4_c01170{letter-spacing:0.119520px;}
.lsf_c01170{letter-spacing:0.168480px;}
.ls2_c01170{letter-spacing:0.179280px;}
.ls3_c01170{letter-spacing:0.292824px;}
.ls6_c01170{letter-spacing:0.298800px;}
.ls8_c01170{letter-spacing:0.358560px;}
.ls7_c01170{letter-spacing:0.418320px;}
.ls5_c01170{letter-spacing:0.478080px;}
.ls0_c01170{letter-spacing:1.613520px;}
.ls1_c01170{letter-spacing:1.637424px;}
.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;}
}
.ws6_c01170{word-spacing:-13.864320px;}
.ws5_c01170{word-spacing:-13.685040px;}
.ws4_c01170{word-spacing:-13.565520px;}
.ws0_c01170{word-spacing:-13.505760px;}
.ws1_c01170{word-spacing:-13.446000px;}
.ws3_c01170{word-spacing:-13.266720px;}
.ws2_c01170{word-spacing:-13.206960px;}
.ws1e_c01170{word-spacing:-0.836640px;}
.ws1f_c01170{word-spacing:-0.717120px;}
.ws1c_c01170{word-spacing:-0.505440px;}
.ws13_c01170{word-spacing:-0.358560px;}
.ws10_c01170{word-spacing:-0.298800px;}
.ws7_c01170{word-spacing:-0.179280px;}
.wsf_c01170{word-spacing:-0.119520px;}
.wsa_c01170{word-spacing:-0.059760px;}
.ws8_c01170{word-spacing:0.000000px;}
.ws12_c01170{word-spacing:0.059760px;}
.wse_c01170{word-spacing:0.239040px;}
.wsb_c01170{word-spacing:0.358560px;}
.ws1b_c01170{word-spacing:0.418320px;}
.ws11_c01170{word-spacing:0.537840px;}
.wsc_c01170{word-spacing:1.673280px;}
.wsd_c01170{word-spacing:1.852560px;}
.ws1d_c01170{word-spacing:2.390400px;}
.ws9_c01170{word-spacing:3.107520px;}
.ws18_c01170{word-spacing:5.617440px;}
.ws1a_c01170{word-spacing:5.736960px;}
.ws19_c01170{word-spacing:5.976000px;}
.ws17_c01170{word-spacing:6.155280px;}
.ws16_c01170{word-spacing:10.697040px;}
.ws14_c01170{word-spacing:11.055600px;}
.ws15_c01170{word-spacing:11.354400px;}
._0_c01170{margin-left:-1.231056px;}
._1_c01170{width:1.117512px;}
._3_c01170{width:2.300760px;}
._2_c01170{width:3.603528px;}
._4_c01170{width:43.541016px;}
._5_c01170{width:108.164160px;}
.fc1_c01170{color:rgb(0,0,0);}
.fc0_c01170{color:rgb(0,0,255);}
.fs0_c01170{font-size:59.760000px;}
.fs1_c01170{font-size:84.240000px;}
.y0_c01170{bottom:0.000000px;}
.y2_c01170{bottom:71.286480px;}
.yd_c01170{bottom:172.794900px;}
.yc_c01170{bottom:560.876400px;}
.yb_c01170{bottom:582.838200px;}
.ya_c01170{bottom:604.800000px;}
.y9_c01170{bottom:635.760000px;}
.y8_c01170{bottom:703.801260px;}
.y7_c01170{bottom:722.162520px;}
.y6_c01170{bottom:740.523750px;}
.y5_c01170{bottom:1076.942700px;}
.y4_c01170{bottom:1098.904500px;}
.y3_c01170{bottom:1120.866300px;}
.y1_c01170{bottom:1163.520000px;}
.h2_c01170{height:41.551875px;}
.h3_c01170{height:42.894141px;}
.h4_c01170{height:42.894261px;}
.h6_c01170{height:42.894381px;}
.h5_c01170{height:58.573125px;}
.h0_c01170{height:1262.880000px;}
.h1_c01170{height:1263.000000px;}
.w0_c01170{width:892.980000px;}
.w1_c01170{width:893.250000px;}
.x0_c01170{left:0.000000px;}
.x1_c01170{left:84.960000px;}
.x3_c01170{left:148.828500px;}
.x2_c01170{left:442.623600px;}
@media print{
.v0_c01170{vertical-align:0.000000pt;}
.lsc_c01170{letter-spacing:-0.318720pt;}
.lse_c01170{letter-spacing:-0.265600pt;}
.lsd_c01170{letter-spacing:-0.212480pt;}
.lsa_c01170{letter-spacing:-0.053120pt;}
.ls9_c01170{letter-spacing:0.000000pt;}
.lsb_c01170{letter-spacing:0.053120pt;}
.ls4_c01170{letter-spacing:0.106240pt;}
.lsf_c01170{letter-spacing:0.149760pt;}
.ls2_c01170{letter-spacing:0.159360pt;}
.ls3_c01170{letter-spacing:0.260288pt;}
.ls6_c01170{letter-spacing:0.265600pt;}
.ls8_c01170{letter-spacing:0.318720pt;}
.ls7_c01170{letter-spacing:0.371840pt;}
.ls5_c01170{letter-spacing:0.424960pt;}
.ls0_c01170{letter-spacing:1.434240pt;}
.ls1_c01170{letter-spacing:1.455488pt;}
.ws6_c01170{word-spacing:-12.323840pt;}
.ws5_c01170{word-spacing:-12.164480pt;}
.ws4_c01170{word-spacing:-12.058240pt;}
.ws0_c01170{word-spacing:-12.005120pt;}
.ws1_c01170{word-spacing:-11.952000pt;}
.ws3_c01170{word-spacing:-11.792640pt;}
.ws2_c01170{word-spacing:-11.739520pt;}
.ws1e_c01170{word-spacing:-0.743680pt;}
.ws1f_c01170{word-spacing:-0.637440pt;}
.ws1c_c01170{word-spacing:-0.449280pt;}
.ws13_c01170{word-spacing:-0.318720pt;}
.ws10_c01170{word-spacing:-0.265600pt;}
.ws7_c01170{word-spacing:-0.159360pt;}
.wsf_c01170{word-spacing:-0.106240pt;}
.wsa_c01170{word-spacing:-0.053120pt;}
.ws8_c01170{word-spacing:0.000000pt;}
.ws12_c01170{word-spacing:0.053120pt;}
.wse_c01170{word-spacing:0.212480pt;}
.wsb_c01170{word-spacing:0.318720pt;}
.ws1b_c01170{word-spacing:0.371840pt;}
.ws11_c01170{word-spacing:0.478080pt;}
.wsc_c01170{word-spacing:1.487360pt;}
.wsd_c01170{word-spacing:1.646720pt;}
.ws1d_c01170{word-spacing:2.124800pt;}
.ws9_c01170{word-spacing:2.762240pt;}
.ws18_c01170{word-spacing:4.993280pt;}
.ws1a_c01170{word-spacing:5.099520pt;}
.ws19_c01170{word-spacing:5.312000pt;}
.ws17_c01170{word-spacing:5.471360pt;}
.ws16_c01170{word-spacing:9.508480pt;}
.ws14_c01170{word-spacing:9.827200pt;}
.ws15_c01170{word-spacing:10.092800pt;}
._0_c01170{margin-left:-1.094272pt;}
._1_c01170{width:0.993344pt;}
._3_c01170{width:2.045120pt;}
._2_c01170{width:3.203136pt;}
._4_c01170{width:38.703125pt;}
._5_c01170{width:96.145920pt;}
.fs0_c01170{font-size:53.120000pt;}
.fs1_c01170{font-size:74.880000pt;}
.y0_c01170{bottom:0.000000pt;}
.y2_c01170{bottom:63.365760pt;}
.yd_c01170{bottom:153.595467pt;}
.yc_c01170{bottom:498.556800pt;}
.yb_c01170{bottom:518.078400pt;}
.ya_c01170{bottom:537.600000pt;}
.y9_c01170{bottom:565.120000pt;}
.y8_c01170{bottom:625.601120pt;}
.y7_c01170{bottom:641.922240pt;}
.y6_c01170{bottom:658.243333pt;}
.y5_c01170{bottom:957.282400pt;}
.y4_c01170{bottom:976.804000pt;}
.y3_c01170{bottom:996.325600pt;}
.y1_c01170{bottom:1034.240000pt;}
.h2_c01170{height:36.935000pt;}
.h3_c01170{height:38.128125pt;}
.h4_c01170{height:38.128232pt;}
.h6_c01170{height:38.128338pt;}
.h5_c01170{height:52.065000pt;}
.h0_c01170{height:1122.560000pt;}
.h1_c01170{height:1122.666667pt;}
.w0_c01170{width:793.760000pt;}
.w1_c01170{width:794.000000pt;}
.x0_c01170{left:0.000000pt;}
.x1_c01170{left:75.520000pt;}
.x3_c01170{left:132.292000pt;}
.x2_c01170{left:393.443200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5b9830b34a441b5788dcb96f.woff2')format("woff");}.ff1_c01171{font-family:ff1_c01171;line-height:0.873535;font-style:normal;font-weight:normal;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_21b04013f323725a44df2b7c.woff2')format("woff");}.ff2_c01171{font-family:ff2_c01171;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01171{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01171{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01171{vertical-align:0.000000px;}
.ls8_c01171{letter-spacing:-0.358560px;}
.ls7_c01171{letter-spacing:-0.298800px;}
.lsc_c01171{letter-spacing:-0.239040px;}
.lsb_c01171{letter-spacing:-0.179280px;}
.lsd_c01171{letter-spacing:-0.119520px;}
.ls9_c01171{letter-spacing:-0.059760px;}
.ls6_c01171{letter-spacing:0.000000px;}
.lse_c01171{letter-spacing:0.119520px;}
.ls5_c01171{letter-spacing:0.161352px;}
.ls3_c01171{letter-spacing:0.179280px;}
.lsa_c01171{letter-spacing:0.298800px;}
.ls1_c01171{letter-spacing:0.358560px;}
.ls2_c01171{letter-spacing:0.418320px;}
.ls0_c01171{letter-spacing:0.537840px;}
.ls4_c01171{letter-spacing:3.047760px;}
.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;}
}
.ws5_c01171{word-spacing:-13.864320px;}
.ws6_c01171{word-spacing:-13.804560px;}
.ws0_c01171{word-spacing:-13.685040px;}
.ws8_c01171{word-spacing:-13.625280px;}
.ws2_c01171{word-spacing:-13.505760px;}
.ws7_c01171{word-spacing:-13.446000px;}
.ws3_c01171{word-spacing:-13.326480px;}
.ws4_c01171{word-spacing:-13.266720px;}
.ws1_c01171{word-spacing:-13.147200px;}
.wsd_c01171{word-spacing:-2.868480px;}
.wse_c01171{word-spacing:-2.629440px;}
.ws11_c01171{word-spacing:-2.450160px;}
.ws19_c01171{word-spacing:-2.270880px;}
.ws18_c01171{word-spacing:-2.151360px;}
.ws17_c01171{word-spacing:-1.912320px;}
.ws14_c01171{word-spacing:-1.553760px;}
.ws13_c01171{word-spacing:-1.195200px;}
.ws15_c01171{word-spacing:-1.015920px;}
.ws12_c01171{word-spacing:-0.358560px;}
.wsf_c01171{word-spacing:-0.298800px;}
.ws9_c01171{word-spacing:-0.179280px;}
.wsb_c01171{word-spacing:-0.060000px;}
.wsa_c01171{word-spacing:0.000000px;}
.ws10_c01171{word-spacing:0.059760px;}
.ws1b_c01171{word-spacing:0.119520px;}
.ws16_c01171{word-spacing:0.239040px;}
.wsc_c01171{word-spacing:0.298800px;}
.ws1d_c01171{word-spacing:1.135440px;}
.ws1a_c01171{word-spacing:3.107520px;}
.ws1c_c01171{word-spacing:6.693120px;}
._1_c01171{margin-left:-2.378448px;}
._0_c01171{margin-left:-1.231056px;}
._2_c01171{width:1.930248px;}
._3_c01171{width:43.540896px;}
.fc1_c01171{color:rgb(0,0,0);}
.fc0_c01171{color:rgb(0,0,255);}
.fs0_c01171{font-size:59.760000px;}
.y0_c01171{bottom:0.000000px;}
.y2_c01171{bottom:67.680000px;}
.yc_c01171{bottom:204.475320px;}
.yb_c01171{bottom:222.836580px;}
.ya_c01171{bottom:241.197900px;}
.y9_c01171{bottom:483.107220px;}
.y8_c01171{bottom:501.289200px;}
.y7_c01171{bottom:519.650400px;}
.y6_c01171{bottom:755.995680px;}
.y5_c01171{bottom:774.357000px;}
.y4_c01171{bottom:1098.898560px;}
.y3_c01171{bottom:1120.860300px;}
.y1_c01171{bottom:1163.520000px;}
.h2_c01171{height:41.551875px;}
.h5_c01171{height:42.893901px;}
.h3_c01171{height:42.894141px;}
.h4_c01171{height:42.894381px;}
.h6_c01171{height:42.911421px;}
.h8_c01171{height:42.912861px;}
.h7_c01171{height:42.945261px;}
.h0_c01171{height:1262.880000px;}
.h1_c01171{height:1263.000000px;}
.w0_c01171{width:892.980000px;}
.w1_c01171{width:893.250000px;}
.x0_c01171{left:0.000000px;}
.x1_c01171{left:84.960000px;}
.x3_c01171{left:148.839840px;}
.x2_c01171{left:442.620000px;}
@media print{
.v0_c01171{vertical-align:0.000000pt;}
.ls8_c01171{letter-spacing:-0.318720pt;}
.ls7_c01171{letter-spacing:-0.265600pt;}
.lsc_c01171{letter-spacing:-0.212480pt;}
.lsb_c01171{letter-spacing:-0.159360pt;}
.lsd_c01171{letter-spacing:-0.106240pt;}
.ls9_c01171{letter-spacing:-0.053120pt;}
.ls6_c01171{letter-spacing:0.000000pt;}
.lse_c01171{letter-spacing:0.106240pt;}
.ls5_c01171{letter-spacing:0.143424pt;}
.ls3_c01171{letter-spacing:0.159360pt;}
.lsa_c01171{letter-spacing:0.265600pt;}
.ls1_c01171{letter-spacing:0.318720pt;}
.ls2_c01171{letter-spacing:0.371840pt;}
.ls0_c01171{letter-spacing:0.478080pt;}
.ls4_c01171{letter-spacing:2.709120pt;}
.ws5_c01171{word-spacing:-12.323840pt;}
.ws6_c01171{word-spacing:-12.270720pt;}
.ws0_c01171{word-spacing:-12.164480pt;}
.ws8_c01171{word-spacing:-12.111360pt;}
.ws2_c01171{word-spacing:-12.005120pt;}
.ws7_c01171{word-spacing:-11.952000pt;}
.ws3_c01171{word-spacing:-11.845760pt;}
.ws4_c01171{word-spacing:-11.792640pt;}
.ws1_c01171{word-spacing:-11.686400pt;}
.wsd_c01171{word-spacing:-2.549760pt;}
.wse_c01171{word-spacing:-2.337280pt;}
.ws11_c01171{word-spacing:-2.177920pt;}
.ws19_c01171{word-spacing:-2.018560pt;}
.ws18_c01171{word-spacing:-1.912320pt;}
.ws17_c01171{word-spacing:-1.699840pt;}
.ws14_c01171{word-spacing:-1.381120pt;}
.ws13_c01171{word-spacing:-1.062400pt;}
.ws15_c01171{word-spacing:-0.903040pt;}
.ws12_c01171{word-spacing:-0.318720pt;}
.wsf_c01171{word-spacing:-0.265600pt;}
.ws9_c01171{word-spacing:-0.159360pt;}
.wsb_c01171{word-spacing:-0.053333pt;}
.wsa_c01171{word-spacing:0.000000pt;}
.ws10_c01171{word-spacing:0.053120pt;}
.ws1b_c01171{word-spacing:0.106240pt;}
.ws16_c01171{word-spacing:0.212480pt;}
.wsc_c01171{word-spacing:0.265600pt;}
.ws1d_c01171{word-spacing:1.009280pt;}
.ws1a_c01171{word-spacing:2.762240pt;}
.ws1c_c01171{word-spacing:5.949440pt;}
._1_c01171{margin-left:-2.114176pt;}
._0_c01171{margin-left:-1.094272pt;}
._2_c01171{width:1.715776pt;}
._3_c01171{width:38.703019pt;}
.fs0_c01171{font-size:53.120000pt;}
.y0_c01171{bottom:0.000000pt;}
.y2_c01171{bottom:60.160000pt;}
.yc_c01171{bottom:181.755840pt;}
.yb_c01171{bottom:198.076960pt;}
.ya_c01171{bottom:214.398133pt;}
.y9_c01171{bottom:429.428640pt;}
.y8_c01171{bottom:445.590400pt;}
.y7_c01171{bottom:461.911467pt;}
.y6_c01171{bottom:671.996160pt;}
.y5_c01171{bottom:688.317333pt;}
.y4_c01171{bottom:976.798720pt;}
.y3_c01171{bottom:996.320267pt;}
.y1_c01171{bottom:1034.240000pt;}
.h2_c01171{height:36.935000pt;}
.h5_c01171{height:38.127912pt;}
.h3_c01171{height:38.128125pt;}
.h4_c01171{height:38.128338pt;}
.h6_c01171{height:38.143485pt;}
.h8_c01171{height:38.144765pt;}
.h7_c01171{height:38.173565pt;}
.h0_c01171{height:1122.560000pt;}
.h1_c01171{height:1122.666667pt;}
.w0_c01171{width:793.760000pt;}
.w1_c01171{width:794.000000pt;}
.x0_c01171{left:0.000000pt;}
.x1_c01171{left:75.520000pt;}
.x3_c01171{left:132.302080pt;}
.x2_c01171{left:393.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_796b4e8078f50f8c25d6eb0f.woff2')format("woff");}.ff1_c01172{font-family:ff1_c01172;line-height:0.873535;font-style:normal;font-weight:normal;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_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff2_c01172{font-family:ff2_c01172;line-height:0.910645;font-style:normal;font-weight:normal;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_e763436bd89509cd18630233.woff2')format("woff");}.ff3_c01172{font-family:ff3_c01172;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01172;src:url('chunks/assets/font_c7d5da0bfab29e72731fbdc7.woff2')format("woff");}.ff4_c01172{font-family:ff4_c01172;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01172{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01172{vertical-align:0.000000px;}
.lsf_c01172{letter-spacing:-0.358560px;}
.lsa_c01172{letter-spacing:-0.239040px;}
.lsc_c01172{letter-spacing:-0.119520px;}
.ls9_c01172{letter-spacing:-0.059760px;}
.ls8_c01172{letter-spacing:0.000000px;}
.lse_c01172{letter-spacing:0.059760px;}
.ls1_c01172{letter-spacing:0.179280px;}
.lsb_c01172{letter-spacing:0.216000px;}
.lsd_c01172{letter-spacing:0.239040px;}
.ls2_c01172{letter-spacing:0.298800px;}
.ls7_c01172{letter-spacing:0.358560px;}
.ls0_c01172{letter-spacing:0.418320px;}
.ls3_c01172{letter-spacing:10.995840px;}
.ls5_c01172{letter-spacing:13.147200px;}
.ls6_c01172{letter-spacing:33.704640px;}
.ls4_c01172{letter-spacing:44.102880px;}
.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:-13.864320px;}
.ws2_c01172{word-spacing:-13.804560px;}
.ws5_c01172{word-spacing:-13.685040px;}
.ws0_c01172{word-spacing:-13.505760px;}
.ws4_c01172{word-spacing:-13.446000px;}
.ws3_c01172{word-spacing:-13.386240px;}
.ws2e_c01172{word-spacing:-2.988000px;}
.ws11_c01172{word-spacing:-1.195200px;}
.ws10_c01172{word-spacing:-1.015920px;}
.wsc_c01172{word-spacing:-0.836640px;}
.ws8_c01172{word-spacing:-0.358560px;}
.ws6_c01172{word-spacing:-0.179280px;}
.ws1a_c01172{word-spacing:-0.119520px;}
.ws16_c01172{word-spacing:-0.059760px;}
.ws7_c01172{word-spacing:0.000000px;}
.ws9_c01172{word-spacing:0.059760px;}
.wsf_c01172{word-spacing:0.072000px;}
.wsa_c01172{word-spacing:0.239040px;}
.ws19_c01172{word-spacing:0.418320px;}
.wsb_c01172{word-spacing:0.597600px;}
.ws15_c01172{word-spacing:0.657360px;}
.ws18_c01172{word-spacing:1.135440px;}
.ws17_c01172{word-spacing:1.254960px;}
.ws2d_c01172{word-spacing:1.314720px;}
.wsd_c01172{word-spacing:2.569680px;}
.ws25_c01172{word-spacing:3.466080px;}
.ws27_c01172{word-spacing:4.183200px;}
.ws26_c01172{word-spacing:4.541760px;}
.ws28_c01172{word-spacing:4.840560px;}
.ws2a_c01172{word-spacing:4.900320px;}
.ws30_c01172{word-spacing:6.334560px;}
.ws1b_c01172{word-spacing:7.768800px;}
.ws29_c01172{word-spacing:9.979920px;}
.ws20_c01172{word-spacing:10.816560px;}
.ws1e_c01172{word-spacing:11.234880px;}
.ws1f_c01172{word-spacing:11.354400px;}
.ws12_c01172{word-spacing:11.414160px;}
.ws13_c01172{word-spacing:11.533680px;}
.ws14_c01172{word-spacing:11.952000px;}
.ws24_c01172{word-spacing:13.206960px;}
.ws23_c01172{word-spacing:13.386240px;}
.ws2c_c01172{word-spacing:13.565520px;}
.ws2b_c01172{word-spacing:14.103360px;}
.ws1d_c01172{word-spacing:14.820480px;}
.ws1c_c01172{word-spacing:14.940000px;}
.wse_c01172{word-spacing:30.836160px;}
.ws2f_c01172{word-spacing:43.086960px;}
.ws21_c01172{word-spacing:44.162640px;}
.ws22_c01172{word-spacing:44.461440px;}
._0_c01172{margin-left:-1.231056px;}
._2_c01172{width:1.302768px;}
._4_c01172{width:11.473920px;}
._5_c01172{width:15.418080px;}
._1_c01172{width:43.541136px;}
._3_c01172{width:61.416000px;}
.fc1_c01172{color:rgb(0,0,0);}
.fc0_c01172{color:rgb(0,0,255);}
.fs0_c01172{font-size:59.760000px;}
.fs1_c01172{font-size:72.000000px;}
.y0_c01172{bottom:0.000000px;}
.y2_c01172{bottom:71.286480px;}
.y27_c01172{bottom:107.088840px;}
.y26_c01172{bottom:125.450100px;}
.y25_c01172{bottom:143.811360px;}
.y24_c01172{bottom:161.993340px;}
.y23_c01172{bottom:180.354600px;}
.y22_c01172{bottom:198.715860px;}
.y21_c01172{bottom:217.794240px;}
.y20_c01172{bottom:236.155500px;}
.y1f_c01172{bottom:254.337480px;}
.y1e_c01172{bottom:272.698740px;}
.y1d_c01172{bottom:291.060000px;}
.y1c_c01172{bottom:310.129740px;}
.y1b_c01172{bottom:328.491000px;}
.y1a_c01172{bottom:346.672980px;}
.y19_c01172{bottom:365.034240px;}
.y18_c01172{bottom:383.395500px;}
.y17_c01172{bottom:401.756760px;}
.y16_c01172{bottom:419.938740px;}
.y15_c01172{bottom:438.300000px;}
.y14_c01172{bottom:456.643260px;}
.y13_c01172{bottom:474.825240px;}
.y12_c01172{bottom:493.186500px;}
.y11_c01172{bottom:511.547760px;}
.y10_c01172{bottom:529.909020px;}
.yf_c01172{bottom:548.091000px;}
.ye_c01172{bottom:592.014600px;}
.yd_c01172{bottom:613.976400px;}
.yc_c01172{bottom:635.938200px;}
.yb_c01172{bottom:657.900000px;}
.ya_c01172{bottom:687.420000px;}
.y9_c01172{bottom:730.618560px;}
.y8_c01172{bottom:748.979820px;}
.y7_c01172{bottom:767.341080px;}
.y6_c01172{bottom:785.702340px;}
.y5_c01172{bottom:803.884320px;}
.y4_c01172{bottom:822.245580px;}
.y3_c01172{bottom:840.606900px;}
.y1_c01172{bottom:1163.520000px;}
.h2_c01172{height:41.551875px;}
.h4_c01172{height:42.893901px;}
.h3_c01172{height:42.894141px;}
.h5_c01172{height:42.899901px;}
.h7_c01172{height:42.961101px;}
.h6_c01172{height:50.062500px;}
.h0_c01172{height:1262.880000px;}
.h1_c01172{height:1263.000000px;}
.w0_c01172{width:892.980000px;}
.w1_c01172{width:893.250000px;}
.x0_c01172{left:0.000000px;}
.x1_c01172{left:84.960000px;}
.x3_c01172{left:148.858380px;}
.x2_c01172{left:442.623600px;}
.x4_c01172{left:462.971850px;}
.x5_c01172{left:478.258560px;}
@media print{
.v0_c01172{vertical-align:0.000000pt;}
.lsf_c01172{letter-spacing:-0.318720pt;}
.lsa_c01172{letter-spacing:-0.212480pt;}
.lsc_c01172{letter-spacing:-0.106240pt;}
.ls9_c01172{letter-spacing:-0.053120pt;}
.ls8_c01172{letter-spacing:0.000000pt;}
.lse_c01172{letter-spacing:0.053120pt;}
.ls1_c01172{letter-spacing:0.159360pt;}
.lsb_c01172{letter-spacing:0.192000pt;}
.lsd_c01172{letter-spacing:0.212480pt;}
.ls2_c01172{letter-spacing:0.265600pt;}
.ls7_c01172{letter-spacing:0.318720pt;}
.ls0_c01172{letter-spacing:0.371840pt;}
.ls3_c01172{letter-spacing:9.774080pt;}
.ls5_c01172{letter-spacing:11.686400pt;}
.ls6_c01172{letter-spacing:29.959680pt;}
.ls4_c01172{letter-spacing:39.202560pt;}
.ws1_c01172{word-spacing:-12.323840pt;}
.ws2_c01172{word-spacing:-12.270720pt;}
.ws5_c01172{word-spacing:-12.164480pt;}
.ws0_c01172{word-spacing:-12.005120pt;}
.ws4_c01172{word-spacing:-11.952000pt;}
.ws3_c01172{word-spacing:-11.898880pt;}
.ws2e_c01172{word-spacing:-2.656000pt;}
.ws11_c01172{word-spacing:-1.062400pt;}
.ws10_c01172{word-spacing:-0.903040pt;}
.wsc_c01172{word-spacing:-0.743680pt;}
.ws8_c01172{word-spacing:-0.318720pt;}
.ws6_c01172{word-spacing:-0.159360pt;}
.ws1a_c01172{word-spacing:-0.106240pt;}
.ws16_c01172{word-spacing:-0.053120pt;}
.ws7_c01172{word-spacing:0.000000pt;}
.ws9_c01172{word-spacing:0.053120pt;}
.wsf_c01172{word-spacing:0.064000pt;}
.wsa_c01172{word-spacing:0.212480pt;}
.ws19_c01172{word-spacing:0.371840pt;}
.wsb_c01172{word-spacing:0.531200pt;}
.ws15_c01172{word-spacing:0.584320pt;}
.ws18_c01172{word-spacing:1.009280pt;}
.ws17_c01172{word-spacing:1.115520pt;}
.ws2d_c01172{word-spacing:1.168640pt;}
.wsd_c01172{word-spacing:2.284160pt;}
.ws25_c01172{word-spacing:3.080960pt;}
.ws27_c01172{word-spacing:3.718400pt;}
.ws26_c01172{word-spacing:4.037120pt;}
.ws28_c01172{word-spacing:4.302720pt;}
.ws2a_c01172{word-spacing:4.355840pt;}
.ws30_c01172{word-spacing:5.630720pt;}
.ws1b_c01172{word-spacing:6.905600pt;}
.ws29_c01172{word-spacing:8.871040pt;}
.ws20_c01172{word-spacing:9.614720pt;}
.ws1e_c01172{word-spacing:9.986560pt;}
.ws1f_c01172{word-spacing:10.092800pt;}
.ws12_c01172{word-spacing:10.145920pt;}
.ws13_c01172{word-spacing:10.252160pt;}
.ws14_c01172{word-spacing:10.624000pt;}
.ws24_c01172{word-spacing:11.739520pt;}
.ws23_c01172{word-spacing:11.898880pt;}
.ws2c_c01172{word-spacing:12.058240pt;}
.ws2b_c01172{word-spacing:12.536320pt;}
.ws1d_c01172{word-spacing:13.173760pt;}
.ws1c_c01172{word-spacing:13.280000pt;}
.wse_c01172{word-spacing:27.409920pt;}
.ws2f_c01172{word-spacing:38.299520pt;}
.ws21_c01172{word-spacing:39.255680pt;}
.ws22_c01172{word-spacing:39.521280pt;}
._0_c01172{margin-left:-1.094272pt;}
._2_c01172{width:1.158016pt;}
._4_c01172{width:10.199040pt;}
._5_c01172{width:13.704960pt;}
._1_c01172{width:38.703232pt;}
._3_c01172{width:54.592000pt;}
.fs0_c01172{font-size:53.120000pt;}
.fs1_c01172{font-size:64.000000pt;}
.y0_c01172{bottom:0.000000pt;}
.y2_c01172{bottom:63.365760pt;}
.y27_c01172{bottom:95.190080pt;}
.y26_c01172{bottom:111.511200pt;}
.y25_c01172{bottom:127.832320pt;}
.y24_c01172{bottom:143.994080pt;}
.y23_c01172{bottom:160.315200pt;}
.y22_c01172{bottom:176.636320pt;}
.y21_c01172{bottom:193.594880pt;}
.y20_c01172{bottom:209.916000pt;}
.y1f_c01172{bottom:226.077760pt;}
.y1e_c01172{bottom:242.398880pt;}
.y1d_c01172{bottom:258.720000pt;}
.y1c_c01172{bottom:275.670880pt;}
.y1b_c01172{bottom:291.992000pt;}
.y1a_c01172{bottom:308.153760pt;}
.y19_c01172{bottom:324.474880pt;}
.y18_c01172{bottom:340.796000pt;}
.y17_c01172{bottom:357.117120pt;}
.y16_c01172{bottom:373.278880pt;}
.y15_c01172{bottom:389.600000pt;}
.y14_c01172{bottom:405.905120pt;}
.y13_c01172{bottom:422.066880pt;}
.y12_c01172{bottom:438.388000pt;}
.y11_c01172{bottom:454.709120pt;}
.y10_c01172{bottom:471.030240pt;}
.yf_c01172{bottom:487.192000pt;}
.ye_c01172{bottom:526.235200pt;}
.yd_c01172{bottom:545.756800pt;}
.yc_c01172{bottom:565.278400pt;}
.yb_c01172{bottom:584.800000pt;}
.ya_c01172{bottom:611.040000pt;}
.y9_c01172{bottom:649.438720pt;}
.y8_c01172{bottom:665.759840pt;}
.y7_c01172{bottom:682.080960pt;}
.y6_c01172{bottom:698.402080pt;}
.y5_c01172{bottom:714.563840pt;}
.y4_c01172{bottom:730.884960pt;}
.y3_c01172{bottom:747.206133pt;}
.y1_c01172{bottom:1034.240000pt;}
.h2_c01172{height:36.935000pt;}
.h4_c01172{height:38.127912pt;}
.h3_c01172{height:38.128125pt;}
.h5_c01172{height:38.133245pt;}
.h7_c01172{height:38.187645pt;}
.h6_c01172{height:44.500000pt;}
.h0_c01172{height:1122.560000pt;}
.h1_c01172{height:1122.666667pt;}
.w0_c01172{width:793.760000pt;}
.w1_c01172{width:794.000000pt;}
.x0_c01172{left:0.000000pt;}
.x1_c01172{left:75.520000pt;}
.x3_c01172{left:132.318560pt;}
.x2_c01172{left:393.443200pt;}
.x4_c01172{left:411.530533pt;}
.x5_c01172{left:425.118720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_018335385d49c3a33970ec6e.woff2')format("woff");}.ff1_c01173{font-family:ff1_c01173;line-height:0.873535;font-style:normal;font-weight:normal;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_cd8f1641fc64feca322533db.woff2')format("woff");}.ff2_c01173{font-family:ff2_c01173;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c01173{letter-spacing:-0.239040px;}
.ls9_c01173{letter-spacing:-0.059760px;}
.ls6_c01173{letter-spacing:0.000000px;}
.lsa_c01173{letter-spacing:0.059760px;}
.ls2_c01173{letter-spacing:0.125496px;}
.lsb_c01173{letter-spacing:0.179280px;}
.ls7_c01173{letter-spacing:0.288000px;}
.ls0_c01173{letter-spacing:0.298800px;}
.ls5_c01173{letter-spacing:0.358560px;}
.ls1_c01173{letter-spacing:1.679256px;}
.ls4_c01173{letter-spacing:3.764880px;}
.ls3_c01173{letter-spacing:13.147200px;}
.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;}
}
.ws3_c01173{word-spacing:-13.864320px;}
.ws2_c01173{word-spacing:-13.804560px;}
.ws1_c01173{word-spacing:-13.505760px;}
.ws0_c01173{word-spacing:-13.446000px;}
.ws8_c01173{word-spacing:-1.553760px;}
.ws7_c01173{word-spacing:-1.015920px;}
.ws16_c01173{word-spacing:-0.896400px;}
.ws1a_c01173{word-spacing:-0.836640px;}
.ws15_c01173{word-spacing:-0.478080px;}
.ws1d_c01173{word-spacing:-0.358560px;}
.ws1b_c01173{word-spacing:-0.298800px;}
.ws4_c01173{word-spacing:-0.179280px;}
.ws20_c01173{word-spacing:-0.119520px;}
.ws6_c01173{word-spacing:-0.060000px;}
.ws9_c01173{word-spacing:-0.059760px;}
.ws5_c01173{word-spacing:0.000000px;}
.ws1c_c01173{word-spacing:0.239040px;}
.ws10_c01173{word-spacing:1.254960px;}
.wsb_c01173{word-spacing:1.314720px;}
.wsa_c01173{word-spacing:1.434240px;}
.wsf_c01173{word-spacing:1.553760px;}
.wsc_c01173{word-spacing:1.613520px;}
.wse_c01173{word-spacing:1.673280px;}
.wsd_c01173{word-spacing:1.852560px;}
.ws11_c01173{word-spacing:2.031840px;}
.ws19_c01173{word-spacing:3.286800px;}
.ws12_c01173{word-spacing:3.466080px;}
.ws1e_c01173{word-spacing:4.003920px;}
.ws13_c01173{word-spacing:4.183200px;}
.ws18_c01173{word-spacing:5.617440px;}
.ws17_c01173{word-spacing:6.872400px;}
.ws1f_c01173{word-spacing:11.414160px;}
.ws14_c01173{word-spacing:14.282640px;}
._0_c01173{margin-left:-1.231056px;}
._2_c01173{width:1.428264px;}
._1_c01173{width:61.416000px;}
.fc1_c01173{color:rgb(0,0,0);}
.fc0_c01173{color:rgb(0,0,255);}
.fs0_c01173{font-size:59.760000px;}
.fs1_c01173{font-size:72.000000px;}
.y0_c01173{bottom:0.000000px;}
.y2_c01173{bottom:67.680000px;}
.y14_c01173{bottom:151.169220px;}
.y13_c01173{bottom:169.530480px;}
.y12_c01173{bottom:187.712400px;}
.y11_c01173{bottom:802.956600px;}
.y10_c01173{bottom:824.918400px;}
.yf_c01173{bottom:846.880200px;}
.ye_c01173{bottom:868.842000px;}
.yd_c01173{bottom:890.803800px;}
.yc_c01173{bottom:912.765600px;}
.yb_c01173{bottom:934.727400px;}
.ya_c01173{bottom:956.689200px;}
.y9_c01173{bottom:978.651000px;}
.y8_c01173{bottom:1000.612800px;}
.y7_c01173{bottom:1022.574600px;}
.y6_c01173{bottom:1044.536400px;}
.y5_c01173{bottom:1066.498200px;}
.y4_c01173{bottom:1088.460000px;}
.y3_c01173{bottom:1117.980000px;}
.y1_c01173{bottom:1163.520000px;}
.h2_c01173{height:41.551875px;}
.h3_c01173{height:42.894141px;}
.h5_c01173{height:42.894381px;}
.h4_c01173{height:50.062500px;}
.h0_c01173{height:1262.880000px;}
.h1_c01173{height:1263.000000px;}
.w0_c01173{width:892.980000px;}
.w1_c01173{width:893.250000px;}
.x0_c01173{left:0.000000px;}
.x1_c01173{left:84.960000px;}
.x3_c01173{left:148.843440px;}
.x2_c01173{left:442.620000px;}
@media print{
.v0_c01173{vertical-align:0.000000pt;}
.ls8_c01173{letter-spacing:-0.212480pt;}
.ls9_c01173{letter-spacing:-0.053120pt;}
.ls6_c01173{letter-spacing:0.000000pt;}
.lsa_c01173{letter-spacing:0.053120pt;}
.ls2_c01173{letter-spacing:0.111552pt;}
.lsb_c01173{letter-spacing:0.159360pt;}
.ls7_c01173{letter-spacing:0.256000pt;}
.ls0_c01173{letter-spacing:0.265600pt;}
.ls5_c01173{letter-spacing:0.318720pt;}
.ls1_c01173{letter-spacing:1.492672pt;}
.ls4_c01173{letter-spacing:3.346560pt;}
.ls3_c01173{letter-spacing:11.686400pt;}
.ws3_c01173{word-spacing:-12.323840pt;}
.ws2_c01173{word-spacing:-12.270720pt;}
.ws1_c01173{word-spacing:-12.005120pt;}
.ws0_c01173{word-spacing:-11.952000pt;}
.ws8_c01173{word-spacing:-1.381120pt;}
.ws7_c01173{word-spacing:-0.903040pt;}
.ws16_c01173{word-spacing:-0.796800pt;}
.ws1a_c01173{word-spacing:-0.743680pt;}
.ws15_c01173{word-spacing:-0.424960pt;}
.ws1d_c01173{word-spacing:-0.318720pt;}
.ws1b_c01173{word-spacing:-0.265600pt;}
.ws4_c01173{word-spacing:-0.159360pt;}
.ws20_c01173{word-spacing:-0.106240pt;}
.ws6_c01173{word-spacing:-0.053333pt;}
.ws9_c01173{word-spacing:-0.053120pt;}
.ws5_c01173{word-spacing:0.000000pt;}
.ws1c_c01173{word-spacing:0.212480pt;}
.ws10_c01173{word-spacing:1.115520pt;}
.wsb_c01173{word-spacing:1.168640pt;}
.wsa_c01173{word-spacing:1.274880pt;}
.wsf_c01173{word-spacing:1.381120pt;}
.wsc_c01173{word-spacing:1.434240pt;}
.wse_c01173{word-spacing:1.487360pt;}
.wsd_c01173{word-spacing:1.646720pt;}
.ws11_c01173{word-spacing:1.806080pt;}
.ws19_c01173{word-spacing:2.921600pt;}
.ws12_c01173{word-spacing:3.080960pt;}
.ws1e_c01173{word-spacing:3.559040pt;}
.ws13_c01173{word-spacing:3.718400pt;}
.ws18_c01173{word-spacing:4.993280pt;}
.ws17_c01173{word-spacing:6.108800pt;}
.ws1f_c01173{word-spacing:10.145920pt;}
.ws14_c01173{word-spacing:12.695680pt;}
._0_c01173{margin-left:-1.094272pt;}
._2_c01173{width:1.269568pt;}
._1_c01173{width:54.592000pt;}
.fs0_c01173{font-size:53.120000pt;}
.fs1_c01173{font-size:64.000000pt;}
.y0_c01173{bottom:0.000000pt;}
.y2_c01173{bottom:60.160000pt;}
.y14_c01173{bottom:134.372640pt;}
.y13_c01173{bottom:150.693760pt;}
.y12_c01173{bottom:166.855467pt;}
.y11_c01173{bottom:713.739200pt;}
.y10_c01173{bottom:733.260800pt;}
.yf_c01173{bottom:752.782400pt;}
.ye_c01173{bottom:772.304000pt;}
.yd_c01173{bottom:791.825600pt;}
.yc_c01173{bottom:811.347200pt;}
.yb_c01173{bottom:830.868800pt;}
.ya_c01173{bottom:850.390400pt;}
.y9_c01173{bottom:869.912000pt;}
.y8_c01173{bottom:889.433600pt;}
.y7_c01173{bottom:908.955200pt;}
.y6_c01173{bottom:928.476800pt;}
.y5_c01173{bottom:947.998400pt;}
.y4_c01173{bottom:967.520000pt;}
.y3_c01173{bottom:993.760000pt;}
.y1_c01173{bottom:1034.240000pt;}
.h2_c01173{height:36.935000pt;}
.h3_c01173{height:38.128125pt;}
.h5_c01173{height:38.128338pt;}
.h4_c01173{height:44.500000pt;}
.h0_c01173{height:1122.560000pt;}
.h1_c01173{height:1122.666667pt;}
.w0_c01173{width:793.760000pt;}
.w1_c01173{width:794.000000pt;}
.x0_c01173{left:0.000000pt;}
.x1_c01173{left:75.520000pt;}
.x3_c01173{left:132.305280pt;}
.x2_c01173{left:393.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1bd9a90a5bac6fdc3bb526ac.woff2')format("woff");}.ff1_c01174{font-family:ff1_c01174;line-height:0.873535;font-style:normal;font-weight:normal;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_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff2_c01174{font-family:ff2_c01174;line-height:0.910645;font-style:normal;font-weight:normal;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_8b761af370c1cb3a6ecf050e.woff2')format("woff");}.ff3_c01174{font-family:ff3_c01174;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01174{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01174{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01174{vertical-align:0.000000px;}
.ls8_c01174{letter-spacing:-0.358560px;}
.lsa_c01174{letter-spacing:-0.239040px;}
.ls6_c01174{letter-spacing:-0.059760px;}
.ls5_c01174{letter-spacing:0.000000px;}
.ls9_c01174{letter-spacing:0.059760px;}
.ls3_c01174{letter-spacing:0.095616px;}
.ls1_c01174{letter-spacing:0.179280px;}
.ls7_c01174{letter-spacing:0.298800px;}
.ls4_c01174{letter-spacing:0.358560px;}
.ls2_c01174{letter-spacing:5.916240px;}
.ls0_c01174{letter-spacing:13.147200px;}
.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:-13.864320px;}
.ws3_c01174{word-spacing:-13.804560px;}
.ws0_c01174{word-spacing:-13.505760px;}
.ws2_c01174{word-spacing:-13.446000px;}
.ws6_c01174{word-spacing:-0.358560px;}
.ws4_c01174{word-spacing:-0.179280px;}
.ws8_c01174{word-spacing:-0.119520px;}
.wsc_c01174{word-spacing:-0.059760px;}
.ws5_c01174{word-spacing:0.000000px;}
.ws7_c01174{word-spacing:0.239040px;}
.wsd_c01174{word-spacing:0.418320px;}
.wsb_c01174{word-spacing:0.537840px;}
.wsa_c01174{word-spacing:5.617440px;}
.ws9_c01174{word-spacing:6.334560px;}
._0_c01174{margin-left:-1.231056px;}
._1_c01174{width:1.266912px;}
._2_c01174{width:5.366448px;}
.fc1_c01174{color:rgb(0,0,0);}
.fc0_c01174{color:rgb(0,0,255);}
.fs0_c01174{font-size:59.760000px;}
.y0_c01174{bottom:0.000000px;}
.y2_c01174{bottom:71.286480px;}
.ya_c01174{bottom:154.976400px;}
.y9_c01174{bottom:176.938200px;}
.y8_c01174{bottom:217.250250px;}
.y7_c01174{bottom:235.611600px;}
.y6_c01174{bottom:731.514960px;}
.y5_c01174{bottom:753.476760px;}
.y4_c01174{bottom:775.438500px;}
.y3_c01174{bottom:815.761650px;}
.y1_c01174{bottom:1163.520000px;}
.h2_c01174{height:41.551875px;}
.h6_c01174{height:42.893901px;}
.h4_c01174{height:42.894021px;}
.h3_c01174{height:42.894141px;}
.h5_c01174{height:42.894381px;}
.h7_c01174{height:42.933141px;}
.h0_c01174{height:1262.880000px;}
.h1_c01174{height:1263.000000px;}
.w0_c01174{width:892.980000px;}
.w1_c01174{width:893.250000px;}
.x0_c01174{left:0.000000px;}
.x1_c01174{left:84.960000px;}
.x3_c01174{left:148.828500px;}
.x2_c01174{left:442.623600px;}
@media print{
.v0_c01174{vertical-align:0.000000pt;}
.ls8_c01174{letter-spacing:-0.318720pt;}
.lsa_c01174{letter-spacing:-0.212480pt;}
.ls6_c01174{letter-spacing:-0.053120pt;}
.ls5_c01174{letter-spacing:0.000000pt;}
.ls9_c01174{letter-spacing:0.053120pt;}
.ls3_c01174{letter-spacing:0.084992pt;}
.ls1_c01174{letter-spacing:0.159360pt;}
.ls7_c01174{letter-spacing:0.265600pt;}
.ls4_c01174{letter-spacing:0.318720pt;}
.ls2_c01174{letter-spacing:5.258880pt;}
.ls0_c01174{letter-spacing:11.686400pt;}
.ws1_c01174{word-spacing:-12.323840pt;}
.ws3_c01174{word-spacing:-12.270720pt;}
.ws0_c01174{word-spacing:-12.005120pt;}
.ws2_c01174{word-spacing:-11.952000pt;}
.ws6_c01174{word-spacing:-0.318720pt;}
.ws4_c01174{word-spacing:-0.159360pt;}
.ws8_c01174{word-spacing:-0.106240pt;}
.wsc_c01174{word-spacing:-0.053120pt;}
.ws5_c01174{word-spacing:0.000000pt;}
.ws7_c01174{word-spacing:0.212480pt;}
.wsd_c01174{word-spacing:0.371840pt;}
.wsb_c01174{word-spacing:0.478080pt;}
.wsa_c01174{word-spacing:4.993280pt;}
.ws9_c01174{word-spacing:5.630720pt;}
._0_c01174{margin-left:-1.094272pt;}
._1_c01174{width:1.126144pt;}
._2_c01174{width:4.770176pt;}
.fs0_c01174{font-size:53.120000pt;}
.y0_c01174{bottom:0.000000pt;}
.y2_c01174{bottom:63.365760pt;}
.ya_c01174{bottom:137.756800pt;}
.y9_c01174{bottom:157.278400pt;}
.y8_c01174{bottom:193.111333pt;}
.y7_c01174{bottom:209.432533pt;}
.y6_c01174{bottom:650.235520pt;}
.y5_c01174{bottom:669.757120pt;}
.y4_c01174{bottom:689.278667pt;}
.y3_c01174{bottom:725.121467pt;}
.y1_c01174{bottom:1034.240000pt;}
.h2_c01174{height:36.935000pt;}
.h6_c01174{height:38.127912pt;}
.h4_c01174{height:38.128018pt;}
.h3_c01174{height:38.128125pt;}
.h5_c01174{height:38.128338pt;}
.h7_c01174{height:38.162792pt;}
.h0_c01174{height:1122.560000pt;}
.h1_c01174{height:1122.666667pt;}
.w0_c01174{width:793.760000pt;}
.w1_c01174{width:794.000000pt;}
.x0_c01174{left:0.000000pt;}
.x1_c01174{left:75.520000pt;}
.x3_c01174{left:132.292000pt;}
.x2_c01174{left:393.443200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1aae7cfcb325e83baa48a82e.woff2')format("woff");}.ff1_c01175{font-family:ff1_c01175;line-height:0.873535;font-style:normal;font-weight:normal;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_7e057962658b66bf3896c0b0.woff2')format("woff");}.ff2_c01175{font-family:ff2_c01175;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsa_c01175{letter-spacing:-0.358560px;}
.ls9_c01175{letter-spacing:-0.239040px;}
.ls6_c01175{letter-spacing:-0.059760px;}
.ls5_c01175{letter-spacing:0.000000px;}
.ls7_c01175{letter-spacing:0.059760px;}
.ls0_c01175{letter-spacing:0.179280px;}
.ls8_c01175{letter-spacing:0.288000px;}
.ls3_c01175{letter-spacing:0.298800px;}
.ls4_c01175{letter-spacing:0.358560px;}
.ls1_c01175{letter-spacing:0.824688px;}
.ls2_c01175{letter-spacing:3.764880px;}
.sc__c01175{text-shadow:none;}
.sc0_c01175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01175{-webkit-text-stroke:0px transparent;}
.sc0_c01175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01175{word-spacing:-13.864320px;}
.ws1_c01175{word-spacing:-13.565520px;}
.ws2_c01175{word-spacing:-13.505760px;}
.ws6_c01175{word-spacing:-0.358560px;}
.ws3_c01175{word-spacing:-0.179280px;}
.wsc_c01175{word-spacing:-0.119520px;}
.ws5_c01175{word-spacing:-0.060000px;}
.ws4_c01175{word-spacing:0.000000px;}
.ws7_c01175{word-spacing:0.239040px;}
.wsb_c01175{word-spacing:0.358560px;}
.wsa_c01175{word-spacing:3.406320px;}
.ws8_c01175{word-spacing:3.824640px;}
.ws9_c01175{word-spacing:4.003920px;}
._0_c01175{margin-left:-1.231056px;}
._1_c01175{width:1.003968px;}
._2_c01175{width:61.416000px;}
.fc1_c01175{color:rgb(0,0,0);}
.fc0_c01175{color:rgb(0,0,255);}
.fs0_c01175{font-size:59.760000px;}
.fs1_c01175{font-size:72.000000px;}
.y0_c01175{bottom:0.000000px;}
.y2_c01175{bottom:67.680000px;}
.y7_c01175{bottom:142.019700px;}
.y6_c01175{bottom:754.918200px;}
.y5_c01175{bottom:776.880000px;}
.y4_c01175{bottom:806.400000px;}
.y3_c01175{bottom:849.594750px;}
.y1_c01175{bottom:1163.520000px;}
.h2_c01175{height:41.551875px;}
.h6_c01175{height:42.893901px;}
.h3_c01175{height:42.894141px;}
.h4_c01175{height:42.894261px;}
.h5_c01175{height:50.062500px;}
.h0_c01175{height:1262.880000px;}
.h1_c01175{height:1263.000000px;}
.w0_c01175{width:892.980000px;}
.w1_c01175{width:893.250000px;}
.x0_c01175{left:0.000000px;}
.x1_c01175{left:84.960000px;}
.x2_c01175{left:442.620000px;}
@media print{
.v0_c01175{vertical-align:0.000000pt;}
.lsa_c01175{letter-spacing:-0.318720pt;}
.ls9_c01175{letter-spacing:-0.212480pt;}
.ls6_c01175{letter-spacing:-0.053120pt;}
.ls5_c01175{letter-spacing:0.000000pt;}
.ls7_c01175{letter-spacing:0.053120pt;}
.ls0_c01175{letter-spacing:0.159360pt;}
.ls8_c01175{letter-spacing:0.256000pt;}
.ls3_c01175{letter-spacing:0.265600pt;}
.ls4_c01175{letter-spacing:0.318720pt;}
.ls1_c01175{letter-spacing:0.733056pt;}
.ls2_c01175{letter-spacing:3.346560pt;}
.ws0_c01175{word-spacing:-12.323840pt;}
.ws1_c01175{word-spacing:-12.058240pt;}
.ws2_c01175{word-spacing:-12.005120pt;}
.ws6_c01175{word-spacing:-0.318720pt;}
.ws3_c01175{word-spacing:-0.159360pt;}
.wsc_c01175{word-spacing:-0.106240pt;}
.ws5_c01175{word-spacing:-0.053333pt;}
.ws4_c01175{word-spacing:0.000000pt;}
.ws7_c01175{word-spacing:0.212480pt;}
.wsb_c01175{word-spacing:0.318720pt;}
.wsa_c01175{word-spacing:3.027840pt;}
.ws8_c01175{word-spacing:3.399680pt;}
.ws9_c01175{word-spacing:3.559040pt;}
._0_c01175{margin-left:-1.094272pt;}
._1_c01175{width:0.892416pt;}
._2_c01175{width:54.592000pt;}
.fs0_c01175{font-size:53.120000pt;}
.fs1_c01175{font-size:64.000000pt;}
.y0_c01175{bottom:0.000000pt;}
.y2_c01175{bottom:60.160000pt;}
.y7_c01175{bottom:126.239733pt;}
.y6_c01175{bottom:671.038400pt;}
.y5_c01175{bottom:690.560000pt;}
.y4_c01175{bottom:716.800000pt;}
.y3_c01175{bottom:755.195333pt;}
.y1_c01175{bottom:1034.240000pt;}
.h2_c01175{height:36.935000pt;}
.h6_c01175{height:38.127912pt;}
.h3_c01175{height:38.128125pt;}
.h4_c01175{height:38.128232pt;}
.h5_c01175{height:44.500000pt;}
.h0_c01175{height:1122.560000pt;}
.h1_c01175{height:1122.666667pt;}
.w0_c01175{width:793.760000pt;}
.w1_c01175{width:794.000000pt;}
.x0_c01175{left:0.000000pt;}
.x1_c01175{left:75.520000pt;}
.x2_c01175{left:393.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0edc8fa48b5625e63b16ad78.woff2')format("woff");}.ff1_c01176{font-family:ff1_c01176;line-height:0.873535;font-style:normal;font-weight:normal;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_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff2_c01176{font-family:ff2_c01176;line-height:0.910645;font-style:normal;font-weight:normal;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_525415df2f47a24a9c5e8971.woff2')format("woff");}.ff3_c01176{font-family:ff3_c01176;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01176;src:url('chunks/assets/font_d90ee7c616270a5732230b94.woff2')format("woff");}.ff4_c01176{font-family:ff4_c01176;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c01176{letter-spacing:-0.358560px;}
.ls9_c01176{letter-spacing:-0.239040px;}
.lsb_c01176{letter-spacing:-0.119520px;}
.ls8_c01176{letter-spacing:-0.059760px;}
.ls7_c01176{letter-spacing:0.000000px;}
.ls4_c01176{letter-spacing:0.059760px;}
.lsa_c01176{letter-spacing:0.119520px;}
.ls1_c01176{letter-spacing:0.179280px;}
.ls0_c01176{letter-spacing:0.298800px;}
.ls6_c01176{letter-spacing:0.358560px;}
.ls3_c01176{letter-spacing:0.776880px;}
.ls5_c01176{letter-spacing:8.067600px;}
.ls2_c01176{letter-spacing:13.147200px;}
.sc__c01176{text-shadow:none;}
.sc0_c01176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01176{-webkit-text-stroke:0px transparent;}
.sc0_c01176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01176{word-spacing:-13.864320px;}
.ws1_c01176{word-spacing:-13.505760px;}
.ws2_c01176{word-spacing:-13.446000px;}
.ws3_c01176{word-spacing:-13.386240px;}
.wsf_c01176{word-spacing:-0.896400px;}
.ws9_c01176{word-spacing:-0.836640px;}
.wsa_c01176{word-spacing:-0.657360px;}
.ws7_c01176{word-spacing:-0.478080px;}
.wsd_c01176{word-spacing:-0.358560px;}
.ws8_c01176{word-spacing:-0.298800px;}
.ws4_c01176{word-spacing:-0.179280px;}
.wse_c01176{word-spacing:-0.119520px;}
.ws5_c01176{word-spacing:0.000000px;}
.ws6_c01176{word-spacing:0.059760px;}
.wsc_c01176{word-spacing:0.239040px;}
.wsb_c01176{word-spacing:0.418320px;}
.ws10_c01176{word-spacing:7.051680px;}
.ws11_c01176{word-spacing:7.709040px;}
._0_c01176{margin-left:-1.231056px;}
._1_c01176{width:1.655352px;}
.fc1_c01176{color:rgb(0,0,0);}
.fc0_c01176{color:rgb(0,0,255);}
.fs0_c01176{font-size:59.760000px;}
.y0_c01176{bottom:0.000000px;}
.y2_c01176{bottom:71.286480px;}
.yb_c01176{bottom:97.013100px;}
.ya_c01176{bottom:623.872260px;}
.y9_c01176{bottom:645.834060px;}
.y8_c01176{bottom:667.795860px;}
.y7_c01176{bottom:689.757600px;}
.y6_c01176{bottom:730.080750px;}
.y5_c01176{bottom:1076.942700px;}
.y4_c01176{bottom:1098.904500px;}
.y3_c01176{bottom:1120.866300px;}
.y1_c01176{bottom:1163.520000px;}
.h2_c01176{height:41.551875px;}
.h3_c01176{height:42.894141px;}
.h5_c01176{height:42.894381px;}
.h4_c01176{height:43.390075px;}
.h0_c01176{height:1262.880000px;}
.h1_c01176{height:1263.000000px;}
.w0_c01176{width:892.980000px;}
.w1_c01176{width:893.250000px;}
.x0_c01176{left:0.000000px;}
.x1_c01176{left:84.960000px;}
.x2_c01176{left:438.843780px;}
@media print{
.v0_c01176{vertical-align:0.000000pt;}
.lsc_c01176{letter-spacing:-0.318720pt;}
.ls9_c01176{letter-spacing:-0.212480pt;}
.lsb_c01176{letter-spacing:-0.106240pt;}
.ls8_c01176{letter-spacing:-0.053120pt;}
.ls7_c01176{letter-spacing:0.000000pt;}
.ls4_c01176{letter-spacing:0.053120pt;}
.lsa_c01176{letter-spacing:0.106240pt;}
.ls1_c01176{letter-spacing:0.159360pt;}
.ls0_c01176{letter-spacing:0.265600pt;}
.ls6_c01176{letter-spacing:0.318720pt;}
.ls3_c01176{letter-spacing:0.690560pt;}
.ls5_c01176{letter-spacing:7.171200pt;}
.ls2_c01176{letter-spacing:11.686400pt;}
.ws0_c01176{word-spacing:-12.323840pt;}
.ws1_c01176{word-spacing:-12.005120pt;}
.ws2_c01176{word-spacing:-11.952000pt;}
.ws3_c01176{word-spacing:-11.898880pt;}
.wsf_c01176{word-spacing:-0.796800pt;}
.ws9_c01176{word-spacing:-0.743680pt;}
.wsa_c01176{word-spacing:-0.584320pt;}
.ws7_c01176{word-spacing:-0.424960pt;}
.wsd_c01176{word-spacing:-0.318720pt;}
.ws8_c01176{word-spacing:-0.265600pt;}
.ws4_c01176{word-spacing:-0.159360pt;}
.wse_c01176{word-spacing:-0.106240pt;}
.ws5_c01176{word-spacing:0.000000pt;}
.ws6_c01176{word-spacing:0.053120pt;}
.wsc_c01176{word-spacing:0.212480pt;}
.wsb_c01176{word-spacing:0.371840pt;}
.ws10_c01176{word-spacing:6.268160pt;}
.ws11_c01176{word-spacing:6.852480pt;}
._0_c01176{margin-left:-1.094272pt;}
._1_c01176{width:1.471424pt;}
.fs0_c01176{font-size:53.120000pt;}
.y0_c01176{bottom:0.000000pt;}
.y2_c01176{bottom:63.365760pt;}
.yb_c01176{bottom:86.233867pt;}
.ya_c01176{bottom:554.553120pt;}
.y9_c01176{bottom:574.074720pt;}
.y8_c01176{bottom:593.596320pt;}
.y7_c01176{bottom:613.117867pt;}
.y6_c01176{bottom:648.960667pt;}
.y5_c01176{bottom:957.282400pt;}
.y4_c01176{bottom:976.804000pt;}
.y3_c01176{bottom:996.325600pt;}
.y1_c01176{bottom:1034.240000pt;}
.h2_c01176{height:36.935000pt;}
.h3_c01176{height:38.128125pt;}
.h5_c01176{height:38.128338pt;}
.h4_c01176{height:38.568956pt;}
.h0_c01176{height:1122.560000pt;}
.h1_c01176{height:1122.666667pt;}
.w0_c01176{width:793.760000pt;}
.w1_c01176{width:794.000000pt;}
.x0_c01176{left:0.000000pt;}
.x1_c01176{left:75.520000pt;}
.x2_c01176{left:390.083360pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e3cd2a84e96e0cb582628dc.woff2')format("woff");}.ff1_c01177{font-family:ff1_c01177;line-height:0.873535;font-style:normal;font-weight:normal;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_ee303bc3623dcc0f60259336.woff2')format("woff");}.ff2_c01177{font-family:ff2_c01177;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls11_c01177{letter-spacing:-0.358560px;}
.ls10_c01177{letter-spacing:-0.298800px;}
.lse_c01177{letter-spacing:-0.239040px;}
.lsf_c01177{letter-spacing:-0.119520px;}
.lsa_c01177{letter-spacing:-0.060000px;}
.lsc_c01177{letter-spacing:-0.059760px;}
.ls9_c01177{letter-spacing:0.000000px;}
.lsd_c01177{letter-spacing:0.059760px;}
.ls12_c01177{letter-spacing:0.119520px;}
.ls4_c01177{letter-spacing:0.179280px;}
.ls2_c01177{letter-spacing:0.233064px;}
.lsb_c01177{letter-spacing:0.298800px;}
.ls8_c01177{letter-spacing:0.358560px;}
.ls5_c01177{letter-spacing:0.896400px;}
.ls7_c01177{letter-spacing:0.944208px;}
.ls3_c01177{letter-spacing:3.047760px;}
.ls0_c01177{letter-spacing:3.764880px;}
.ls1_c01177{letter-spacing:3.824640px;}
.ls6_c01177{letter-spacing:5.916240px;}
.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;}
}
.ws4_c01177{word-spacing:-13.864320px;}
.ws1_c01177{word-spacing:-13.804560px;}
.ws9_c01177{word-spacing:-13.685040px;}
.ws2_c01177{word-spacing:-13.505760px;}
.ws6_c01177{word-spacing:-13.446000px;}
.ws0_c01177{word-spacing:-13.445760px;}
.ws3_c01177{word-spacing:-13.386240px;}
.ws5_c01177{word-spacing:-13.266720px;}
.ws7_c01177{word-spacing:-13.147200px;}
.ws16_c01177{word-spacing:-0.358560px;}
.wsa_c01177{word-spacing:-0.179280px;}
.ws2a_c01177{word-spacing:-0.119520px;}
.wsf_c01177{word-spacing:-0.059760px;}
.wsb_c01177{word-spacing:0.000000px;}
.ws14_c01177{word-spacing:0.059760px;}
.ws1d_c01177{word-spacing:0.239040px;}
.ws15_c01177{word-spacing:0.418320px;}
.ws1f_c01177{word-spacing:0.597600px;}
.ws26_c01177{word-spacing:0.836640px;}
.ws20_c01177{word-spacing:0.956160px;}
.ws25_c01177{word-spacing:1.135440px;}
.ws1e_c01177{word-spacing:1.254960px;}
.ws27_c01177{word-spacing:1.314720px;}
.ws28_c01177{word-spacing:1.673280px;}
.ws29_c01177{word-spacing:1.972080px;}
.ws13_c01177{word-spacing:2.031840px;}
.ws12_c01177{word-spacing:2.390400px;}
.ws19_c01177{word-spacing:2.748960px;}
.ws1a_c01177{word-spacing:3.107520px;}
.ws18_c01177{word-spacing:3.286800px;}
.ws17_c01177{word-spacing:3.346560px;}
.ws10_c01177{word-spacing:3.406320px;}
.wse_c01177{word-spacing:3.824640px;}
.ws11_c01177{word-spacing:4.003920px;}
.wsc_c01177{word-spacing:4.900320px;}
.wsd_c01177{word-spacing:5.258880px;}
.ws23_c01177{word-spacing:5.617440px;}
.ws24_c01177{word-spacing:5.736960px;}
.ws21_c01177{word-spacing:5.976000px;}
.ws22_c01177{word-spacing:6.155280px;}
.ws1b_c01177{word-spacing:10.099440px;}
.ws1c_c01177{word-spacing:10.338480px;}
.ws8_c01177{word-spacing:49.302000px;}
._0_c01177{margin-left:-1.231056px;}
._1_c01177{width:1.332528px;}
._3_c01177{width:2.629440px;}
._2_c01177{width:4.541760px;}
.fc1_c01177{color:rgb(0,0,0);}
.fc0_c01177{color:rgb(0,0,255);}
.fs0_c01177{font-size:59.760000px;}
.y0_c01177{bottom:0.000000px;}
.y2_c01177{bottom:67.680000px;}
.y16_c01177{bottom:178.519860px;}
.y15_c01177{bottom:200.481660px;}
.y14_c01177{bottom:222.443460px;}
.y13_c01177{bottom:244.405260px;}
.y12_c01177{bottom:266.367060px;}
.y11_c01177{bottom:288.328860px;}
.y10_c01177{bottom:310.290660px;}
.yf_c01177{bottom:332.431740px;}
.ye_c01177{bottom:354.393540px;}
.yd_c01177{bottom:376.355340px;}
.yc_c01177{bottom:398.317140px;}
.yb_c01177{bottom:420.278940px;}
.ya_c01177{bottom:442.240800px;}
.y9_c01177{bottom:482.563800px;}
.y8_c01177{bottom:500.925060px;}
.y7_c01177{bottom:519.107100px;}
.y6_c01177{bottom:1054.974960px;}
.y5_c01177{bottom:1076.936760px;}
.y4_c01177{bottom:1098.898560px;}
.y3_c01177{bottom:1120.860300px;}
.y1_c01177{bottom:1163.520000px;}
.h2_c01177{height:41.551875px;}
.h5_c01177{height:42.893901px;}
.h3_c01177{height:42.894141px;}
.h4_c01177{height:42.894381px;}
.h0_c01177{height:1262.880000px;}
.h1_c01177{height:1263.000000px;}
.w0_c01177{width:892.980000px;}
.w1_c01177{width:893.250000px;}
.x0_c01177{left:0.000000px;}
.x1_c01177{left:84.960000px;}
.x4_c01177{left:99.806580px;}
.x5_c01177{left:111.863160px;}
.x3_c01177{left:148.809780px;}
.x2_c01177{left:438.840000px;}
@media print{
.v0_c01177{vertical-align:0.000000pt;}
.ls11_c01177{letter-spacing:-0.318720pt;}
.ls10_c01177{letter-spacing:-0.265600pt;}
.lse_c01177{letter-spacing:-0.212480pt;}
.lsf_c01177{letter-spacing:-0.106240pt;}
.lsa_c01177{letter-spacing:-0.053333pt;}
.lsc_c01177{letter-spacing:-0.053120pt;}
.ls9_c01177{letter-spacing:0.000000pt;}
.lsd_c01177{letter-spacing:0.053120pt;}
.ls12_c01177{letter-spacing:0.106240pt;}
.ls4_c01177{letter-spacing:0.159360pt;}
.ls2_c01177{letter-spacing:0.207168pt;}
.lsb_c01177{letter-spacing:0.265600pt;}
.ls8_c01177{letter-spacing:0.318720pt;}
.ls5_c01177{letter-spacing:0.796800pt;}
.ls7_c01177{letter-spacing:0.839296pt;}
.ls3_c01177{letter-spacing:2.709120pt;}
.ls0_c01177{letter-spacing:3.346560pt;}
.ls1_c01177{letter-spacing:3.399680pt;}
.ls6_c01177{letter-spacing:5.258880pt;}
.ws4_c01177{word-spacing:-12.323840pt;}
.ws1_c01177{word-spacing:-12.270720pt;}
.ws9_c01177{word-spacing:-12.164480pt;}
.ws2_c01177{word-spacing:-12.005120pt;}
.ws6_c01177{word-spacing:-11.952000pt;}
.ws0_c01177{word-spacing:-11.951787pt;}
.ws3_c01177{word-spacing:-11.898880pt;}
.ws5_c01177{word-spacing:-11.792640pt;}
.ws7_c01177{word-spacing:-11.686400pt;}
.ws16_c01177{word-spacing:-0.318720pt;}
.wsa_c01177{word-spacing:-0.159360pt;}
.ws2a_c01177{word-spacing:-0.106240pt;}
.wsf_c01177{word-spacing:-0.053120pt;}
.wsb_c01177{word-spacing:0.000000pt;}
.ws14_c01177{word-spacing:0.053120pt;}
.ws1d_c01177{word-spacing:0.212480pt;}
.ws15_c01177{word-spacing:0.371840pt;}
.ws1f_c01177{word-spacing:0.531200pt;}
.ws26_c01177{word-spacing:0.743680pt;}
.ws20_c01177{word-spacing:0.849920pt;}
.ws25_c01177{word-spacing:1.009280pt;}
.ws1e_c01177{word-spacing:1.115520pt;}
.ws27_c01177{word-spacing:1.168640pt;}
.ws28_c01177{word-spacing:1.487360pt;}
.ws29_c01177{word-spacing:1.752960pt;}
.ws13_c01177{word-spacing:1.806080pt;}
.ws12_c01177{word-spacing:2.124800pt;}
.ws19_c01177{word-spacing:2.443520pt;}
.ws1a_c01177{word-spacing:2.762240pt;}
.ws18_c01177{word-spacing:2.921600pt;}
.ws17_c01177{word-spacing:2.974720pt;}
.ws10_c01177{word-spacing:3.027840pt;}
.wse_c01177{word-spacing:3.399680pt;}
.ws11_c01177{word-spacing:3.559040pt;}
.wsc_c01177{word-spacing:4.355840pt;}
.wsd_c01177{word-spacing:4.674560pt;}
.ws23_c01177{word-spacing:4.993280pt;}
.ws24_c01177{word-spacing:5.099520pt;}
.ws21_c01177{word-spacing:5.312000pt;}
.ws22_c01177{word-spacing:5.471360pt;}
.ws1b_c01177{word-spacing:8.977280pt;}
.ws1c_c01177{word-spacing:9.189760pt;}
.ws8_c01177{word-spacing:43.824000pt;}
._0_c01177{margin-left:-1.094272pt;}
._1_c01177{width:1.184469pt;}
._3_c01177{width:2.337280pt;}
._2_c01177{width:4.037120pt;}
.fs0_c01177{font-size:53.120000pt;}
.y0_c01177{bottom:0.000000pt;}
.y2_c01177{bottom:60.160000pt;}
.y16_c01177{bottom:158.684320pt;}
.y15_c01177{bottom:178.205920pt;}
.y14_c01177{bottom:197.727520pt;}
.y13_c01177{bottom:217.249120pt;}
.y12_c01177{bottom:236.770720pt;}
.y11_c01177{bottom:256.292320pt;}
.y10_c01177{bottom:275.813920pt;}
.yf_c01177{bottom:295.494880pt;}
.ye_c01177{bottom:315.016480pt;}
.yd_c01177{bottom:334.538080pt;}
.yc_c01177{bottom:354.059680pt;}
.yb_c01177{bottom:373.581280pt;}
.ya_c01177{bottom:393.102933pt;}
.y9_c01177{bottom:428.945600pt;}
.y8_c01177{bottom:445.266720pt;}
.y7_c01177{bottom:461.428533pt;}
.y6_c01177{bottom:937.755520pt;}
.y5_c01177{bottom:957.277120pt;}
.y4_c01177{bottom:976.798720pt;}
.y3_c01177{bottom:996.320267pt;}
.y1_c01177{bottom:1034.240000pt;}
.h2_c01177{height:36.935000pt;}
.h5_c01177{height:38.127912pt;}
.h3_c01177{height:38.128125pt;}
.h4_c01177{height:38.128338pt;}
.h0_c01177{height:1122.560000pt;}
.h1_c01177{height:1122.666667pt;}
.w0_c01177{width:793.760000pt;}
.w1_c01177{width:794.000000pt;}
.x0_c01177{left:0.000000pt;}
.x1_c01177{left:75.520000pt;}
.x4_c01177{left:88.716960pt;}
.x5_c01177{left:99.433920pt;}
.x3_c01177{left:132.275360pt;}
.x2_c01177{left:390.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6abd5abd3c3817c22516c22e.woff2')format("woff");}.ff1_c01178{font-family:ff1_c01178;line-height:0.873535;font-style:normal;font-weight:normal;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_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff2_c01178{font-family:ff2_c01178;line-height:0.910645;font-style:normal;font-weight:normal;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_dea308ee31d904dab6d5e647.woff2')format("woff");}.ff3_c01178{font-family:ff3_c01178;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01178{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01178{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01178{vertical-align:0.000000px;}
.lsa_c01178{letter-spacing:-0.358560px;}
.ls8_c01178{letter-spacing:-0.239040px;}
.lsb_c01178{letter-spacing:-0.119520px;}
.ls6_c01178{letter-spacing:-0.060000px;}
.ls7_c01178{letter-spacing:-0.059760px;}
.ls4_c01178{letter-spacing:0.000000px;}
.ls1_c01178{letter-spacing:0.047808px;}
.lsc_c01178{letter-spacing:0.119520px;}
.ls5_c01178{letter-spacing:0.179280px;}
.ls9_c01178{letter-spacing:0.298800px;}
.ls3_c01178{letter-spacing:0.358560px;}
.ls0_c01178{letter-spacing:10.278720px;}
.ls2_c01178{letter-spacing:28.983600px;}
.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:-13.864320px;}
.ws3_c01178{word-spacing:-13.505760px;}
.ws2_c01178{word-spacing:-13.446000px;}
.ws0_c01178{word-spacing:-13.445760px;}
.ws4_c01178{word-spacing:-13.266720px;}
.wsc_c01178{word-spacing:-2.629440px;}
.ws7_c01178{word-spacing:-0.358560px;}
.wsa_c01178{word-spacing:-0.298800px;}
.ws5_c01178{word-spacing:-0.179280px;}
.ws11_c01178{word-spacing:-0.119520px;}
.ws6_c01178{word-spacing:0.000000px;}
.wsb_c01178{word-spacing:0.059760px;}
.ws8_c01178{word-spacing:0.239040px;}
.wsd_c01178{word-spacing:0.358560px;}
.ws12_c01178{word-spacing:0.418320px;}
.ws9_c01178{word-spacing:1.314720px;}
.ws10_c01178{word-spacing:2.031840px;}
.wsf_c01178{word-spacing:29.043360px;}
.wse_c01178{word-spacing:29.103120px;}
._2_c01178{margin-left:-2.689200px;}
._0_c01178{margin-left:-1.231056px;}
._3_c01178{width:1.410336px;}
._1_c01178{width:2.605296px;}
.fc1_c01178{color:rgb(0,0,0);}
.fc0_c01178{color:rgb(0,0,255);}
.fs0_c01178{font-size:59.760000px;}
.y0_c01178{bottom:0.000000px;}
.y2_c01178{bottom:71.286450px;}
.yb_c01178{bottom:106.545450px;}
.ya_c01178{bottom:641.875500px;}
.y9_c01178{bottom:660.236760px;}
.y8_c01178{bottom:678.598050px;}
.y7_c01178{bottom:715.140000px;}
.y6_c01178{bottom:733.501980px;}
.y5_c01178{bottom:751.863240px;}
.y4_c01178{bottom:770.045220px;}
.y3_c01178{bottom:788.406450px;}
.y1_c01178{bottom:1163.520000px;}
.h2_c01178{height:41.551875px;}
.h5_c01178{height:42.894021px;}
.h3_c01178{height:42.894141px;}
.h4_c01178{height:42.894261px;}
.h0_c01178{height:1262.880000px;}
.h1_c01178{height:1263.000000px;}
.w0_c01178{width:892.980000px;}
.w1_c01178{width:893.250000px;}
.x0_c01178{left:0.000000px;}
.x1_c01178{left:84.960000px;}
.x3_c01178{left:404.466900px;}
.x2_c01178{left:438.843750px;}
.x4_c01178{left:467.648100px;}
@media print{
.v0_c01178{vertical-align:0.000000pt;}
.lsa_c01178{letter-spacing:-0.318720pt;}
.ls8_c01178{letter-spacing:-0.212480pt;}
.lsb_c01178{letter-spacing:-0.106240pt;}
.ls6_c01178{letter-spacing:-0.053333pt;}
.ls7_c01178{letter-spacing:-0.053120pt;}
.ls4_c01178{letter-spacing:0.000000pt;}
.ls1_c01178{letter-spacing:0.042496pt;}
.lsc_c01178{letter-spacing:0.106240pt;}
.ls5_c01178{letter-spacing:0.159360pt;}
.ls9_c01178{letter-spacing:0.265600pt;}
.ls3_c01178{letter-spacing:0.318720pt;}
.ls0_c01178{letter-spacing:9.136640pt;}
.ls2_c01178{letter-spacing:25.763200pt;}
.ws1_c01178{word-spacing:-12.323840pt;}
.ws3_c01178{word-spacing:-12.005120pt;}
.ws2_c01178{word-spacing:-11.952000pt;}
.ws0_c01178{word-spacing:-11.951787pt;}
.ws4_c01178{word-spacing:-11.792640pt;}
.wsc_c01178{word-spacing:-2.337280pt;}
.ws7_c01178{word-spacing:-0.318720pt;}
.wsa_c01178{word-spacing:-0.265600pt;}
.ws5_c01178{word-spacing:-0.159360pt;}
.ws11_c01178{word-spacing:-0.106240pt;}
.ws6_c01178{word-spacing:0.000000pt;}
.wsb_c01178{word-spacing:0.053120pt;}
.ws8_c01178{word-spacing:0.212480pt;}
.wsd_c01178{word-spacing:0.318720pt;}
.ws12_c01178{word-spacing:0.371840pt;}
.ws9_c01178{word-spacing:1.168640pt;}
.ws10_c01178{word-spacing:1.806080pt;}
.wsf_c01178{word-spacing:25.816320pt;}
.wse_c01178{word-spacing:25.869440pt;}
._2_c01178{margin-left:-2.390400pt;}
._0_c01178{margin-left:-1.094272pt;}
._3_c01178{width:1.253632pt;}
._1_c01178{width:2.315819pt;}
.fs0_c01178{font-size:53.120000pt;}
.y0_c01178{bottom:0.000000pt;}
.y2_c01178{bottom:63.365733pt;}
.yb_c01178{bottom:94.707067pt;}
.ya_c01178{bottom:570.556000pt;}
.y9_c01178{bottom:586.877120pt;}
.y8_c01178{bottom:603.198267pt;}
.y7_c01178{bottom:635.680000pt;}
.y6_c01178{bottom:652.001760pt;}
.y5_c01178{bottom:668.322880pt;}
.y4_c01178{bottom:684.484640pt;}
.y3_c01178{bottom:700.805733pt;}
.y1_c01178{bottom:1034.240000pt;}
.h2_c01178{height:36.935000pt;}
.h5_c01178{height:38.128018pt;}
.h3_c01178{height:38.128125pt;}
.h4_c01178{height:38.128232pt;}
.h0_c01178{height:1122.560000pt;}
.h1_c01178{height:1122.666667pt;}
.w0_c01178{width:793.760000pt;}
.w1_c01178{width:794.000000pt;}
.x0_c01178{left:0.000000pt;}
.x1_c01178{left:75.520000pt;}
.x3_c01178{left:359.526133pt;}
.x2_c01178{left:390.083333pt;}
.x4_c01178{left:415.687200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d0c8f916e1f3348c3df8ddef.woff2')format("woff");}.ff1_c01179{font-family:ff1_c01179;line-height:0.873535;font-style:normal;font-weight:normal;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_0f444ce7e1e6ed1e02e0200a.woff2')format("woff");}.ff2_c01179{font-family:ff2_c01179;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01179{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01179{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01179{vertical-align:0.000000px;}
.lsd_c01179{letter-spacing:-0.504000px;}
.lsc_c01179{letter-spacing:-0.432000px;}
.ls15_c01179{letter-spacing:-0.360000px;}
.ls14_c01179{letter-spacing:-0.300000px;}
.ls11_c01179{letter-spacing:-0.240000px;}
.ls1b_c01179{letter-spacing:-0.239040px;}
.lsa_c01179{letter-spacing:-0.060000px;}
.ls18_c01179{letter-spacing:-0.059760px;}
.ls9_c01179{letter-spacing:0.000000px;}
.ls19_c01179{letter-spacing:0.059760px;}
.ls2_c01179{letter-spacing:0.119400px;}
.ls12_c01179{letter-spacing:0.120000px;}
.ls1a_c01179{letter-spacing:0.168480px;}
.ls6_c01179{letter-spacing:0.179280px;}
.ls17_c01179{letter-spacing:0.180000px;}
.lsb_c01179{letter-spacing:0.216000px;}
.ls5_c01179{letter-spacing:0.298800px;}
.lse_c01179{letter-spacing:0.300000px;}
.ls7_c01179{letter-spacing:0.304776px;}
.ls8_c01179{letter-spacing:0.358560px;}
.ls13_c01179{letter-spacing:0.360000px;}
.ls0_c01179{letter-spacing:3.753600px;}
.ls1_c01179{letter-spacing:3.762240px;}
.ls16_c01179{letter-spacing:4.068000px;}
.lsf_c01179{letter-spacing:4.674000px;}
.ls10_c01179{letter-spacing:4.752000px;}
.ls4_c01179{letter-spacing:12.430080px;}
.ls3_c01179{letter-spacing:23.904000px;}
.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;}
}
.ws4_c01179{word-spacing:-13.804560px;}
.ws3_c01179{word-spacing:-13.685760px;}
.ws1_c01179{word-spacing:-13.505760px;}
.ws5_c01179{word-spacing:-13.446000px;}
.ws0_c01179{word-spacing:-13.445760px;}
.ws2_c01179{word-spacing:-13.145760px;}
.ws1c_c01179{word-spacing:-1.553760px;}
.ws1d_c01179{word-spacing:-1.195200px;}
.ws24_c01179{word-spacing:-0.505440px;}
.ws19_c01179{word-spacing:-0.360000px;}
.ws1b_c01179{word-spacing:-0.358560px;}
.ws8_c01179{word-spacing:-0.216000px;}
.ws16_c01179{word-spacing:-0.180000px;}
.ws6_c01179{word-spacing:-0.179280px;}
.ws14_c01179{word-spacing:-0.120000px;}
.ws23_c01179{word-spacing:-0.119520px;}
.ws1f_c01179{word-spacing:-0.059760px;}
.ws7_c01179{word-spacing:0.000000px;}
.ws25_c01179{word-spacing:0.059760px;}
.ws13_c01179{word-spacing:0.060000px;}
.ws22_c01179{word-spacing:0.239040px;}
.ws12_c01179{word-spacing:0.240000px;}
.ws15_c01179{word-spacing:0.420000px;}
.ws1a_c01179{word-spacing:0.456000px;}
.ws10_c01179{word-spacing:0.522000px;}
.ws11_c01179{word-spacing:0.534000px;}
.wsd_c01179{word-spacing:0.576000px;}
.wsa_c01179{word-spacing:0.720000px;}
.wsc_c01179{word-spacing:0.792000px;}
.wsb_c01179{word-spacing:0.936000px;}
.ws17_c01179{word-spacing:1.194000px;}
.ws18_c01179{word-spacing:3.822000px;}
.wsf_c01179{word-spacing:4.902000px;}
.wse_c01179{word-spacing:5.256000px;}
.ws21_c01179{word-spacing:12.131280px;}
.ws20_c01179{word-spacing:12.489840px;}
.ws1e_c01179{word-spacing:23.605200px;}
.ws9_c01179{word-spacing:60.768000px;}
._0_c01179{margin-left:-1.231056px;}
._1_c01179{width:1.150798px;}
._2_c01179{width:3.448082px;}
._3_c01179{width:11.805984px;}
._4_c01179{width:108.164160px;}
.fc1_c01179{color:rgb(0,0,0);}
.fc0_c01179{color:rgb(0,0,255);}
.fs0_c01179{font-size:59.760000px;}
.fs1_c01179{font-size:72.000000px;}
.fs2_c01179{font-size:84.240000px;}
.y0_c01179{bottom:0.000000px;}
.y2_c01179{bottom:67.686000px;}
.ye_c01179{bottom:109.803000px;}
.yd_c01179{bottom:502.740000px;}
.yc_c01179{bottom:533.700000px;}
.yb_c01179{bottom:601.740000px;}
.ya_c01179{bottom:620.091000px;}
.y9_c01179{bottom:638.452260px;}
.y8_c01179{bottom:656.634300px;}
.y7_c01179{bottom:1022.575500px;}
.y6_c01179{bottom:1044.537000px;}
.y5_c01179{bottom:1066.498500px;}
.y4_c01179{bottom:1088.460000px;}
.y3_c01179{bottom:1117.980000px;}
.y1_c01179{bottom:1163.520000px;}
.h2_c01179{height:41.551875px;}
.h3_c01179{height:42.894141px;}
.h7_c01179{height:42.894381px;}
.h5_c01179{height:42.930141px;}
.h4_c01179{height:50.062500px;}
.h6_c01179{height:58.573125px;}
.h0_c01179{height:1262.880000px;}
.h1_c01179{height:1263.000000px;}
.w0_c01179{width:892.980000px;}
.w1_c01179{width:893.250000px;}
.x0_c01179{left:0.000000px;}
.x1_c01179{left:84.960000px;}
.x3_c01179{left:148.843440px;}
.x2_c01179{left:438.843750px;}
@media print{
.v0_c01179{vertical-align:0.000000pt;}
.lsd_c01179{letter-spacing:-0.448000pt;}
.lsc_c01179{letter-spacing:-0.384000pt;}
.ls15_c01179{letter-spacing:-0.320000pt;}
.ls14_c01179{letter-spacing:-0.266667pt;}
.ls11_c01179{letter-spacing:-0.213333pt;}
.ls1b_c01179{letter-spacing:-0.212480pt;}
.lsa_c01179{letter-spacing:-0.053333pt;}
.ls18_c01179{letter-spacing:-0.053120pt;}
.ls9_c01179{letter-spacing:0.000000pt;}
.ls19_c01179{letter-spacing:0.053120pt;}
.ls2_c01179{letter-spacing:0.106133pt;}
.ls12_c01179{letter-spacing:0.106667pt;}
.ls1a_c01179{letter-spacing:0.149760pt;}
.ls6_c01179{letter-spacing:0.159360pt;}
.ls17_c01179{letter-spacing:0.160000pt;}
.lsb_c01179{letter-spacing:0.192000pt;}
.ls5_c01179{letter-spacing:0.265600pt;}
.lse_c01179{letter-spacing:0.266667pt;}
.ls7_c01179{letter-spacing:0.270912pt;}
.ls8_c01179{letter-spacing:0.318720pt;}
.ls13_c01179{letter-spacing:0.320000pt;}
.ls0_c01179{letter-spacing:3.336533pt;}
.ls1_c01179{letter-spacing:3.344213pt;}
.ls16_c01179{letter-spacing:3.616000pt;}
.lsf_c01179{letter-spacing:4.154667pt;}
.ls10_c01179{letter-spacing:4.224000pt;}
.ls4_c01179{letter-spacing:11.048960pt;}
.ls3_c01179{letter-spacing:21.248000pt;}
.ws4_c01179{word-spacing:-12.270720pt;}
.ws3_c01179{word-spacing:-12.165120pt;}
.ws1_c01179{word-spacing:-12.005120pt;}
.ws5_c01179{word-spacing:-11.952000pt;}
.ws0_c01179{word-spacing:-11.951787pt;}
.ws2_c01179{word-spacing:-11.685120pt;}
.ws1c_c01179{word-spacing:-1.381120pt;}
.ws1d_c01179{word-spacing:-1.062400pt;}
.ws24_c01179{word-spacing:-0.449280pt;}
.ws19_c01179{word-spacing:-0.320000pt;}
.ws1b_c01179{word-spacing:-0.318720pt;}
.ws8_c01179{word-spacing:-0.192000pt;}
.ws16_c01179{word-spacing:-0.160000pt;}
.ws6_c01179{word-spacing:-0.159360pt;}
.ws14_c01179{word-spacing:-0.106667pt;}
.ws23_c01179{word-spacing:-0.106240pt;}
.ws1f_c01179{word-spacing:-0.053120pt;}
.ws7_c01179{word-spacing:0.000000pt;}
.ws25_c01179{word-spacing:0.053120pt;}
.ws13_c01179{word-spacing:0.053333pt;}
.ws22_c01179{word-spacing:0.212480pt;}
.ws12_c01179{word-spacing:0.213333pt;}
.ws15_c01179{word-spacing:0.373333pt;}
.ws1a_c01179{word-spacing:0.405333pt;}
.ws10_c01179{word-spacing:0.464000pt;}
.ws11_c01179{word-spacing:0.474667pt;}
.wsd_c01179{word-spacing:0.512000pt;}
.wsa_c01179{word-spacing:0.640000pt;}
.wsc_c01179{word-spacing:0.704000pt;}
.wsb_c01179{word-spacing:0.832000pt;}
.ws17_c01179{word-spacing:1.061333pt;}
.ws18_c01179{word-spacing:3.397333pt;}
.wsf_c01179{word-spacing:4.357333pt;}
.wse_c01179{word-spacing:4.672000pt;}
.ws21_c01179{word-spacing:10.783360pt;}
.ws20_c01179{word-spacing:11.102080pt;}
.ws1e_c01179{word-spacing:20.982400pt;}
.ws9_c01179{word-spacing:54.016000pt;}
._0_c01179{margin-left:-1.094272pt;}
._1_c01179{width:1.022932pt;}
._2_c01179{width:3.064961pt;}
._3_c01179{width:10.494208pt;}
._4_c01179{width:96.145920pt;}
.fs0_c01179{font-size:53.120000pt;}
.fs1_c01179{font-size:64.000000pt;}
.fs2_c01179{font-size:74.880000pt;}
.y0_c01179{bottom:0.000000pt;}
.y2_c01179{bottom:60.165333pt;}
.ye_c01179{bottom:97.602667pt;}
.yd_c01179{bottom:446.880000pt;}
.yc_c01179{bottom:474.400000pt;}
.yb_c01179{bottom:534.880000pt;}
.ya_c01179{bottom:551.192000pt;}
.y9_c01179{bottom:567.513120pt;}
.y8_c01179{bottom:583.674933pt;}
.y7_c01179{bottom:908.956000pt;}
.y6_c01179{bottom:928.477333pt;}
.y5_c01179{bottom:947.998667pt;}
.y4_c01179{bottom:967.520000pt;}
.y3_c01179{bottom:993.760000pt;}
.y1_c01179{bottom:1034.240000pt;}
.h2_c01179{height:36.935000pt;}
.h3_c01179{height:38.128125pt;}
.h7_c01179{height:38.128338pt;}
.h5_c01179{height:38.160125pt;}
.h4_c01179{height:44.500000pt;}
.h6_c01179{height:52.065000pt;}
.h0_c01179{height:1122.560000pt;}
.h1_c01179{height:1122.666667pt;}
.w0_c01179{width:793.760000pt;}
.w1_c01179{width:794.000000pt;}
.x0_c01179{left:0.000000pt;}
.x1_c01179{left:75.520000pt;}
.x3_c01179{left:132.305280pt;}
.x2_c01179{left:390.083333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a6d4421db404f43ba998c389.woff2')format("woff");}.ff1_c01180{font-family:ff1_c01180;line-height:0.873535;font-style:normal;font-weight:normal;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_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff2_c01180{font-family:ff2_c01180;line-height:0.910645;font-style:normal;font-weight:normal;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_aaa8ec6b761f32d03fb24d62.woff2')format("woff");}.ff3_c01180{font-family:ff3_c01180;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsd_c01180{letter-spacing:-0.358560px;}
.lsc_c01180{letter-spacing:-0.239040px;}
.lsb_c01180{letter-spacing:-0.179280px;}
.ls8_c01180{letter-spacing:-0.059760px;}
.ls7_c01180{letter-spacing:0.000000px;}
.lsa_c01180{letter-spacing:0.059760px;}
.ls5_c01180{letter-spacing:0.119520px;}
.ls2_c01180{letter-spacing:0.179280px;}
.ls0_c01180{letter-spacing:0.216000px;}
.ls9_c01180{letter-spacing:0.298800px;}
.ls6_c01180{letter-spacing:0.358560px;}
.ls3_c01180{letter-spacing:0.896400px;}
.ls4_c01180{letter-spacing:1.613520px;}
.ls1_c01180{letter-spacing:61.488000px;}
.sc__c01180{text-shadow:none;}
.sc0_c01180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01180{-webkit-text-stroke:0px transparent;}
.sc0_c01180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01180{word-spacing:-16.488000px;}
.ws3_c01180{word-spacing:-13.864320px;}
.ws2_c01180{word-spacing:-13.505760px;}
.ws1_c01180{word-spacing:-13.446000px;}
.ws10_c01180{word-spacing:-0.836640px;}
.ws12_c01180{word-spacing:-0.478080px;}
.wsa_c01180{word-spacing:-0.358560px;}
.ws11_c01180{word-spacing:-0.298800px;}
.ws4_c01180{word-spacing:-0.179280px;}
.ws9_c01180{word-spacing:-0.119520px;}
.wsb_c01180{word-spacing:-0.059760px;}
.ws5_c01180{word-spacing:0.000000px;}
.ws6_c01180{word-spacing:0.059760px;}
.ws7_c01180{word-spacing:0.072000px;}
.wsd_c01180{word-spacing:0.239040px;}
.wsc_c01180{word-spacing:0.358560px;}
.wsf_c01180{word-spacing:0.717120px;}
.ws8_c01180{word-spacing:0.956160px;}
.wse_c01180{word-spacing:1.135440px;}
.ws13_c01180{word-spacing:9.800640px;}
._0_c01180{margin-left:-1.231056px;}
._1_c01180{width:1.009944px;}
.fc1_c01180{color:rgb(0,0,0);}
.fc0_c01180{color:rgb(0,0,255);}
.fs0_c01180{font-size:59.760000px;}
.fs1_c01180{font-size:72.000000px;}
.y0_c01180{bottom:0.000000px;}
.y2_c01180{bottom:71.286480px;}
.ya_c01180{bottom:329.926320px;}
.y9_c01180{bottom:351.888120px;}
.y8_c01180{bottom:374.029200px;}
.y7_c01180{bottom:395.991000px;}
.y6_c01180{bottom:436.314000px;}
.y5_c01180{bottom:1066.498200px;}
.y4_c01180{bottom:1088.460000px;}
.y3_c01180{bottom:1117.980000px;}
.y1_c01180{bottom:1163.520000px;}
.h2_c01180{height:41.551875px;}
.h3_c01180{height:42.894141px;}
.h5_c01180{height:42.894381px;}
.h4_c01180{height:50.062500px;}
.h0_c01180{height:1262.880000px;}
.h1_c01180{height:1263.000000px;}
.w0_c01180{width:892.980000px;}
.w1_c01180{width:893.250000px;}
.x0_c01180{left:0.000000px;}
.x1_c01180{left:84.960000px;}
.x2_c01180{left:438.843780px;}
@media print{
.v0_c01180{vertical-align:0.000000pt;}
.lsd_c01180{letter-spacing:-0.318720pt;}
.lsc_c01180{letter-spacing:-0.212480pt;}
.lsb_c01180{letter-spacing:-0.159360pt;}
.ls8_c01180{letter-spacing:-0.053120pt;}
.ls7_c01180{letter-spacing:0.000000pt;}
.lsa_c01180{letter-spacing:0.053120pt;}
.ls5_c01180{letter-spacing:0.106240pt;}
.ls2_c01180{letter-spacing:0.159360pt;}
.ls0_c01180{letter-spacing:0.192000pt;}
.ls9_c01180{letter-spacing:0.265600pt;}
.ls6_c01180{letter-spacing:0.318720pt;}
.ls3_c01180{letter-spacing:0.796800pt;}
.ls4_c01180{letter-spacing:1.434240pt;}
.ls1_c01180{letter-spacing:54.656000pt;}
.ws0_c01180{word-spacing:-14.656000pt;}
.ws3_c01180{word-spacing:-12.323840pt;}
.ws2_c01180{word-spacing:-12.005120pt;}
.ws1_c01180{word-spacing:-11.952000pt;}
.ws10_c01180{word-spacing:-0.743680pt;}
.ws12_c01180{word-spacing:-0.424960pt;}
.wsa_c01180{word-spacing:-0.318720pt;}
.ws11_c01180{word-spacing:-0.265600pt;}
.ws4_c01180{word-spacing:-0.159360pt;}
.ws9_c01180{word-spacing:-0.106240pt;}
.wsb_c01180{word-spacing:-0.053120pt;}
.ws5_c01180{word-spacing:0.000000pt;}
.ws6_c01180{word-spacing:0.053120pt;}
.ws7_c01180{word-spacing:0.064000pt;}
.wsd_c01180{word-spacing:0.212480pt;}
.wsc_c01180{word-spacing:0.318720pt;}
.wsf_c01180{word-spacing:0.637440pt;}
.ws8_c01180{word-spacing:0.849920pt;}
.wse_c01180{word-spacing:1.009280pt;}
.ws13_c01180{word-spacing:8.711680pt;}
._0_c01180{margin-left:-1.094272pt;}
._1_c01180{width:0.897728pt;}
.fs0_c01180{font-size:53.120000pt;}
.fs1_c01180{font-size:64.000000pt;}
.y0_c01180{bottom:0.000000pt;}
.y2_c01180{bottom:63.365760pt;}
.ya_c01180{bottom:293.267840pt;}
.y9_c01180{bottom:312.789440pt;}
.y8_c01180{bottom:332.470400pt;}
.y7_c01180{bottom:351.992000pt;}
.y6_c01180{bottom:387.834667pt;}
.y5_c01180{bottom:947.998400pt;}
.y4_c01180{bottom:967.520000pt;}
.y3_c01180{bottom:993.760000pt;}
.y1_c01180{bottom:1034.240000pt;}
.h2_c01180{height:36.935000pt;}
.h3_c01180{height:38.128125pt;}
.h5_c01180{height:38.128338pt;}
.h4_c01180{height:44.500000pt;}
.h0_c01180{height:1122.560000pt;}
.h1_c01180{height:1122.666667pt;}
.w0_c01180{width:793.760000pt;}
.w1_c01180{width:794.000000pt;}
.x0_c01180{left:0.000000pt;}
.x1_c01180{left:75.520000pt;}
.x2_c01180{left:390.083360pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_183d507458251aa7946ed796.woff2')format("woff");}.ff1_c01181{font-family:ff1_c01181;line-height:0.873535;font-style:normal;font-weight:normal;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_357b307c131eb20a1f03e07f.woff2')format("woff");}.ff2_c01181{font-family:ff2_c01181;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lse_c01181{letter-spacing:-0.358560px;}
.lsd_c01181{letter-spacing:-0.298800px;}
.lsc_c01181{letter-spacing:-0.288000px;}
.lsa_c01181{letter-spacing:-0.239040px;}
.lsf_c01181{letter-spacing:-0.119520px;}
.ls8_c01181{letter-spacing:-0.060000px;}
.ls9_c01181{letter-spacing:-0.059760px;}
.ls7_c01181{letter-spacing:0.000000px;}
.lsb_c01181{letter-spacing:0.059760px;}
.ls0_c01181{letter-spacing:0.179280px;}
.ls3_c01181{letter-spacing:0.233064px;}
.ls5_c01181{letter-spacing:0.298800px;}
.ls6_c01181{letter-spacing:0.358560px;}
.ls1_c01181{letter-spacing:0.776880px;}
.ls2_c01181{letter-spacing:5.199120px;}
.ls4_c01181{letter-spacing:13.147200px;}
.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;}
}
.ws1_c01181{word-spacing:-13.864320px;}
.ws2_c01181{word-spacing:-13.505760px;}
.ws5_c01181{word-spacing:-13.446000px;}
.ws0_c01181{word-spacing:-13.445760px;}
.ws3_c01181{word-spacing:-13.266720px;}
.ws4_c01181{word-spacing:-13.147200px;}
.ws11_c01181{word-spacing:-0.836640px;}
.ws10_c01181{word-spacing:-0.478080px;}
.ws8_c01181{word-spacing:-0.358560px;}
.ws6_c01181{word-spacing:-0.179280px;}
.wsc_c01181{word-spacing:-0.119520px;}
.wsb_c01181{word-spacing:-0.059760px;}
.ws7_c01181{word-spacing:0.000000px;}
.wsd_c01181{word-spacing:0.059760px;}
.ws16_c01181{word-spacing:0.119520px;}
.ws9_c01181{word-spacing:0.239040px;}
.ws13_c01181{word-spacing:0.298800px;}
.wsa_c01181{word-spacing:0.418320px;}
.wse_c01181{word-spacing:0.576000px;}
.wsf_c01181{word-spacing:3.107520px;}
.ws14_c01181{word-spacing:4.900320px;}
.ws15_c01181{word-spacing:5.019840px;}
.ws12_c01181{word-spacing:5.258880px;}
._0_c01181{margin-left:-1.231056px;}
._1_c01181{width:1.009824px;}
._3_c01181{width:6.066240px;}
._2_c01181{width:61.416000px;}
.fc1_c01181{color:rgb(0,0,0);}
.fc0_c01181{color:rgb(0,0,255);}
.fs0_c01181{font-size:59.760000px;}
.fs1_c01181{font-size:72.000000px;}
.y0_c01181{bottom:0.000000px;}
.y2_c01181{bottom:67.680000px;}
.y9_c01181{bottom:113.749800px;}
.y8_c01181{bottom:489.774600px;}
.y7_c01181{bottom:511.736400px;}
.y6_c01181{bottom:533.698200px;}
.y5_c01181{bottom:555.660000px;}
.y4_c01181{bottom:585.180000px;}
.y3_c01181{bottom:628.363200px;}
.y1_c01181{bottom:1163.520000px;}
.h2_c01181{height:41.551875px;}
.h6_c01181{height:42.893901px;}
.h3_c01181{height:42.894141px;}
.h4_c01181{height:42.894381px;}
.h5_c01181{height:50.062500px;}
.h0_c01181{height:1262.880000px;}
.h1_c01181{height:1263.000000px;}
.w0_c01181{width:892.980000px;}
.w1_c01181{width:893.250000px;}
.x0_c01181{left:0.000000px;}
.x1_c01181{left:84.960000px;}
.x2_c01181{left:438.840000px;}
@media print{
.v0_c01181{vertical-align:0.000000pt;}
.lse_c01181{letter-spacing:-0.318720pt;}
.lsd_c01181{letter-spacing:-0.265600pt;}
.lsc_c01181{letter-spacing:-0.256000pt;}
.lsa_c01181{letter-spacing:-0.212480pt;}
.lsf_c01181{letter-spacing:-0.106240pt;}
.ls8_c01181{letter-spacing:-0.053333pt;}
.ls9_c01181{letter-spacing:-0.053120pt;}
.ls7_c01181{letter-spacing:0.000000pt;}
.lsb_c01181{letter-spacing:0.053120pt;}
.ls0_c01181{letter-spacing:0.159360pt;}
.ls3_c01181{letter-spacing:0.207168pt;}
.ls5_c01181{letter-spacing:0.265600pt;}
.ls6_c01181{letter-spacing:0.318720pt;}
.ls1_c01181{letter-spacing:0.690560pt;}
.ls2_c01181{letter-spacing:4.621440pt;}
.ls4_c01181{letter-spacing:11.686400pt;}
.ws1_c01181{word-spacing:-12.323840pt;}
.ws2_c01181{word-spacing:-12.005120pt;}
.ws5_c01181{word-spacing:-11.952000pt;}
.ws0_c01181{word-spacing:-11.951787pt;}
.ws3_c01181{word-spacing:-11.792640pt;}
.ws4_c01181{word-spacing:-11.686400pt;}
.ws11_c01181{word-spacing:-0.743680pt;}
.ws10_c01181{word-spacing:-0.424960pt;}
.ws8_c01181{word-spacing:-0.318720pt;}
.ws6_c01181{word-spacing:-0.159360pt;}
.wsc_c01181{word-spacing:-0.106240pt;}
.wsb_c01181{word-spacing:-0.053120pt;}
.ws7_c01181{word-spacing:0.000000pt;}
.wsd_c01181{word-spacing:0.053120pt;}
.ws16_c01181{word-spacing:0.106240pt;}
.ws9_c01181{word-spacing:0.212480pt;}
.ws13_c01181{word-spacing:0.265600pt;}
.wsa_c01181{word-spacing:0.371840pt;}
.wse_c01181{word-spacing:0.512000pt;}
.wsf_c01181{word-spacing:2.762240pt;}
.ws14_c01181{word-spacing:4.355840pt;}
.ws15_c01181{word-spacing:4.462080pt;}
.ws12_c01181{word-spacing:4.674560pt;}
._0_c01181{margin-left:-1.094272pt;}
._1_c01181{width:0.897621pt;}
._3_c01181{width:5.392213pt;}
._2_c01181{width:54.592000pt;}
.fs0_c01181{font-size:53.120000pt;}
.fs1_c01181{font-size:64.000000pt;}
.y0_c01181{bottom:0.000000pt;}
.y2_c01181{bottom:60.160000pt;}
.y9_c01181{bottom:101.110933pt;}
.y8_c01181{bottom:435.355200pt;}
.y7_c01181{bottom:454.876800pt;}
.y6_c01181{bottom:474.398400pt;}
.y5_c01181{bottom:493.920000pt;}
.y4_c01181{bottom:520.160000pt;}
.y3_c01181{bottom:558.545067pt;}
.y1_c01181{bottom:1034.240000pt;}
.h2_c01181{height:36.935000pt;}
.h6_c01181{height:38.127912pt;}
.h3_c01181{height:38.128125pt;}
.h4_c01181{height:38.128338pt;}
.h5_c01181{height:44.500000pt;}
.h0_c01181{height:1122.560000pt;}
.h1_c01181{height:1122.666667pt;}
.w0_c01181{width:793.760000pt;}
.w1_c01181{width:794.000000pt;}
.x0_c01181{left:0.000000pt;}
.x1_c01181{left:75.520000pt;}
.x2_c01181{left:390.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bf5c921756d78d77f05228e1.woff2')format("woff");}.ff1_c01182{font-family:ff1_c01182;line-height:0.873535;font-style:normal;font-weight:normal;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_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff2_c01182{font-family:ff2_c01182;line-height:0.910645;font-style:normal;font-weight:normal;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_fbd14ca520e80aa1d6b0b36f.woff2')format("woff");}.ff3_c01182{font-family:ff3_c01182;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsa_c01182{letter-spacing:-0.298800px;}
.lsd_c01182{letter-spacing:-0.239040px;}
.ls7_c01182{letter-spacing:-0.060000px;}
.ls8_c01182{letter-spacing:-0.059760px;}
.ls6_c01182{letter-spacing:0.000000px;}
.lsb_c01182{letter-spacing:0.059760px;}
.lsc_c01182{letter-spacing:0.119520px;}
.ls0_c01182{letter-spacing:0.179280px;}
.lse_c01182{letter-spacing:0.216000px;}
.ls9_c01182{letter-spacing:0.239040px;}
.lsf_c01182{letter-spacing:0.288000px;}
.ls2_c01182{letter-spacing:0.298800px;}
.ls5_c01182{letter-spacing:0.358560px;}
.ls4_c01182{letter-spacing:0.896400px;}
.ls1_c01182{letter-spacing:15.298560px;}
.ls3_c01182{letter-spacing:21.752640px;}
.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;}
}
.ws6_c01182{word-spacing:-16.560000px;}
.ws1_c01182{word-spacing:-13.864320px;}
.ws5_c01182{word-spacing:-13.685040px;}
.ws4_c01182{word-spacing:-13.505760px;}
.ws3_c01182{word-spacing:-13.446000px;}
.ws0_c01182{word-spacing:-13.445760px;}
.ws2_c01182{word-spacing:-13.206960px;}
.ws9_c01182{word-spacing:-0.358560px;}
.wsb_c01182{word-spacing:-0.239040px;}
.ws7_c01182{word-spacing:-0.179280px;}
.ws1d_c01182{word-spacing:-0.119520px;}
.wsd_c01182{word-spacing:-0.059760px;}
.ws8_c01182{word-spacing:0.000000px;}
.wsc_c01182{word-spacing:0.059760px;}
.ws1e_c01182{word-spacing:0.072000px;}
.ws24_c01182{word-spacing:0.239040px;}
.ws1c_c01182{word-spacing:0.418320px;}
.ws1f_c01182{word-spacing:0.537840px;}
.ws20_c01182{word-spacing:0.597600px;}
.ws23_c01182{word-spacing:0.956160px;}
.ws21_c01182{word-spacing:1.135440px;}
.ws22_c01182{word-spacing:1.673280px;}
.ws16_c01182{word-spacing:2.031840px;}
.ws15_c01182{word-spacing:2.390400px;}
.ws11_c01182{word-spacing:7.051680px;}
.ws14_c01182{word-spacing:7.768800px;}
.ws12_c01182{word-spacing:15.179040px;}
.ws13_c01182{word-spacing:15.358320px;}
.ws19_c01182{word-spacing:20.019600px;}
.ws1a_c01182{word-spacing:21.453840px;}
.ws1b_c01182{word-spacing:21.991680px;}
.wsa_c01182{word-spacing:26.174880px;}
.wsf_c01182{word-spacing:28.326240px;}
.ws10_c01182{word-spacing:30.119040px;}
.ws17_c01182{word-spacing:31.194720px;}
.ws18_c01182{word-spacing:35.497440px;}
.wse_c01182{word-spacing:47.509200px;}
._3_c01182{margin-left:-2.282832px;}
._0_c01182{margin-left:-1.231056px;}
._1_c01182{width:1.117512px;}
._2_c01182{width:47.527128px;}
.fc1_c01182{color:rgb(0,0,0);}
.fc0_c01182{color:rgb(0,0,255);}
.fs0_c01182{font-size:59.760000px;}
.fs1_c01182{font-size:72.000000px;}
.y0_c01182{bottom:0.000000px;}
.y2_c01182{bottom:71.286450px;}
.y15_c01182{bottom:106.019100px;}
.y14_c01182{bottom:536.216400px;}
.y13_c01182{bottom:558.178200px;}
.y12_c01182{bottom:580.140000px;}
.y11_c01182{bottom:609.660000px;}
.y10_c01182{bottom:882.887040px;}
.yf_c01182{bottom:901.248300px;}
.ye_c01182{bottom:919.609560px;}
.yd_c01182{bottom:937.791540px;}
.yc_c01182{bottom:956.152800px;}
.yb_c01182{bottom:974.514060px;}
.ya_c01182{bottom:992.696040px;}
.y9_c01182{bottom:1011.057300px;}
.y8_c01182{bottom:1029.418560px;}
.y7_c01182{bottom:1047.779820px;}
.y6_c01182{bottom:1065.961800px;}
.y5_c01182{bottom:1084.323060px;}
.y4_c01182{bottom:1102.684320px;}
.y3_c01182{bottom:1121.045550px;}
.y1_c01182{bottom:1163.520000px;}
.h2_c01182{height:41.551875px;}
.h4_c01182{height:41.551995px;}
.h3_c01182{height:42.894141px;}
.h5_c01182{height:50.062500px;}
.h0_c01182{height:1262.880000px;}
.h1_c01182{height:1263.000000px;}
.w0_c01182{width:892.980000px;}
.w1_c01182{width:893.250000px;}
.x0_c01182{left:0.000000px;}
.x1_c01182{left:84.960000px;}
.x2_c01182{left:438.843750px;}
.x3_c01182{left:463.330500px;}
@media print{
.v0_c01182{vertical-align:0.000000pt;}
.lsa_c01182{letter-spacing:-0.265600pt;}
.lsd_c01182{letter-spacing:-0.212480pt;}
.ls7_c01182{letter-spacing:-0.053333pt;}
.ls8_c01182{letter-spacing:-0.053120pt;}
.ls6_c01182{letter-spacing:0.000000pt;}
.lsb_c01182{letter-spacing:0.053120pt;}
.lsc_c01182{letter-spacing:0.106240pt;}
.ls0_c01182{letter-spacing:0.159360pt;}
.lse_c01182{letter-spacing:0.192000pt;}
.ls9_c01182{letter-spacing:0.212480pt;}
.lsf_c01182{letter-spacing:0.256000pt;}
.ls2_c01182{letter-spacing:0.265600pt;}
.ls5_c01182{letter-spacing:0.318720pt;}
.ls4_c01182{letter-spacing:0.796800pt;}
.ls1_c01182{letter-spacing:13.598720pt;}
.ls3_c01182{letter-spacing:19.335680pt;}
.ws6_c01182{word-spacing:-14.720000pt;}
.ws1_c01182{word-spacing:-12.323840pt;}
.ws5_c01182{word-spacing:-12.164480pt;}
.ws4_c01182{word-spacing:-12.005120pt;}
.ws3_c01182{word-spacing:-11.952000pt;}
.ws0_c01182{word-spacing:-11.951787pt;}
.ws2_c01182{word-spacing:-11.739520pt;}
.ws9_c01182{word-spacing:-0.318720pt;}
.wsb_c01182{word-spacing:-0.212480pt;}
.ws7_c01182{word-spacing:-0.159360pt;}
.ws1d_c01182{word-spacing:-0.106240pt;}
.wsd_c01182{word-spacing:-0.053120pt;}
.ws8_c01182{word-spacing:0.000000pt;}
.wsc_c01182{word-spacing:0.053120pt;}
.ws1e_c01182{word-spacing:0.064000pt;}
.ws24_c01182{word-spacing:0.212480pt;}
.ws1c_c01182{word-spacing:0.371840pt;}
.ws1f_c01182{word-spacing:0.478080pt;}
.ws20_c01182{word-spacing:0.531200pt;}
.ws23_c01182{word-spacing:0.849920pt;}
.ws21_c01182{word-spacing:1.009280pt;}
.ws22_c01182{word-spacing:1.487360pt;}
.ws16_c01182{word-spacing:1.806080pt;}
.ws15_c01182{word-spacing:2.124800pt;}
.ws11_c01182{word-spacing:6.268160pt;}
.ws14_c01182{word-spacing:6.905600pt;}
.ws12_c01182{word-spacing:13.492480pt;}
.ws13_c01182{word-spacing:13.651840pt;}
.ws19_c01182{word-spacing:17.795200pt;}
.ws1a_c01182{word-spacing:19.070080pt;}
.ws1b_c01182{word-spacing:19.548160pt;}
.wsa_c01182{word-spacing:23.266560pt;}
.wsf_c01182{word-spacing:25.178880pt;}
.ws10_c01182{word-spacing:26.772480pt;}
.ws17_c01182{word-spacing:27.728640pt;}
.ws18_c01182{word-spacing:31.553280pt;}
.wse_c01182{word-spacing:42.230400pt;}
._3_c01182{margin-left:-2.029184pt;}
._0_c01182{margin-left:-1.094272pt;}
._1_c01182{width:0.993344pt;}
._2_c01182{width:42.246336pt;}
.fs0_c01182{font-size:53.120000pt;}
.fs1_c01182{font-size:64.000000pt;}
.y0_c01182{bottom:0.000000pt;}
.y2_c01182{bottom:63.365733pt;}
.y15_c01182{bottom:94.239200pt;}
.y14_c01182{bottom:476.636800pt;}
.y13_c01182{bottom:496.158400pt;}
.y12_c01182{bottom:515.680000pt;}
.y11_c01182{bottom:541.920000pt;}
.y10_c01182{bottom:784.788480pt;}
.yf_c01182{bottom:801.109600pt;}
.ye_c01182{bottom:817.430720pt;}
.yd_c01182{bottom:833.592480pt;}
.yc_c01182{bottom:849.913600pt;}
.yb_c01182{bottom:866.234720pt;}
.ya_c01182{bottom:882.396480pt;}
.y9_c01182{bottom:898.717600pt;}
.y8_c01182{bottom:915.038720pt;}
.y7_c01182{bottom:931.359840pt;}
.y6_c01182{bottom:947.521600pt;}
.y5_c01182{bottom:963.842720pt;}
.y4_c01182{bottom:980.163840pt;}
.y3_c01182{bottom:996.484933pt;}
.y1_c01182{bottom:1034.240000pt;}
.h2_c01182{height:36.935000pt;}
.h4_c01182{height:36.935107pt;}
.h3_c01182{height:38.128125pt;}
.h5_c01182{height:44.500000pt;}
.h0_c01182{height:1122.560000pt;}
.h1_c01182{height:1122.666667pt;}
.w0_c01182{width:793.760000pt;}
.w1_c01182{width:794.000000pt;}
.x0_c01182{left:0.000000pt;}
.x1_c01182{left:75.520000pt;}
.x2_c01182{left:390.083333pt;}
.x3_c01182{left:411.849333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_25a24ec0e7d595d87bec1496.woff2')format("woff");}.ff1_c01183{font-family:ff1_c01183;line-height:0.873535;font-style:normal;font-weight:normal;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_a77a00e75472eb290ac4c1a4.woff2')format("woff");}.ff2_c01183{font-family:ff2_c01183;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsb_c01183{letter-spacing:-0.358560px;}
.ls9_c01183{letter-spacing:-0.239040px;}
.ls7_c01183{letter-spacing:-0.060000px;}
.ls8_c01183{letter-spacing:-0.059760px;}
.ls6_c01183{letter-spacing:0.000000px;}
.lsc_c01183{letter-spacing:0.119520px;}
.lsa_c01183{letter-spacing:0.168480px;}
.ls0_c01183{letter-spacing:0.179280px;}
.ls4_c01183{letter-spacing:0.209160px;}
.ls2_c01183{letter-spacing:0.227088px;}
.lsd_c01183{letter-spacing:0.298800px;}
.ls5_c01183{letter-spacing:0.358560px;}
.ls3_c01183{letter-spacing:0.776880px;}
.ls1_c01183{letter-spacing:0.896400px;}
.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;}
}
.ws1_c01183{word-spacing:-13.864320px;}
.ws5_c01183{word-spacing:-13.625280px;}
.ws2_c01183{word-spacing:-13.505760px;}
.ws3_c01183{word-spacing:-13.446000px;}
.ws0_c01183{word-spacing:-13.445760px;}
.ws4_c01183{word-spacing:-13.147200px;}
.wsb_c01183{word-spacing:-0.505440px;}
.ws8_c01183{word-spacing:-0.358560px;}
.ws6_c01183{word-spacing:-0.179280px;}
.wsc_c01183{word-spacing:-0.119520px;}
.ws7_c01183{word-spacing:0.000000px;}
.ws9_c01183{word-spacing:0.239040px;}
.wsa_c01183{word-spacing:0.418320px;}
._0_c01183{margin-left:-1.231056px;}
._1_c01183{width:1.272768px;}
._2_c01183{width:108.164160px;}
.fc1_c01183{color:rgb(0,0,0);}
.fc0_c01183{color:rgb(0,0,255);}
.fs0_c01183{font-size:59.760000px;}
.fs1_c01183{font-size:84.240000px;}
.y0_c01183{bottom:0.000000px;}
.y2_c01183{bottom:67.680000px;}
.y7_c01183{bottom:116.461950px;}
.y6_c01183{bottom:498.418020px;}
.y5_c01183{bottom:516.600000px;}
.y4_c01183{bottom:547.560000px;}
.y3_c01183{bottom:615.783750px;}
.y1_c01183{bottom:1163.520000px;}
.h2_c01183{height:41.551875px;}
.h3_c01183{height:42.894141px;}
.h4_c01183{height:42.894261px;}
.h5_c01183{height:58.573125px;}
.h0_c01183{height:1262.880000px;}
.h1_c01183{height:1263.000000px;}
.w0_c01183{width:892.980000px;}
.w1_c01183{width:893.250000px;}
.x0_c01183{left:0.000000px;}
.x1_c01183{left:84.960000px;}
.x2_c01183{left:438.840000px;}
@media print{
.v0_c01183{vertical-align:0.000000pt;}
.lsb_c01183{letter-spacing:-0.318720pt;}
.ls9_c01183{letter-spacing:-0.212480pt;}
.ls7_c01183{letter-spacing:-0.053333pt;}
.ls8_c01183{letter-spacing:-0.053120pt;}
.ls6_c01183{letter-spacing:0.000000pt;}
.lsc_c01183{letter-spacing:0.106240pt;}
.lsa_c01183{letter-spacing:0.149760pt;}
.ls0_c01183{letter-spacing:0.159360pt;}
.ls4_c01183{letter-spacing:0.185920pt;}
.ls2_c01183{letter-spacing:0.201856pt;}
.lsd_c01183{letter-spacing:0.265600pt;}
.ls5_c01183{letter-spacing:0.318720pt;}
.ls3_c01183{letter-spacing:0.690560pt;}
.ls1_c01183{letter-spacing:0.796800pt;}
.ws1_c01183{word-spacing:-12.323840pt;}
.ws5_c01183{word-spacing:-12.111360pt;}
.ws2_c01183{word-spacing:-12.005120pt;}
.ws3_c01183{word-spacing:-11.952000pt;}
.ws0_c01183{word-spacing:-11.951787pt;}
.ws4_c01183{word-spacing:-11.686400pt;}
.wsb_c01183{word-spacing:-0.449280pt;}
.ws8_c01183{word-spacing:-0.318720pt;}
.ws6_c01183{word-spacing:-0.159360pt;}
.wsc_c01183{word-spacing:-0.106240pt;}
.ws7_c01183{word-spacing:0.000000pt;}
.ws9_c01183{word-spacing:0.212480pt;}
.wsa_c01183{word-spacing:0.371840pt;}
._0_c01183{margin-left:-1.094272pt;}
._1_c01183{width:1.131349pt;}
._2_c01183{width:96.145920pt;}
.fs0_c01183{font-size:53.120000pt;}
.fs1_c01183{font-size:74.880000pt;}
.y0_c01183{bottom:0.000000pt;}
.y2_c01183{bottom:60.160000pt;}
.y7_c01183{bottom:103.521733pt;}
.y6_c01183{bottom:443.038240pt;}
.y5_c01183{bottom:459.200000pt;}
.y4_c01183{bottom:486.720000pt;}
.y3_c01183{bottom:547.363333pt;}
.y1_c01183{bottom:1034.240000pt;}
.h2_c01183{height:36.935000pt;}
.h3_c01183{height:38.128125pt;}
.h4_c01183{height:38.128232pt;}
.h5_c01183{height:52.065000pt;}
.h0_c01183{height:1122.560000pt;}
.h1_c01183{height:1122.666667pt;}
.w0_c01183{width:793.760000pt;}
.w1_c01183{width:794.000000pt;}
.x0_c01183{left:0.000000pt;}
.x1_c01183{left:75.520000pt;}
.x2_c01183{left:390.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bd089113bd3af9cc682c9ca9.woff2')format("woff");}.ff1_c01184{font-family:ff1_c01184;line-height:0.873535;font-style:normal;font-weight:normal;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_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff2_c01184{font-family:ff2_c01184;line-height:0.910645;font-style:normal;font-weight:normal;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_f746de10c83b30384395f47e.woff2')format("woff");}.ff3_c01184{font-family:ff3_c01184;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01184{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01184{vertical-align:0.000000px;}
.lsf_c01184{letter-spacing:-0.358560px;}
.lsb_c01184{letter-spacing:-0.239040px;}
.lsa_c01184{letter-spacing:-0.216000px;}
.lsd_c01184{letter-spacing:-0.119520px;}
.ls9_c01184{letter-spacing:-0.059760px;}
.ls8_c01184{letter-spacing:0.000000px;}
.lse_c01184{letter-spacing:0.059760px;}
.ls10_c01184{letter-spacing:0.119520px;}
.ls6_c01184{letter-spacing:0.143424px;}
.ls4_c01184{letter-spacing:0.179280px;}
.ls0_c01184{letter-spacing:0.216000px;}
.lsc_c01184{letter-spacing:0.298800px;}
.ls7_c01184{letter-spacing:0.358560px;}
.ls3_c01184{letter-spacing:0.896400px;}
.ls5_c01184{letter-spacing:3.047760px;}
.ls2_c01184{letter-spacing:13.147200px;}
.ls1_c01184{letter-spacing:61.488000px;}
.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:-16.488000px;}
.ws4_c01184{word-spacing:-13.864320px;}
.ws2_c01184{word-spacing:-13.505760px;}
.ws1_c01184{word-spacing:-13.446000px;}
.ws3_c01184{word-spacing:-13.386240px;}
.wsb_c01184{word-spacing:-2.270880px;}
.ws19_c01184{word-spacing:-2.151360px;}
.ws12_c01184{word-spacing:-0.836640px;}
.ws11_c01184{word-spacing:-0.717120px;}
.ws15_c01184{word-spacing:-0.358560px;}
.ws10_c01184{word-spacing:-0.216000px;}
.ws5_c01184{word-spacing:-0.179280px;}
.wsc_c01184{word-spacing:-0.119520px;}
.ws14_c01184{word-spacing:-0.059760px;}
.ws6_c01184{word-spacing:0.000000px;}
.ws7_c01184{word-spacing:0.059760px;}
.wsf_c01184{word-spacing:0.072000px;}
.wsd_c01184{word-spacing:0.239040px;}
.ws1a_c01184{word-spacing:0.358560px;}
.wse_c01184{word-spacing:0.418320px;}
.ws8_c01184{word-spacing:0.504000px;}
.ws18_c01184{word-spacing:0.537840px;}
.wsa_c01184{word-spacing:1.972080px;}
.ws9_c01184{word-spacing:2.569680px;}
.ws17_c01184{word-spacing:2.868480px;}
.ws13_c01184{word-spacing:3.286800px;}
.ws16_c01184{word-spacing:3.406320px;}
._0_c01184{margin-left:-1.231056px;}
._1_c01184{width:1.159200px;}
._2_c01184{width:2.296656px;}
._4_c01184{width:3.800880px;}
._3_c01184{width:61.416000px;}
.fc1_c01184{color:rgb(0,0,0);}
.fc0_c01184{color:rgb(0,0,255);}
.fs0_c01184{font-size:59.760000px;}
.fs1_c01184{font-size:72.000000px;}
.y0_c01184{bottom:0.000000px;}
.y2_c01184{bottom:71.286480px;}
.ye_c01184{bottom:91.430640px;}
.yd_c01184{bottom:109.612650px;}
.yc_c01184{bottom:508.316400px;}
.yb_c01184{bottom:530.278200px;}
.ya_c01184{bottom:552.240000px;}
.y9_c01184{bottom:581.760000px;}
.y8_c01184{bottom:628.547040px;}
.y7_c01184{bottom:650.508900px;}
.y6_c01184{bottom:1044.536400px;}
.y5_c01184{bottom:1066.498200px;}
.y4_c01184{bottom:1088.460000px;}
.y3_c01184{bottom:1117.980000px;}
.y1_c01184{bottom:1163.520000px;}
.h2_c01184{height:41.551875px;}
.h5_c01184{height:42.893901px;}
.h6_c01184{height:42.894021px;}
.h3_c01184{height:42.894141px;}
.h7_c01184{height:42.931581px;}
.h4_c01184{height:50.062500px;}
.h0_c01184{height:1262.880000px;}
.h1_c01184{height:1263.000000px;}
.w0_c01184{width:892.980000px;}
.w1_c01184{width:893.250000px;}
.x0_c01184{left:0.000000px;}
.x1_c01184{left:84.960000px;}
.x3_c01184{left:148.858380px;}
.x2_c01184{left:438.843780px;}
@media print{
.v0_c01184{vertical-align:0.000000pt;}
.lsf_c01184{letter-spacing:-0.318720pt;}
.lsb_c01184{letter-spacing:-0.212480pt;}
.lsa_c01184{letter-spacing:-0.192000pt;}
.lsd_c01184{letter-spacing:-0.106240pt;}
.ls9_c01184{letter-spacing:-0.053120pt;}
.ls8_c01184{letter-spacing:0.000000pt;}
.lse_c01184{letter-spacing:0.053120pt;}
.ls10_c01184{letter-spacing:0.106240pt;}
.ls6_c01184{letter-spacing:0.127488pt;}
.ls4_c01184{letter-spacing:0.159360pt;}
.ls0_c01184{letter-spacing:0.192000pt;}
.lsc_c01184{letter-spacing:0.265600pt;}
.ls7_c01184{letter-spacing:0.318720pt;}
.ls3_c01184{letter-spacing:0.796800pt;}
.ls5_c01184{letter-spacing:2.709120pt;}
.ls2_c01184{letter-spacing:11.686400pt;}
.ls1_c01184{letter-spacing:54.656000pt;}
.ws0_c01184{word-spacing:-14.656000pt;}
.ws4_c01184{word-spacing:-12.323840pt;}
.ws2_c01184{word-spacing:-12.005120pt;}
.ws1_c01184{word-spacing:-11.952000pt;}
.ws3_c01184{word-spacing:-11.898880pt;}
.wsb_c01184{word-spacing:-2.018560pt;}
.ws19_c01184{word-spacing:-1.912320pt;}
.ws12_c01184{word-spacing:-0.743680pt;}
.ws11_c01184{word-spacing:-0.637440pt;}
.ws15_c01184{word-spacing:-0.318720pt;}
.ws10_c01184{word-spacing:-0.192000pt;}
.ws5_c01184{word-spacing:-0.159360pt;}
.wsc_c01184{word-spacing:-0.106240pt;}
.ws14_c01184{word-spacing:-0.053120pt;}
.ws6_c01184{word-spacing:0.000000pt;}
.ws7_c01184{word-spacing:0.053120pt;}
.wsf_c01184{word-spacing:0.064000pt;}
.wsd_c01184{word-spacing:0.212480pt;}
.ws1a_c01184{word-spacing:0.318720pt;}
.wse_c01184{word-spacing:0.371840pt;}
.ws8_c01184{word-spacing:0.448000pt;}
.ws18_c01184{word-spacing:0.478080pt;}
.wsa_c01184{word-spacing:1.752960pt;}
.ws9_c01184{word-spacing:2.284160pt;}
.ws17_c01184{word-spacing:2.549760pt;}
.ws13_c01184{word-spacing:2.921600pt;}
.ws16_c01184{word-spacing:3.027840pt;}
._0_c01184{margin-left:-1.094272pt;}
._1_c01184{width:1.030400pt;}
._2_c01184{width:2.041472pt;}
._4_c01184{width:3.378560pt;}
._3_c01184{width:54.592000pt;}
.fs0_c01184{font-size:53.120000pt;}
.fs1_c01184{font-size:64.000000pt;}
.y0_c01184{bottom:0.000000pt;}
.y2_c01184{bottom:63.365760pt;}
.ye_c01184{bottom:81.271680pt;}
.yd_c01184{bottom:97.433467pt;}
.yc_c01184{bottom:451.836800pt;}
.yb_c01184{bottom:471.358400pt;}
.ya_c01184{bottom:490.880000pt;}
.y9_c01184{bottom:517.120000pt;}
.y8_c01184{bottom:558.708480pt;}
.y7_c01184{bottom:578.230133pt;}
.y6_c01184{bottom:928.476800pt;}
.y5_c01184{bottom:947.998400pt;}
.y4_c01184{bottom:967.520000pt;}
.y3_c01184{bottom:993.760000pt;}
.y1_c01184{bottom:1034.240000pt;}
.h2_c01184{height:36.935000pt;}
.h5_c01184{height:38.127912pt;}
.h6_c01184{height:38.128018pt;}
.h3_c01184{height:38.128125pt;}
.h7_c01184{height:38.161405pt;}
.h4_c01184{height:44.500000pt;}
.h0_c01184{height:1122.560000pt;}
.h1_c01184{height:1122.666667pt;}
.w0_c01184{width:793.760000pt;}
.w1_c01184{width:794.000000pt;}
.x0_c01184{left:0.000000pt;}
.x1_c01184{left:75.520000pt;}
.x3_c01184{left:132.318560pt;}
.x2_c01184{left:390.083360pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea594766799d517c444cf67e.woff2')format("woff");}.ff1_c01185{font-family:ff1_c01185;line-height:0.873535;font-style:normal;font-weight:normal;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_44ea1441fec3274dc4a68ded.woff2')format("woff");}.ff2_c01185{font-family:ff2_c01185;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0_c01185{vertical-align:0.000000px;}
.lsa_c01185{letter-spacing:-0.239040px;}
.lsb_c01185{letter-spacing:-0.119520px;}
.ls6_c01185{letter-spacing:-0.060000px;}
.ls7_c01185{letter-spacing:-0.059760px;}
.ls5_c01185{letter-spacing:0.000000px;}
.ls9_c01185{letter-spacing:0.059760px;}
.ls8_c01185{letter-spacing:0.168480px;}
.ls1_c01185{letter-spacing:0.179280px;}
.ls2_c01185{letter-spacing:0.298800px;}
.ls4_c01185{letter-spacing:0.358560px;}
.ls3_c01185{letter-spacing:4.482000px;}
.ls0_c01185{letter-spacing:13.147200px;}
.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;}
}
.ws5_c01185{word-spacing:-13.864320px;}
.ws6_c01185{word-spacing:-13.685040px;}
.ws2_c01185{word-spacing:-13.505760px;}
.ws1_c01185{word-spacing:-13.446000px;}
.ws0_c01185{word-spacing:-13.445760px;}
.ws4_c01185{word-spacing:-13.386240px;}
.ws3_c01185{word-spacing:-13.266720px;}
.ws13_c01185{word-spacing:-3.705120px;}
.ws12_c01185{word-spacing:-3.346560px;}
.wsb_c01185{word-spacing:-0.505440px;}
.ws11_c01185{word-spacing:-0.358560px;}
.ws7_c01185{word-spacing:-0.179280px;}
.wsa_c01185{word-spacing:-0.119520px;}
.wsf_c01185{word-spacing:-0.059760px;}
.ws8_c01185{word-spacing:0.000000px;}
.ws9_c01185{word-spacing:0.239040px;}
.wse_c01185{word-spacing:4.123440px;}
.wsd_c01185{word-spacing:4.183200px;}
.wsc_c01185{word-spacing:4.541760px;}
.ws10_c01185{word-spacing:4.721040px;}
._4_c01185{margin-left:-2.449800px;}
._0_c01185{margin-left:-1.231056px;}
._1_c01185{width:1.314600px;}
._3_c01185{width:4.220016px;}
._2_c01185{width:108.164160px;}
.fc1_c01185{color:rgb(0,0,0);}
.fc0_c01185{color:rgb(0,0,255);}
.fs0_c01185{font-size:59.760000px;}
.fs1_c01185{font-size:84.240000px;}
.y0_c01185{bottom:0.000000px;}
.y2_c01185{bottom:67.680000px;}
.y9_c01185{bottom:156.957840px;}
.y8_c01185{bottom:175.139820px;}
.y7_c01185{bottom:193.501050px;}
.y6_c01185{bottom:522.898200px;}
.y5_c01185{bottom:544.860000px;}
.y4_c01185{bottom:575.820000px;}
.y3_c01185{bottom:652.864800px;}
.y1_c01185{bottom:1163.520000px;}
.h2_c01185{height:41.551875px;}
.h3_c01185{height:42.894141px;}
.h6_c01185{height:42.894261px;}
.h4_c01185{height:42.894381px;}
.h5_c01185{height:58.573125px;}
.h0_c01185{height:1262.880000px;}
.h1_c01185{height:1263.000000px;}
.w0_c01185{width:892.980000px;}
.w1_c01185{width:893.250000px;}
.x0_c01185{left:0.000000px;}
.x1_c01185{left:84.960000px;}
.x3_c01185{left:148.843440px;}
.x2_c01185{left:438.840000px;}
@media print{
.v0_c01185{vertical-align:0.000000pt;}
.lsa_c01185{letter-spacing:-0.212480pt;}
.lsb_c01185{letter-spacing:-0.106240pt;}
.ls6_c01185{letter-spacing:-0.053333pt;}
.ls7_c01185{letter-spacing:-0.053120pt;}
.ls5_c01185{letter-spacing:0.000000pt;}
.ls9_c01185{letter-spacing:0.053120pt;}
.ls8_c01185{letter-spacing:0.149760pt;}
.ls1_c01185{letter-spacing:0.159360pt;}
.ls2_c01185{letter-spacing:0.265600pt;}
.ls4_c01185{letter-spacing:0.318720pt;}
.ls3_c01185{letter-spacing:3.984000pt;}
.ls0_c01185{letter-spacing:11.686400pt;}
.ws5_c01185{word-spacing:-12.323840pt;}
.ws6_c01185{word-spacing:-12.164480pt;}
.ws2_c01185{word-spacing:-12.005120pt;}
.ws1_c01185{word-spacing:-11.952000pt;}
.ws0_c01185{word-spacing:-11.951787pt;}
.ws4_c01185{word-spacing:-11.898880pt;}
.ws3_c01185{word-spacing:-11.792640pt;}
.ws13_c01185{word-spacing:-3.293440pt;}
.ws12_c01185{word-spacing:-2.974720pt;}
.wsb_c01185{word-spacing:-0.449280pt;}
.ws11_c01185{word-spacing:-0.318720pt;}
.ws7_c01185{word-spacing:-0.159360pt;}
.wsa_c01185{word-spacing:-0.106240pt;}
.wsf_c01185{word-spacing:-0.053120pt;}
.ws8_c01185{word-spacing:0.000000pt;}
.ws9_c01185{word-spacing:0.212480pt;}
.wse_c01185{word-spacing:3.665280pt;}
.wsd_c01185{word-spacing:3.718400pt;}
.wsc_c01185{word-spacing:4.037120pt;}
.ws10_c01185{word-spacing:4.196480pt;}
._4_c01185{margin-left:-2.177600pt;}
._0_c01185{margin-left:-1.094272pt;}
._1_c01185{width:1.168533pt;}
._3_c01185{width:3.751125pt;}
._2_c01185{width:96.145920pt;}
.fs0_c01185{font-size:53.120000pt;}
.fs1_c01185{font-size:74.880000pt;}
.y0_c01185{bottom:0.000000pt;}
.y2_c01185{bottom:60.160000pt;}
.y9_c01185{bottom:139.518080pt;}
.y8_c01185{bottom:155.679840pt;}
.y7_c01185{bottom:172.000933pt;}
.y6_c01185{bottom:464.798400pt;}
.y5_c01185{bottom:484.320000pt;}
.y4_c01185{bottom:511.840000pt;}
.y3_c01185{bottom:580.324267pt;}
.y1_c01185{bottom:1034.240000pt;}
.h2_c01185{height:36.935000pt;}
.h3_c01185{height:38.128125pt;}
.h6_c01185{height:38.128232pt;}
.h4_c01185{height:38.128338pt;}
.h5_c01185{height:52.065000pt;}
.h0_c01185{height:1122.560000pt;}
.h1_c01185{height:1122.666667pt;}
.w0_c01185{width:793.760000pt;}
.w1_c01185{width:794.000000pt;}
.x0_c01185{left:0.000000pt;}
.x1_c01185{left:75.520000pt;}
.x3_c01185{left:132.305280pt;}
.x2_c01185{left:390.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16a92d0994913de0ebb64ad3.woff2')format("woff");}.ff1_c01186{font-family:ff1_c01186;line-height:0.873535;font-style:normal;font-weight:normal;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_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff2_c01186{font-family:ff2_c01186;line-height:0.910645;font-style:normal;font-weight:normal;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_16084f1a3ffbc1b3c7db5426.woff2')format("woff");}.ff3_c01186{font-family:ff3_c01186;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c01186{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01186{vertical-align:0.000000px;}
.lsb_c01186{letter-spacing:-0.418320px;}
.lsa_c01186{letter-spacing:-0.358560px;}
.ls8_c01186{letter-spacing:-0.239040px;}
.ls7_c01186{letter-spacing:-0.059760px;}
.ls6_c01186{letter-spacing:0.000000px;}
.ls9_c01186{letter-spacing:0.059760px;}
.lsc_c01186{letter-spacing:0.084240px;}
.ls3_c01186{letter-spacing:0.179280px;}
.ls4_c01186{letter-spacing:0.298800px;}
.ls5_c01186{letter-spacing:0.358560px;}
.ls2_c01186{letter-spacing:8.067600px;}
.ls0_c01186{letter-spacing:9.507816px;}
.ls1_c01186{letter-spacing:9.561600px;}
.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;}
}
.ws5_c01186{word-spacing:-19.122480px;}
.ws0_c01186{word-spacing:-13.864320px;}
.ws4_c01186{word-spacing:-13.804560px;}
.ws1_c01186{word-spacing:-13.505760px;}
.ws2_c01186{word-spacing:-13.446000px;}
.ws3_c01186{word-spacing:-13.147200px;}
.wsb_c01186{word-spacing:-1.553760px;}
.wsc_c01186{word-spacing:-1.434240px;}
.wsa_c01186{word-spacing:-1.195200px;}
.wsd_c01186{word-spacing:-1.015920px;}
.ws13_c01186{word-spacing:-0.896400px;}
.ws14_c01186{word-spacing:-0.478080px;}
.ws9_c01186{word-spacing:-0.358560px;}
.ws6_c01186{word-spacing:-0.179280px;}
.ws12_c01186{word-spacing:-0.119520px;}
.ws7_c01186{word-spacing:0.000000px;}
.ws8_c01186{word-spacing:0.059760px;}
.ws11_c01186{word-spacing:0.239040px;}
.ws10_c01186{word-spacing:0.418320px;}
.ws19_c01186{word-spacing:5.258880px;}
.ws18_c01186{word-spacing:6.693120px;}
.ws17_c01186{word-spacing:7.768800px;}
.ws15_c01186{word-spacing:8.127360px;}
.ws16_c01186{word-spacing:8.306640px;}
.wse_c01186{word-spacing:9.501840px;}
.wsf_c01186{word-spacing:9.621360px;}
._0_c01186{margin-left:-1.231056px;}
._1_c01186{width:1.045800px;}
._2_c01186{width:2.049768px;}
._3_c01186{width:108.164160px;}
.fc1_c01186{color:rgb(0,0,0);}
.fc0_c01186{color:rgb(0,0,255);}
.fs0_c01186{font-size:59.760000px;}
.fs1_c01186{font-size:84.240000px;}
.y0_c01186{bottom:0.000000px;}
.y2_c01186{bottom:71.286480px;}
.ye_c01186{bottom:125.994600px;}
.yd_c01186{bottom:147.956400px;}
.yc_c01186{bottom:169.918200px;}
.yb_c01186{bottom:191.880000px;}
.ya_c01186{bottom:223.020000px;}
.y9_c01186{bottom:291.048660px;}
.y8_c01186{bottom:309.230700px;}
.y7_c01186{bottom:770.936400px;}
.y6_c01186{bottom:792.898200px;}
.y5_c01186{bottom:833.220000px;}
.y4_c01186{bottom:851.408460px;}
.y3_c01186{bottom:869.769750px;}
.y1_c01186{bottom:1163.520000px;}
.h2_c01186{height:41.551875px;}
.h5_c01186{height:42.893901px;}
.h4_c01186{height:42.894021px;}
.h3_c01186{height:42.894141px;}
.h6_c01186{height:58.573125px;}
.h0_c01186{height:1262.880000px;}
.h1_c01186{height:1263.000000px;}
.w0_c01186{width:892.980000px;}
.w1_c01186{width:893.250000px;}
.x0_c01186{left:0.000000px;}
.x1_c01186{left:84.960000px;}
.x3_c01186{left:148.873320px;}
.x2_c01186{left:438.843780px;}
@media print{
.v0_c01186{vertical-align:0.000000pt;}
.lsb_c01186{letter-spacing:-0.371840pt;}
.lsa_c01186{letter-spacing:-0.318720pt;}
.ls8_c01186{letter-spacing:-0.212480pt;}
.ls7_c01186{letter-spacing:-0.053120pt;}
.ls6_c01186{letter-spacing:0.000000pt;}
.ls9_c01186{letter-spacing:0.053120pt;}
.lsc_c01186{letter-spacing:0.074880pt;}
.ls3_c01186{letter-spacing:0.159360pt;}
.ls4_c01186{letter-spacing:0.265600pt;}
.ls5_c01186{letter-spacing:0.318720pt;}
.ls2_c01186{letter-spacing:7.171200pt;}
.ls0_c01186{letter-spacing:8.451392pt;}
.ls1_c01186{letter-spacing:8.499200pt;}
.ws5_c01186{word-spacing:-16.997760pt;}
.ws0_c01186{word-spacing:-12.323840pt;}
.ws4_c01186{word-spacing:-12.270720pt;}
.ws1_c01186{word-spacing:-12.005120pt;}
.ws2_c01186{word-spacing:-11.952000pt;}
.ws3_c01186{word-spacing:-11.686400pt;}
.wsb_c01186{word-spacing:-1.381120pt;}
.wsc_c01186{word-spacing:-1.274880pt;}
.wsa_c01186{word-spacing:-1.062400pt;}
.wsd_c01186{word-spacing:-0.903040pt;}
.ws13_c01186{word-spacing:-0.796800pt;}
.ws14_c01186{word-spacing:-0.424960pt;}
.ws9_c01186{word-spacing:-0.318720pt;}
.ws6_c01186{word-spacing:-0.159360pt;}
.ws12_c01186{word-spacing:-0.106240pt;}
.ws7_c01186{word-spacing:0.000000pt;}
.ws8_c01186{word-spacing:0.053120pt;}
.ws11_c01186{word-spacing:0.212480pt;}
.ws10_c01186{word-spacing:0.371840pt;}
.ws19_c01186{word-spacing:4.674560pt;}
.ws18_c01186{word-spacing:5.949440pt;}
.ws17_c01186{word-spacing:6.905600pt;}
.ws15_c01186{word-spacing:7.224320pt;}
.ws16_c01186{word-spacing:7.383680pt;}
.wse_c01186{word-spacing:8.446080pt;}
.wsf_c01186{word-spacing:8.552320pt;}
._0_c01186{margin-left:-1.094272pt;}
._1_c01186{width:0.929600pt;}
._2_c01186{width:1.822016pt;}
._3_c01186{width:96.145920pt;}
.fs0_c01186{font-size:53.120000pt;}
.fs1_c01186{font-size:74.880000pt;}
.y0_c01186{bottom:0.000000pt;}
.y2_c01186{bottom:63.365760pt;}
.ye_c01186{bottom:111.995200pt;}
.yd_c01186{bottom:131.516800pt;}
.yc_c01186{bottom:151.038400pt;}
.yb_c01186{bottom:170.560000pt;}
.ya_c01186{bottom:198.240000pt;}
.y9_c01186{bottom:258.709920pt;}
.y8_c01186{bottom:274.871733pt;}
.y7_c01186{bottom:685.276800pt;}
.y6_c01186{bottom:704.798400pt;}
.y5_c01186{bottom:740.640000pt;}
.y4_c01186{bottom:756.807520pt;}
.y3_c01186{bottom:773.128667pt;}
.y1_c01186{bottom:1034.240000pt;}
.h2_c01186{height:36.935000pt;}
.h5_c01186{height:38.127912pt;}
.h4_c01186{height:38.128018pt;}
.h3_c01186{height:38.128125pt;}
.h6_c01186{height:52.065000pt;}
.h0_c01186{height:1122.560000pt;}
.h1_c01186{height:1122.666667pt;}
.w0_c01186{width:793.760000pt;}
.w1_c01186{width:794.000000pt;}
.x0_c01186{left:0.000000pt;}
.x1_c01186{left:75.520000pt;}
.x3_c01186{left:132.331840pt;}
.x2_c01186{left:390.083360pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_84c09d41ec056a7b0e5f376b.woff2')format("woff");}.ff1_c01187{font-family:ff1_c01187;line-height:0.873535;font-style:normal;font-weight:normal;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_e7a6741e14c06d826a0a3430.woff2')format("woff");}.ff2_c01187{font-family:ff2_c01187;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01187;src:url('chunks/assets/font_8e915f4e0f2f9b9e5453a3a9.woff2')format("woff");}.ff3_c01187{font-family:ff3_c01187;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01187{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01187{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01187{vertical-align:0.000000px;}
.ls1d_c01187{letter-spacing:-0.868320px;}
.ls1f_c01187{letter-spacing:-0.723600px;}
.ls1e_c01187{letter-spacing:-0.675360px;}
.ls18_c01187{letter-spacing:-0.578880px;}
.ls1c_c01187{letter-spacing:-0.482400px;}
.ls14_c01187{letter-spacing:-0.337680px;}
.ls1a_c01187{letter-spacing:-0.289440px;}
.ls15_c01187{letter-spacing:-0.241200px;}
.ls10_c01187{letter-spacing:-0.239040px;}
.ls13_c01187{letter-spacing:-0.216000px;}
.ls1b_c01187{letter-spacing:-0.192960px;}
.ls16_c01187{letter-spacing:-0.144720px;}
.ls12_c01187{letter-spacing:-0.119520px;}
.lsf_c01187{letter-spacing:-0.060000px;}
.ls11_c01187{letter-spacing:-0.059760px;}
.lse_c01187{letter-spacing:0.000000px;}
.ls7_c01187{letter-spacing:0.024120px;}
.ls19_c01187{letter-spacing:0.048240px;}
.ls17_c01187{letter-spacing:0.192960px;}
.ls0_c01187{letter-spacing:0.298800px;}
.lsc_c01187{letter-spacing:0.313560px;}
.ls2_c01187{letter-spacing:0.337680px;}
.ls9_c01187{letter-spacing:0.347328px;}
.lsd_c01187{letter-spacing:0.358560px;}
.lsb_c01187{letter-spacing:0.385920px;}
.ls6_c01187{letter-spacing:0.482400px;}
.ls5_c01187{letter-spacing:0.627120px;}
.ls1_c01187{letter-spacing:2.797920px;}
.ls3_c01187{letter-spacing:10.709280px;}
.ls4_c01187{letter-spacing:10.728576px;}
.ls8_c01187{letter-spacing:18.620640px;}
.lsa_c01187{letter-spacing:22.238640px;}
.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;}
}
.ws1_c01187{word-spacing:-13.864320px;}
.ws3_c01187{word-spacing:-13.505760px;}
.ws2_c01187{word-spacing:-13.446000px;}
.ws0_c01187{word-spacing:-13.445760px;}
.ws4_c01187{word-spacing:-13.386240px;}
.ws9_c01187{word-spacing:-11.095200px;}
.wsa_c01187{word-spacing:-10.950480px;}
.ws8_c01187{word-spacing:-10.902240px;}
.ws5_c01187{word-spacing:-10.757520px;}
.wsb_c01187{word-spacing:-10.709280px;}
.ws6_c01187{word-spacing:-10.661040px;}
.wsf_c01187{word-spacing:-10.612800px;}
.wsc_c01187{word-spacing:-10.564560px;}
.wsd_c01187{word-spacing:-10.419840px;}
.ws7_c01187{word-spacing:-10.323360px;}
.ws10_c01187{word-spacing:-10.226880px;}
.ws11_c01187{word-spacing:-10.178640px;}
.wse_c01187{word-spacing:-10.033920px;}
.ws34_c01187{word-spacing:-2.315520px;}
.ws42_c01187{word-spacing:-2.122560px;}
.ws36_c01187{word-spacing:-2.026080px;}
.ws35_c01187{word-spacing:-1.929600px;}
.ws14_c01187{word-spacing:-0.358560px;}
.ws33_c01187{word-spacing:-0.192960px;}
.ws12_c01187{word-spacing:-0.179280px;}
.ws1d_c01187{word-spacing:-0.144720px;}
.ws16_c01187{word-spacing:-0.119520px;}
.ws25_c01187{word-spacing:-0.048240px;}
.ws13_c01187{word-spacing:0.000000px;}
.ws1f_c01187{word-spacing:0.048240px;}
.ws43_c01187{word-spacing:0.096480px;}
.ws1c_c01187{word-spacing:0.144720px;}
.ws2d_c01187{word-spacing:0.192960px;}
.ws1e_c01187{word-spacing:0.241200px;}
.ws30_c01187{word-spacing:0.289440px;}
.ws18_c01187{word-spacing:0.337680px;}
.ws15_c01187{word-spacing:0.418320px;}
.ws17_c01187{word-spacing:0.504000px;}
.ws3e_c01187{word-spacing:0.675360px;}
.ws2f_c01187{word-spacing:0.868320px;}
.ws2e_c01187{word-spacing:0.964800px;}
.ws1b_c01187{word-spacing:1.881360px;}
.ws1a_c01187{word-spacing:3.039120px;}
.ws41_c01187{word-spacing:3.087360px;}
.ws19_c01187{word-spacing:3.135600px;}
.ws40_c01187{word-spacing:3.425040px;}
.ws32_c01187{word-spacing:3.618000px;}
.ws31_c01187{word-spacing:3.810960px;}
.ws29_c01187{word-spacing:4.003920px;}
.ws2b_c01187{word-spacing:4.341600px;}
.ws2c_c01187{word-spacing:4.438080px;}
.ws2a_c01187{word-spacing:4.534560px;}
.ws24_c01187{word-spacing:5.595840px;}
.ws27_c01187{word-spacing:5.885280px;}
.ws26_c01187{word-spacing:5.981760px;}
.ws20_c01187{word-spacing:9.937440px;}
.ws22_c01187{word-spacing:10.661040px;}
.ws23_c01187{word-spacing:10.950480px;}
.ws28_c01187{word-spacing:10.998720px;}
.ws21_c01187{word-spacing:11.046960px;}
.ws39_c01187{word-spacing:18.427680px;}
.ws37_c01187{word-spacing:18.572400px;}
.ws3a_c01187{word-spacing:18.910080px;}
.ws38_c01187{word-spacing:18.958320px;}
.ws3b_c01187{word-spacing:22.190400px;}
.ws3f_c01187{word-spacing:22.479840px;}
.ws3d_c01187{word-spacing:22.528080px;}
.ws3c_c01187{word-spacing:22.576320px;}
._6_c01187{margin-left:-2.538672px;}
._0_c01187{margin-left:-1.231056px;}
._1_c01187{width:1.320576px;}
._3_c01187{width:2.526528px;}
._2_c01187{width:3.696384px;}
._4_c01187{width:5.813856px;}
._5_c01187{width:22.269696px;}
.fc1_c01187{color:rgb(0,0,0);}
.fc0_c01187{color:rgb(0,0,255);}
.fs2_c01187{font-size:48.240000px;}
.fs0_c01187{font-size:59.760000px;}
.fs1_c01187{font-size:72.000000px;}
.y0_c01187{bottom:0.000000px;}
.y2_c01187{bottom:67.680000px;}
.y23_c01187{bottom:120.420000px;}
.y22_c01187{bottom:139.680000px;}
.y21_c01187{bottom:158.759460px;}
.y20_c01187{bottom:173.340000px;}
.y1f_c01187{bottom:192.598020px;}
.y1e_c01187{bottom:207.178560px;}
.y1d_c01187{bottom:221.940000px;}
.y1c_c01187{bottom:241.020000px;}
.y1b_c01187{bottom:255.600000px;}
.y1a_c01187{bottom:274.859460px;}
.y19_c01187{bottom:289.440000px;}
.y18_c01187{bottom:308.518560px;}
.y17_c01187{bottom:323.280000px;}
.y16_c01187{bottom:342.358560px;}
.y15_c01187{bottom:357.120000px;}
.y14_c01187{bottom:376.199460px;}
.y13_c01187{bottom:390.780000px;}
.y12_c01187{bottom:410.039460px;}
.y11_c01187{bottom:424.620000px;}
.y10_c01187{bottom:443.879460px;}
.yf_c01187{bottom:458.460000px;}
.ye_c01187{bottom:477.538560px;}
.yd_c01187{bottom:492.300000px;}
.yc_c01187{bottom:511.380000px;}
.yb_c01187{bottom:525.958560px;}
.ya_c01187{bottom:540.720000px;}
.y9_c01187{bottom:559.799640px;}
.y8_c01187{bottom:574.561080px;}
.y7_c01187{bottom:593.640000px;}
.y6_c01187{bottom:612.720000px;}
.y5_c01187{bottom:627.480000px;}
.y4_c01187{bottom:653.940000px;}
.y3_c01187{bottom:719.093850px;}
.y1_c01187{bottom:1163.520000px;}
.h6_c01187{height:34.625391px;}
.h7_c01187{height:34.626831px;}
.h9_c01187{height:34.627551px;}
.h8_c01187{height:34.631151px;}
.ha_c01187{height:34.633311px;}
.h2_c01187{height:41.551875px;}
.h3_c01187{height:42.894141px;}
.h4_c01187{height:42.918741px;}
.h5_c01187{height:50.062500px;}
.h0_c01187{height:1262.880000px;}
.h1_c01187{height:1263.000000px;}
.w0_c01187{width:892.980000px;}
.w1_c01187{width:893.250000px;}
.x0_c01187{left:0.000000px;}
.x1_c01187{left:84.960000px;}
.x3_c01187{left:106.200000px;}
.x2_c01187{left:438.840000px;}
@media print{
.v0_c01187{vertical-align:0.000000pt;}
.ls1d_c01187{letter-spacing:-0.771840pt;}
.ls1f_c01187{letter-spacing:-0.643200pt;}
.ls1e_c01187{letter-spacing:-0.600320pt;}
.ls18_c01187{letter-spacing:-0.514560pt;}
.ls1c_c01187{letter-spacing:-0.428800pt;}
.ls14_c01187{letter-spacing:-0.300160pt;}
.ls1a_c01187{letter-spacing:-0.257280pt;}
.ls15_c01187{letter-spacing:-0.214400pt;}
.ls10_c01187{letter-spacing:-0.212480pt;}
.ls13_c01187{letter-spacing:-0.192000pt;}
.ls1b_c01187{letter-spacing:-0.171520pt;}
.ls16_c01187{letter-spacing:-0.128640pt;}
.ls12_c01187{letter-spacing:-0.106240pt;}
.lsf_c01187{letter-spacing:-0.053333pt;}
.ls11_c01187{letter-spacing:-0.053120pt;}
.lse_c01187{letter-spacing:0.000000pt;}
.ls7_c01187{letter-spacing:0.021440pt;}
.ls19_c01187{letter-spacing:0.042880pt;}
.ls17_c01187{letter-spacing:0.171520pt;}
.ls0_c01187{letter-spacing:0.265600pt;}
.lsc_c01187{letter-spacing:0.278720pt;}
.ls2_c01187{letter-spacing:0.300160pt;}
.ls9_c01187{letter-spacing:0.308736pt;}
.lsd_c01187{letter-spacing:0.318720pt;}
.lsb_c01187{letter-spacing:0.343040pt;}
.ls6_c01187{letter-spacing:0.428800pt;}
.ls5_c01187{letter-spacing:0.557440pt;}
.ls1_c01187{letter-spacing:2.487040pt;}
.ls3_c01187{letter-spacing:9.519360pt;}
.ls4_c01187{letter-spacing:9.536512pt;}
.ls8_c01187{letter-spacing:16.551680pt;}
.lsa_c01187{letter-spacing:19.767680pt;}
.ws1_c01187{word-spacing:-12.323840pt;}
.ws3_c01187{word-spacing:-12.005120pt;}
.ws2_c01187{word-spacing:-11.952000pt;}
.ws0_c01187{word-spacing:-11.951787pt;}
.ws4_c01187{word-spacing:-11.898880pt;}
.ws9_c01187{word-spacing:-9.862400pt;}
.wsa_c01187{word-spacing:-9.733760pt;}
.ws8_c01187{word-spacing:-9.690880pt;}
.ws5_c01187{word-spacing:-9.562240pt;}
.wsb_c01187{word-spacing:-9.519360pt;}
.ws6_c01187{word-spacing:-9.476480pt;}
.wsf_c01187{word-spacing:-9.433600pt;}
.wsc_c01187{word-spacing:-9.390720pt;}
.wsd_c01187{word-spacing:-9.262080pt;}
.ws7_c01187{word-spacing:-9.176320pt;}
.ws10_c01187{word-spacing:-9.090560pt;}
.ws11_c01187{word-spacing:-9.047680pt;}
.wse_c01187{word-spacing:-8.919040pt;}
.ws34_c01187{word-spacing:-2.058240pt;}
.ws42_c01187{word-spacing:-1.886720pt;}
.ws36_c01187{word-spacing:-1.800960pt;}
.ws35_c01187{word-spacing:-1.715200pt;}
.ws14_c01187{word-spacing:-0.318720pt;}
.ws33_c01187{word-spacing:-0.171520pt;}
.ws12_c01187{word-spacing:-0.159360pt;}
.ws1d_c01187{word-spacing:-0.128640pt;}
.ws16_c01187{word-spacing:-0.106240pt;}
.ws25_c01187{word-spacing:-0.042880pt;}
.ws13_c01187{word-spacing:0.000000pt;}
.ws1f_c01187{word-spacing:0.042880pt;}
.ws43_c01187{word-spacing:0.085760pt;}
.ws1c_c01187{word-spacing:0.128640pt;}
.ws2d_c01187{word-spacing:0.171520pt;}
.ws1e_c01187{word-spacing:0.214400pt;}
.ws30_c01187{word-spacing:0.257280pt;}
.ws18_c01187{word-spacing:0.300160pt;}
.ws15_c01187{word-spacing:0.371840pt;}
.ws17_c01187{word-spacing:0.448000pt;}
.ws3e_c01187{word-spacing:0.600320pt;}
.ws2f_c01187{word-spacing:0.771840pt;}
.ws2e_c01187{word-spacing:0.857600pt;}
.ws1b_c01187{word-spacing:1.672320pt;}
.ws1a_c01187{word-spacing:2.701440pt;}
.ws41_c01187{word-spacing:2.744320pt;}
.ws19_c01187{word-spacing:2.787200pt;}
.ws40_c01187{word-spacing:3.044480pt;}
.ws32_c01187{word-spacing:3.216000pt;}
.ws31_c01187{word-spacing:3.387520pt;}
.ws29_c01187{word-spacing:3.559040pt;}
.ws2b_c01187{word-spacing:3.859200pt;}
.ws2c_c01187{word-spacing:3.944960pt;}
.ws2a_c01187{word-spacing:4.030720pt;}
.ws24_c01187{word-spacing:4.974080pt;}
.ws27_c01187{word-spacing:5.231360pt;}
.ws26_c01187{word-spacing:5.317120pt;}
.ws20_c01187{word-spacing:8.833280pt;}
.ws22_c01187{word-spacing:9.476480pt;}
.ws23_c01187{word-spacing:9.733760pt;}
.ws28_c01187{word-spacing:9.776640pt;}
.ws21_c01187{word-spacing:9.819520pt;}
.ws39_c01187{word-spacing:16.380160pt;}
.ws37_c01187{word-spacing:16.508800pt;}
.ws3a_c01187{word-spacing:16.808960pt;}
.ws38_c01187{word-spacing:16.851840pt;}
.ws3b_c01187{word-spacing:19.724800pt;}
.ws3f_c01187{word-spacing:19.982080pt;}
.ws3d_c01187{word-spacing:20.024960pt;}
.ws3c_c01187{word-spacing:20.067840pt;}
._6_c01187{margin-left:-2.256597pt;}
._0_c01187{margin-left:-1.094272pt;}
._1_c01187{width:1.173845pt;}
._3_c01187{width:2.245803pt;}
._2_c01187{width:3.285675pt;}
._4_c01187{width:5.167872pt;}
._5_c01187{width:19.795285pt;}
.fs2_c01187{font-size:42.880000pt;}
.fs0_c01187{font-size:53.120000pt;}
.fs1_c01187{font-size:64.000000pt;}
.y0_c01187{bottom:0.000000pt;}
.y2_c01187{bottom:60.160000pt;}
.y23_c01187{bottom:107.040000pt;}
.y22_c01187{bottom:124.160000pt;}
.y21_c01187{bottom:141.119520pt;}
.y20_c01187{bottom:154.080000pt;}
.y1f_c01187{bottom:171.198240pt;}
.y1e_c01187{bottom:184.158720pt;}
.y1d_c01187{bottom:197.280000pt;}
.y1c_c01187{bottom:214.240000pt;}
.y1b_c01187{bottom:227.200000pt;}
.y1a_c01187{bottom:244.319520pt;}
.y19_c01187{bottom:257.280000pt;}
.y18_c01187{bottom:274.238720pt;}
.y17_c01187{bottom:287.360000pt;}
.y16_c01187{bottom:304.318720pt;}
.y15_c01187{bottom:317.440000pt;}
.y14_c01187{bottom:334.399520pt;}
.y13_c01187{bottom:347.360000pt;}
.y12_c01187{bottom:364.479520pt;}
.y11_c01187{bottom:377.440000pt;}
.y10_c01187{bottom:394.559520pt;}
.yf_c01187{bottom:407.520000pt;}
.ye_c01187{bottom:424.478720pt;}
.yd_c01187{bottom:437.600000pt;}
.yc_c01187{bottom:454.560000pt;}
.yb_c01187{bottom:467.518720pt;}
.ya_c01187{bottom:480.640000pt;}
.y9_c01187{bottom:497.599680pt;}
.y8_c01187{bottom:510.720960pt;}
.y7_c01187{bottom:527.680000pt;}
.y6_c01187{bottom:544.640000pt;}
.y5_c01187{bottom:557.760000pt;}
.y4_c01187{bottom:581.280000pt;}
.y3_c01187{bottom:639.194533pt;}
.y1_c01187{bottom:1034.240000pt;}
.h6_c01187{height:30.778125pt;}
.h7_c01187{height:30.779405pt;}
.h9_c01187{height:30.780045pt;}
.h8_c01187{height:30.783245pt;}
.ha_c01187{height:30.785165pt;}
.h2_c01187{height:36.935000pt;}
.h3_c01187{height:38.128125pt;}
.h4_c01187{height:38.149992pt;}
.h5_c01187{height:44.500000pt;}
.h0_c01187{height:1122.560000pt;}
.h1_c01187{height:1122.666667pt;}
.w0_c01187{width:793.760000pt;}
.w1_c01187{width:794.000000pt;}
.x0_c01187{left:0.000000pt;}
.x1_c01187{left:75.520000pt;}
.x3_c01187{left:94.400000pt;}
.x2_c01187{left:390.080000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0fd8e7787d2cb63921266996.woff2')format("woff");}.ff1_c01188{font-family:ff1_c01188;line-height:0.873535;font-style:normal;font-weight:normal;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_eaaf19b3f5861ee23144f11a.woff2')format("woff");}.ff2_c01188{font-family:ff2_c01188;line-height:0.910645;font-style:normal;font-weight:normal;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_fc42aeca577ed645d1ef2bc8.woff2')format("woff");}.ff3_c01188{font-family:ff3_c01188;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01188;src:url('chunks/assets/font_3a85050dfdef72a75eb08f17.woff2')format("woff");}.ff4_c01188{font-family:ff4_c01188;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01188{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01188{vertical-align:0.000000px;}
.ls18_c01188{letter-spacing:-0.723600px;}
.ls14_c01188{letter-spacing:-0.675360px;}
.ls1b_c01188{letter-spacing:-0.530640px;}
.ls1c_c01188{letter-spacing:-0.504000px;}
.ls20_c01188{letter-spacing:-0.358560px;}
.ls12_c01188{letter-spacing:-0.337680px;}
.ls15_c01188{letter-spacing:-0.289440px;}
.ls13_c01188{letter-spacing:-0.241200px;}
.ls10_c01188{letter-spacing:-0.192960px;}
.ls17_c01188{letter-spacing:-0.144720px;}
.ls1f_c01188{letter-spacing:-0.119520px;}
.lsf_c01188{letter-spacing:-0.059760px;}
.ls16_c01188{letter-spacing:-0.048240px;}
.lsd_c01188{letter-spacing:0.000000px;}
.ls1_c01188{letter-spacing:0.024120px;}
.ls11_c01188{letter-spacing:0.048240px;}
.lsa_c01188{letter-spacing:0.059760px;}
.ls1a_c01188{letter-spacing:0.096480px;}
.ls21_c01188{letter-spacing:0.119520px;}
.lse_c01188{letter-spacing:0.179280px;}
.ls19_c01188{letter-spacing:0.192960px;}
.ls1d_c01188{letter-spacing:0.216000px;}
.ls8_c01188{letter-spacing:0.288000px;}
.ls1e_c01188{letter-spacing:0.298800px;}
.ls0_c01188{letter-spacing:0.337680px;}
.lsc_c01188{letter-spacing:0.358560px;}
.ls3_c01188{letter-spacing:0.381096px;}
.ls6_c01188{letter-spacing:0.520992px;}
.lsb_c01188{letter-spacing:0.657360px;}
.ls4_c01188{letter-spacing:1.350720px;}
.ls2_c01188{letter-spacing:33.160176px;}
.ls5_c01188{letter-spacing:35.890560px;}
.ls9_c01188{letter-spacing:41.951520px;}
.ls7_c01188{letter-spacing:55.331280px;}
.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;}
}
.wse_c01188{word-spacing:-16.488000px;}
.wsd_c01188{word-spacing:-15.768000px;}
.ws11_c01188{word-spacing:-13.625280px;}
.ws13_c01188{word-spacing:-13.565520px;}
.wsf_c01188{word-spacing:-13.505760px;}
.ws12_c01188{word-spacing:-13.446000px;}
.ws10_c01188{word-spacing:-13.386240px;}
.ws6_c01188{word-spacing:-11.239920px;}
.wsb_c01188{word-spacing:-10.998720px;}
.ws1_c01188{word-spacing:-10.950480px;}
.ws2_c01188{word-spacing:-10.902240px;}
.ws7_c01188{word-spacing:-10.854000px;}
.ws9_c01188{word-spacing:-10.757520px;}
.ws0_c01188{word-spacing:-10.709280px;}
.ws4_c01188{word-spacing:-10.661040px;}
.ws8_c01188{word-spacing:-10.612800px;}
.ws5_c01188{word-spacing:-10.564560px;}
.wsc_c01188{word-spacing:-10.371600px;}
.ws3_c01188{word-spacing:-10.226880px;}
.wsa_c01188{word-spacing:-10.178640px;}
.ws36_c01188{word-spacing:-2.460240px;}
.ws37_c01188{word-spacing:-2.026080px;}
.ws38_c01188{word-spacing:-1.977840px;}
.ws23_c01188{word-spacing:-1.398960px;}
.ws21_c01188{word-spacing:-1.302480px;}
.ws22_c01188{word-spacing:-1.206000px;}
.ws14_c01188{word-spacing:-0.179280px;}
.ws29_c01188{word-spacing:-0.144720px;}
.ws46_c01188{word-spacing:-0.059760px;}
.ws17_c01188{word-spacing:-0.048240px;}
.ws15_c01188{word-spacing:0.000000px;}
.ws28_c01188{word-spacing:0.048240px;}
.ws16_c01188{word-spacing:0.059760px;}
.ws19_c01188{word-spacing:0.144720px;}
.ws24_c01188{word-spacing:0.192960px;}
.ws18_c01188{word-spacing:0.241200px;}
.ws34_c01188{word-spacing:0.578880px;}
.ws3c_c01188{word-spacing:0.597600px;}
.ws32_c01188{word-spacing:0.771840px;}
.ws30_c01188{word-spacing:0.868320px;}
.ws31_c01188{word-spacing:0.916560px;}
.ws3b_c01188{word-spacing:0.956160px;}
.ws33_c01188{word-spacing:0.964800px;}
.ws2a_c01188{word-spacing:1.302480px;}
.ws2c_c01188{word-spacing:1.591920px;}
.ws2b_c01188{word-spacing:1.688400px;}
.ws1d_c01188{word-spacing:2.026080px;}
.ws1f_c01188{word-spacing:2.315520px;}
.ws20_c01188{word-spacing:2.363760px;}
.ws1e_c01188{word-spacing:2.412000px;}
.ws39_c01188{word-spacing:2.942640px;}
.ws3a_c01188{word-spacing:3.087360px;}
.ws25_c01188{word-spacing:3.425040px;}
.ws27_c01188{word-spacing:3.762720px;}
.ws26_c01188{word-spacing:3.810960px;}
.ws3d_c01188{word-spacing:4.183200px;}
.ws43_c01188{word-spacing:5.617440px;}
.ws40_c01188{word-spacing:7.768800px;}
.ws3f_c01188{word-spacing:8.485920px;}
.ws3e_c01188{word-spacing:8.844480px;}
.ws42_c01188{word-spacing:15.716880px;}
.ws41_c01188{word-spacing:16.075440px;}
.ws1a_c01188{word-spacing:32.947920px;}
.ws1c_c01188{word-spacing:33.285600px;}
.ws1b_c01188{word-spacing:33.333840px;}
.ws2d_c01188{word-spacing:36.035280px;}
.ws2f_c01188{word-spacing:36.131760px;}
.ws2e_c01188{word-spacing:36.180000px;}
.ws48_c01188{word-spacing:41.652720px;}
.ws45_c01188{word-spacing:41.772240px;}
.ws44_c01188{word-spacing:42.011280px;}
.ws47_c01188{word-spacing:42.310080px;}
.ws35_c01188{word-spacing:55.572480px;}
._4_c01188{margin-left:-5.350896px;}
._3_c01188{margin-left:-2.508480px;}
._0_c01188{margin-left:-1.231056px;}
._1_c01188{width:1.061280px;}
._5_c01188{width:3.498336px;}
._7_c01188{width:5.593536px;}
._2_c01188{width:33.071328px;}
._6_c01188{width:36.357984px;}
._9_c01188{width:40.624848px;}
._8_c01188{width:41.965920px;}
.fc1_c01188{color:rgb(0,0,0);}
.fc0_c01188{color:rgb(0,0,255);}
.fs1_c01188{font-size:48.240000px;}
.fs0_c01188{font-size:59.760000px;}
.fs2_c01188{font-size:72.000000px;}
.y0_c01188{bottom:0.000000px;}
.y2_c01188{bottom:71.286480px;}
.y24_c01188{bottom:492.466320px;}
.y23_c01188{bottom:514.428120px;}
.y22_c01188{bottom:536.569200px;}
.y21_c01188{bottom:558.531000px;}
.y20_c01188{bottom:580.492800px;}
.y1f_c01188{bottom:602.454600px;}
.y1e_c01188{bottom:624.416400px;}
.y1d_c01188{bottom:646.378200px;}
.y1c_c01188{bottom:668.340000px;}
.y1b_c01188{bottom:697.860000px;}
.y1a_c01188{bottom:742.139460px;}
.y19_c01188{bottom:756.720000px;}
.y18_c01188{bottom:775.800000px;}
.y17_c01188{bottom:790.560000px;}
.y16_c01188{bottom:809.637870px;}
.y15_c01188{bottom:824.218410px;}
.y14_c01188{bottom:838.979850px;}
.y13_c01188{bottom:858.060000px;}
.y12_c01188{bottom:872.819460px;}
.y11_c01188{bottom:887.400000px;}
.y10_c01188{bottom:906.478560px;}
.yf_c01188{bottom:921.240000px;}
.ye_c01188{bottom:940.319460px;}
.yd_c01188{bottom:954.900000px;}
.yc_c01188{bottom:974.158020px;}
.yb_c01188{bottom:988.738560px;}
.ya_c01188{bottom:1003.500000px;}
.y9_c01188{bottom:1022.579460px;}
.y8_c01188{bottom:1037.160000px;}
.y7_c01188{bottom:1056.419460px;}
.y6_c01188{bottom:1071.000000px;}
.y5_c01188{bottom:1090.078560px;}
.y4_c01188{bottom:1104.840000px;}
.y3_c01188{bottom:1123.920000px;}
.y1_c01188{bottom:1163.520000px;}
.h4_c01188{height:34.625391px;}
.h6_c01188{height:34.627551px;}
.h5_c01188{height:34.631151px;}
.h7_c01188{height:34.633311px;}
.h8_c01188{height:34.633911px;}
.h2_c01188{height:41.551875px;}
.h3_c01188{height:42.894141px;}
.ha_c01188{height:42.948861px;}
.h9_c01188{height:50.062500px;}
.h0_c01188{height:1262.880000px;}
.h1_c01188{height:1263.000000px;}
.w0_c01188{width:892.980000px;}
.w1_c01188{width:893.250000px;}
.x0_c01188{left:0.000000px;}
.x1_c01188{left:84.960000px;}
.x3_c01188{left:106.197660px;}
.x4_c01188{left:127.435320px;}
.x2_c01188{left:438.843780px;}
@media print{
.v0_c01188{vertical-align:0.000000pt;}
.ls18_c01188{letter-spacing:-0.643200pt;}
.ls14_c01188{letter-spacing:-0.600320pt;}
.ls1b_c01188{letter-spacing:-0.471680pt;}
.ls1c_c01188{letter-spacing:-0.448000pt;}
.ls20_c01188{letter-spacing:-0.318720pt;}
.ls12_c01188{letter-spacing:-0.300160pt;}
.ls15_c01188{letter-spacing:-0.257280pt;}
.ls13_c01188{letter-spacing:-0.214400pt;}
.ls10_c01188{letter-spacing:-0.171520pt;}
.ls17_c01188{letter-spacing:-0.128640pt;}
.ls1f_c01188{letter-spacing:-0.106240pt;}
.lsf_c01188{letter-spacing:-0.053120pt;}
.ls16_c01188{letter-spacing:-0.042880pt;}
.lsd_c01188{letter-spacing:0.000000pt;}
.ls1_c01188{letter-spacing:0.021440pt;}
.ls11_c01188{letter-spacing:0.042880pt;}
.lsa_c01188{letter-spacing:0.053120pt;}
.ls1a_c01188{letter-spacing:0.085760pt;}
.ls21_c01188{letter-spacing:0.106240pt;}
.lse_c01188{letter-spacing:0.159360pt;}
.ls19_c01188{letter-spacing:0.171520pt;}
.ls1d_c01188{letter-spacing:0.192000pt;}
.ls8_c01188{letter-spacing:0.256000pt;}
.ls1e_c01188{letter-spacing:0.265600pt;}
.ls0_c01188{letter-spacing:0.300160pt;}
.lsc_c01188{letter-spacing:0.318720pt;}
.ls3_c01188{letter-spacing:0.338752pt;}
.ls6_c01188{letter-spacing:0.463104pt;}
.lsb_c01188{letter-spacing:0.584320pt;}
.ls4_c01188{letter-spacing:1.200640pt;}
.ls2_c01188{letter-spacing:29.475712pt;}
.ls5_c01188{letter-spacing:31.902720pt;}
.ls9_c01188{letter-spacing:37.290240pt;}
.ls7_c01188{letter-spacing:49.183360pt;}
.wse_c01188{word-spacing:-14.656000pt;}
.wsd_c01188{word-spacing:-14.016000pt;}
.ws11_c01188{word-spacing:-12.111360pt;}
.ws13_c01188{word-spacing:-12.058240pt;}
.wsf_c01188{word-spacing:-12.005120pt;}
.ws12_c01188{word-spacing:-11.952000pt;}
.ws10_c01188{word-spacing:-11.898880pt;}
.ws6_c01188{word-spacing:-9.991040pt;}
.wsb_c01188{word-spacing:-9.776640pt;}
.ws1_c01188{word-spacing:-9.733760pt;}
.ws2_c01188{word-spacing:-9.690880pt;}
.ws7_c01188{word-spacing:-9.648000pt;}
.ws9_c01188{word-spacing:-9.562240pt;}
.ws0_c01188{word-spacing:-9.519360pt;}
.ws4_c01188{word-spacing:-9.476480pt;}
.ws8_c01188{word-spacing:-9.433600pt;}
.ws5_c01188{word-spacing:-9.390720pt;}
.wsc_c01188{word-spacing:-9.219200pt;}
.ws3_c01188{word-spacing:-9.090560pt;}
.wsa_c01188{word-spacing:-9.047680pt;}
.ws36_c01188{word-spacing:-2.186880pt;}
.ws37_c01188{word-spacing:-1.800960pt;}
.ws38_c01188{word-spacing:-1.758080pt;}
.ws23_c01188{word-spacing:-1.243520pt;}
.ws21_c01188{word-spacing:-1.157760pt;}
.ws22_c01188{word-spacing:-1.072000pt;}
.ws14_c01188{word-spacing:-0.159360pt;}
.ws29_c01188{word-spacing:-0.128640pt;}
.ws46_c01188{word-spacing:-0.053120pt;}
.ws17_c01188{word-spacing:-0.042880pt;}
.ws15_c01188{word-spacing:0.000000pt;}
.ws28_c01188{word-spacing:0.042880pt;}
.ws16_c01188{word-spacing:0.053120pt;}
.ws19_c01188{word-spacing:0.128640pt;}
.ws24_c01188{word-spacing:0.171520pt;}
.ws18_c01188{word-spacing:0.214400pt;}
.ws34_c01188{word-spacing:0.514560pt;}
.ws3c_c01188{word-spacing:0.531200pt;}
.ws32_c01188{word-spacing:0.686080pt;}
.ws30_c01188{word-spacing:0.771840pt;}
.ws31_c01188{word-spacing:0.814720pt;}
.ws3b_c01188{word-spacing:0.849920pt;}
.ws33_c01188{word-spacing:0.857600pt;}
.ws2a_c01188{word-spacing:1.157760pt;}
.ws2c_c01188{word-spacing:1.415040pt;}
.ws2b_c01188{word-spacing:1.500800pt;}
.ws1d_c01188{word-spacing:1.800960pt;}
.ws1f_c01188{word-spacing:2.058240pt;}
.ws20_c01188{word-spacing:2.101120pt;}
.ws1e_c01188{word-spacing:2.144000pt;}
.ws39_c01188{word-spacing:2.615680pt;}
.ws3a_c01188{word-spacing:2.744320pt;}
.ws25_c01188{word-spacing:3.044480pt;}
.ws27_c01188{word-spacing:3.344640pt;}
.ws26_c01188{word-spacing:3.387520pt;}
.ws3d_c01188{word-spacing:3.718400pt;}
.ws43_c01188{word-spacing:4.993280pt;}
.ws40_c01188{word-spacing:6.905600pt;}
.ws3f_c01188{word-spacing:7.543040pt;}
.ws3e_c01188{word-spacing:7.861760pt;}
.ws42_c01188{word-spacing:13.970560pt;}
.ws41_c01188{word-spacing:14.289280pt;}
.ws1a_c01188{word-spacing:29.287040pt;}
.ws1c_c01188{word-spacing:29.587200pt;}
.ws1b_c01188{word-spacing:29.630080pt;}
.ws2d_c01188{word-spacing:32.031360pt;}
.ws2f_c01188{word-spacing:32.117120pt;}
.ws2e_c01188{word-spacing:32.160000pt;}
.ws48_c01188{word-spacing:37.024640pt;}
.ws45_c01188{word-spacing:37.130880pt;}
.ws44_c01188{word-spacing:37.343360pt;}
.ws47_c01188{word-spacing:37.608960pt;}
.ws35_c01188{word-spacing:49.397760pt;}
._4_c01188{margin-left:-4.756352pt;}
._3_c01188{margin-left:-2.229760pt;}
._0_c01188{margin-left:-1.094272pt;}
._1_c01188{width:0.943360pt;}
._5_c01188{width:3.109632pt;}
._7_c01188{width:4.972032pt;}
._2_c01188{width:29.396736pt;}
._6_c01188{width:32.318208pt;}
._9_c01188{width:36.110976pt;}
._8_c01188{width:37.303040pt;}
.fs1_c01188{font-size:42.880000pt;}
.fs0_c01188{font-size:53.120000pt;}
.fs2_c01188{font-size:64.000000pt;}
.y0_c01188{bottom:0.000000pt;}
.y2_c01188{bottom:63.365760pt;}
.y24_c01188{bottom:437.747840pt;}
.y23_c01188{bottom:457.269440pt;}
.y22_c01188{bottom:476.950400pt;}
.y21_c01188{bottom:496.472000pt;}
.y20_c01188{bottom:515.993600pt;}
.y1f_c01188{bottom:535.515200pt;}
.y1e_c01188{bottom:555.036800pt;}
.y1d_c01188{bottom:574.558400pt;}
.y1c_c01188{bottom:594.080000pt;}
.y1b_c01188{bottom:620.320000pt;}
.y1a_c01188{bottom:659.679520pt;}
.y19_c01188{bottom:672.640000pt;}
.y18_c01188{bottom:689.600000pt;}
.y17_c01188{bottom:702.720000pt;}
.y16_c01188{bottom:719.678107pt;}
.y15_c01188{bottom:732.638587pt;}
.y14_c01188{bottom:745.759867pt;}
.y13_c01188{bottom:762.720000pt;}
.y12_c01188{bottom:775.839520pt;}
.y11_c01188{bottom:788.800000pt;}
.y10_c01188{bottom:805.758720pt;}
.yf_c01188{bottom:818.880000pt;}
.ye_c01188{bottom:835.839520pt;}
.yd_c01188{bottom:848.800000pt;}
.yc_c01188{bottom:865.918240pt;}
.yb_c01188{bottom:878.878720pt;}
.ya_c01188{bottom:892.000000pt;}
.y9_c01188{bottom:908.959520pt;}
.y8_c01188{bottom:921.920000pt;}
.y7_c01188{bottom:939.039520pt;}
.y6_c01188{bottom:952.000000pt;}
.y5_c01188{bottom:968.958720pt;}
.y4_c01188{bottom:982.080000pt;}
.y3_c01188{bottom:999.040000pt;}
.y1_c01188{bottom:1034.240000pt;}
.h4_c01188{height:30.778125pt;}
.h6_c01188{height:30.780045pt;}
.h5_c01188{height:30.783245pt;}
.h7_c01188{height:30.785165pt;}
.h8_c01188{height:30.785698pt;}
.h2_c01188{height:36.935000pt;}
.h3_c01188{height:38.128125pt;}
.ha_c01188{height:38.176765pt;}
.h9_c01188{height:44.500000pt;}
.h0_c01188{height:1122.560000pt;}
.h1_c01188{height:1122.666667pt;}
.w0_c01188{width:793.760000pt;}
.w1_c01188{width:794.000000pt;}
.x0_c01188{left:0.000000pt;}
.x1_c01188{left:75.520000pt;}
.x3_c01188{left:94.397920pt;}
.x4_c01188{left:113.275840pt;}
.x2_c01188{left:390.083360pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0d80974fdb86d2c1b70fa73a.woff2')format("woff");}.ff1_c01189{font-family:ff1_c01189;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01189;src:url('chunks/assets/font_ac221c8fee1d89339acbf984.woff2')format("woff");}.ff2_c01189{font-family:ff2_c01189;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01189;src:url('chunks/assets/font_6220be6f662568b03c53a8d3.woff2')format("woff");}.ff3_c01189{font-family:ff3_c01189;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01189;src:url('chunks/assets/font_4bbfc5dc4fb8531ec48a5e87.woff2')format("woff");}.ff4_c01189{font-family:ff4_c01189;line-height:0.667000;font-style: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;}
.ls0_c01189{letter-spacing:0.000000px;}
.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;}
}
.ws5_c01189{word-spacing:-1.584000px;}
.ws0_c01189{word-spacing:0.000000px;}
.ws2_c01189{word-spacing:0.282000px;}
.ws4_c01189{word-spacing:0.288000px;}
.ws6_c01189{word-spacing:1.044000px;}
.ws3_c01189{word-spacing:2.268000px;}
.ws1_c01189{word-spacing:3.078000px;}
._6_c01189{margin-left:-5.584787px;}
._0_c01189{margin-left:-2.304000px;}
._2_c01189{margin-left:-1.152000px;}
._4_c01189{width:1.152000px;}
._3_c01189{width:2.232000px;}
._1_c01189{width:3.960000px;}
._5_c01189{width:494.592000px;}
.fc1_c01189{color:rgb(0,0,255);}
.fc0_c01189{color:rgb(0,0,0);}
.fs0_c01189{font-size:72.000000px;}
.fs3_c01189{font-size:84.240000px;}
.fs1_c01189{font-size:108.000000px;}
.fs2_c01189{font-size:108.144000px;}
.y0_c01189{bottom:0.000000px;}
.y5_c01189{bottom:84.924000px;}
.y8_c01189{bottom:115.740000px;}
.y4_c01189{bottom:118.584000px;}
.y7_c01189{bottom:182.190000px;}
.y6_c01189{bottom:316.155000px;}
.y3_c01189{bottom:419.685000px;}
.y2_c01189{bottom:461.850000px;}
.y1_c01189{bottom:571.755000px;}
.h1_c01189{height:52.417969px;}
.h4_c01189{height:52.488281px;}
.h6_c01189{height:56.188080px;}
.h3_c01189{height:77.411672px;}
.h2_c01189{height:78.626953px;}
.h5_c01189{height:78.732422px;}
.h0_c01189{height:810.000000px;}
.w0_c01189{width:1080.000000px;}
.x0_c01189{left:0.000000px;}
.x1_c01189{left:72.504000px;}
.x2_c01189{left:75.856500px;}
@media print{
.v0_c01189{vertical-align:0.000000pt;}
.ls0_c01189{letter-spacing:0.000000pt;}
.ws5_c01189{word-spacing:-1.408000pt;}
.ws0_c01189{word-spacing:0.000000pt;}
.ws2_c01189{word-spacing:0.250667pt;}
.ws4_c01189{word-spacing:0.256000pt;}
.ws6_c01189{word-spacing:0.928000pt;}
.ws3_c01189{word-spacing:2.016000pt;}
.ws1_c01189{word-spacing:2.736000pt;}
._6_c01189{margin-left:-4.964255pt;}
._0_c01189{margin-left:-2.048000pt;}
._2_c01189{margin-left:-1.024000pt;}
._4_c01189{width:1.024000pt;}
._3_c01189{width:1.984000pt;}
._1_c01189{width:3.520000pt;}
._5_c01189{width:439.637333pt;}
.fs0_c01189{font-size:64.000000pt;}
.fs3_c01189{font-size:74.880000pt;}
.fs1_c01189{font-size:96.000000pt;}
.fs2_c01189{font-size:96.128000pt;}
.y0_c01189{bottom:0.000000pt;}
.y5_c01189{bottom:75.488000pt;}
.y8_c01189{bottom:102.880000pt;}
.y4_c01189{bottom:105.408000pt;}
.y7_c01189{bottom:161.946667pt;}
.y6_c01189{bottom:281.026667pt;}
.y3_c01189{bottom:373.053333pt;}
.y2_c01189{bottom:410.533333pt;}
.y1_c01189{bottom:508.226667pt;}
.h1_c01189{height:46.593750pt;}
.h4_c01189{height:46.656250pt;}
.h6_c01189{height:49.944960pt;}
.h3_c01189{height:68.810375pt;}
.h2_c01189{height:69.890625pt;}
.h5_c01189{height:69.984375pt;}
.h0_c01189{height:720.000000pt;}
.w0_c01189{width:960.000000pt;}
.x0_c01189{left:0.000000pt;}
.x1_c01189{left:64.448000pt;}
.x2_c01189{left:67.428000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b17a36c53f8777505037db97.woff2')format("woff");}.ff1_c01190{font-family:ff1_c01190;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01190;src:url('chunks/assets/font_2b2eeccfe00ad1c75c0acf36.woff2')format("woff");}.ff2_c01190{font-family:ff2_c01190;line-height:0.728027;font-style:normal;font-weight:normal;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_ccab2a2b06b154c909c3cd0c.woff2')format("woff");}.ff3_c01190{font-family:ff3_c01190;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1a_c01190{letter-spacing:-0.828000px;}
.ls1d_c01190{letter-spacing:-0.774000px;}
.ls1e_c01190{letter-spacing:-0.360000px;}
.ls17_c01190{letter-spacing:-0.306600px;}
.ls18_c01190{letter-spacing:-0.259800px;}
.ls1f_c01190{letter-spacing:-0.186600px;}
.ls16_c01190{letter-spacing:-0.106800px;}
.ls19_c01190{letter-spacing:-0.053400px;}
.ls15_c01190{letter-spacing:0.000000px;}
.ls21_c01190{letter-spacing:0.381600px;}
.ls1c_c01190{letter-spacing:0.413400px;}
.ls20_c01190{letter-spacing:0.533400px;}
.lsa_c01190{letter-spacing:0.576000px;}
.ls1b_c01190{letter-spacing:0.612000px;}
.ls2_c01190{letter-spacing:0.666720px;}
.lsd_c01190{letter-spacing:0.667200px;}
.ls3_c01190{letter-spacing:0.667440px;}
.lse_c01190{letter-spacing:0.680520px;}
.ls6_c01190{letter-spacing:1.386720px;}
.ls10_c01190{letter-spacing:1.387200px;}
.ls11_c01190{letter-spacing:1.566720px;}
.ls14_c01190{letter-spacing:2.106720px;}
.ls13_c01190{letter-spacing:2.107200px;}
.ls5_c01190{letter-spacing:2.826720px;}
.lsb_c01190{letter-spacing:4.266720px;}
.ls7_c01190{letter-spacing:4.986720px;}
.lsc_c01190{letter-spacing:4.987440px;}
.ls4_c01190{letter-spacing:5.706720px;}
.ls8_c01190{letter-spacing:6.426720px;}
.ls12_c01190{letter-spacing:7.122720px;}
.ls9_c01190{letter-spacing:7.146720px;}
.ls0_c01190{letter-spacing:7.866720px;}
.lsf_c01190{letter-spacing:10.026720px;}
.ls1_c01190{letter-spacing:10.746720px;}
.sc__c01190{text-shadow:none;}
.sc0_c01190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01190{-webkit-text-stroke:0px transparent;}
.sc0_c01190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01190{word-spacing:-59.760000px;}
.ws6_c01190{word-spacing:-17.225280px;}
.wsa_c01190{word-spacing:-17.186712px;}
.wsb_c01190{word-spacing:-17.034912px;}
.ws7_c01190{word-spacing:-17.026680px;}
.ws4_c01190{word-spacing:-16.559880px;}
.ws3_c01190{word-spacing:-16.506480px;}
.wsc_c01190{word-spacing:-16.466712px;}
.ws2_c01190{word-spacing:-16.353480px;}
.ws1_c01190{word-spacing:-16.306680px;}
.ws9_c01190{word-spacing:-16.253280px;}
.ws8_c01190{word-spacing:-15.839280px;}
.ws5_c01190{word-spacing:-15.785280px;}
.wsd_c01190{word-spacing:0.000000px;}
._a_c01190{margin-left:-3.589803px;}
._2_c01190{margin-left:-2.509800px;}
._0_c01190{margin-left:-1.314600px;}
._1_c01190{width:1.135201px;}
._7_c01190{width:2.184564px;}
._9_c01190{width:3.449321px;}
._8_c01190{width:5.427642px;}
._3_c01190{width:7.293588px;}
._4_c01190{width:8.433032px;}
._5_c01190{width:10.320552px;}
._6_c01190{width:11.410037px;}
.fc0_c01190{color:rgb(0,0,0);}
.fs0_c01190{font-size:59.760000px;}
.fs2_c01190{font-size:59.904000px;}
.fs3_c01190{font-size:72.000000px;}
.fs1_c01190{font-size:120.240000px;}
.y0_c01190{bottom:0.000000px;}
.y2_c01190{bottom:12.636000px;}
.y4_c01190{bottom:14.508000px;}
.y1_c01190{bottom:30.636000px;}
.y3_c01190{bottom:32.508000px;}
.y22_c01190{bottom:74.772000px;}
.y21_c01190{bottom:92.772000px;}
.y20_c01190{bottom:110.772000px;}
.y1f_c01190{bottom:128.772000px;}
.y1e_c01190{bottom:146.808000px;}
.y1d_c01190{bottom:164.805000px;}
.y1c_c01190{bottom:182.805000px;}
.y1b_c01190{bottom:200.805000px;}
.y1a_c01190{bottom:218.805000px;}
.y19_c01190{bottom:236.805000px;}
.y18_c01190{bottom:254.805000px;}
.y17_c01190{bottom:272.805000px;}
.y16_c01190{bottom:290.850000px;}
.y15_c01190{bottom:308.850000px;}
.y14_c01190{bottom:326.850000px;}
.y13_c01190{bottom:344.850000px;}
.y12_c01190{bottom:362.850000px;}
.y11_c01190{bottom:380.850000px;}
.y10_c01190{bottom:398.850000px;}
.yf_c01190{bottom:416.850000px;}
.ye_c01190{bottom:434.880000px;}
.yd_c01190{bottom:452.880000px;}
.yc_c01190{bottom:470.880000px;}
.yb_c01190{bottom:488.880000px;}
.ya_c01190{bottom:506.880000px;}
.y9_c01190{bottom:524.880000px;}
.y8_c01190{bottom:542.880000px;}
.y7_c01190{bottom:560.880000px;}
.y6_c01190{bottom:578.910000px;}
.y5_c01190{bottom:614.775000px;}
.y23_c01190{bottom:685.050000px;}
.h1_c01190{height:43.565273px;}
.h3_c01190{height:43.670250px;}
.h4_c01190{height:52.417969px;}
.h2_c01190{height:87.538008px;}
.h0_c01190{height:810.000000px;}
.w0_c01190{width:1080.000000px;}
.x0_c01190{left:0.000000px;}
.x3_c01190{left:62.172000px;}
.x7_c01190{left:72.504000px;}
.x6_c01190{left:73.800000px;}
.x2_c01190{left:432.510000px;}
.x1_c01190{left:437.370000px;}
.x5_c01190{left:698.040000px;}
.x4_c01190{left:860.430000px;}
@media print{
.v0_c01190{vertical-align:0.000000pt;}
.ls1a_c01190{letter-spacing:-0.736000pt;}
.ls1d_c01190{letter-spacing:-0.688000pt;}
.ls1e_c01190{letter-spacing:-0.320000pt;}
.ls17_c01190{letter-spacing:-0.272533pt;}
.ls18_c01190{letter-spacing:-0.230933pt;}
.ls1f_c01190{letter-spacing:-0.165867pt;}
.ls16_c01190{letter-spacing:-0.094933pt;}
.ls19_c01190{letter-spacing:-0.047467pt;}
.ls15_c01190{letter-spacing:0.000000pt;}
.ls21_c01190{letter-spacing:0.339200pt;}
.ls1c_c01190{letter-spacing:0.367467pt;}
.ls20_c01190{letter-spacing:0.474133pt;}
.lsa_c01190{letter-spacing:0.512000pt;}
.ls1b_c01190{letter-spacing:0.544000pt;}
.ls2_c01190{letter-spacing:0.592640pt;}
.lsd_c01190{letter-spacing:0.593067pt;}
.ls3_c01190{letter-spacing:0.593280pt;}
.lse_c01190{letter-spacing:0.604907pt;}
.ls6_c01190{letter-spacing:1.232640pt;}
.ls10_c01190{letter-spacing:1.233067pt;}
.ls11_c01190{letter-spacing:1.392640pt;}
.ls14_c01190{letter-spacing:1.872640pt;}
.ls13_c01190{letter-spacing:1.873067pt;}
.ls5_c01190{letter-spacing:2.512640pt;}
.lsb_c01190{letter-spacing:3.792640pt;}
.ls7_c01190{letter-spacing:4.432640pt;}
.lsc_c01190{letter-spacing:4.433280pt;}
.ls4_c01190{letter-spacing:5.072640pt;}
.ls8_c01190{letter-spacing:5.712640pt;}
.ls12_c01190{letter-spacing:6.331307pt;}
.ls9_c01190{letter-spacing:6.352640pt;}
.ls0_c01190{letter-spacing:6.992640pt;}
.lsf_c01190{letter-spacing:8.912640pt;}
.ls1_c01190{letter-spacing:9.552640pt;}
.ws0_c01190{word-spacing:-53.120000pt;}
.ws6_c01190{word-spacing:-15.311360pt;}
.wsa_c01190{word-spacing:-15.277077pt;}
.wsb_c01190{word-spacing:-15.142144pt;}
.ws7_c01190{word-spacing:-15.134827pt;}
.ws4_c01190{word-spacing:-14.719893pt;}
.ws3_c01190{word-spacing:-14.672427pt;}
.wsc_c01190{word-spacing:-14.637077pt;}
.ws2_c01190{word-spacing:-14.536427pt;}
.ws1_c01190{word-spacing:-14.494827pt;}
.ws9_c01190{word-spacing:-14.447360pt;}
.ws8_c01190{word-spacing:-14.079360pt;}
.ws5_c01190{word-spacing:-14.031360pt;}
.wsd_c01190{word-spacing:0.000000pt;}
._a_c01190{margin-left:-3.190936pt;}
._2_c01190{margin-left:-2.230934pt;}
._0_c01190{margin-left:-1.168534pt;}
._1_c01190{width:1.009068pt;}
._7_c01190{width:1.941834pt;}
._9_c01190{width:3.066063pt;}
._8_c01190{width:4.824571pt;}
._3_c01190{width:6.483190pt;}
._4_c01190{width:7.496029pt;}
._5_c01190{width:9.173824pt;}
._6_c01190{width:10.142255pt;}
.fs0_c01190{font-size:53.120000pt;}
.fs2_c01190{font-size:53.248000pt;}
.fs3_c01190{font-size:64.000000pt;}
.fs1_c01190{font-size:106.880000pt;}
.y0_c01190{bottom:0.000000pt;}
.y2_c01190{bottom:11.232000pt;}
.y4_c01190{bottom:12.896000pt;}
.y1_c01190{bottom:27.232000pt;}
.y3_c01190{bottom:28.896000pt;}
.y22_c01190{bottom:66.464000pt;}
.y21_c01190{bottom:82.464000pt;}
.y20_c01190{bottom:98.464000pt;}
.y1f_c01190{bottom:114.464000pt;}
.y1e_c01190{bottom:130.496000pt;}
.y1d_c01190{bottom:146.493333pt;}
.y1c_c01190{bottom:162.493333pt;}
.y1b_c01190{bottom:178.493333pt;}
.y1a_c01190{bottom:194.493333pt;}
.y19_c01190{bottom:210.493333pt;}
.y18_c01190{bottom:226.493333pt;}
.y17_c01190{bottom:242.493333pt;}
.y16_c01190{bottom:258.533333pt;}
.y15_c01190{bottom:274.533333pt;}
.y14_c01190{bottom:290.533333pt;}
.y13_c01190{bottom:306.533333pt;}
.y12_c01190{bottom:322.533333pt;}
.y11_c01190{bottom:338.533333pt;}
.y10_c01190{bottom:354.533333pt;}
.yf_c01190{bottom:370.533333pt;}
.ye_c01190{bottom:386.560000pt;}
.yd_c01190{bottom:402.560000pt;}
.yc_c01190{bottom:418.560000pt;}
.yb_c01190{bottom:434.560000pt;}
.ya_c01190{bottom:450.560000pt;}
.y9_c01190{bottom:466.560000pt;}
.y8_c01190{bottom:482.560000pt;}
.y7_c01190{bottom:498.560000pt;}
.y6_c01190{bottom:514.586667pt;}
.y5_c01190{bottom:546.466667pt;}
.y23_c01190{bottom:608.933333pt;}
.h1_c01190{height:38.724688pt;}
.h3_c01190{height:38.818000pt;}
.h4_c01190{height:46.593750pt;}
.h2_c01190{height:77.811562pt;}
.h0_c01190{height:720.000000pt;}
.w0_c01190{width:960.000000pt;}
.x0_c01190{left:0.000000pt;}
.x3_c01190{left:55.264000pt;}
.x7_c01190{left:64.448000pt;}
.x6_c01190{left:65.600000pt;}
.x2_c01190{left:384.453333pt;}
.x1_c01190{left:388.773333pt;}
.x5_c01190{left:620.480000pt;}
.x4_c01190{left:764.826667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_06c92e30812e75843eb7f7e5.woff2')format("woff");}.ff1_c01191{font-family:ff1_c01191;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01191;src:url('chunks/assets/font_b1464c546a27d09842b45717.woff2')format("woff");}.ff2_c01191{font-family:ff2_c01191;line-height:0.728027;font-style:normal;font-weight:normal;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_5ff926e37a537a1b8e4cdf3b.woff2')format("woff");}.ff3_c01191{font-family:ff3_c01191;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01191{vertical-align:0.000000px;}
.ls4_c01191{letter-spacing:-0.106800px;}
.ls3_c01191{letter-spacing:0.000000px;}
.ls2_c01191{letter-spacing:0.226560px;}
.ls0_c01191{letter-spacing:119.145600px;}
.ls1_c01191{letter-spacing:119.196000px;}
.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;}
}
.ws0_c01191{word-spacing:-59.760000px;}
.ws1_c01191{word-spacing:0.000000px;}
._5_c01191{margin-left:-12.439773px;}
._6_c01191{margin-left:-6.997199px;}
._3_c01191{margin-left:-3.589803px;}
._2_c01191{margin-left:-2.509800px;}
._0_c01191{margin-left:-1.314600px;}
._1_c01191{width:1.135201px;}
._4_c01191{width:3.085800px;}
.fc1_c01191{color:rgb(255,0,0);}
.fc0_c01191{color:rgb(0,0,0);}
.fs0_c01191{font-size:59.760000px;}
.fs2_c01191{font-size:72.000000px;}
.fs3_c01191{font-size:120.240000px;}
.fs1_c01191{font-size:120.384000px;}
.y0_c01191{bottom:0.000000px;}
.y2_c01191{bottom:12.636000px;}
.y4_c01191{bottom:14.508000px;}
.y1_c01191{bottom:30.636000px;}
.y3_c01191{bottom:32.508000px;}
.yf_c01191{bottom:180.720000px;}
.ye_c01191{bottom:222.840000px;}
.yd_c01191{bottom:264.810000px;}
.yc_c01191{bottom:306.750000px;}
.yb_c01191{bottom:348.870000px;}
.ya_c01191{bottom:390.855000px;}
.y9_c01191{bottom:432.795000px;}
.y8_c01191{bottom:474.915000px;}
.y7_c01191{bottom:516.855000px;}
.y5_c01191{bottom:617.685000px;}
.y6_c01191{bottom:685.050000px;}
.h1_c01191{height:43.565273px;}
.h3_c01191{height:52.417969px;}
.h2_c01191{height:87.642844px;}
.h5_c01191{height:87.655430px;}
.h4_c01191{height:87.760406px;}
.h0_c01191{height:810.000000px;}
.w0_c01191{width:1080.000000px;}
.x0_c01191{left:0.000000px;}
.x3_c01191{left:62.172000px;}
.x6_c01191{left:72.504000px;}
.x7_c01191{left:112.284000px;}
.x2_c01191{left:432.510000px;}
.x1_c01191{left:437.370000px;}
.x5_c01191{left:698.040000px;}
.x4_c01191{left:860.430000px;}
@media print{
.v0_c01191{vertical-align:0.000000pt;}
.ls4_c01191{letter-spacing:-0.094933pt;}
.ls3_c01191{letter-spacing:0.000000pt;}
.ls2_c01191{letter-spacing:0.201387pt;}
.ls0_c01191{letter-spacing:105.907200pt;}
.ls1_c01191{letter-spacing:105.952000pt;}
.ws0_c01191{word-spacing:-53.120000pt;}
.ws1_c01191{word-spacing:0.000000pt;}
._5_c01191{margin-left:-11.057576pt;}
._6_c01191{margin-left:-6.219732pt;}
._3_c01191{margin-left:-3.190936pt;}
._2_c01191{margin-left:-2.230934pt;}
._0_c01191{margin-left:-1.168534pt;}
._1_c01191{width:1.009068pt;}
._4_c01191{width:2.742934pt;}
.fs0_c01191{font-size:53.120000pt;}
.fs2_c01191{font-size:64.000000pt;}
.fs3_c01191{font-size:106.880000pt;}
.fs1_c01191{font-size:107.008000pt;}
.y0_c01191{bottom:0.000000pt;}
.y2_c01191{bottom:11.232000pt;}
.y4_c01191{bottom:12.896000pt;}
.y1_c01191{bottom:27.232000pt;}
.y3_c01191{bottom:28.896000pt;}
.yf_c01191{bottom:160.640000pt;}
.ye_c01191{bottom:198.080000pt;}
.yd_c01191{bottom:235.386667pt;}
.yc_c01191{bottom:272.666667pt;}
.yb_c01191{bottom:310.106667pt;}
.ya_c01191{bottom:347.426667pt;}
.y9_c01191{bottom:384.706667pt;}
.y8_c01191{bottom:422.146667pt;}
.y7_c01191{bottom:459.426667pt;}
.y5_c01191{bottom:549.053333pt;}
.y6_c01191{bottom:608.933333pt;}
.h1_c01191{height:38.724688pt;}
.h3_c01191{height:46.593750pt;}
.h2_c01191{height:77.904750pt;}
.h5_c01191{height:77.915937pt;}
.h4_c01191{height:78.009250pt;}
.h0_c01191{height:720.000000pt;}
.w0_c01191{width:960.000000pt;}
.x0_c01191{left:0.000000pt;}
.x3_c01191{left:55.264000pt;}
.x6_c01191{left:64.448000pt;}
.x7_c01191{left:99.808000pt;}
.x2_c01191{left:384.453333pt;}
.x1_c01191{left:388.773333pt;}
.x5_c01191{left:620.480000pt;}
.x4_c01191{left:764.826667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8efd0c9caf51ccd12e07b73b.woff2')format("woff");}.ff1_c01192{font-family:ff1_c01192;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01192;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01192{font-family:ff2_c01192;line-height:0.728027;font-style:normal;font-weight:normal;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_cd56fd6fa8cf9c6b6c6d10d9.woff2')format("woff");}.ff3_c01192{font-family:ff3_c01192;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c01192{letter-spacing:-0.106800px;}
.ls1_c01192{letter-spacing:0.000000px;}
.ls0_c01192{letter-spacing:0.325200px;}
.sc__c01192{text-shadow:none;}
.sc0_c01192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01192{-webkit-text-stroke:0px transparent;}
.sc0_c01192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01192{word-spacing:-59.760000px;}
.ws1_c01192{word-spacing:0.000000px;}
._3_c01192{margin-left:-12.475080px;}
._2_c01192{margin-left:-2.509800px;}
._0_c01192{margin-left:-1.314600px;}
._1_c01192{width:1.135201px;}
._4_c01192{width:2.516400px;}
.fc0_c01192{color:rgb(0,0,0);}
.fs0_c01192{font-size:59.760000px;}
.fs1_c01192{font-size:167.760000px;}
.y0_c01192{bottom:0.000000px;}
.y2_c01192{bottom:12.636000px;}
.y4_c01192{bottom:14.508000px;}
.y1_c01192{bottom:30.636000px;}
.y3_c01192{bottom:32.508000px;}
.y5_c01192{bottom:460.830000px;}
.h1_c01192{height:43.565273px;}
.h2_c01192{height:122.133867px;}
.h0_c01192{height:810.000000px;}
.w0_c01192{width:1080.000000px;}
.x0_c01192{left:0.000000px;}
.x3_c01192{left:62.172000px;}
.x6_c01192{left:208.725000px;}
.x2_c01192{left:432.510000px;}
.x1_c01192{left:437.370000px;}
.x5_c01192{left:698.040000px;}
.x4_c01192{left:860.430000px;}
@media print{
.v0_c01192{vertical-align:0.000000pt;}
.ls2_c01192{letter-spacing:-0.094933pt;}
.ls1_c01192{letter-spacing:0.000000pt;}
.ls0_c01192{letter-spacing:0.289067pt;}
.ws0_c01192{word-spacing:-53.120000pt;}
.ws1_c01192{word-spacing:0.000000pt;}
._3_c01192{margin-left:-11.088960pt;}
._2_c01192{margin-left:-2.230934pt;}
._0_c01192{margin-left:-1.168534pt;}
._1_c01192{width:1.009068pt;}
._4_c01192{width:2.236800pt;}
.fs0_c01192{font-size:53.120000pt;}
.fs1_c01192{font-size:149.120000pt;}
.y0_c01192{bottom:0.000000pt;}
.y2_c01192{bottom:11.232000pt;}
.y4_c01192{bottom:12.896000pt;}
.y1_c01192{bottom:27.232000pt;}
.y3_c01192{bottom:28.896000pt;}
.y5_c01192{bottom:409.626667pt;}
.h1_c01192{height:38.724688pt;}
.h2_c01192{height:108.563437pt;}
.h0_c01192{height:720.000000pt;}
.w0_c01192{width:960.000000pt;}
.x0_c01192{left:0.000000pt;}
.x3_c01192{left:55.264000pt;}
.x6_c01192{left:185.533333pt;}
.x2_c01192{left:384.453333pt;}
.x1_c01192{left:388.773333pt;}
.x5_c01192{left:620.480000pt;}
.x4_c01192{left:764.826667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_626d20d33047de5514eab941.woff2')format("woff");}.ff1_c01193{font-family:ff1_c01193;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01193;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01193{font-family:ff2_c01193;line-height:0.728027;font-style:normal;font-weight:normal;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_abe6d96536796156fae2a87f.woff2')format("woff");}.ff3_c01193{font-family:ff3_c01193;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-0.106800px;}
.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;}
}
.ws0_c01193{word-spacing:-59.760000px;}
.ws1_c01193{word-spacing:0.000000px;}
._3_c01193{margin-left:-5.616000px;}
._2_c01193{margin-left:-2.509800px;}
._0_c01193{margin-left:-1.314600px;}
._1_c01193{width:1.135201px;}
._4_c01193{width:3.805800px;}
.fc1_c01193{color:rgb(255,0,0);}
.fc0_c01193{color:rgb(0,0,0);}
.fs0_c01193{font-size:59.760000px;}
.fs2_c01193{font-size:72.000000px;}
.fs1_c01193{font-size:95.760000px;}
.y0_c01193{bottom:0.000000px;}
.y2_c01193{bottom:12.636000px;}
.y4_c01193{bottom:14.508000px;}
.y1_c01193{bottom:30.636000px;}
.y3_c01193{bottom:32.508000px;}
.y7_c01193{bottom:100.260000px;}
.y5_c01193{bottom:647.670000px;}
.y6_c01193{bottom:685.050000px;}
.h1_c01193{height:43.565273px;}
.h3_c01193{height:52.417969px;}
.h2_c01193{height:69.715898px;}
.h0_c01193{height:810.000000px;}
.w0_c01193{width:1080.000000px;}
.x0_c01193{left:0.000000px;}
.x3_c01193{left:62.172000px;}
.x6_c01193{left:72.504000px;}
.x2_c01193{left:432.510000px;}
.x1_c01193{left:437.370000px;}
.x5_c01193{left:698.040000px;}
.x7_c01193{left:824.835000px;}
.x4_c01193{left:860.430000px;}
@media print{
.v0_c01193{vertical-align:0.000000pt;}
.ls1_c01193{letter-spacing:-0.094933pt;}
.ls0_c01193{letter-spacing:0.000000pt;}
.ws0_c01193{word-spacing:-53.120000pt;}
.ws1_c01193{word-spacing:0.000000pt;}
._3_c01193{margin-left:-4.992000pt;}
._2_c01193{margin-left:-2.230934pt;}
._0_c01193{margin-left:-1.168534pt;}
._1_c01193{width:1.009068pt;}
._4_c01193{width:3.382934pt;}
.fs0_c01193{font-size:53.120000pt;}
.fs2_c01193{font-size:64.000000pt;}
.fs1_c01193{font-size:85.120000pt;}
.y0_c01193{bottom:0.000000pt;}
.y2_c01193{bottom:11.232000pt;}
.y4_c01193{bottom:12.896000pt;}
.y1_c01193{bottom:27.232000pt;}
.y3_c01193{bottom:28.896000pt;}
.y7_c01193{bottom:89.120000pt;}
.y5_c01193{bottom:575.706667pt;}
.y6_c01193{bottom:608.933333pt;}
.h1_c01193{height:38.724688pt;}
.h3_c01193{height:46.593750pt;}
.h2_c01193{height:61.969687pt;}
.h0_c01193{height:720.000000pt;}
.w0_c01193{width:960.000000pt;}
.x0_c01193{left:0.000000pt;}
.x3_c01193{left:55.264000pt;}
.x6_c01193{left:64.448000pt;}
.x2_c01193{left:384.453333pt;}
.x1_c01193{left:388.773333pt;}
.x5_c01193{left:620.480000pt;}
.x7_c01193{left:733.186667pt;}
.x4_c01193{left:764.826667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1e1b53131141d8912ab2a283.woff2')format("woff");}.ff1_c01194{font-family:ff1_c01194;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01194;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01194{font-family:ff2_c01194;line-height:0.728027;font-style:normal;font-weight:normal;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_cc7e3eee29a539166674dc20.woff2')format("woff");}.ff3_c01194{font-family:ff3_c01194;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c01194{letter-spacing:-0.205800px;}
.ls7_c01194{letter-spacing:-0.154800px;}
.ls4_c01194{letter-spacing:-0.106800px;}
.ls5_c01194{letter-spacing:-0.042600px;}
.ls3_c01194{letter-spacing:0.000000px;}
.ls9_c01194{letter-spacing:0.018600px;}
.ls6_c01194{letter-spacing:0.037200px;}
.lsa_c01194{letter-spacing:0.236400px;}
.ls1_c01194{letter-spacing:1.458720px;}
.ls0_c01194{letter-spacing:2.138688px;}
.ls2_c01194{letter-spacing:23.058240px;}
.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;}
}
.ws0_c01194{word-spacing:-59.760000px;}
.ws2_c01194{word-spacing:-26.621280px;}
.ws4_c01194{word-spacing:0.000000px;}
.ws1_c01194{word-spacing:55.403280px;}
.ws3_c01194{word-spacing:55.482552px;}
._3_c01194{margin-left:-5.616000px;}
._2_c01194{margin-left:-2.509800px;}
._0_c01194{margin-left:-1.314600px;}
._1_c01194{width:1.135201px;}
._4_c01194{width:3.805800px;}
.fc1_c01194{color:rgb(255,0,0);}
.fc0_c01194{color:rgb(0,0,0);}
.fs0_c01194{font-size:59.760000px;}
.fs3_c01194{font-size:72.000000px;}
.fs1_c01194{font-size:95.760000px;}
.fs2_c01194{font-size:95.904000px;}
.y0_c01194{bottom:0.000000px;}
.y2_c01194{bottom:12.636000px;}
.y4_c01194{bottom:14.508000px;}
.y1_c01194{bottom:30.636000px;}
.y3_c01194{bottom:32.508000px;}
.y12_c01194{bottom:133.236000px;}
.y6_c01194{bottom:135.720000px;}
.y11_c01194{bottom:167.790000px;}
.y10_c01194{bottom:202.350000px;}
.yf_c01194{bottom:236.955000px;}
.ye_c01194{bottom:271.515000px;}
.yd_c01194{bottom:306.075000px;}
.yc_c01194{bottom:340.635000px;}
.yb_c01194{bottom:375.195000px;}
.ya_c01194{bottom:409.785000px;}
.y9_c01194{bottom:444.345000px;}
.y8_c01194{bottom:478.905000px;}
.y7_c01194{bottom:513.465000px;}
.y5_c01194{bottom:646.305000px;}
.y13_c01194{bottom:685.050000px;}
.h1_c01194{height:43.565273px;}
.h5_c01194{height:52.417969px;}
.h2_c01194{height:69.715898px;}
.h4_c01194{height:69.809414px;}
.h3_c01194{height:69.914391px;}
.h0_c01194{height:810.000000px;}
.w0_c01194{width:1080.000000px;}
.x0_c01194{left:0.000000px;}
.x3_c01194{left:62.172000px;}
.x6_c01194{left:72.504000px;}
.x7_c01194{left:157.350000px;}
.x2_c01194{left:432.510000px;}
.x1_c01194{left:437.370000px;}
.x5_c01194{left:698.040000px;}
.x8_c01194{left:786.780000px;}
.x9_c01194{left:826.740000px;}
.x4_c01194{left:860.430000px;}
@media print{
.v0_c01194{vertical-align:0.000000pt;}
.ls8_c01194{letter-spacing:-0.182933pt;}
.ls7_c01194{letter-spacing:-0.137600pt;}
.ls4_c01194{letter-spacing:-0.094933pt;}
.ls5_c01194{letter-spacing:-0.037867pt;}
.ls3_c01194{letter-spacing:0.000000pt;}
.ls9_c01194{letter-spacing:0.016533pt;}
.ls6_c01194{letter-spacing:0.033067pt;}
.lsa_c01194{letter-spacing:0.210133pt;}
.ls1_c01194{letter-spacing:1.296640pt;}
.ls0_c01194{letter-spacing:1.901056pt;}
.ls2_c01194{letter-spacing:20.496213pt;}
.ws0_c01194{word-spacing:-53.120000pt;}
.ws2_c01194{word-spacing:-23.663360pt;}
.ws4_c01194{word-spacing:0.000000pt;}
.ws1_c01194{word-spacing:49.247360pt;}
.ws3_c01194{word-spacing:49.317824pt;}
._3_c01194{margin-left:-4.992000pt;}
._2_c01194{margin-left:-2.230934pt;}
._0_c01194{margin-left:-1.168534pt;}
._1_c01194{width:1.009068pt;}
._4_c01194{width:3.382934pt;}
.fs0_c01194{font-size:53.120000pt;}
.fs3_c01194{font-size:64.000000pt;}
.fs1_c01194{font-size:85.120000pt;}
.fs2_c01194{font-size:85.248000pt;}
.y0_c01194{bottom:0.000000pt;}
.y2_c01194{bottom:11.232000pt;}
.y4_c01194{bottom:12.896000pt;}
.y1_c01194{bottom:27.232000pt;}
.y3_c01194{bottom:28.896000pt;}
.y12_c01194{bottom:118.432000pt;}
.y6_c01194{bottom:120.640000pt;}
.y11_c01194{bottom:149.146667pt;}
.y10_c01194{bottom:179.866667pt;}
.yf_c01194{bottom:210.626667pt;}
.ye_c01194{bottom:241.346667pt;}
.yd_c01194{bottom:272.066667pt;}
.yc_c01194{bottom:302.786667pt;}
.yb_c01194{bottom:333.506667pt;}
.ya_c01194{bottom:364.253333pt;}
.y9_c01194{bottom:394.973333pt;}
.y8_c01194{bottom:425.693333pt;}
.y7_c01194{bottom:456.413333pt;}
.y5_c01194{bottom:574.493333pt;}
.y13_c01194{bottom:608.933333pt;}
.h1_c01194{height:38.724688pt;}
.h5_c01194{height:46.593750pt;}
.h2_c01194{height:61.969687pt;}
.h4_c01194{height:62.052813pt;}
.h3_c01194{height:62.146125pt;}
.h0_c01194{height:720.000000pt;}
.w0_c01194{width:960.000000pt;}
.x0_c01194{left:0.000000pt;}
.x3_c01194{left:55.264000pt;}
.x6_c01194{left:64.448000pt;}
.x7_c01194{left:139.866667pt;}
.x2_c01194{left:384.453333pt;}
.x1_c01194{left:388.773333pt;}
.x5_c01194{left:620.480000pt;}
.x8_c01194{left:699.360000pt;}
.x9_c01194{left:734.880000pt;}
.x4_c01194{left:764.826667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0176722785503d40835125d7.woff2')format("woff");}.ff1_c01195{font-family:ff1_c01195;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01195;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01195{font-family:ff2_c01195;line-height:0.728027;font-style:normal;font-weight:normal;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_b5ef70063bf143262373e961.woff2')format("woff");}.ff3_c01195{font-family:ff3_c01195;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c01195{letter-spacing:-0.106800px;}
.ls0_c01195{letter-spacing:0.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:-59.760000px;}
.ws1_c01195{word-spacing:0.000000px;}
._6_c01195{margin-left:-7.606775px;}
._5_c01195{margin-left:-5.404224px;}
._2_c01195{margin-left:-2.509800px;}
._0_c01195{margin-left:-1.314600px;}
._1_c01195{width:1.135201px;}
._3_c01195{width:2.394096px;}
._4_c01195{width:3.742183px;}
.fc2_c01195{color:rgb(0,0,255);}
.fc1_c01195{color:rgb(255,0,0);}
.fc3_c01195{color:rgb(255,255,255);}
.fc0_c01195{color:rgb(0,0,0);}
.fs0_c01195{font-size:59.760000px;}
.fs3_c01195{font-size:72.000000px;}
.fs2_c01195{font-size:84.240000px;}
.fs1_c01195{font-size:95.760000px;}
.y0_c01195{bottom:0.000000px;}
.y2_c01195{bottom:12.636000px;}
.y4_c01195{bottom:14.508000px;}
.y1_c01195{bottom:30.636000px;}
.y3_c01195{bottom:32.508000px;}
.y6_c01195{bottom:98.172000px;}
.y9_c01195{bottom:254.730000px;}
.y8_c01195{bottom:327.630000px;}
.y7_c01195{bottom:505.365000px;}
.ya_c01195{bottom:585.390000px;}
.y5_c01195{bottom:643.110000px;}
.yb_c01195{bottom:685.050000px;}
.h1_c01195{height:43.565273px;}
.h5_c01195{height:52.417969px;}
.h4_c01195{height:61.329023px;}
.h3_c01195{height:61.411289px;}
.h2_c01195{height:69.715898px;}
.h0_c01195{height:810.000000px;}
.w0_c01195{width:1080.000000px;}
.x0_c01195{left:0.000000px;}
.x3_c01195{left:62.172000px;}
.x6_c01195{left:72.504000px;}
.xa_c01195{left:317.670000px;}
.x7_c01195{left:373.935000px;}
.x2_c01195{left:432.510000px;}
.x1_c01195{left:437.370000px;}
.x9_c01195{left:652.395000px;}
.x5_c01195{left:698.040000px;}
.x8_c01195{left:770.010000px;}
.xb_c01195{left:801.360000px;}
.x4_c01195{left:860.430000px;}
@media print{
.v0_c01195{vertical-align:0.000000pt;}
.ls1_c01195{letter-spacing:-0.094933pt;}
.ls0_c01195{letter-spacing:0.000000pt;}
.ws0_c01195{word-spacing:-53.120000pt;}
.ws1_c01195{word-spacing:0.000000pt;}
._6_c01195{margin-left:-6.761578pt;}
._5_c01195{margin-left:-4.803755pt;}
._2_c01195{margin-left:-2.230934pt;}
._0_c01195{margin-left:-1.168534pt;}
._1_c01195{width:1.009068pt;}
._3_c01195{width:2.128085pt;}
._4_c01195{width:3.326385pt;}
.fs0_c01195{font-size:53.120000pt;}
.fs3_c01195{font-size:64.000000pt;}
.fs2_c01195{font-size:74.880000pt;}
.fs1_c01195{font-size:85.120000pt;}
.y0_c01195{bottom:0.000000pt;}
.y2_c01195{bottom:11.232000pt;}
.y4_c01195{bottom:12.896000pt;}
.y1_c01195{bottom:27.232000pt;}
.y3_c01195{bottom:28.896000pt;}
.y6_c01195{bottom:87.264000pt;}
.y9_c01195{bottom:226.426667pt;}
.y8_c01195{bottom:291.226667pt;}
.y7_c01195{bottom:449.213333pt;}
.ya_c01195{bottom:520.346667pt;}
.y5_c01195{bottom:571.653333pt;}
.yb_c01195{bottom:608.933333pt;}
.h1_c01195{height:38.724688pt;}
.h5_c01195{height:46.593750pt;}
.h4_c01195{height:54.514687pt;}
.h3_c01195{height:54.587812pt;}
.h2_c01195{height:61.969687pt;}
.h0_c01195{height:720.000000pt;}
.w0_c01195{width:960.000000pt;}
.x0_c01195{left:0.000000pt;}
.x3_c01195{left:55.264000pt;}
.x6_c01195{left:64.448000pt;}
.xa_c01195{left:282.373333pt;}
.x7_c01195{left:332.386667pt;}
.x2_c01195{left:384.453333pt;}
.x1_c01195{left:388.773333pt;}
.x9_c01195{left:579.906667pt;}
.x5_c01195{left:620.480000pt;}
.x8_c01195{left:684.453333pt;}
.xb_c01195{left:712.320000pt;}
.x4_c01195{left:764.826667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9593f7232ac911f77400114a.woff2')format("woff");}.ff1_c01196{font-family:ff1_c01196;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01196;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01196{font-family:ff2_c01196;line-height:0.728027;font-style:normal;font-weight:normal;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_0e51549bb56a3bc874a0d8d5.woff2')format("woff");}.ff3_c01196{font-family:ff3_c01196;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c01196{letter-spacing:-0.106800px;}
.ls0_c01196{letter-spacing:0.000000px;}
.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:-59.760000px;}
.ws1_c01196{word-spacing:0.000000px;}
._2_c01196{margin-left:-2.509800px;}
._0_c01196{margin-left:-1.314600px;}
._1_c01196{width:1.135201px;}
.fc0_c01196{color:rgb(0,0,0);}
.fs0_c01196{font-size:59.760000px;}
.fs1_c01196{font-size:167.760000px;}
.fs2_c01196{font-size:167.904000px;}
.y0_c01196{bottom:0.000000px;}
.y2_c01196{bottom:12.636000px;}
.y4_c01196{bottom:14.508000px;}
.y1_c01196{bottom:30.636000px;}
.y3_c01196{bottom:32.508000px;}
.y7_c01196{bottom:347.940000px;}
.y6_c01196{bottom:404.490000px;}
.y5_c01196{bottom:460.830000px;}
.h1_c01196{height:43.565273px;}
.h2_c01196{height:122.133867px;}
.h3_c01196{height:122.238703px;}
.h0_c01196{height:810.000000px;}
.w0_c01196{width:1080.000000px;}
.x0_c01196{left:0.000000px;}
.x3_c01196{left:62.172000px;}
.x8_c01196{left:293.685000px;}
.x6_c01196{left:396.465000px;}
.x2_c01196{left:432.510000px;}
.x7_c01196{left:436.290000px;}
.x1_c01196{left:437.370000px;}
.x5_c01196{left:698.040000px;}
.x4_c01196{left:860.430000px;}
@media print{
.v0_c01196{vertical-align:0.000000pt;}
.ls1_c01196{letter-spacing:-0.094933pt;}
.ls0_c01196{letter-spacing:0.000000pt;}
.ws0_c01196{word-spacing:-53.120000pt;}
.ws1_c01196{word-spacing:0.000000pt;}
._2_c01196{margin-left:-2.230934pt;}
._0_c01196{margin-left:-1.168534pt;}
._1_c01196{width:1.009068pt;}
.fs0_c01196{font-size:53.120000pt;}
.fs1_c01196{font-size:149.120000pt;}
.fs2_c01196{font-size:149.248000pt;}
.y0_c01196{bottom:0.000000pt;}
.y2_c01196{bottom:11.232000pt;}
.y4_c01196{bottom:12.896000pt;}
.y1_c01196{bottom:27.232000pt;}
.y3_c01196{bottom:28.896000pt;}
.y7_c01196{bottom:309.280000pt;}
.y6_c01196{bottom:359.546667pt;}
.y5_c01196{bottom:409.626667pt;}
.h1_c01196{height:38.724688pt;}
.h2_c01196{height:108.563437pt;}
.h3_c01196{height:108.656625pt;}
.h0_c01196{height:720.000000pt;}
.w0_c01196{width:960.000000pt;}
.x0_c01196{left:0.000000pt;}
.x3_c01196{left:55.264000pt;}
.x8_c01196{left:261.053333pt;}
.x6_c01196{left:352.413333pt;}
.x2_c01196{left:384.453333pt;}
.x7_c01196{left:387.813333pt;}
.x1_c01196{left:388.773333pt;}
.x5_c01196{left:620.480000pt;}
.x4_c01196{left:764.826667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e6d68ffc73810047a1e6596b.woff2')format("woff");}.ff1_c01197{font-family:ff1_c01197;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01197;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01197{font-family:ff2_c01197;line-height:0.728027;font-style:normal;font-weight:normal;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_e761fe85768943f6e187116a.woff2')format("woff");}.ff3_c01197{font-family:ff3_c01197;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c01197{letter-spacing:-0.106800px;}
.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:-59.760000px;}
.ws1_c01197{word-spacing:0.000000px;}
._2_c01197{margin-left:-2.509800px;}
._0_c01197{margin-left:-1.314600px;}
._1_c01197{width:1.135201px;}
._3_c01197{width:2.176249px;}
.fc1_c01197{color:rgb(255,0,0);}
.fc0_c01197{color:rgb(0,0,0);}
.fs0_c01197{font-size:59.760000px;}
.fs2_c01197{font-size:72.000000px;}
.fs1_c01197{font-size:95.760000px;}
.y0_c01197{bottom:0.000000px;}
.y2_c01197{bottom:12.636000px;}
.y4_c01197{bottom:14.508000px;}
.y1_c01197{bottom:30.636000px;}
.y3_c01197{bottom:32.508000px;}
.y5_c01197{bottom:647.670000px;}
.y6_c01197{bottom:685.050000px;}
.h1_c01197{height:43.565273px;}
.h3_c01197{height:52.417969px;}
.h2_c01197{height:69.715898px;}
.h0_c01197{height:810.000000px;}
.w0_c01197{width:1080.000000px;}
.x0_c01197{left:0.000000px;}
.x3_c01197{left:62.172000px;}
.x6_c01197{left:72.504000px;}
.x2_c01197{left:432.510000px;}
.x1_c01197{left:437.370000px;}
.x5_c01197{left:698.040000px;}
.x4_c01197{left:860.430000px;}
@media print{
.v0_c01197{vertical-align:0.000000pt;}
.ls1_c01197{letter-spacing:-0.094933pt;}
.ls0_c01197{letter-spacing:0.000000pt;}
.ws0_c01197{word-spacing:-53.120000pt;}
.ws1_c01197{word-spacing:0.000000pt;}
._2_c01197{margin-left:-2.230934pt;}
._0_c01197{margin-left:-1.168534pt;}
._1_c01197{width:1.009068pt;}
._3_c01197{width:1.934444pt;}
.fs0_c01197{font-size:53.120000pt;}
.fs2_c01197{font-size:64.000000pt;}
.fs1_c01197{font-size:85.120000pt;}
.y0_c01197{bottom:0.000000pt;}
.y2_c01197{bottom:11.232000pt;}
.y4_c01197{bottom:12.896000pt;}
.y1_c01197{bottom:27.232000pt;}
.y3_c01197{bottom:28.896000pt;}
.y5_c01197{bottom:575.706667pt;}
.y6_c01197{bottom:608.933333pt;}
.h1_c01197{height:38.724688pt;}
.h3_c01197{height:46.593750pt;}
.h2_c01197{height:61.969687pt;}
.h0_c01197{height:720.000000pt;}
.w0_c01197{width:960.000000pt;}
.x0_c01197{left:0.000000pt;}
.x3_c01197{left:55.264000pt;}
.x6_c01197{left:64.448000pt;}
.x2_c01197{left:384.453333pt;}
.x1_c01197{left:388.773333pt;}
.x5_c01197{left:620.480000pt;}
.x4_c01197{left:764.826667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e93be44e1ea0728ee9f7b0e.woff2')format("woff");}.ff1_c01198{font-family:ff1_c01198;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01198;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01198{font-family:ff2_c01198;line-height:0.728027;font-style:normal;font-weight:normal;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_85d072bd0e07f052705c5e74.woff2')format("woff");}.ff3_c01198{font-family:ff3_c01198;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01198{vertical-align:0.000000px;}
.ls1_c01198{letter-spacing:-0.106800px;}
.ls0_c01198{letter-spacing:0.000000px;}
.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:-59.760000px;}
.ws1_c01198{word-spacing:0.000000px;}
._2_c01198{margin-left:-2.509800px;}
._0_c01198{margin-left:-1.314600px;}
._1_c01198{width:1.135201px;}
._3_c01198{width:2.681663px;}
.fc1_c01198{color:rgb(255,0,0);}
.fc0_c01198{color:rgb(0,0,0);}
.fs0_c01198{font-size:59.760000px;}
.fs2_c01198{font-size:72.000000px;}
.fs1_c01198{font-size:95.760000px;}
.y0_c01198{bottom:0.000000px;}
.y2_c01198{bottom:12.636000px;}
.y4_c01198{bottom:14.508000px;}
.y1_c01198{bottom:30.636000px;}
.y3_c01198{bottom:32.508000px;}
.y5_c01198{bottom:647.670000px;}
.y6_c01198{bottom:685.050000px;}
.h1_c01198{height:43.565273px;}
.h3_c01198{height:52.417969px;}
.h2_c01198{height:69.715898px;}
.h0_c01198{height:810.000000px;}
.w0_c01198{width:1080.000000px;}
.x0_c01198{left:0.000000px;}
.x3_c01198{left:62.172000px;}
.x6_c01198{left:72.504000px;}
.x2_c01198{left:432.510000px;}
.x1_c01198{left:437.370000px;}
.x5_c01198{left:698.040000px;}
.x4_c01198{left:852.150000px;}
@media print{
.v0_c01198{vertical-align:0.000000pt;}
.ls1_c01198{letter-spacing:-0.094933pt;}
.ls0_c01198{letter-spacing:0.000000pt;}
.ws0_c01198{word-spacing:-53.120000pt;}
.ws1_c01198{word-spacing:0.000000pt;}
._2_c01198{margin-left:-2.230934pt;}
._0_c01198{margin-left:-1.168534pt;}
._1_c01198{width:1.009068pt;}
._3_c01198{width:2.383700pt;}
.fs0_c01198{font-size:53.120000pt;}
.fs2_c01198{font-size:64.000000pt;}
.fs1_c01198{font-size:85.120000pt;}
.y0_c01198{bottom:0.000000pt;}
.y2_c01198{bottom:11.232000pt;}
.y4_c01198{bottom:12.896000pt;}
.y1_c01198{bottom:27.232000pt;}
.y3_c01198{bottom:28.896000pt;}
.y5_c01198{bottom:575.706667pt;}
.y6_c01198{bottom:608.933333pt;}
.h1_c01198{height:38.724688pt;}
.h3_c01198{height:46.593750pt;}
.h2_c01198{height:61.969687pt;}
.h0_c01198{height:720.000000pt;}
.w0_c01198{width:960.000000pt;}
.x0_c01198{left:0.000000pt;}
.x3_c01198{left:55.264000pt;}
.x6_c01198{left:64.448000pt;}
.x2_c01198{left:384.453333pt;}
.x1_c01198{left:388.773333pt;}
.x5_c01198{left:620.480000pt;}
.x4_c01198{left:757.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_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_ea0c9fb7566524aa814585d5.woff2')format("woff");}.ff1_c01199{font-family:ff1_c01199;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01199;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01199{font-family:ff2_c01199;line-height:0.728027;font-style:normal;font-weight:normal;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_72cd05c628c024b44fe8136a.woff2')format("woff");}.ff3_c01199{font-family:ff3_c01199;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c01199{letter-spacing:-0.106800px;}
.ls2_c01199{letter-spacing:0.000000px;}
.ls1_c01199{letter-spacing:0.260880px;}
.ls0_c01199{letter-spacing:0.284880px;}
.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:-59.760000px;}
.ws1_c01199{word-spacing:0.000000px;}
._5_c01199{margin-left:-8.006089px;}
._3_c01199{margin-left:-3.926352px;}
._2_c01199{margin-left:-2.509800px;}
._0_c01199{margin-left:-1.314600px;}
._1_c01199{width:1.135201px;}
._4_c01199{width:3.275976px;}
.fc1_c01199{color:rgb(255,0,0);}
.fc0_c01199{color:rgb(0,0,0);}
.fs0_c01199{font-size:59.760000px;}
.fs2_c01199{font-size:72.000000px;}
.fs1_c01199{font-size:95.760000px;}
.y0_c01199{bottom:0.000000px;}
.y2_c01199{bottom:12.636000px;}
.y4_c01199{bottom:14.508000px;}
.y1_c01199{bottom:30.636000px;}
.y3_c01199{bottom:32.508000px;}
.y7_c01199{bottom:82.224000px;}
.y5_c01199{bottom:647.670000px;}
.y6_c01199{bottom:685.050000px;}
.h1_c01199{height:43.565273px;}
.h3_c01199{height:52.417969px;}
.h2_c01199{height:69.715898px;}
.h0_c01199{height:810.000000px;}
.w0_c01199{width:1080.000000px;}
.x0_c01199{left:0.000000px;}
.x3_c01199{left:62.172000px;}
.x6_c01199{left:72.504000px;}
.x7_c01199{left:80.244000px;}
.x2_c01199{left:432.510000px;}
.x1_c01199{left:437.370000px;}
.x5_c01199{left:698.040000px;}
.x4_c01199{left:852.150000px;}
@media print{
.v0_c01199{vertical-align:0.000000pt;}
.ls3_c01199{letter-spacing:-0.094933pt;}
.ls2_c01199{letter-spacing:0.000000pt;}
.ls1_c01199{letter-spacing:0.231893pt;}
.ls0_c01199{letter-spacing:0.253227pt;}
.ws0_c01199{word-spacing:-53.120000pt;}
.ws1_c01199{word-spacing:0.000000pt;}
._5_c01199{margin-left:-7.116524pt;}
._3_c01199{margin-left:-3.490090pt;}
._2_c01199{margin-left:-2.230934pt;}
._0_c01199{margin-left:-1.168534pt;}
._1_c01199{width:1.009068pt;}
._4_c01199{width:2.911979pt;}
.fs0_c01199{font-size:53.120000pt;}
.fs2_c01199{font-size:64.000000pt;}
.fs1_c01199{font-size:85.120000pt;}
.y0_c01199{bottom:0.000000pt;}
.y2_c01199{bottom:11.232000pt;}
.y4_c01199{bottom:12.896000pt;}
.y1_c01199{bottom:27.232000pt;}
.y3_c01199{bottom:28.896000pt;}
.y7_c01199{bottom:73.088000pt;}
.y5_c01199{bottom:575.706667pt;}
.y6_c01199{bottom:608.933333pt;}
.h1_c01199{height:38.724688pt;}
.h3_c01199{height:46.593750pt;}
.h2_c01199{height:61.969687pt;}
.h0_c01199{height:720.000000pt;}
.w0_c01199{width:960.000000pt;}
.x0_c01199{left:0.000000pt;}
.x3_c01199{left:55.264000pt;}
.x6_c01199{left:64.448000pt;}
.x7_c01199{left:71.328000pt;}
.x2_c01199{left:384.453333pt;}
.x1_c01199{left:388.773333pt;}
.x5_c01199{left:620.480000pt;}
.x4_c01199{left:757.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_808913ee1e34ff98b08c4125.woff2')format("woff");}.ff1_c01200{font-family:ff1_c01200;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01200;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01200{font-family:ff2_c01200;line-height:0.728027;font-style:normal;font-weight:normal;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_72cd05c628c024b44fe8136a.woff2')format("woff");}.ff3_c01200{font-family:ff3_c01200;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01200{vertical-align:0.000000px;}
.ls1_c01200{letter-spacing:-0.106800px;}
.ls0_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:-59.760000px;}
.ws1_c01200{word-spacing:-16.613280px;}
.ws2_c01200{word-spacing:0.000000px;}
._5_c01200{margin-left:-8.201115px;}
._4_c01200{margin-left:-3.926352px;}
._2_c01200{margin-left:-2.509800px;}
._0_c01200{margin-left:-1.314600px;}
._1_c01200{width:1.135201px;}
._3_c01200{width:3.710160px;}
.fc1_c01200{color:rgb(255,0,0);}
.fc0_c01200{color:rgb(0,0,0);}
.fs0_c01200{font-size:59.760000px;}
.fs1_c01200{font-size:72.000000px;}
.fs2_c01200{font-size:95.760000px;}
.y0_c01200{bottom:0.000000px;}
.y2_c01200{bottom:12.636000px;}
.y4_c01200{bottom:14.508000px;}
.y1_c01200{bottom:30.636000px;}
.y3_c01200{bottom:32.508000px;}
.y5_c01200{bottom:82.224000px;}
.y7_c01200{bottom:647.670000px;}
.y6_c01200{bottom:685.050000px;}
.h1_c01200{height:43.565273px;}
.h2_c01200{height:52.417969px;}
.h3_c01200{height:69.715898px;}
.h0_c01200{height:810.000000px;}
.w0_c01200{width:1080.000000px;}
.x0_c01200{left:0.000000px;}
.x3_c01200{left:62.172000px;}
.x7_c01200{left:72.504000px;}
.x6_c01200{left:80.244000px;}
.x2_c01200{left:432.510000px;}
.x1_c01200{left:437.370000px;}
.x5_c01200{left:698.040000px;}
.x4_c01200{left:852.150000px;}
@media print{
.v0_c01200{vertical-align:0.000000pt;}
.ls1_c01200{letter-spacing:-0.094933pt;}
.ls0_c01200{letter-spacing:0.000000pt;}
.ws0_c01200{word-spacing:-53.120000pt;}
.ws1_c01200{word-spacing:-14.767360pt;}
.ws2_c01200{word-spacing:0.000000pt;}
._5_c01200{margin-left:-7.289880pt;}
._4_c01200{margin-left:-3.490090pt;}
._2_c01200{margin-left:-2.230934pt;}
._0_c01200{margin-left:-1.168534pt;}
._1_c01200{width:1.009068pt;}
._3_c01200{width:3.297920pt;}
.fs0_c01200{font-size:53.120000pt;}
.fs1_c01200{font-size:64.000000pt;}
.fs2_c01200{font-size:85.120000pt;}
.y0_c01200{bottom:0.000000pt;}
.y2_c01200{bottom:11.232000pt;}
.y4_c01200{bottom:12.896000pt;}
.y1_c01200{bottom:27.232000pt;}
.y3_c01200{bottom:28.896000pt;}
.y5_c01200{bottom:73.088000pt;}
.y7_c01200{bottom:575.706667pt;}
.y6_c01200{bottom:608.933333pt;}
.h1_c01200{height:38.724688pt;}
.h2_c01200{height:46.593750pt;}
.h3_c01200{height:61.969687pt;}
.h0_c01200{height:720.000000pt;}
.w0_c01200{width:960.000000pt;}
.x0_c01200{left:0.000000pt;}
.x3_c01200{left:55.264000pt;}
.x7_c01200{left:64.448000pt;}
.x6_c01200{left:71.328000pt;}
.x2_c01200{left:384.453333pt;}
.x1_c01200{left:388.773333pt;}
.x5_c01200{left:620.480000pt;}
.x4_c01200{left:757.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_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_c3818495e4be7b9a76716f5a.woff2')format("woff");}.ff1_c01201{font-family:ff1_c01201;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01201;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01201{font-family:ff2_c01201;line-height:0.728027;font-style:normal;font-weight:normal;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_0f4282d95a993ae74e5b5b28.woff2')format("woff");}.ff3_c01201{font-family:ff3_c01201;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c01201{letter-spacing:-0.106800px;}
.ls3_c01201{letter-spacing:0.000000px;}
.ls0_c01201{letter-spacing:0.018600px;}
.ls6_c01201{letter-spacing:0.037200px;}
.ls7_c01201{letter-spacing:0.341400px;}
.ls5_c01201{letter-spacing:0.756000px;}
.ls1_c01201{letter-spacing:30.258720px;}
.ls2_c01201{letter-spacing:30.277200px;}
.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:-59.760000px;}
.ws1_c01201{word-spacing:-27.377280px;}
.ws5_c01201{word-spacing:-26.962680px;}
.ws2_c01201{word-spacing:-26.658480px;}
.ws4_c01201{word-spacing:-26.639880px;}
.ws3_c01201{word-spacing:-26.621280px;}
.ws6_c01201{word-spacing:-16.613280px;}
.ws7_c01201{word-spacing:-16.506480px;}
.ws8_c01201{word-spacing:0.000000px;}
._2_c01201{margin-left:-2.509800px;}
._0_c01201{margin-left:-1.314600px;}
._1_c01201{width:1.135201px;}
._7_c01201{width:3.686880px;}
._3_c01201{width:15.856803px;}
._4_c01201{width:17.321697px;}
._6_c01201{width:30.563519px;}
._5_c01201{width:33.858629px;}
.fc1_c01201{color:rgb(255,0,0);}
.fc0_c01201{color:rgb(0,0,0);}
.fs0_c01201{font-size:59.760000px;}
.fs2_c01201{font-size:72.000000px;}
.fs1_c01201{font-size:95.760000px;}
.y0_c01201{bottom:0.000000px;}
.y2_c01201{bottom:12.636000px;}
.y4_c01201{bottom:14.508000px;}
.y1_c01201{bottom:30.636000px;}
.y3_c01201{bottom:32.508000px;}
.yf_c01201{bottom:419.325000px;}
.ye_c01201{bottom:437.325000px;}
.yd_c01201{bottom:455.325000px;}
.yc_c01201{bottom:473.325000px;}
.yb_c01201{bottom:493.350000px;}
.ya_c01201{bottom:522.150000px;}
.y9_c01201{bottom:550.950000px;}
.y8_c01201{bottom:579.750000px;}
.y7_c01201{bottom:608.550000px;}
.y5_c01201{bottom:647.670000px;}
.y6_c01201{bottom:685.050000px;}
.h1_c01201{height:43.565273px;}
.h3_c01201{height:52.417969px;}
.h2_c01201{height:69.715898px;}
.h4_c01201{height:69.809414px;}
.h0_c01201{height:810.000000px;}
.w0_c01201{width:1080.000000px;}
.x0_c01201{left:0.000000px;}
.x3_c01201{left:62.172000px;}
.x6_c01201{left:72.504000px;}
.x2_c01201{left:432.510000px;}
.x1_c01201{left:437.370000px;}
.x7_c01201{left:550.905000px;}
.x5_c01201{left:698.040000px;}
.x4_c01201{left:852.150000px;}
@media print{
.v0_c01201{vertical-align:0.000000pt;}
.ls4_c01201{letter-spacing:-0.094933pt;}
.ls3_c01201{letter-spacing:0.000000pt;}
.ls0_c01201{letter-spacing:0.016533pt;}
.ls6_c01201{letter-spacing:0.033067pt;}
.ls7_c01201{letter-spacing:0.303467pt;}
.ls5_c01201{letter-spacing:0.672000pt;}
.ls1_c01201{letter-spacing:26.896640pt;}
.ls2_c01201{letter-spacing:26.913067pt;}
.ws0_c01201{word-spacing:-53.120000pt;}
.ws1_c01201{word-spacing:-24.335360pt;}
.ws5_c01201{word-spacing:-23.966827pt;}
.ws2_c01201{word-spacing:-23.696427pt;}
.ws4_c01201{word-spacing:-23.679893pt;}
.ws3_c01201{word-spacing:-23.663360pt;}
.ws6_c01201{word-spacing:-14.767360pt;}
.ws7_c01201{word-spacing:-14.672427pt;}
.ws8_c01201{word-spacing:0.000000pt;}
._2_c01201{margin-left:-2.230934pt;}
._0_c01201{margin-left:-1.168534pt;}
._1_c01201{width:1.009068pt;}
._7_c01201{width:3.277227pt;}
._3_c01201{width:14.094936pt;}
._4_c01201{width:15.397064pt;}
._6_c01201{width:27.167572pt;}
._5_c01201{width:30.096559pt;}
.fs0_c01201{font-size:53.120000pt;}
.fs2_c01201{font-size:64.000000pt;}
.fs1_c01201{font-size:85.120000pt;}
.y0_c01201{bottom:0.000000pt;}
.y2_c01201{bottom:11.232000pt;}
.y4_c01201{bottom:12.896000pt;}
.y1_c01201{bottom:27.232000pt;}
.y3_c01201{bottom:28.896000pt;}
.yf_c01201{bottom:372.733333pt;}
.ye_c01201{bottom:388.733333pt;}
.yd_c01201{bottom:404.733333pt;}
.yc_c01201{bottom:420.733333pt;}
.yb_c01201{bottom:438.533333pt;}
.ya_c01201{bottom:464.133333pt;}
.y9_c01201{bottom:489.733333pt;}
.y8_c01201{bottom:515.333333pt;}
.y7_c01201{bottom:540.933333pt;}
.y5_c01201{bottom:575.706667pt;}
.y6_c01201{bottom:608.933333pt;}
.h1_c01201{height:38.724688pt;}
.h3_c01201{height:46.593750pt;}
.h2_c01201{height:61.969687pt;}
.h4_c01201{height:62.052813pt;}
.h0_c01201{height:720.000000pt;}
.w0_c01201{width:960.000000pt;}
.x0_c01201{left:0.000000pt;}
.x3_c01201{left:55.264000pt;}
.x6_c01201{left:64.448000pt;}
.x2_c01201{left:384.453333pt;}
.x1_c01201{left:388.773333pt;}
.x7_c01201{left:489.693333pt;}
.x5_c01201{left:620.480000pt;}
.x4_c01201{left:757.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_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_cab1d513d5e6d44f442fdcef.woff2')format("woff");}.ff1_c01202{font-family:ff1_c01202;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01202;src:url('chunks/assets/font_2b2eeccfe00ad1c75c0acf36.woff2')format("woff");}.ff2_c01202{font-family:ff2_c01202;line-height:0.728027;font-style:normal;font-weight:normal;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_627eef34e9609d97ed0496da.woff2')format("woff");}.ff3_c01202{font-family:ff3_c01202;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls9_c01202{letter-spacing:-0.106800px;}
.ls8_c01202{letter-spacing:0.000000px;}
.ls3_c01202{letter-spacing:0.018600px;}
.ls0_c01202{letter-spacing:0.037200px;}
.lsb_c01202{letter-spacing:0.341400px;}
.ls6_c01202{letter-spacing:0.738720px;}
.lsa_c01202{letter-spacing:0.756000px;}
.ls7_c01202{letter-spacing:0.871923px;}
.ls4_c01202{letter-spacing:7.218720px;}
.ls5_c01202{letter-spacing:7.976520px;}
.ls2_c01202{letter-spacing:15.138720px;}
.ls1_c01202{letter-spacing:15.139200px;}
.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;}
}
.ws4_c01202{word-spacing:-95.760000px;}
.ws0_c01202{word-spacing:-59.760000px;}
.ws2_c01202{word-spacing:-26.962680px;}
.ws1_c01202{word-spacing:-26.658480px;}
.ws3_c01202{word-spacing:-26.639880px;}
.ws5_c01202{word-spacing:0.000000px;}
._9_c01202{margin-left:-4.927810px;}
._2_c01202{margin-left:-2.509800px;}
._0_c01202{margin-left:-1.314600px;}
._1_c01202{width:1.135201px;}
._3_c01202{width:3.597024px;}
._8_c01202{width:7.691846px;}
._4_c01202{width:9.264014px;}
._5_c01202{width:10.269586px;}
._6_c01202{width:14.816160px;}
._7_c01202{width:15.822190px;}
.fc2_c01202{color:rgb(0,0,255);}
.fc1_c01202{color:rgb(255,0,0);}
.fc0_c01202{color:rgb(0,0,0);}
.fs0_c01202{font-size:59.760000px;}
.fs2_c01202{font-size:72.000000px;}
.fs1_c01202{font-size:95.760000px;}
.y0_c01202{bottom:0.000000px;}
.y2_c01202{bottom:12.636000px;}
.y4_c01202{bottom:14.508000px;}
.y1_c01202{bottom:30.636000px;}
.y3_c01202{bottom:32.508000px;}
.yb_c01202{bottom:78.984000px;}
.yc_c01202{bottom:501.150000px;}
.ya_c01202{bottom:501.195000px;}
.y9_c01202{bottom:529.995000px;}
.y8_c01202{bottom:558.795000px;}
.y7_c01202{bottom:587.595000px;}
.y5_c01202{bottom:647.670000px;}
.y6_c01202{bottom:685.050000px;}
.h1_c01202{height:43.565273px;}
.h3_c01202{height:52.417969px;}
.h2_c01202{height:69.715898px;}
.h4_c01202{height:69.809414px;}
.h0_c01202{height:810.000000px;}
.w0_c01202{width:1080.000000px;}
.x0_c01202{left:0.000000px;}
.x3_c01202{left:62.172000px;}
.x8_c01202{left:64.008000px;}
.x6_c01202{left:72.504000px;}
.x9_c01202{left:78.768000px;}
.x7_c01202{left:334.875000px;}
.x2_c01202{left:432.510000px;}
.x1_c01202{left:437.370000px;}
.x5_c01202{left:698.040000px;}
.x4_c01202{left:852.150000px;}
@media print{
.v0_c01202{vertical-align:0.000000pt;}
.ls9_c01202{letter-spacing:-0.094933pt;}
.ls8_c01202{letter-spacing:0.000000pt;}
.ls3_c01202{letter-spacing:0.016533pt;}
.ls0_c01202{letter-spacing:0.033067pt;}
.lsb_c01202{letter-spacing:0.303467pt;}
.ls6_c01202{letter-spacing:0.656640pt;}
.lsa_c01202{letter-spacing:0.672000pt;}
.ls7_c01202{letter-spacing:0.775043pt;}
.ls4_c01202{letter-spacing:6.416640pt;}
.ls5_c01202{letter-spacing:7.090240pt;}
.ls2_c01202{letter-spacing:13.456640pt;}
.ls1_c01202{letter-spacing:13.457067pt;}
.ws4_c01202{word-spacing:-85.120000pt;}
.ws0_c01202{word-spacing:-53.120000pt;}
.ws2_c01202{word-spacing:-23.966827pt;}
.ws1_c01202{word-spacing:-23.696427pt;}
.ws3_c01202{word-spacing:-23.679893pt;}
.ws5_c01202{word-spacing:0.000000pt;}
._9_c01202{margin-left:-4.380275pt;}
._2_c01202{margin-left:-2.230934pt;}
._0_c01202{margin-left:-1.168534pt;}
._1_c01202{width:1.009068pt;}
._3_c01202{width:3.197355pt;}
._8_c01202{width:6.837197pt;}
._4_c01202{width:8.234679pt;}
._5_c01202{width:9.128521pt;}
._6_c01202{width:13.169920pt;}
._7_c01202{width:14.064169pt;}
.fs0_c01202{font-size:53.120000pt;}
.fs2_c01202{font-size:64.000000pt;}
.fs1_c01202{font-size:85.120000pt;}
.y0_c01202{bottom:0.000000pt;}
.y2_c01202{bottom:11.232000pt;}
.y4_c01202{bottom:12.896000pt;}
.y1_c01202{bottom:27.232000pt;}
.y3_c01202{bottom:28.896000pt;}
.yb_c01202{bottom:70.208000pt;}
.yc_c01202{bottom:445.466667pt;}
.ya_c01202{bottom:445.506667pt;}
.y9_c01202{bottom:471.106667pt;}
.y8_c01202{bottom:496.706667pt;}
.y7_c01202{bottom:522.306667pt;}
.y5_c01202{bottom:575.706667pt;}
.y6_c01202{bottom:608.933333pt;}
.h1_c01202{height:38.724688pt;}
.h3_c01202{height:46.593750pt;}
.h2_c01202{height:61.969687pt;}
.h4_c01202{height:62.052813pt;}
.h0_c01202{height:720.000000pt;}
.w0_c01202{width:960.000000pt;}
.x0_c01202{left:0.000000pt;}
.x3_c01202{left:55.264000pt;}
.x8_c01202{left:56.896000pt;}
.x6_c01202{left:64.448000pt;}
.x9_c01202{left:70.016000pt;}
.x7_c01202{left:297.666667pt;}
.x2_c01202{left:384.453333pt;}
.x1_c01202{left:388.773333pt;}
.x5_c01202{left:620.480000pt;}
.x4_c01202{left:757.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_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_6e3a3b72be3e4a196e7ce5da.woff2')format("woff");}.ff1_c01203{font-family:ff1_c01203;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01203;src:url('chunks/assets/font_2b2eeccfe00ad1c75c0acf36.woff2')format("woff");}.ff2_c01203{font-family:ff2_c01203;line-height:0.728027;font-style:normal;font-weight:normal;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_4770cd01060746d04fed643b.woff2')format("woff");}.ff3_c01203{font-family:ff3_c01203;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-0.106800px;}
.ls0_c01203{letter-spacing:0.000000px;}
.ls2_c01203{letter-spacing:0.037200px;}
.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:-95.760000px;}
.ws0_c01203{word-spacing:-59.760000px;}
.ws2_c01203{word-spacing:-16.613280px;}
.ws3_c01203{word-spacing:0.000000px;}
._4_c01203{margin-left:-4.990660px;}
._2_c01203{margin-left:-2.509800px;}
._0_c01203{margin-left:-1.314600px;}
._1_c01203{width:1.135201px;}
._5_c01203{width:2.237134px;}
._3_c01203{width:3.597024px;}
.fc2_c01203{color:rgb(0,0,255);}
.fc1_c01203{color:rgb(255,0,0);}
.fc0_c01203{color:rgb(0,0,0);}
.fs0_c01203{font-size:59.760000px;}
.fs2_c01203{font-size:72.000000px;}
.fs1_c01203{font-size:95.760000px;}
.y0_c01203{bottom:0.000000px;}
.y2_c01203{bottom:12.636000px;}
.y4_c01203{bottom:14.508000px;}
.y1_c01203{bottom:30.636000px;}
.y3_c01203{bottom:32.508000px;}
.y8_c01203{bottom:85.644000px;}
.y7_c01203{bottom:105.624000px;}
.y5_c01203{bottom:647.670000px;}
.y6_c01203{bottom:685.050000px;}
.h1_c01203{height:43.565273px;}
.h3_c01203{height:52.417969px;}
.h2_c01203{height:69.715898px;}
.h4_c01203{height:69.809414px;}
.h0_c01203{height:810.000000px;}
.w0_c01203{width:1080.000000px;}
.x0_c01203{left:0.000000px;}
.x3_c01203{left:62.172000px;}
.x6_c01203{left:72.504000px;}
.x2_c01203{left:432.510000px;}
.x1_c01203{left:437.370000px;}
.x5_c01203{left:698.040000px;}
.x4_c01203{left:852.150000px;}
@media print{
.v0_c01203{vertical-align:0.000000pt;}
.ls1_c01203{letter-spacing:-0.094933pt;}
.ls0_c01203{letter-spacing:0.000000pt;}
.ls2_c01203{letter-spacing:0.033067pt;}
.ws1_c01203{word-spacing:-85.120000pt;}
.ws0_c01203{word-spacing:-53.120000pt;}
.ws2_c01203{word-spacing:-14.767360pt;}
.ws3_c01203{word-spacing:0.000000pt;}
._4_c01203{margin-left:-4.436142pt;}
._2_c01203{margin-left:-2.230934pt;}
._0_c01203{margin-left:-1.168534pt;}
._1_c01203{width:1.009068pt;}
._5_c01203{width:1.988563pt;}
._3_c01203{width:3.197355pt;}
.fs0_c01203{font-size:53.120000pt;}
.fs2_c01203{font-size:64.000000pt;}
.fs1_c01203{font-size:85.120000pt;}
.y0_c01203{bottom:0.000000pt;}
.y2_c01203{bottom:11.232000pt;}
.y4_c01203{bottom:12.896000pt;}
.y1_c01203{bottom:27.232000pt;}
.y3_c01203{bottom:28.896000pt;}
.y8_c01203{bottom:76.128000pt;}
.y7_c01203{bottom:93.888000pt;}
.y5_c01203{bottom:575.706667pt;}
.y6_c01203{bottom:608.933333pt;}
.h1_c01203{height:38.724688pt;}
.h3_c01203{height:46.593750pt;}
.h2_c01203{height:61.969687pt;}
.h4_c01203{height:62.052813pt;}
.h0_c01203{height:720.000000pt;}
.w0_c01203{width:960.000000pt;}
.x0_c01203{left:0.000000pt;}
.x3_c01203{left:55.264000pt;}
.x6_c01203{left:64.448000pt;}
.x2_c01203{left:384.453333pt;}
.x1_c01203{left:388.773333pt;}
.x5_c01203{left:620.480000pt;}
.x4_c01203{left:757.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_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_1e1ea8320507ee236ef8de11.woff2')format("woff");}.ff1_c01204{font-family:ff1_c01204;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01204;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01204{font-family:ff2_c01204;line-height:0.728027;font-style:normal;font-weight:normal;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_1bb56be381a2262a53bae311.woff2')format("woff");}.ff3_c01204{font-family:ff3_c01204;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c01204{letter-spacing:-0.106800px;}
.ls5_c01204{letter-spacing:0.000000px;}
.ls4_c01204{letter-spacing:0.018600px;}
.ls0_c01204{letter-spacing:0.037200px;}
.ls9_c01204{letter-spacing:0.309600px;}
.ls8_c01204{letter-spacing:0.341400px;}
.ls7_c01204{letter-spacing:0.511800px;}
.ls2_c01204{letter-spacing:12.258720px;}
.ls3_c01204{letter-spacing:12.978720px;}
.ls1_c01204{letter-spacing:20.898720px;}
.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:-59.760000px;}
.ws2_c01204{word-spacing:-27.133080px;}
.ws3_c01204{word-spacing:-26.962680px;}
.ws1_c01204{word-spacing:-26.658480px;}
.ws4_c01204{word-spacing:-26.639880px;}
.ws5_c01204{word-spacing:0.000000px;}
._2_c01204{margin-left:-2.509800px;}
._0_c01204{margin-left:-1.314600px;}
._1_c01204{width:1.135201px;}
._8_c01204{width:3.597024px;}
._5_c01204{width:6.722831px;}
._4_c01204{width:12.826800px;}
._3_c01204{width:20.783942px;}
._6_c01204{width:40.532962px;}
._7_c01204{width:42.057373px;}
.fc1_c01204{color:rgb(255,0,0);}
.fc0_c01204{color:rgb(0,0,0);}
.fs0_c01204{font-size:59.760000px;}
.fs3_c01204{font-size:72.000000px;}
.fs1_c01204{font-size:95.760000px;}
.fs2_c01204{font-size:95.904000px;}
.y0_c01204{bottom:0.000000px;}
.y2_c01204{bottom:12.636000px;}
.y4_c01204{bottom:14.508000px;}
.y1_c01204{bottom:30.636000px;}
.y3_c01204{bottom:32.508000px;}
.y9_c01204{bottom:133.884000px;}
.y8_c01204{bottom:162.690000px;}
.y7_c01204{bottom:191.520000px;}
.y6_c01204{bottom:220.320000px;}
.y5_c01204{bottom:249.120000px;}
.ya_c01204{bottom:647.670000px;}
.yb_c01204{bottom:685.050000px;}
.h1_c01204{height:43.565273px;}
.h5_c01204{height:52.417969px;}
.h4_c01204{height:69.715898px;}
.h2_c01204{height:69.809414px;}
.h3_c01204{height:69.914391px;}
.h0_c01204{height:810.000000px;}
.w0_c01204{width:1080.000000px;}
.x0_c01204{left:0.000000px;}
.x3_c01204{left:62.172000px;}
.x7_c01204{left:72.504000px;}
.x2_c01204{left:432.510000px;}
.x1_c01204{left:437.370000px;}
.x6_c01204{left:631.515000px;}
.x5_c01204{left:698.040000px;}
.x4_c01204{left:852.150000px;}
@media print{
.v0_c01204{vertical-align:0.000000pt;}
.ls6_c01204{letter-spacing:-0.094933pt;}
.ls5_c01204{letter-spacing:0.000000pt;}
.ls4_c01204{letter-spacing:0.016533pt;}
.ls0_c01204{letter-spacing:0.033067pt;}
.ls9_c01204{letter-spacing:0.275200pt;}
.ls8_c01204{letter-spacing:0.303467pt;}
.ls7_c01204{letter-spacing:0.454933pt;}
.ls2_c01204{letter-spacing:10.896640pt;}
.ls3_c01204{letter-spacing:11.536640pt;}
.ls1_c01204{letter-spacing:18.576640pt;}
.ws0_c01204{word-spacing:-53.120000pt;}
.ws2_c01204{word-spacing:-24.118293pt;}
.ws3_c01204{word-spacing:-23.966827pt;}
.ws1_c01204{word-spacing:-23.696427pt;}
.ws4_c01204{word-spacing:-23.679893pt;}
.ws5_c01204{word-spacing:0.000000pt;}
._2_c01204{margin-left:-2.230934pt;}
._0_c01204{margin-left:-1.168534pt;}
._1_c01204{width:1.009068pt;}
._8_c01204{width:3.197355pt;}
._5_c01204{width:5.975850pt;}
._4_c01204{width:11.401600pt;}
._3_c01204{width:18.474615pt;}
._6_c01204{width:36.029300pt;}
._7_c01204{width:37.384331pt;}
.fs0_c01204{font-size:53.120000pt;}
.fs3_c01204{font-size:64.000000pt;}
.fs1_c01204{font-size:85.120000pt;}
.fs2_c01204{font-size:85.248000pt;}
.y0_c01204{bottom:0.000000pt;}
.y2_c01204{bottom:11.232000pt;}
.y4_c01204{bottom:12.896000pt;}
.y1_c01204{bottom:27.232000pt;}
.y3_c01204{bottom:28.896000pt;}
.y9_c01204{bottom:119.008000pt;}
.y8_c01204{bottom:144.613333pt;}
.y7_c01204{bottom:170.240000pt;}
.y6_c01204{bottom:195.840000pt;}
.y5_c01204{bottom:221.440000pt;}
.ya_c01204{bottom:575.706667pt;}
.yb_c01204{bottom:608.933333pt;}
.h1_c01204{height:38.724688pt;}
.h5_c01204{height:46.593750pt;}
.h4_c01204{height:61.969687pt;}
.h2_c01204{height:62.052813pt;}
.h3_c01204{height:62.146125pt;}
.h0_c01204{height:720.000000pt;}
.w0_c01204{width:960.000000pt;}
.x0_c01204{left:0.000000pt;}
.x3_c01204{left:55.264000pt;}
.x7_c01204{left:64.448000pt;}
.x2_c01204{left:384.453333pt;}
.x1_c01204{left:388.773333pt;}
.x6_c01204{left:561.346667pt;}
.x5_c01204{left:620.480000pt;}
.x4_c01204{left:757.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_b2f9b9c6d88cc173453ee49e.woff2')format("woff");}.ff1_c01205{font-family:ff1_c01205;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01205;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01205{font-family:ff2_c01205;line-height:0.728027;font-style:normal;font-weight:normal;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_682f29c8b3cb048f6c78da0a.woff2')format("woff");}.ff3_c01205{font-family:ff3_c01205;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01205{vertical-align:0.000000px;}
.ls2_c01205{letter-spacing:-0.106800px;}
.ls1_c01205{letter-spacing:0.000000px;}
.ls5_c01205{letter-spacing:0.018600px;}
.ls3_c01205{letter-spacing:0.037200px;}
.ls4_c01205{letter-spacing:0.341400px;}
.ls0_c01205{letter-spacing:33.858720px;}
.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:-59.760000px;}
.ws1_c01205{word-spacing:-26.962680px;}
.ws2_c01205{word-spacing:0.000000px;}
._7_c01205{margin-left:-4.942906px;}
._2_c01205{margin-left:-2.509800px;}
._0_c01205{margin-left:-1.314600px;}
._1_c01205{width:1.135201px;}
._3_c01205{width:4.171872px;}
._4_c01205{width:6.554389px;}
._5_c01205{width:34.123823px;}
._6_c01205{width:85.583968px;}
.fc1_c01205{color:rgb(255,0,0);}
.fc0_c01205{color:rgb(0,0,0);}
.fs0_c01205{font-size:59.760000px;}
.fs2_c01205{font-size:72.000000px;}
.fs1_c01205{font-size:95.760000px;}
.y0_c01205{bottom:0.000000px;}
.y2_c01205{bottom:12.636000px;}
.y4_c01205{bottom:14.508000px;}
.y1_c01205{bottom:30.636000px;}
.y3_c01205{bottom:32.508000px;}
.ya_c01205{bottom:499.680000px;}
.y9_c01205{bottom:528.480000px;}
.y8_c01205{bottom:557.280000px;}
.y7_c01205{bottom:586.110000px;}
.y5_c01205{bottom:647.670000px;}
.y6_c01205{bottom:685.050000px;}
.h1_c01205{height:43.565273px;}
.h3_c01205{height:52.417969px;}
.h2_c01205{height:69.715898px;}
.h4_c01205{height:69.809414px;}
.h0_c01205{height:810.000000px;}
.w0_c01205{width:1080.000000px;}
.x0_c01205{left:0.000000px;}
.x3_c01205{left:62.172000px;}
.x6_c01205{left:72.504000px;}
.x2_c01205{left:432.510000px;}
.x1_c01205{left:437.370000px;}
.x5_c01205{left:698.040000px;}
.x7_c01205{left:705.675000px;}
.x4_c01205{left:852.150000px;}
@media print{
.v0_c01205{vertical-align:0.000000pt;}
.ls2_c01205{letter-spacing:-0.094933pt;}
.ls1_c01205{letter-spacing:0.000000pt;}
.ls5_c01205{letter-spacing:0.016533pt;}
.ls3_c01205{letter-spacing:0.033067pt;}
.ls4_c01205{letter-spacing:0.303467pt;}
.ls0_c01205{letter-spacing:30.096640pt;}
.ws0_c01205{word-spacing:-53.120000pt;}
.ws1_c01205{word-spacing:-23.966827pt;}
.ws2_c01205{word-spacing:0.000000pt;}
._7_c01205{margin-left:-4.393694pt;}
._2_c01205{margin-left:-2.230934pt;}
._0_c01205{margin-left:-1.168534pt;}
._1_c01205{width:1.009068pt;}
._3_c01205{width:3.708330pt;}
._4_c01205{width:5.826124pt;}
._5_c01205{width:30.332287pt;}
._6_c01205{width:76.074638pt;}
.fs0_c01205{font-size:53.120000pt;}
.fs2_c01205{font-size:64.000000pt;}
.fs1_c01205{font-size:85.120000pt;}
.y0_c01205{bottom:0.000000pt;}
.y2_c01205{bottom:11.232000pt;}
.y4_c01205{bottom:12.896000pt;}
.y1_c01205{bottom:27.232000pt;}
.y3_c01205{bottom:28.896000pt;}
.ya_c01205{bottom:444.160000pt;}
.y9_c01205{bottom:469.760000pt;}
.y8_c01205{bottom:495.360000pt;}
.y7_c01205{bottom:520.986667pt;}
.y5_c01205{bottom:575.706667pt;}
.y6_c01205{bottom:608.933333pt;}
.h1_c01205{height:38.724688pt;}
.h3_c01205{height:46.593750pt;}
.h2_c01205{height:61.969687pt;}
.h4_c01205{height:62.052813pt;}
.h0_c01205{height:720.000000pt;}
.w0_c01205{width:960.000000pt;}
.x0_c01205{left:0.000000pt;}
.x3_c01205{left:55.264000pt;}
.x6_c01205{left:64.448000pt;}
.x2_c01205{left:384.453333pt;}
.x1_c01205{left:388.773333pt;}
.x5_c01205{left:620.480000pt;}
.x7_c01205{left:627.266667pt;}
.x4_c01205{left:757.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_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_33a0d7bfb93ed9e7ed9986b7.woff2')format("woff");}.ff1_c01206{font-family:ff1_c01206;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01206;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01206{font-family:ff2_c01206;line-height:0.728027;font-style:normal;font-weight:normal;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_3f0b6a3a5dca3f54a6fab85e.woff2')format("woff");}.ff3_c01206{font-family:ff3_c01206;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls9_c01206{letter-spacing:-0.106800px;}
.ls8_c01206{letter-spacing:0.000000px;}
.ls0_c01206{letter-spacing:0.018600px;}
.ls6_c01206{letter-spacing:0.037200px;}
.lsa_c01206{letter-spacing:0.341400px;}
.ls3_c01206{letter-spacing:2.160480px;}
.ls1_c01206{letter-spacing:2.178720px;}
.ls4_c01206{letter-spacing:2.179440px;}
.ls2_c01206{letter-spacing:2.197200px;}
.ls5_c01206{letter-spacing:29.538720px;}
.ls7_c01206{letter-spacing:33.138720px;}
.sc__c01206{text-shadow:none;}
.sc0_c01206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01206{-webkit-text-stroke:0px transparent;}
.sc0_c01206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01206{word-spacing:-59.760000px;}
.ws3_c01206{word-spacing:-26.658480px;}
.ws1_c01206{word-spacing:-26.639880px;}
.ws2_c01206{word-spacing:-26.621280px;}
.ws4_c01206{word-spacing:0.000000px;}
._9_c01206{margin-left:-5.799600px;}
._2_c01206{margin-left:-2.509800px;}
._0_c01206{margin-left:-1.314600px;}
._1_c01206{width:1.135201px;}
._3_c01206{width:2.605752px;}
._4_c01206{width:4.213150px;}
._6_c01206{width:29.539200px;}
._7_c01206{width:30.721920px;}
._8_c01206{width:33.592320px;}
._5_c01206{width:38.063930px;}
.fc2_c01206{color:rgb(0,128,0);}
.fc1_c01206{color:rgb(255,0,0);}
.fc0_c01206{color:rgb(0,0,0);}
.fs0_c01206{font-size:59.760000px;}
.fs2_c01206{font-size:72.000000px;}
.fs1_c01206{font-size:95.760000px;}
.y0_c01206{bottom:0.000000px;}
.y2_c01206{bottom:12.636000px;}
.y4_c01206{bottom:14.508000px;}
.y1_c01206{bottom:30.636000px;}
.y3_c01206{bottom:32.508000px;}
.yc_c01206{bottom:448.530000px;}
.yb_c01206{bottom:477.330000px;}
.ya_c01206{bottom:506.130000px;}
.y9_c01206{bottom:534.930000px;}
.y8_c01206{bottom:563.760000px;}
.y7_c01206{bottom:592.560000px;}
.y5_c01206{bottom:647.670000px;}
.y6_c01206{bottom:685.050000px;}
.h1_c01206{height:43.565273px;}
.h3_c01206{height:52.417969px;}
.h2_c01206{height:69.715898px;}
.h4_c01206{height:69.809414px;}
.h0_c01206{height:810.000000px;}
.w0_c01206{width:1080.000000px;}
.x0_c01206{left:0.000000px;}
.x3_c01206{left:62.172000px;}
.x6_c01206{left:72.504000px;}
.x2_c01206{left:432.510000px;}
.x1_c01206{left:437.370000px;}
.x7_c01206{left:676.650000px;}
.x5_c01206{left:698.040000px;}
.x4_c01206{left:852.150000px;}
@media print{
.v0_c01206{vertical-align:0.000000pt;}
.ls9_c01206{letter-spacing:-0.094933pt;}
.ls8_c01206{letter-spacing:0.000000pt;}
.ls0_c01206{letter-spacing:0.016533pt;}
.ls6_c01206{letter-spacing:0.033067pt;}
.lsa_c01206{letter-spacing:0.303467pt;}
.ls3_c01206{letter-spacing:1.920427pt;}
.ls1_c01206{letter-spacing:1.936640pt;}
.ls4_c01206{letter-spacing:1.937280pt;}
.ls2_c01206{letter-spacing:1.953067pt;}
.ls5_c01206{letter-spacing:26.256640pt;}
.ls7_c01206{letter-spacing:29.456640pt;}
.ws0_c01206{word-spacing:-53.120000pt;}
.ws3_c01206{word-spacing:-23.696427pt;}
.ws1_c01206{word-spacing:-23.679893pt;}
.ws2_c01206{word-spacing:-23.663360pt;}
.ws4_c01206{word-spacing:0.000000pt;}
._9_c01206{margin-left:-5.155200pt;}
._2_c01206{margin-left:-2.230934pt;}
._0_c01206{margin-left:-1.168534pt;}
._1_c01206{width:1.009068pt;}
._3_c01206{width:2.316224pt;}
._4_c01206{width:3.745022pt;}
._6_c01206{width:26.257067pt;}
._7_c01206{width:27.308373pt;}
._8_c01206{width:29.859840pt;}
._5_c01206{width:33.834604pt;}
.fs0_c01206{font-size:53.120000pt;}
.fs2_c01206{font-size:64.000000pt;}
.fs1_c01206{font-size:85.120000pt;}
.y0_c01206{bottom:0.000000pt;}
.y2_c01206{bottom:11.232000pt;}
.y4_c01206{bottom:12.896000pt;}
.y1_c01206{bottom:27.232000pt;}
.y3_c01206{bottom:28.896000pt;}
.yc_c01206{bottom:398.693333pt;}
.yb_c01206{bottom:424.293333pt;}
.ya_c01206{bottom:449.893333pt;}
.y9_c01206{bottom:475.493333pt;}
.y8_c01206{bottom:501.120000pt;}
.y7_c01206{bottom:526.720000pt;}
.y5_c01206{bottom:575.706667pt;}
.y6_c01206{bottom:608.933333pt;}
.h1_c01206{height:38.724688pt;}
.h3_c01206{height:46.593750pt;}
.h2_c01206{height:61.969687pt;}
.h4_c01206{height:62.052813pt;}
.h0_c01206{height:720.000000pt;}
.w0_c01206{width:960.000000pt;}
.x0_c01206{left:0.000000pt;}
.x3_c01206{left:55.264000pt;}
.x6_c01206{left:64.448000pt;}
.x2_c01206{left:384.453333pt;}
.x1_c01206{left:388.773333pt;}
.x7_c01206{left:601.466667pt;}
.x5_c01206{left:620.480000pt;}
.x4_c01206{left:757.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_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_0fb3defd947b34247150f95a.woff2')format("woff");}.ff1_c01207{font-family:ff1_c01207;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01207;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01207{font-family:ff2_c01207;line-height:0.728027;font-style:normal;font-weight:normal;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_682f29c8b3cb048f6c78da0a.woff2')format("woff");}.ff3_c01207{font-family:ff3_c01207;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c01207{letter-spacing:-0.106800px;}
.ls9_c01207{letter-spacing:-0.042600px;}
.ls5_c01207{letter-spacing:0.000000px;}
.ls8_c01207{letter-spacing:0.018600px;}
.ls0_c01207{letter-spacing:0.037200px;}
.ls3_c01207{letter-spacing:0.112200px;}
.ls7_c01207{letter-spacing:0.756000px;}
.ls4_c01207{letter-spacing:2.138688px;}
.ls2_c01207{letter-spacing:4.322880px;}
.ls1_c01207{letter-spacing:4.338720px;}
.sc__c01207{text-shadow:none;}
.sc0_c01207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01207{-webkit-text-stroke:0px transparent;}
.sc0_c01207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01207{word-spacing:-59.760000px;}
.ws2_c01207{word-spacing:-26.773512px;}
.ws1_c01207{word-spacing:-26.658480px;}
.ws3_c01207{word-spacing:-26.618712px;}
.ws4_c01207{word-spacing:0.000000px;}
._5_c01207{margin-left:-6.141875px;}
._4_c01207{margin-left:-4.301443px;}
._2_c01207{margin-left:-2.509800px;}
._0_c01207{margin-left:-1.314600px;}
._1_c01207{width:1.135201px;}
._3_c01207{width:4.171872px;}
._6_c01207{width:5.602715px;}
.fc1_c01207{color:rgb(255,0,0);}
.fc0_c01207{color:rgb(0,0,0);}
.fs0_c01207{font-size:59.760000px;}
.fs1_c01207{font-size:72.000000px;}
.fs2_c01207{font-size:95.760000px;}
.fs3_c01207{font-size:95.904000px;}
.y0_c01207{bottom:0.000000px;}
.y2_c01207{bottom:12.636000px;}
.y4_c01207{bottom:14.508000px;}
.y1_c01207{bottom:30.636000px;}
.y3_c01207{bottom:32.508000px;}
.y9_c01207{bottom:102.816000px;}
.y8_c01207{bottom:131.652000px;}
.y7_c01207{bottom:160.455000px;}
.y6_c01207{bottom:647.670000px;}
.y5_c01207{bottom:685.050000px;}
.h1_c01207{height:43.565273px;}
.h2_c01207{height:52.417969px;}
.h3_c01207{height:69.715898px;}
.h4_c01207{height:69.809414px;}
.h5_c01207{height:69.914391px;}
.h0_c01207{height:810.000000px;}
.w0_c01207{width:1080.000000px;}
.x0_c01207{left:0.000000px;}
.x3_c01207{left:62.172000px;}
.x7_c01207{left:70.452000px;}
.x6_c01207{left:72.504000px;}
.x2_c01207{left:432.510000px;}
.x1_c01207{left:437.370000px;}
.x5_c01207{left:698.040000px;}
.x4_c01207{left:852.150000px;}
@media print{
.v0_c01207{vertical-align:0.000000pt;}
.ls6_c01207{letter-spacing:-0.094933pt;}
.ls9_c01207{letter-spacing:-0.037867pt;}
.ls5_c01207{letter-spacing:0.000000pt;}
.ls8_c01207{letter-spacing:0.016533pt;}
.ls0_c01207{letter-spacing:0.033067pt;}
.ls3_c01207{letter-spacing:0.099733pt;}
.ls7_c01207{letter-spacing:0.672000pt;}
.ls4_c01207{letter-spacing:1.901056pt;}
.ls2_c01207{letter-spacing:3.842560pt;}
.ls1_c01207{letter-spacing:3.856640pt;}
.ws0_c01207{word-spacing:-53.120000pt;}
.ws2_c01207{word-spacing:-23.798677pt;}
.ws1_c01207{word-spacing:-23.696427pt;}
.ws3_c01207{word-spacing:-23.661077pt;}
.ws4_c01207{word-spacing:0.000000pt;}
._5_c01207{margin-left:-5.459444pt;}
._4_c01207{margin-left:-3.823505pt;}
._2_c01207{margin-left:-2.230934pt;}
._0_c01207{margin-left:-1.168534pt;}
._1_c01207{width:1.009068pt;}
._3_c01207{width:3.708330pt;}
._6_c01207{width:4.980191pt;}
.fs0_c01207{font-size:53.120000pt;}
.fs1_c01207{font-size:64.000000pt;}
.fs2_c01207{font-size:85.120000pt;}
.fs3_c01207{font-size:85.248000pt;}
.y0_c01207{bottom:0.000000pt;}
.y2_c01207{bottom:11.232000pt;}
.y4_c01207{bottom:12.896000pt;}
.y1_c01207{bottom:27.232000pt;}
.y3_c01207{bottom:28.896000pt;}
.y9_c01207{bottom:91.392000pt;}
.y8_c01207{bottom:117.024000pt;}
.y7_c01207{bottom:142.626667pt;}
.y6_c01207{bottom:575.706667pt;}
.y5_c01207{bottom:608.933333pt;}
.h1_c01207{height:38.724688pt;}
.h2_c01207{height:46.593750pt;}
.h3_c01207{height:61.969687pt;}
.h4_c01207{height:62.052813pt;}
.h5_c01207{height:62.146125pt;}
.h0_c01207{height:720.000000pt;}
.w0_c01207{width:960.000000pt;}
.x0_c01207{left:0.000000pt;}
.x3_c01207{left:55.264000pt;}
.x7_c01207{left:62.624000pt;}
.x6_c01207{left:64.448000pt;}
.x2_c01207{left:384.453333pt;}
.x1_c01207{left:388.773333pt;}
.x5_c01207{left:620.480000pt;}
.x4_c01207{left:757.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_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_8bbbe588db1e5cc2de01f803.woff2')format("woff");}.ff1_c01208{font-family:ff1_c01208;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01208;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01208{font-family:ff2_c01208;line-height:0.728027;font-style:normal;font-weight:normal;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_d12f5dfa6fa023a25d433437.woff2')format("woff");}.ff3_c01208{font-family:ff3_c01208;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01208{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01208{vertical-align:0.000000px;}
.ls2_c01208{letter-spacing:-0.106800px;}
.ls6_c01208{letter-spacing:-0.018600px;}
.ls1_c01208{letter-spacing:0.000000px;}
.ls4_c01208{letter-spacing:0.018600px;}
.ls0_c01208{letter-spacing:0.037200px;}
.ls3_c01208{letter-spacing:0.341400px;}
.ls5_c01208{letter-spacing:0.756000px;}
.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;}
}
.ws0_c01208{word-spacing:-59.760000px;}
.ws3_c01208{word-spacing:-27.377280px;}
.ws1_c01208{word-spacing:-26.962680px;}
.ws4_c01208{word-spacing:-26.658480px;}
.ws2_c01208{word-spacing:-26.602680px;}
.ws5_c01208{word-spacing:0.000000px;}
._9_c01208{margin-left:-6.859393px;}
._2_c01208{margin-left:-2.509800px;}
._0_c01208{margin-left:-1.314600px;}
._1_c01208{width:1.135201px;}
._3_c01208{width:2.845246px;}
._5_c01208{width:4.273865px;}
._b_c01208{width:13.993680px;}
._7_c01208{width:15.129840px;}
._6_c01208{width:22.339180px;}
._8_c01208{width:38.426280px;}
._4_c01208{width:88.040978px;}
._a_c01208{width:191.586000px;}
.fc1_c01208{color:rgb(255,0,0);}
.fc0_c01208{color:rgb(0,0,0);}
.fs0_c01208{font-size:59.760000px;}
.fs1_c01208{font-size:72.000000px;}
.fs2_c01208{font-size:95.760000px;}
.y0_c01208{bottom:0.000000px;}
.y2_c01208{bottom:12.636000px;}
.y4_c01208{bottom:14.508000px;}
.y1_c01208{bottom:30.636000px;}
.y3_c01208{bottom:32.508000px;}
.ye_c01208{bottom:89.388000px;}
.yd_c01208{bottom:118.188000px;}
.yc_c01208{bottom:147.024000px;}
.yb_c01208{bottom:175.830000px;}
.ya_c01208{bottom:204.630000px;}
.y9_c01208{bottom:233.430000px;}
.y8_c01208{bottom:262.230000px;}
.y7_c01208{bottom:291.060000px;}
.y6_c01208{bottom:647.670000px;}
.y5_c01208{bottom:685.050000px;}
.h1_c01208{height:43.565273px;}
.h2_c01208{height:52.417969px;}
.h3_c01208{height:69.715898px;}
.h4_c01208{height:69.809414px;}
.h0_c01208{height:810.000000px;}
.w0_c01208{width:1080.000000px;}
.x0_c01208{left:0.000000px;}
.x3_c01208{left:62.172000px;}
.x6_c01208{left:72.504000px;}
.x2_c01208{left:432.510000px;}
.x1_c01208{left:437.370000px;}
.x5_c01208{left:698.040000px;}
.x4_c01208{left:852.150000px;}
@media print{
.v0_c01208{vertical-align:0.000000pt;}
.ls2_c01208{letter-spacing:-0.094933pt;}
.ls6_c01208{letter-spacing:-0.016533pt;}
.ls1_c01208{letter-spacing:0.000000pt;}
.ls4_c01208{letter-spacing:0.016533pt;}
.ls0_c01208{letter-spacing:0.033067pt;}
.ls3_c01208{letter-spacing:0.303467pt;}
.ls5_c01208{letter-spacing:0.672000pt;}
.ws0_c01208{word-spacing:-53.120000pt;}
.ws3_c01208{word-spacing:-24.335360pt;}
.ws1_c01208{word-spacing:-23.966827pt;}
.ws4_c01208{word-spacing:-23.696427pt;}
.ws2_c01208{word-spacing:-23.646827pt;}
.ws5_c01208{word-spacing:0.000000pt;}
._9_c01208{margin-left:-6.097238pt;}
._2_c01208{margin-left:-2.230934pt;}
._0_c01208{margin-left:-1.168534pt;}
._1_c01208{width:1.009068pt;}
._3_c01208{width:2.529108pt;}
._5_c01208{width:3.798991pt;}
._b_c01208{width:12.438827pt;}
._7_c01208{width:13.448747pt;}
._6_c01208{width:19.857049pt;}
._8_c01208{width:34.156693pt;}
._4_c01208{width:78.258647pt;}
._a_c01208{width:170.298667pt;}
.fs0_c01208{font-size:53.120000pt;}
.fs1_c01208{font-size:64.000000pt;}
.fs2_c01208{font-size:85.120000pt;}
.y0_c01208{bottom:0.000000pt;}
.y2_c01208{bottom:11.232000pt;}
.y4_c01208{bottom:12.896000pt;}
.y1_c01208{bottom:27.232000pt;}
.y3_c01208{bottom:28.896000pt;}
.ye_c01208{bottom:79.456000pt;}
.yd_c01208{bottom:105.056000pt;}
.yc_c01208{bottom:130.688000pt;}
.yb_c01208{bottom:156.293333pt;}
.ya_c01208{bottom:181.893333pt;}
.y9_c01208{bottom:207.493333pt;}
.y8_c01208{bottom:233.093333pt;}
.y7_c01208{bottom:258.720000pt;}
.y6_c01208{bottom:575.706667pt;}
.y5_c01208{bottom:608.933333pt;}
.h1_c01208{height:38.724688pt;}
.h2_c01208{height:46.593750pt;}
.h3_c01208{height:61.969687pt;}
.h4_c01208{height:62.052813pt;}
.h0_c01208{height:720.000000pt;}
.w0_c01208{width:960.000000pt;}
.x0_c01208{left:0.000000pt;}
.x3_c01208{left:55.264000pt;}
.x6_c01208{left:64.448000pt;}
.x2_c01208{left:384.453333pt;}
.x1_c01208{left:388.773333pt;}
.x5_c01208{left:620.480000pt;}
.x4_c01208{left:757.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_87f784507b73aae208751c32.woff2')format("woff");}.ff1_c01209{font-family:ff1_c01209;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01209;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01209{font-family:ff2_c01209;line-height:0.728027;font-style:normal;font-weight:normal;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_4c0213bf59e6a0eb70915e8a.woff2')format("woff");}.ff3_c01209{font-family:ff3_c01209;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7_c01209{letter-spacing:-0.106800px;}
.ls6_c01209{letter-spacing:0.000000px;}
.ls2_c01209{letter-spacing:0.018600px;}
.ls8_c01209{letter-spacing:0.037200px;}
.lsa_c01209{letter-spacing:0.341400px;}
.ls9_c01209{letter-spacing:0.738000px;}
.ls0_c01209{letter-spacing:13.699200px;}
.ls1_c01209{letter-spacing:19.477680px;}
.ls3_c01209{letter-spacing:21.618720px;}
.ls4_c01209{letter-spacing:61.218720px;}
.ls5_c01209{letter-spacing:61.957200px;}
.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:-59.760000px;}
.ws2_c01209{word-spacing:-27.359280px;}
.ws1_c01209{word-spacing:-26.639880px;}
.ws3_c01209{word-spacing:-16.613280px;}
.ws4_c01209{word-spacing:0.000000px;}
._2_c01209{margin-left:-2.509800px;}
._0_c01209{margin-left:-1.314600px;}
._1_c01209{width:1.135201px;}
._3_c01209{width:13.698564px;}
._4_c01209{width:15.109713px;}
._5_c01209{width:19.496449px;}
._6_c01209{width:22.224240px;}
._7_c01209{width:61.358880px;}
.fc1_c01209{color:rgb(255,0,0);}
.fc0_c01209{color:rgb(0,0,0);}
.fs0_c01209{font-size:59.760000px;}
.fs3_c01209{font-size:59.904000px;}
.fs1_c01209{font-size:72.000000px;}
.fs2_c01209{font-size:95.760000px;}
.y0_c01209{bottom:0.000000px;}
.y2_c01209{bottom:12.636000px;}
.y4_c01209{bottom:14.508000px;}
.y1_c01209{bottom:30.636000px;}
.y3_c01209{bottom:32.508000px;}
.yc_c01209{bottom:77.040000px;}
.yb_c01209{bottom:105.840000px;}
.ya_c01209{bottom:134.640000px;}
.y9_c01209{bottom:163.440000px;}
.y8_c01209{bottom:192.240000px;}
.y7_c01209{bottom:221.070000px;}
.ye_c01209{bottom:601.770000px;}
.yd_c01209{bottom:619.815000px;}
.y6_c01209{bottom:647.670000px;}
.y5_c01209{bottom:685.050000px;}
.h1_c01209{height:43.565273px;}
.h5_c01209{height:43.670250px;}
.h2_c01209{height:52.417969px;}
.h3_c01209{height:69.715898px;}
.h4_c01209{height:69.809414px;}
.h0_c01209{height:810.000000px;}
.w0_c01209{width:1080.000000px;}
.x0_c01209{left:0.000000px;}
.x3_c01209{left:62.172000px;}
.x6_c01209{left:72.504000px;}
.x2_c01209{left:432.510000px;}
.x1_c01209{left:437.370000px;}
.x7_c01209{left:650.850000px;}
.x5_c01209{left:698.040000px;}
.x4_c01209{left:852.150000px;}
.x8_c01209{left:879.765000px;}
@media print{
.v0_c01209{vertical-align:0.000000pt;}
.ls7_c01209{letter-spacing:-0.094933pt;}
.ls6_c01209{letter-spacing:0.000000pt;}
.ls2_c01209{letter-spacing:0.016533pt;}
.ls8_c01209{letter-spacing:0.033067pt;}
.lsa_c01209{letter-spacing:0.303467pt;}
.ls9_c01209{letter-spacing:0.656000pt;}
.ls0_c01209{letter-spacing:12.177067pt;}
.ls1_c01209{letter-spacing:17.313493pt;}
.ls3_c01209{letter-spacing:19.216640pt;}
.ls4_c01209{letter-spacing:54.416640pt;}
.ls5_c01209{letter-spacing:55.073067pt;}
.ws0_c01209{word-spacing:-53.120000pt;}
.ws2_c01209{word-spacing:-24.319360pt;}
.ws1_c01209{word-spacing:-23.679893pt;}
.ws3_c01209{word-spacing:-14.767360pt;}
.ws4_c01209{word-spacing:0.000000pt;}
._2_c01209{margin-left:-2.230934pt;}
._0_c01209{margin-left:-1.168534pt;}
._1_c01209{width:1.009068pt;}
._3_c01209{width:12.176501pt;}
._4_c01209{width:13.430856pt;}
._5_c01209{width:17.330177pt;}
._6_c01209{width:19.754880pt;}
._7_c01209{width:54.541227pt;}
.fs0_c01209{font-size:53.120000pt;}
.fs3_c01209{font-size:53.248000pt;}
.fs1_c01209{font-size:64.000000pt;}
.fs2_c01209{font-size:85.120000pt;}
.y0_c01209{bottom:0.000000pt;}
.y2_c01209{bottom:11.232000pt;}
.y4_c01209{bottom:12.896000pt;}
.y1_c01209{bottom:27.232000pt;}
.y3_c01209{bottom:28.896000pt;}
.yc_c01209{bottom:68.480000pt;}
.yb_c01209{bottom:94.080000pt;}
.ya_c01209{bottom:119.680000pt;}
.y9_c01209{bottom:145.280000pt;}
.y8_c01209{bottom:170.880000pt;}
.y7_c01209{bottom:196.506667pt;}
.ye_c01209{bottom:534.906667pt;}
.yd_c01209{bottom:550.946667pt;}
.y6_c01209{bottom:575.706667pt;}
.y5_c01209{bottom:608.933333pt;}
.h1_c01209{height:38.724688pt;}
.h5_c01209{height:38.818000pt;}
.h2_c01209{height:46.593750pt;}
.h3_c01209{height:61.969687pt;}
.h4_c01209{height:62.052813pt;}
.h0_c01209{height:720.000000pt;}
.w0_c01209{width:960.000000pt;}
.x0_c01209{left:0.000000pt;}
.x3_c01209{left:55.264000pt;}
.x6_c01209{left:64.448000pt;}
.x2_c01209{left:384.453333pt;}
.x1_c01209{left:388.773333pt;}
.x7_c01209{left:578.533333pt;}
.x5_c01209{left:620.480000pt;}
.x4_c01209{left:757.466667pt;}
.x8_c01209{left:782.013333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_727ba2cce561aebbc4d7429b.woff2')format("woff");}.ff1_c01210{font-family:ff1_c01210;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01210;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01210{font-family:ff2_c01210;line-height:0.728027;font-style:normal;font-weight:normal;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_6155dff07b752d602a635a4b.woff2')format("woff");}.ff3_c01210{font-family:ff3_c01210;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls9_c01210{letter-spacing:-0.684000px;}
.ls7_c01210{letter-spacing:-0.106800px;}
.lsc_c01210{letter-spacing:-0.042600px;}
.lsb_c01210{letter-spacing:-0.021600px;}
.ls8_c01210{letter-spacing:-0.018600px;}
.ls6_c01210{letter-spacing:0.000000px;}
.ls2_c01210{letter-spacing:0.018600px;}
.ls0_c01210{letter-spacing:0.037200px;}
.lsa_c01210{letter-spacing:0.341400px;}
.ls5_c01210{letter-spacing:0.720480px;}
.ls4_c01210{letter-spacing:0.738720px;}
.ls3_c01210{letter-spacing:15.818640px;}
.ls1_c01210{letter-spacing:15.858720px;}
.sc__c01210{text-shadow:none;}
.sc0_c01210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01210{-webkit-text-stroke:0px transparent;}
.sc0_c01210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01210{word-spacing:-59.760000px;}
.ws1_c01210{word-spacing:-26.658480px;}
.ws3_c01210{word-spacing:-26.639880px;}
.ws4_c01210{word-spacing:-26.639712px;}
.ws5_c01210{word-spacing:-26.621280px;}
.ws2_c01210{word-spacing:-25.937280px;}
.ws6_c01210{word-spacing:0.000000px;}
._2_c01210{margin-left:-2.509800px;}
._0_c01210{margin-left:-1.314600px;}
._1_c01210{width:1.135201px;}
._3_c01210{width:3.449542px;}
._6_c01210{width:7.058374px;}
._7_c01210{width:8.074836px;}
._5_c01210{width:15.677710px;}
._4_c01210{width:16.704739px;}
.fc1_c01210{color:rgb(255,0,0);}
.fc0_c01210{color:rgb(0,0,0);}
.fs0_c01210{font-size:59.760000px;}
.fs1_c01210{font-size:72.000000px;}
.fs2_c01210{font-size:95.760000px;}
.fs3_c01210{font-size:95.904000px;}
.y0_c01210{bottom:0.000000px;}
.y2_c01210{bottom:12.636000px;}
.y4_c01210{bottom:14.508000px;}
.y1_c01210{bottom:30.636000px;}
.y3_c01210{bottom:32.508000px;}
.yb_c01210{bottom:83.916000px;}
.ya_c01210{bottom:112.716000px;}
.y9_c01210{bottom:141.516000px;}
.y8_c01210{bottom:170.310000px;}
.y7_c01210{bottom:199.155000px;}
.y6_c01210{bottom:647.670000px;}
.y5_c01210{bottom:685.050000px;}
.h1_c01210{height:43.565273px;}
.h2_c01210{height:52.417969px;}
.h3_c01210{height:69.715898px;}
.h4_c01210{height:69.809414px;}
.h5_c01210{height:69.914391px;}
.h0_c01210{height:810.000000px;}
.w0_c01210{width:1080.000000px;}
.x0_c01210{left:0.000000px;}
.x3_c01210{left:62.172000px;}
.x6_c01210{left:72.504000px;}
.x7_c01210{left:75.276000px;}
.x2_c01210{left:432.510000px;}
.x1_c01210{left:437.370000px;}
.x5_c01210{left:698.040000px;}
.x4_c01210{left:852.150000px;}
@media print{
.v0_c01210{vertical-align:0.000000pt;}
.ls9_c01210{letter-spacing:-0.608000pt;}
.ls7_c01210{letter-spacing:-0.094933pt;}
.lsc_c01210{letter-spacing:-0.037867pt;}
.lsb_c01210{letter-spacing:-0.019200pt;}
.ls8_c01210{letter-spacing:-0.016533pt;}
.ls6_c01210{letter-spacing:0.000000pt;}
.ls2_c01210{letter-spacing:0.016533pt;}
.ls0_c01210{letter-spacing:0.033067pt;}
.lsa_c01210{letter-spacing:0.303467pt;}
.ls5_c01210{letter-spacing:0.640427pt;}
.ls4_c01210{letter-spacing:0.656640pt;}
.ls3_c01210{letter-spacing:14.061013pt;}
.ls1_c01210{letter-spacing:14.096640pt;}
.ws0_c01210{word-spacing:-53.120000pt;}
.ws1_c01210{word-spacing:-23.696427pt;}
.ws3_c01210{word-spacing:-23.679893pt;}
.ws4_c01210{word-spacing:-23.679744pt;}
.ws5_c01210{word-spacing:-23.663360pt;}
.ws2_c01210{word-spacing:-23.055360pt;}
.ws6_c01210{word-spacing:0.000000pt;}
._2_c01210{margin-left:-2.230934pt;}
._0_c01210{margin-left:-1.168534pt;}
._1_c01210{width:1.009068pt;}
._3_c01210{width:3.066259pt;}
._6_c01210{width:6.274110pt;}
._7_c01210{width:7.177632pt;}
._5_c01210{width:13.935742pt;}
._4_c01210{width:14.848657pt;}
.fs0_c01210{font-size:53.120000pt;}
.fs1_c01210{font-size:64.000000pt;}
.fs2_c01210{font-size:85.120000pt;}
.fs3_c01210{font-size:85.248000pt;}
.y0_c01210{bottom:0.000000pt;}
.y2_c01210{bottom:11.232000pt;}
.y4_c01210{bottom:12.896000pt;}
.y1_c01210{bottom:27.232000pt;}
.y3_c01210{bottom:28.896000pt;}
.yb_c01210{bottom:74.592000pt;}
.ya_c01210{bottom:100.192000pt;}
.y9_c01210{bottom:125.792000pt;}
.y8_c01210{bottom:151.386667pt;}
.y7_c01210{bottom:177.026667pt;}
.y6_c01210{bottom:575.706667pt;}
.y5_c01210{bottom:608.933333pt;}
.h1_c01210{height:38.724688pt;}
.h2_c01210{height:46.593750pt;}
.h3_c01210{height:61.969687pt;}
.h4_c01210{height:62.052813pt;}
.h5_c01210{height:62.146125pt;}
.h0_c01210{height:720.000000pt;}
.w0_c01210{width:960.000000pt;}
.x0_c01210{left:0.000000pt;}
.x3_c01210{left:55.264000pt;}
.x6_c01210{left:64.448000pt;}
.x7_c01210{left:66.912000pt;}
.x2_c01210{left:384.453333pt;}
.x1_c01210{left:388.773333pt;}
.x5_c01210{left:620.480000pt;}
.x4_c01210{left:757.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_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_6e93be44e1ea0728ee9f7b0e.woff2')format("woff");}.ff1_c01211{font-family:ff1_c01211;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01211;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01211{font-family:ff2_c01211;line-height:0.728027;font-style:normal;font-weight:normal;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_a226002c336961bfae5273d8.woff2')format("woff");}.ff3_c01211{font-family:ff3_c01211;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c01211{letter-spacing:-0.106800px;}
.ls0_c01211{letter-spacing:0.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:-59.760000px;}
.ws1_c01211{word-spacing:0.000000px;}
._2_c01211{margin-left:-2.509800px;}
._0_c01211{margin-left:-1.314600px;}
._1_c01211{width:1.135201px;}
.fc0_c01211{color:rgb(0,0,0);}
.fs0_c01211{font-size:59.760000px;}
.fs1_c01211{font-size:167.760000px;}
.y0_c01211{bottom:0.000000px;}
.y2_c01211{bottom:12.636000px;}
.y4_c01211{bottom:14.508000px;}
.y1_c01211{bottom:30.636000px;}
.y3_c01211{bottom:32.508000px;}
.y6_c01211{bottom:404.490000px;}
.y5_c01211{bottom:460.830000px;}
.h1_c01211{height:43.565273px;}
.h2_c01211{height:122.133867px;}
.h0_c01211{height:810.000000px;}
.w0_c01211{width:1080.000000px;}
.x0_c01211{left:0.000000px;}
.x3_c01211{left:62.172000px;}
.x7_c01211{left:263.445000px;}
.x6_c01211{left:396.465000px;}
.x2_c01211{left:432.510000px;}
.x1_c01211{left:437.370000px;}
.x5_c01211{left:698.040000px;}
.x4_c01211{left:852.150000px;}
@media print{
.v0_c01211{vertical-align:0.000000pt;}
.ls1_c01211{letter-spacing:-0.094933pt;}
.ls0_c01211{letter-spacing:0.000000pt;}
.ws0_c01211{word-spacing:-53.120000pt;}
.ws1_c01211{word-spacing:0.000000pt;}
._2_c01211{margin-left:-2.230934pt;}
._0_c01211{margin-left:-1.168534pt;}
._1_c01211{width:1.009068pt;}
.fs0_c01211{font-size:53.120000pt;}
.fs1_c01211{font-size:149.120000pt;}
.y0_c01211{bottom:0.000000pt;}
.y2_c01211{bottom:11.232000pt;}
.y4_c01211{bottom:12.896000pt;}
.y1_c01211{bottom:27.232000pt;}
.y3_c01211{bottom:28.896000pt;}
.y6_c01211{bottom:359.546667pt;}
.y5_c01211{bottom:409.626667pt;}
.h1_c01211{height:38.724688pt;}
.h2_c01211{height:108.563437pt;}
.h0_c01211{height:720.000000pt;}
.w0_c01211{width:960.000000pt;}
.x0_c01211{left:0.000000pt;}
.x3_c01211{left:55.264000pt;}
.x7_c01211{left:234.173333pt;}
.x6_c01211{left:352.413333pt;}
.x2_c01211{left:384.453333pt;}
.x1_c01211{left:388.773333pt;}
.x5_c01211{left:620.480000pt;}
.x4_c01211{left:757.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_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_8efd0c9caf51ccd12e07b73b.woff2')format("woff");}.ff1_c01212{font-family:ff1_c01212;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01212;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01212{font-family:ff2_c01212;line-height:0.728027;font-style:normal;font-weight:normal;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_1f17ea265f9ec6475b74f0fc.woff2')format("woff");}.ff3_c01212{font-family:ff3_c01212;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c01212{letter-spacing:-0.106800px;}
.ls0_c01212{letter-spacing:0.000000px;}
.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:-59.760000px;}
.ws1_c01212{word-spacing:0.000000px;}
._2_c01212{margin-left:-2.509800px;}
._0_c01212{margin-left:-1.314600px;}
._1_c01212{width:1.135201px;}
._3_c01212{width:3.325848px;}
.fc1_c01212{color:rgb(255,0,0);}
.fc0_c01212{color:rgb(0,0,0);}
.fs0_c01212{font-size:59.760000px;}
.fs2_c01212{font-size:72.000000px;}
.fs1_c01212{font-size:95.760000px;}
.y0_c01212{bottom:0.000000px;}
.y2_c01212{bottom:12.636000px;}
.y4_c01212{bottom:14.508000px;}
.y1_c01212{bottom:30.636000px;}
.y3_c01212{bottom:32.508000px;}
.y5_c01212{bottom:647.670000px;}
.y6_c01212{bottom:685.050000px;}
.h1_c01212{height:43.565273px;}
.h3_c01212{height:52.417969px;}
.h2_c01212{height:69.715898px;}
.h0_c01212{height:810.000000px;}
.w0_c01212{width:1080.000000px;}
.x0_c01212{left:0.000000px;}
.x3_c01212{left:62.172000px;}
.x6_c01212{left:72.504000px;}
.x2_c01212{left:432.510000px;}
.x1_c01212{left:437.370000px;}
.x5_c01212{left:698.040000px;}
.x4_c01212{left:852.150000px;}
@media print{
.v0_c01212{vertical-align:0.000000pt;}
.ls1_c01212{letter-spacing:-0.094933pt;}
.ls0_c01212{letter-spacing:0.000000pt;}
.ws0_c01212{word-spacing:-53.120000pt;}
.ws1_c01212{word-spacing:0.000000pt;}
._2_c01212{margin-left:-2.230934pt;}
._0_c01212{margin-left:-1.168534pt;}
._1_c01212{width:1.009068pt;}
._3_c01212{width:2.956309pt;}
.fs0_c01212{font-size:53.120000pt;}
.fs2_c01212{font-size:64.000000pt;}
.fs1_c01212{font-size:85.120000pt;}
.y0_c01212{bottom:0.000000pt;}
.y2_c01212{bottom:11.232000pt;}
.y4_c01212{bottom:12.896000pt;}
.y1_c01212{bottom:27.232000pt;}
.y3_c01212{bottom:28.896000pt;}
.y5_c01212{bottom:575.706667pt;}
.y6_c01212{bottom:608.933333pt;}
.h1_c01212{height:38.724688pt;}
.h3_c01212{height:46.593750pt;}
.h2_c01212{height:61.969687pt;}
.h0_c01212{height:720.000000pt;}
.w0_c01212{width:960.000000pt;}
.x0_c01212{left:0.000000pt;}
.x3_c01212{left:55.264000pt;}
.x6_c01212{left:64.448000pt;}
.x2_c01212{left:384.453333pt;}
.x1_c01212{left:388.773333pt;}
.x5_c01212{left:620.480000pt;}
.x4_c01212{left:757.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_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_f659be8187872f136bf35c07.woff2')format("woff");}.ff1_c01213{font-family:ff1_c01213;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01213;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01213{font-family:ff2_c01213;line-height:0.728027;font-style:normal;font-weight:normal;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_d399b177999d17cac3a1e155.woff2')format("woff");}.ff3_c01213{font-family:ff3_c01213;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01213{vertical-align:0.000000px;}
.ls4_c01213{letter-spacing:-0.410400px;}
.ls1_c01213{letter-spacing:-0.106800px;}
.ls3_c01213{letter-spacing:-0.042600px;}
.ls0_c01213{letter-spacing:0.000000px;}
.ls2_c01213{letter-spacing:0.037200px;}
.sc__c01213{text-shadow:none;}
.sc0_c01213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01213{-webkit-text-stroke:0px transparent;}
.sc0_c01213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01213{word-spacing:-59.760000px;}
.ws1_c01213{word-spacing:0.000000px;}
._2_c01213{margin-left:-2.509800px;}
._0_c01213{margin-left:-1.314600px;}
._1_c01213{width:1.135201px;}
._3_c01213{width:4.273849px;}
._4_c01213{width:28.155068px;}
.fc1_c01213{color:rgb(255,0,0);}
.fc0_c01213{color:rgb(0,0,0);}
.fs0_c01213{font-size:59.760000px;}
.fs2_c01213{font-size:72.000000px;}
.fs1_c01213{font-size:95.760000px;}
.fs3_c01213{font-size:95.904000px;}
.y0_c01213{bottom:0.000000px;}
.y2_c01213{bottom:12.636000px;}
.y4_c01213{bottom:14.508000px;}
.y1_c01213{bottom:30.636000px;}
.y3_c01213{bottom:32.508000px;}
.ya_c01213{bottom:120.780000px;}
.y9_c01213{bottom:149.580000px;}
.y8_c01213{bottom:178.380000px;}
.y7_c01213{bottom:207.210000px;}
.y5_c01213{bottom:647.670000px;}
.y6_c01213{bottom:685.050000px;}
.h1_c01213{height:43.565273px;}
.h3_c01213{height:52.417969px;}
.h2_c01213{height:69.715898px;}
.h4_c01213{height:69.809414px;}
.h5_c01213{height:69.914391px;}
.h0_c01213{height:810.000000px;}
.w0_c01213{width:1080.000000px;}
.x0_c01213{left:0.000000px;}
.x3_c01213{left:62.172000px;}
.x6_c01213{left:72.504000px;}
.x2_c01213{left:432.510000px;}
.x1_c01213{left:437.370000px;}
.x7_c01213{left:654.090000px;}
.x5_c01213{left:698.040000px;}
.x4_c01213{left:852.150000px;}
@media print{
.v0_c01213{vertical-align:0.000000pt;}
.ls4_c01213{letter-spacing:-0.364800pt;}
.ls1_c01213{letter-spacing:-0.094933pt;}
.ls3_c01213{letter-spacing:-0.037867pt;}
.ls0_c01213{letter-spacing:0.000000pt;}
.ls2_c01213{letter-spacing:0.033067pt;}
.ws0_c01213{word-spacing:-53.120000pt;}
.ws1_c01213{word-spacing:0.000000pt;}
._2_c01213{margin-left:-2.230934pt;}
._0_c01213{margin-left:-1.168534pt;}
._1_c01213{width:1.009068pt;}
._3_c01213{width:3.798977pt;}
._4_c01213{width:25.026727pt;}
.fs0_c01213{font-size:53.120000pt;}
.fs2_c01213{font-size:64.000000pt;}
.fs1_c01213{font-size:85.120000pt;}
.fs3_c01213{font-size:85.248000pt;}
.y0_c01213{bottom:0.000000pt;}
.y2_c01213{bottom:11.232000pt;}
.y4_c01213{bottom:12.896000pt;}
.y1_c01213{bottom:27.232000pt;}
.y3_c01213{bottom:28.896000pt;}
.ya_c01213{bottom:107.360000pt;}
.y9_c01213{bottom:132.960000pt;}
.y8_c01213{bottom:158.560000pt;}
.y7_c01213{bottom:184.186667pt;}
.y5_c01213{bottom:575.706667pt;}
.y6_c01213{bottom:608.933333pt;}
.h1_c01213{height:38.724688pt;}
.h3_c01213{height:46.593750pt;}
.h2_c01213{height:61.969687pt;}
.h4_c01213{height:62.052813pt;}
.h5_c01213{height:62.146125pt;}
.h0_c01213{height:720.000000pt;}
.w0_c01213{width:960.000000pt;}
.x0_c01213{left:0.000000pt;}
.x3_c01213{left:55.264000pt;}
.x6_c01213{left:64.448000pt;}
.x2_c01213{left:384.453333pt;}
.x1_c01213{left:388.773333pt;}
.x7_c01213{left:581.413333pt;}
.x5_c01213{left:620.480000pt;}
.x4_c01213{left:757.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_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_0dcd57ef0b8a1c6311df2eff.woff2')format("woff");}.ff1_c01214{font-family:ff1_c01214;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01214;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01214{font-family:ff2_c01214;line-height:0.728027;font-style:normal;font-weight:normal;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_d399b177999d17cac3a1e155.woff2')format("woff");}.ff3_c01214{font-family:ff3_c01214;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsb_c01214{letter-spacing:-0.106800px;}
.lsa_c01214{letter-spacing:0.000000px;}
.ls3_c01214{letter-spacing:0.018600px;}
.ls0_c01214{letter-spacing:0.037200px;}
.lsd_c01214{letter-spacing:0.341400px;}
.ls1_c01214{letter-spacing:0.352200px;}
.lsc_c01214{letter-spacing:0.756000px;}
.ls9_c01214{letter-spacing:6.498720px;}
.ls7_c01214{letter-spacing:9.378720px;}
.ls8_c01214{letter-spacing:10.098720px;}
.ls4_c01214{letter-spacing:18.018720px;}
.ls2_c01214{letter-spacing:18.720480px;}
.ls6_c01214{letter-spacing:24.536520px;}
.ls5_c01214{letter-spacing:30.258720px;}
.sc__c01214{text-shadow:none;}
.sc0_c01214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01214{-webkit-text-stroke:0px transparent;}
.sc0_c01214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01214{word-spacing:-59.760000px;}
.ws4_c01214{word-spacing:-27.377280px;}
.ws2_c01214{word-spacing:-26.973480px;}
.ws5_c01214{word-spacing:-26.962680px;}
.ws1_c01214{word-spacing:-26.658480px;}
.ws3_c01214{word-spacing:-26.639880px;}
.ws6_c01214{word-spacing:-26.621280px;}
.ws7_c01214{word-spacing:0.000000px;}
._9_c01214{margin-left:-3.657249px;}
._2_c01214{margin-left:-2.509800px;}
._0_c01214{margin-left:-1.314600px;}
._1_c01214{width:1.135201px;}
._3_c01214{width:4.273849px;}
._d_c01214{width:6.289617px;}
._c_c01214{width:7.294472px;}
._b_c01214{width:9.328173px;}
._5_c01214{width:17.303265px;}
._4_c01214{width:18.840960px;}
._a_c01214{width:24.364270px;}
._8_c01214{width:25.405769px;}
._6_c01214{width:30.357840px;}
._7_c01214{width:65.752263px;}
.fc1_c01214{color:rgb(255,0,0);}
.fc0_c01214{color:rgb(0,0,0);}
.fs0_c01214{font-size:59.760000px;}
.fs2_c01214{font-size:72.000000px;}
.fs1_c01214{font-size:95.760000px;}
.y0_c01214{bottom:0.000000px;}
.y2_c01214{bottom:12.636000px;}
.y4_c01214{bottom:14.508000px;}
.y1_c01214{bottom:30.636000px;}
.y3_c01214{bottom:32.508000px;}
.ye_c01214{bottom:39.420000px;}
.yd_c01214{bottom:68.220000px;}
.yc_c01214{bottom:97.020000px;}
.yb_c01214{bottom:125.820000px;}
.ya_c01214{bottom:154.650000px;}
.y9_c01214{bottom:183.450000px;}
.y8_c01214{bottom:212.250000px;}
.y7_c01214{bottom:241.050000px;}
.y5_c01214{bottom:647.670000px;}
.y6_c01214{bottom:685.050000px;}
.h1_c01214{height:43.565273px;}
.h3_c01214{height:52.417969px;}
.h2_c01214{height:69.715898px;}
.h4_c01214{height:69.809414px;}
.h0_c01214{height:810.000000px;}
.w0_c01214{width:1080.000000px;}
.x0_c01214{left:0.000000px;}
.x3_c01214{left:62.172000px;}
.x6_c01214{left:72.504000px;}
.x2_c01214{left:432.510000px;}
.x1_c01214{left:437.370000px;}
.x7_c01214{left:439.635000px;}
.x5_c01214{left:698.040000px;}
.x4_c01214{left:852.150000px;}
@media print{
.v0_c01214{vertical-align:0.000000pt;}
.lsb_c01214{letter-spacing:-0.094933pt;}
.lsa_c01214{letter-spacing:0.000000pt;}
.ls3_c01214{letter-spacing:0.016533pt;}
.ls0_c01214{letter-spacing:0.033067pt;}
.lsd_c01214{letter-spacing:0.303467pt;}
.ls1_c01214{letter-spacing:0.313067pt;}
.lsc_c01214{letter-spacing:0.672000pt;}
.ls9_c01214{letter-spacing:5.776640pt;}
.ls7_c01214{letter-spacing:8.336640pt;}
.ls8_c01214{letter-spacing:8.976640pt;}
.ls4_c01214{letter-spacing:16.016640pt;}
.ls2_c01214{letter-spacing:16.640427pt;}
.ls6_c01214{letter-spacing:21.810240pt;}
.ls5_c01214{letter-spacing:26.896640pt;}
.ws0_c01214{word-spacing:-53.120000pt;}
.ws4_c01214{word-spacing:-24.335360pt;}
.ws2_c01214{word-spacing:-23.976427pt;}
.ws5_c01214{word-spacing:-23.966827pt;}
.ws1_c01214{word-spacing:-23.696427pt;}
.ws3_c01214{word-spacing:-23.679893pt;}
.ws6_c01214{word-spacing:-23.663360pt;}
.ws7_c01214{word-spacing:0.000000pt;}
._9_c01214{margin-left:-3.250888pt;}
._2_c01214{margin-left:-2.230934pt;}
._0_c01214{margin-left:-1.168534pt;}
._1_c01214{width:1.009068pt;}
._3_c01214{width:3.798977pt;}
._d_c01214{width:5.590771pt;}
._c_c01214{width:6.483975pt;}
._b_c01214{width:8.291709pt;}
._5_c01214{width:15.380680pt;}
._4_c01214{width:16.747520pt;}
._a_c01214{width:21.657129pt;}
._8_c01214{width:22.582905pt;}
._6_c01214{width:26.984747pt;}
._7_c01214{width:58.446456pt;}
.fs0_c01214{font-size:53.120000pt;}
.fs2_c01214{font-size:64.000000pt;}
.fs1_c01214{font-size:85.120000pt;}
.y0_c01214{bottom:0.000000pt;}
.y2_c01214{bottom:11.232000pt;}
.y4_c01214{bottom:12.896000pt;}
.y1_c01214{bottom:27.232000pt;}
.y3_c01214{bottom:28.896000pt;}
.ye_c01214{bottom:35.040000pt;}
.yd_c01214{bottom:60.640000pt;}
.yc_c01214{bottom:86.240000pt;}
.yb_c01214{bottom:111.840000pt;}
.ya_c01214{bottom:137.466667pt;}
.y9_c01214{bottom:163.066667pt;}
.y8_c01214{bottom:188.666667pt;}
.y7_c01214{bottom:214.266667pt;}
.y5_c01214{bottom:575.706667pt;}
.y6_c01214{bottom:608.933333pt;}
.h1_c01214{height:38.724688pt;}
.h3_c01214{height:46.593750pt;}
.h2_c01214{height:61.969687pt;}
.h4_c01214{height:62.052813pt;}
.h0_c01214{height:720.000000pt;}
.w0_c01214{width:960.000000pt;}
.x0_c01214{left:0.000000pt;}
.x3_c01214{left:55.264000pt;}
.x6_c01214{left:64.448000pt;}
.x2_c01214{left:384.453333pt;}
.x1_c01214{left:388.773333pt;}
.x7_c01214{left:390.786667pt;}
.x5_c01214{left:620.480000pt;}
.x4_c01214{left:757.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_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_dd0b60ecab58c61ff74e938e.woff2')format("woff");}.ff1_c01215{font-family:ff1_c01215;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01215;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01215{font-family:ff2_c01215;line-height:0.728027;font-style:normal;font-weight:normal;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_3e106e1536675a6f799ba089.woff2')format("woff");}.ff3_c01215{font-family:ff3_c01215;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsb_c01215{letter-spacing:-0.106800px;}
.lsf_c01215{letter-spacing:-0.042600px;}
.ls10_c01215{letter-spacing:-0.021600px;}
.lsa_c01215{letter-spacing:0.000000px;}
.ls0_c01215{letter-spacing:0.018600px;}
.ls3_c01215{letter-spacing:0.037200px;}
.ls9_c01215{letter-spacing:0.208200px;}
.lse_c01215{letter-spacing:0.309600px;}
.lsc_c01215{letter-spacing:0.341400px;}
.lsd_c01215{letter-spacing:0.530400px;}
.ls8_c01215{letter-spacing:2.178720px;}
.ls1_c01215{letter-spacing:2.898720px;}
.ls5_c01215{letter-spacing:5.716800px;}
.ls6_c01215{letter-spacing:5.738688px;}
.ls2_c01215{letter-spacing:12.978720px;}
.ls4_c01215{letter-spacing:20.179200px;}
.ls7_c01215{letter-spacing:36.720480px;}
.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:-59.760000px;}
.ws4_c01215{word-spacing:-27.151680px;}
.ws3_c01215{word-spacing:-26.962680px;}
.ws6_c01215{word-spacing:-26.829480px;}
.ws2_c01215{word-spacing:-26.658480px;}
.ws1_c01215{word-spacing:-26.639880px;}
.ws5_c01215{word-spacing:-26.639712px;}
.ws7_c01215{word-spacing:0.000000px;}
._a_c01215{margin-left:-7.774778px;}
._b_c01215{margin-left:-4.983480px;}
._2_c01215{margin-left:-2.509800px;}
._0_c01215{margin-left:-1.314600px;}
._1_c01215{width:1.135201px;}
._4_c01215{width:2.656399px;}
._3_c01215{width:3.768600px;}
._8_c01215{width:5.375995px;}
._7_c01215{width:6.728160px;}
._5_c01215{width:13.270319px;}
._6_c01215{width:19.654199px;}
._9_c01215{width:37.293600px;}
.fc1_c01215{color:rgb(255,0,0);}
.fc0_c01215{color:rgb(0,0,0);}
.fs0_c01215{font-size:59.760000px;}
.fs2_c01215{font-size:72.000000px;}
.fs1_c01215{font-size:95.760000px;}
.fs3_c01215{font-size:95.904000px;}
.y0_c01215{bottom:0.000000px;}
.y2_c01215{bottom:12.636000px;}
.y4_c01215{bottom:14.508000px;}
.y1_c01215{bottom:30.636000px;}
.y3_c01215{bottom:32.508000px;}
.ye_c01215{bottom:84.564000px;}
.yd_c01215{bottom:113.364000px;}
.yc_c01215{bottom:142.164000px;}
.yb_c01215{bottom:170.970000px;}
.ya_c01215{bottom:199.800000px;}
.y9_c01215{bottom:228.600000px;}
.y8_c01215{bottom:257.400000px;}
.y7_c01215{bottom:286.200000px;}
.yf_c01215{bottom:608.505000px;}
.y5_c01215{bottom:647.670000px;}
.y6_c01215{bottom:685.050000px;}
.h1_c01215{height:43.565273px;}
.h3_c01215{height:52.417969px;}
.h2_c01215{height:69.715898px;}
.h4_c01215{height:69.809414px;}
.h5_c01215{height:69.914391px;}
.h0_c01215{height:810.000000px;}
.w0_c01215{width:1080.000000px;}
.x0_c01215{left:0.000000px;}
.x3_c01215{left:62.172000px;}
.x6_c01215{left:72.504000px;}
.x2_c01215{left:432.510000px;}
.x1_c01215{left:437.370000px;}
.x7_c01215{left:515.415000px;}
.x5_c01215{left:698.040000px;}
.x4_c01215{left:852.150000px;}
.x8_c01215{left:868.500000px;}
@media print{
.v0_c01215{vertical-align:0.000000pt;}
.lsb_c01215{letter-spacing:-0.094933pt;}
.lsf_c01215{letter-spacing:-0.037867pt;}
.ls10_c01215{letter-spacing:-0.019200pt;}
.lsa_c01215{letter-spacing:0.000000pt;}
.ls0_c01215{letter-spacing:0.016533pt;}
.ls3_c01215{letter-spacing:0.033067pt;}
.ls9_c01215{letter-spacing:0.185067pt;}
.lse_c01215{letter-spacing:0.275200pt;}
.lsc_c01215{letter-spacing:0.303467pt;}
.lsd_c01215{letter-spacing:0.471467pt;}
.ls8_c01215{letter-spacing:1.936640pt;}
.ls1_c01215{letter-spacing:2.576640pt;}
.ls5_c01215{letter-spacing:5.081600pt;}
.ls6_c01215{letter-spacing:5.101056pt;}
.ls2_c01215{letter-spacing:11.536640pt;}
.ls4_c01215{letter-spacing:17.937067pt;}
.ls7_c01215{letter-spacing:32.640427pt;}
.ws0_c01215{word-spacing:-53.120000pt;}
.ws4_c01215{word-spacing:-24.134827pt;}
.ws3_c01215{word-spacing:-23.966827pt;}
.ws6_c01215{word-spacing:-23.848427pt;}
.ws2_c01215{word-spacing:-23.696427pt;}
.ws1_c01215{word-spacing:-23.679893pt;}
.ws5_c01215{word-spacing:-23.679744pt;}
.ws7_c01215{word-spacing:0.000000pt;}
._a_c01215{margin-left:-6.910913pt;}
._b_c01215{margin-left:-4.429760pt;}
._2_c01215{margin-left:-2.230934pt;}
._0_c01215{margin-left:-1.168534pt;}
._1_c01215{width:1.009068pt;}
._4_c01215{width:2.361244pt;}
._3_c01215{width:3.349866pt;}
._8_c01215{width:4.778662pt;}
._7_c01215{width:5.980587pt;}
._5_c01215{width:11.795839pt;}
._6_c01215{width:17.470399pt;}
._9_c01215{width:33.149867pt;}
.fs0_c01215{font-size:53.120000pt;}
.fs2_c01215{font-size:64.000000pt;}
.fs1_c01215{font-size:85.120000pt;}
.fs3_c01215{font-size:85.248000pt;}
.y0_c01215{bottom:0.000000pt;}
.y2_c01215{bottom:11.232000pt;}
.y4_c01215{bottom:12.896000pt;}
.y1_c01215{bottom:27.232000pt;}
.y3_c01215{bottom:28.896000pt;}
.ye_c01215{bottom:75.168000pt;}
.yd_c01215{bottom:100.768000pt;}
.yc_c01215{bottom:126.368000pt;}
.yb_c01215{bottom:151.973333pt;}
.ya_c01215{bottom:177.600000pt;}
.y9_c01215{bottom:203.200000pt;}
.y8_c01215{bottom:228.800000pt;}
.y7_c01215{bottom:254.400000pt;}
.yf_c01215{bottom:540.893333pt;}
.y5_c01215{bottom:575.706667pt;}
.y6_c01215{bottom:608.933333pt;}
.h1_c01215{height:38.724688pt;}
.h3_c01215{height:46.593750pt;}
.h2_c01215{height:61.969687pt;}
.h4_c01215{height:62.052813pt;}
.h5_c01215{height:62.146125pt;}
.h0_c01215{height:720.000000pt;}
.w0_c01215{width:960.000000pt;}
.x0_c01215{left:0.000000pt;}
.x3_c01215{left:55.264000pt;}
.x6_c01215{left:64.448000pt;}
.x2_c01215{left:384.453333pt;}
.x1_c01215{left:388.773333pt;}
.x7_c01215{left:458.146667pt;}
.x5_c01215{left:620.480000pt;}
.x4_c01215{left:757.466667pt;}
.x8_c01215{left:772.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_7c82730f3c2388d840d6f836.woff2')format("woff");}.ff1_c01216{font-family:ff1_c01216;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01216;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01216{font-family:ff2_c01216;line-height:0.728027;font-style:normal;font-weight:normal;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_911ed3d770dde9553e5cc44e.woff2')format("woff");}.ff3_c01216{font-family:ff3_c01216;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c01216{letter-spacing:-0.106800px;}
.ls0_c01216{letter-spacing:0.000000px;}
.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:-59.760000px;}
.ws1_c01216{word-spacing:0.000000px;}
._3_c01216{margin-left:-6.675553px;}
._2_c01216{margin-left:-2.509800px;}
._0_c01216{margin-left:-1.314600px;}
._1_c01216{width:1.135201px;}
._4_c01216{width:2.653822px;}
.fc1_c01216{color:rgb(255,0,0);}
.fc0_c01216{color:rgb(0,0,0);}
.fs0_c01216{font-size:59.760000px;}
.fs3_c01216{font-size:59.904000px;}
.fs2_c01216{font-size:72.000000px;}
.fs1_c01216{font-size:95.760000px;}
.y0_c01216{bottom:0.000000px;}
.y2_c01216{bottom:12.636000px;}
.y4_c01216{bottom:14.508000px;}
.y1_c01216{bottom:30.636000px;}
.y3_c01216{bottom:32.508000px;}
.y8_c01216{bottom:122.940000px;}
.y7_c01216{bottom:240.195000px;}
.y5_c01216{bottom:647.670000px;}
.y6_c01216{bottom:685.050000px;}
.h1_c01216{height:43.565273px;}
.h4_c01216{height:43.670250px;}
.h3_c01216{height:52.417969px;}
.h2_c01216{height:69.715898px;}
.h0_c01216{height:810.000000px;}
.w0_c01216{width:1080.000000px;}
.x0_c01216{left:0.000000px;}
.x3_c01216{left:62.172000px;}
.x6_c01216{left:72.504000px;}
.x8_c01216{left:267.405000px;}
.x2_c01216{left:432.510000px;}
.x1_c01216{left:437.370000px;}
.x5_c01216{left:698.040000px;}
.x4_c01216{left:852.150000px;}
.x7_c01216{left:944.355000px;}
@media print{
.v0_c01216{vertical-align:0.000000pt;}
.ls1_c01216{letter-spacing:-0.094933pt;}
.ls0_c01216{letter-spacing:0.000000pt;}
.ws0_c01216{word-spacing:-53.120000pt;}
.ws1_c01216{word-spacing:0.000000pt;}
._3_c01216{margin-left:-5.933825pt;}
._2_c01216{margin-left:-2.230934pt;}
._0_c01216{margin-left:-1.168534pt;}
._1_c01216{width:1.009068pt;}
._4_c01216{width:2.358953pt;}
.fs0_c01216{font-size:53.120000pt;}
.fs3_c01216{font-size:53.248000pt;}
.fs2_c01216{font-size:64.000000pt;}
.fs1_c01216{font-size:85.120000pt;}
.y0_c01216{bottom:0.000000pt;}
.y2_c01216{bottom:11.232000pt;}
.y4_c01216{bottom:12.896000pt;}
.y1_c01216{bottom:27.232000pt;}
.y3_c01216{bottom:28.896000pt;}
.y8_c01216{bottom:109.280000pt;}
.y7_c01216{bottom:213.506667pt;}
.y5_c01216{bottom:575.706667pt;}
.y6_c01216{bottom:608.933333pt;}
.h1_c01216{height:38.724688pt;}
.h4_c01216{height:38.818000pt;}
.h3_c01216{height:46.593750pt;}
.h2_c01216{height:61.969687pt;}
.h0_c01216{height:720.000000pt;}
.w0_c01216{width:960.000000pt;}
.x0_c01216{left:0.000000pt;}
.x3_c01216{left:55.264000pt;}
.x6_c01216{left:64.448000pt;}
.x8_c01216{left:237.693333pt;}
.x2_c01216{left:384.453333pt;}
.x1_c01216{left:388.773333pt;}
.x5_c01216{left:620.480000pt;}
.x4_c01216{left:757.466667pt;}
.x7_c01216{left:839.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e6d68ffc73810047a1e6596b.woff2')format("woff");}.ff1_c01217{font-family:ff1_c01217;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01217;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01217{font-family:ff2_c01217;line-height:0.728027;font-style:normal;font-weight:normal;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_f3a368ae8b44439791ffaa20.woff2')format("woff");}.ff3_c01217{font-family:ff3_c01217;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c01217{letter-spacing:-0.106800px;}
.ls0_c01217{letter-spacing:0.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:-59.760000px;}
.ws1_c01217{word-spacing:0.000000px;}
._3_c01217{margin-left:-5.664721px;}
._2_c01217{margin-left:-2.509800px;}
._0_c01217{margin-left:-1.314600px;}
._1_c01217{width:1.135201px;}
._4_c01217{width:2.152193px;}
.fc0_c01217{color:rgb(0,0,0);}
.fs0_c01217{font-size:59.760000px;}
.fs1_c01217{font-size:167.760000px;}
.y0_c01217{bottom:0.000000px;}
.y2_c01217{bottom:12.636000px;}
.y4_c01217{bottom:14.508000px;}
.y1_c01217{bottom:30.636000px;}
.y3_c01217{bottom:32.508000px;}
.y6_c01217{bottom:404.490000px;}
.y5_c01217{bottom:460.830000px;}
.h1_c01217{height:43.565273px;}
.h2_c01217{height:122.133867px;}
.h0_c01217{height:810.000000px;}
.w0_c01217{width:1080.000000px;}
.x0_c01217{left:0.000000px;}
.x3_c01217{left:62.172000px;}
.x7_c01217{left:247.785000px;}
.x6_c01217{left:396.510000px;}
.x2_c01217{left:432.510000px;}
.x1_c01217{left:437.370000px;}
.x5_c01217{left:698.040000px;}
.x4_c01217{left:852.150000px;}
@media print{
.v0_c01217{vertical-align:0.000000pt;}
.ls1_c01217{letter-spacing:-0.094933pt;}
.ls0_c01217{letter-spacing:0.000000pt;}
.ws0_c01217{word-spacing:-53.120000pt;}
.ws1_c01217{word-spacing:0.000000pt;}
._3_c01217{margin-left:-5.035308pt;}
._2_c01217{margin-left:-2.230934pt;}
._0_c01217{margin-left:-1.168534pt;}
._1_c01217{width:1.009068pt;}
._4_c01217{width:1.913060pt;}
.fs0_c01217{font-size:53.120000pt;}
.fs1_c01217{font-size:149.120000pt;}
.y0_c01217{bottom:0.000000pt;}
.y2_c01217{bottom:11.232000pt;}
.y4_c01217{bottom:12.896000pt;}
.y1_c01217{bottom:27.232000pt;}
.y3_c01217{bottom:28.896000pt;}
.y6_c01217{bottom:359.546667pt;}
.y5_c01217{bottom:409.626667pt;}
.h1_c01217{height:38.724688pt;}
.h2_c01217{height:108.563437pt;}
.h0_c01217{height:720.000000pt;}
.w0_c01217{width:960.000000pt;}
.x0_c01217{left:0.000000pt;}
.x3_c01217{left:55.264000pt;}
.x7_c01217{left:220.253333pt;}
.x6_c01217{left:352.453333pt;}
.x2_c01217{left:384.453333pt;}
.x1_c01217{left:388.773333pt;}
.x5_c01217{left:620.480000pt;}
.x4_c01217{left:757.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_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_6e93be44e1ea0728ee9f7b0e.woff2')format("woff");}.ff1_c01218{font-family:ff1_c01218;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01218;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01218{font-family:ff2_c01218;line-height:0.728027;font-style:normal;font-weight:normal;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_c3cf0ce254a211456666ee3f.woff2')format("woff");}.ff3_c01218{font-family:ff3_c01218;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01218{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01218{vertical-align:0.000000px;}
.ls1_c01218{letter-spacing:-0.106800px;}
.ls0_c01218{letter-spacing:0.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;}
}
.ws0_c01218{word-spacing:-59.760000px;}
.ws1_c01218{word-spacing:0.000000px;}
._2_c01218{margin-left:-2.509800px;}
._0_c01218{margin-left:-1.314600px;}
._1_c01218{width:1.135201px;}
._3_c01218{width:2.292600px;}
.fc1_c01218{color:rgb(255,0,0);}
.fc0_c01218{color:rgb(0,0,0);}
.fs0_c01218{font-size:59.760000px;}
.fs1_c01218{font-size:72.000000px;}
.fs2_c01218{font-size:95.760000px;}
.y0_c01218{bottom:0.000000px;}
.y2_c01218{bottom:12.636000px;}
.y4_c01218{bottom:14.508000px;}
.y1_c01218{bottom:30.636000px;}
.y3_c01218{bottom:32.508000px;}
.y6_c01218{bottom:647.670000px;}
.y5_c01218{bottom:685.050000px;}
.h1_c01218{height:43.565273px;}
.h2_c01218{height:52.417969px;}
.h3_c01218{height:69.715898px;}
.h0_c01218{height:810.000000px;}
.w0_c01218{width:1080.000000px;}
.x0_c01218{left:0.000000px;}
.x3_c01218{left:62.172000px;}
.x6_c01218{left:72.504000px;}
.x2_c01218{left:432.510000px;}
.x1_c01218{left:437.370000px;}
.x5_c01218{left:698.040000px;}
.x4_c01218{left:852.150000px;}
@media print{
.v0_c01218{vertical-align:0.000000pt;}
.ls1_c01218{letter-spacing:-0.094933pt;}
.ls0_c01218{letter-spacing:0.000000pt;}
.ws0_c01218{word-spacing:-53.120000pt;}
.ws1_c01218{word-spacing:0.000000pt;}
._2_c01218{margin-left:-2.230934pt;}
._0_c01218{margin-left:-1.168534pt;}
._1_c01218{width:1.009068pt;}
._3_c01218{width:2.037866pt;}
.fs0_c01218{font-size:53.120000pt;}
.fs1_c01218{font-size:64.000000pt;}
.fs2_c01218{font-size:85.120000pt;}
.y0_c01218{bottom:0.000000pt;}
.y2_c01218{bottom:11.232000pt;}
.y4_c01218{bottom:12.896000pt;}
.y1_c01218{bottom:27.232000pt;}
.y3_c01218{bottom:28.896000pt;}
.y6_c01218{bottom:575.706667pt;}
.y5_c01218{bottom:608.933333pt;}
.h1_c01218{height:38.724688pt;}
.h2_c01218{height:46.593750pt;}
.h3_c01218{height:61.969687pt;}
.h0_c01218{height:720.000000pt;}
.w0_c01218{width:960.000000pt;}
.x0_c01218{left:0.000000pt;}
.x3_c01218{left:55.264000pt;}
.x6_c01218{left:64.448000pt;}
.x2_c01218{left:384.453333pt;}
.x1_c01218{left:388.773333pt;}
.x5_c01218{left:620.480000pt;}
.x4_c01218{left:757.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_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_29ee0fe951f35e8d83086fb7.woff2')format("woff");}.ff1_c01219{font-family:ff1_c01219;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01219;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01219{font-family:ff2_c01219;line-height:0.728027;font-style:normal;font-weight:normal;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_e404e7263b41f74f55c564f7.woff2')format("woff");}.ff3_c01219{font-family:ff3_c01219;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c01219{letter-spacing:-0.328200px;}
.ls5_c01219{letter-spacing:-0.106800px;}
.ls4_c01219{letter-spacing:0.000000px;}
.ls1_c01219{letter-spacing:0.018600px;}
.ls3_c01219{letter-spacing:0.037200px;}
.ls0_c01219{letter-spacing:0.208080px;}
.ls7_c01219{letter-spacing:0.341400px;}
.ls2_c01219{letter-spacing:1.458720px;}
.sc__c01219{text-shadow:none;}
.sc0_c01219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01219{-webkit-text-stroke:0px transparent;}
.sc0_c01219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01219{word-spacing:-59.760000px;}
.ws2_c01219{word-spacing:-26.962680px;}
.ws3_c01219{word-spacing:-26.658480px;}
.ws1_c01219{word-spacing:-26.639880px;}
.ws4_c01219{word-spacing:0.000000px;}
._4_c01219{margin-left:-4.946387px;}
._2_c01219{margin-left:-2.509800px;}
._0_c01219{margin-left:-1.314600px;}
._1_c01219{width:1.135201px;}
._3_c01219{width:2.292600px;}
.fc1_c01219{color:rgb(255,0,0);}
.fc0_c01219{color:rgb(0,0,0);}
.fs0_c01219{font-size:59.760000px;}
.fs2_c01219{font-size:72.000000px;}
.fs3_c01219{font-size:95.760000px;}
.fs1_c01219{font-size:576.144000px;}
.y0_c01219{bottom:0.000000px;}
.y2_c01219{bottom:12.636000px;}
.y4_c01219{bottom:14.508000px;}
.y1_c01219{bottom:30.636000px;}
.y3_c01219{bottom:32.508000px;}
.y5_c01219{bottom:71.172000px;}
.yd_c01219{bottom:445.290000px;}
.yc_c01219{bottom:474.090000px;}
.yb_c01219{bottom:502.920000px;}
.ya_c01219{bottom:531.720000px;}
.y9_c01219{bottom:560.520000px;}
.y8_c01219{bottom:589.320000px;}
.y7_c01219{bottom:647.670000px;}
.y6_c01219{bottom:685.050000px;}
.h1_c01219{height:43.565273px;}
.h3_c01219{height:52.417969px;}
.h4_c01219{height:69.715898px;}
.h5_c01219{height:69.809414px;}
.h2_c01219{height:420.011227px;}
.h0_c01219{height:810.000000px;}
.w0_c01219{width:1080.000000px;}
.x0_c01219{left:0.000000px;}
.x3_c01219{left:62.172000px;}
.x7_c01219{left:72.504000px;}
.x6_c01219{left:285.660000px;}
.x2_c01219{left:432.510000px;}
.x1_c01219{left:437.370000px;}
.x8_c01219{left:681.480000px;}
.x5_c01219{left:698.040000px;}
.x4_c01219{left:852.150000px;}
@media print{
.v0_c01219{vertical-align:0.000000pt;}
.ls6_c01219{letter-spacing:-0.291733pt;}
.ls5_c01219{letter-spacing:-0.094933pt;}
.ls4_c01219{letter-spacing:0.000000pt;}
.ls1_c01219{letter-spacing:0.016533pt;}
.ls3_c01219{letter-spacing:0.033067pt;}
.ls0_c01219{letter-spacing:0.184960pt;}
.ls7_c01219{letter-spacing:0.303467pt;}
.ls2_c01219{letter-spacing:1.296640pt;}
.ws0_c01219{word-spacing:-53.120000pt;}
.ws2_c01219{word-spacing:-23.966827pt;}
.ws3_c01219{word-spacing:-23.696427pt;}
.ws1_c01219{word-spacing:-23.679893pt;}
.ws4_c01219{word-spacing:0.000000pt;}
._4_c01219{margin-left:-4.396788pt;}
._2_c01219{margin-left:-2.230934pt;}
._0_c01219{margin-left:-1.168534pt;}
._1_c01219{width:1.009068pt;}
._3_c01219{width:2.037866pt;}
.fs0_c01219{font-size:53.120000pt;}
.fs2_c01219{font-size:64.000000pt;}
.fs3_c01219{font-size:85.120000pt;}
.fs1_c01219{font-size:512.128000pt;}
.y0_c01219{bottom:0.000000pt;}
.y2_c01219{bottom:11.232000pt;}
.y4_c01219{bottom:12.896000pt;}
.y1_c01219{bottom:27.232000pt;}
.y3_c01219{bottom:28.896000pt;}
.y5_c01219{bottom:63.264000pt;}
.yd_c01219{bottom:395.813333pt;}
.yc_c01219{bottom:421.413333pt;}
.yb_c01219{bottom:447.040000pt;}
.ya_c01219{bottom:472.640000pt;}
.y9_c01219{bottom:498.240000pt;}
.y8_c01219{bottom:523.840000pt;}
.y7_c01219{bottom:575.706667pt;}
.y6_c01219{bottom:608.933333pt;}
.h1_c01219{height:38.724688pt;}
.h3_c01219{height:46.593750pt;}
.h4_c01219{height:61.969687pt;}
.h5_c01219{height:62.052813pt;}
.h2_c01219{height:373.343312pt;}
.h0_c01219{height:720.000000pt;}
.w0_c01219{width:960.000000pt;}
.x0_c01219{left:0.000000pt;}
.x3_c01219{left:55.264000pt;}
.x7_c01219{left:64.448000pt;}
.x6_c01219{left:253.920000pt;}
.x2_c01219{left:384.453333pt;}
.x1_c01219{left:388.773333pt;}
.x8_c01219{left:605.760000pt;}
.x5_c01219{left:620.480000pt;}
.x4_c01219{left:757.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_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_cd761d6f9ccf75e3f08d5d19.woff2')format("woff");}.ff1_c01220{font-family:ff1_c01220;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01220;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01220{font-family:ff2_c01220;line-height:0.728027;font-style:normal;font-weight:normal;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_27c604dadf9836c33df04abf.woff2')format("woff");}.ff3_c01220{font-family:ff3_c01220;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c01220{letter-spacing:-0.106800px;}
.ls7_c01220{letter-spacing:-0.042600px;}
.ls4_c01220{letter-spacing:0.000000px;}
.ls0_c01220{letter-spacing:0.018600px;}
.ls6_c01220{letter-spacing:0.037200px;}
.ls3_c01220{letter-spacing:0.208200px;}
.ls8_c01220{letter-spacing:0.341400px;}
.ls2_c01220{letter-spacing:9.378720px;}
.ls1_c01220{letter-spacing:14.378616px;}
.sc__c01220{text-shadow:none;}
.sc0_c01220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01220{-webkit-text-stroke:0px transparent;}
.sc0_c01220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01220{word-spacing:-59.760000px;}
.ws5_c01220{word-spacing:-26.829480px;}
.ws2_c01220{word-spacing:-26.658480px;}
.ws1_c01220{word-spacing:-26.639880px;}
.ws4_c01220{word-spacing:-26.621280px;}
.ws3_c01220{word-spacing:-26.618712px;}
.ws6_c01220{word-spacing:0.000000px;}
._2_c01220{margin-left:-2.509800px;}
._0_c01220{margin-left:-1.314600px;}
._1_c01220{width:1.135201px;}
._3_c01220{width:2.292600px;}
._7_c01220{width:9.457598px;}
._6_c01220{width:14.718816px;}
._4_c01220{width:31.583946px;}
._5_c01220{width:32.589624px;}
.fc1_c01220{color:rgb(255,0,0);}
.fc0_c01220{color:rgb(0,0,0);}
.fs0_c01220{font-size:59.760000px;}
.fs1_c01220{font-size:72.000000px;}
.fs2_c01220{font-size:95.760000px;}
.fs3_c01220{font-size:95.904000px;}
.y0_c01220{bottom:0.000000px;}
.y2_c01220{bottom:12.636000px;}
.y4_c01220{bottom:14.508000px;}
.y1_c01220{bottom:30.636000px;}
.y3_c01220{bottom:32.508000px;}
.y9_c01220{bottom:70.596000px;}
.y8_c01220{bottom:99.396000px;}
.y7_c01220{bottom:128.196000px;}
.yd_c01220{bottom:198.180000px;}
.yc_c01220{bottom:226.980000px;}
.yb_c01220{bottom:255.780000px;}
.ya_c01220{bottom:284.580000px;}
.y6_c01220{bottom:647.670000px;}
.y5_c01220{bottom:685.050000px;}
.h1_c01220{height:43.565273px;}
.h2_c01220{height:52.417969px;}
.h3_c01220{height:69.715898px;}
.h4_c01220{height:69.809414px;}
.h5_c01220{height:69.914391px;}
.h0_c01220{height:810.000000px;}
.w0_c01220{width:1080.000000px;}
.x0_c01220{left:0.000000px;}
.x7_c01220{left:26.928000px;}
.x3_c01220{left:62.172000px;}
.x6_c01220{left:72.504000px;}
.x2_c01220{left:432.510000px;}
.x1_c01220{left:437.370000px;}
.x8_c01220{left:599.250000px;}
.x5_c01220{left:698.040000px;}
.x4_c01220{left:852.150000px;}
@media print{
.v0_c01220{vertical-align:0.000000pt;}
.ls5_c01220{letter-spacing:-0.094933pt;}
.ls7_c01220{letter-spacing:-0.037867pt;}
.ls4_c01220{letter-spacing:0.000000pt;}
.ls0_c01220{letter-spacing:0.016533pt;}
.ls6_c01220{letter-spacing:0.033067pt;}
.ls3_c01220{letter-spacing:0.185067pt;}
.ls8_c01220{letter-spacing:0.303467pt;}
.ls2_c01220{letter-spacing:8.336640pt;}
.ls1_c01220{letter-spacing:12.780992pt;}
.ws0_c01220{word-spacing:-53.120000pt;}
.ws5_c01220{word-spacing:-23.848427pt;}
.ws2_c01220{word-spacing:-23.696427pt;}
.ws1_c01220{word-spacing:-23.679893pt;}
.ws4_c01220{word-spacing:-23.663360pt;}
.ws3_c01220{word-spacing:-23.661077pt;}
.ws6_c01220{word-spacing:0.000000pt;}
._2_c01220{margin-left:-2.230934pt;}
._0_c01220{margin-left:-1.168534pt;}
._1_c01220{width:1.009068pt;}
._3_c01220{width:2.037866pt;}
._7_c01220{width:8.406753pt;}
._6_c01220{width:13.083392pt;}
._4_c01220{width:28.074619pt;}
._5_c01220{width:28.968554pt;}
.fs0_c01220{font-size:53.120000pt;}
.fs1_c01220{font-size:64.000000pt;}
.fs2_c01220{font-size:85.120000pt;}
.fs3_c01220{font-size:85.248000pt;}
.y0_c01220{bottom:0.000000pt;}
.y2_c01220{bottom:11.232000pt;}
.y4_c01220{bottom:12.896000pt;}
.y1_c01220{bottom:27.232000pt;}
.y3_c01220{bottom:28.896000pt;}
.y9_c01220{bottom:62.752000pt;}
.y8_c01220{bottom:88.352000pt;}
.y7_c01220{bottom:113.952000pt;}
.yd_c01220{bottom:176.160000pt;}
.yc_c01220{bottom:201.760000pt;}
.yb_c01220{bottom:227.360000pt;}
.ya_c01220{bottom:252.960000pt;}
.y6_c01220{bottom:575.706667pt;}
.y5_c01220{bottom:608.933333pt;}
.h1_c01220{height:38.724688pt;}
.h2_c01220{height:46.593750pt;}
.h3_c01220{height:61.969687pt;}
.h4_c01220{height:62.052813pt;}
.h5_c01220{height:62.146125pt;}
.h0_c01220{height:720.000000pt;}
.w0_c01220{width:960.000000pt;}
.x0_c01220{left:0.000000pt;}
.x7_c01220{left:23.936000pt;}
.x3_c01220{left:55.264000pt;}
.x6_c01220{left:64.448000pt;}
.x2_c01220{left:384.453333pt;}
.x1_c01220{left:388.773333pt;}
.x8_c01220{left:532.666667pt;}
.x5_c01220{left:620.480000pt;}
.x4_c01220{left:757.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_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_6e93be44e1ea0728ee9f7b0e.woff2')format("woff");}.ff1_c01221{font-family:ff1_c01221;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01221;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01221{font-family:ff2_c01221;line-height:0.728027;font-style:normal;font-weight:normal;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_74275dc00b4c9e3bade6a04d.woff2')format("woff");}.ff3_c01221{font-family:ff3_c01221;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01221{vertical-align:0.000000px;}
.ls1_c01221{letter-spacing:-0.106800px;}
.ls0_c01221{letter-spacing:0.000000px;}
.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:-59.760000px;}
.ws1_c01221{word-spacing:0.000000px;}
._2_c01221{margin-left:-2.509800px;}
._0_c01221{margin-left:-1.314600px;}
._1_c01221{width:1.135201px;}
.fc0_c01221{color:rgb(0,0,0);}
.fs0_c01221{font-size:59.760000px;}
.fs1_c01221{font-size:167.760000px;}
.y0_c01221{bottom:0.000000px;}
.y2_c01221{bottom:12.636000px;}
.y4_c01221{bottom:14.508000px;}
.y1_c01221{bottom:30.636000px;}
.y3_c01221{bottom:32.508000px;}
.y5_c01221{bottom:460.830000px;}
.h1_c01221{height:43.565273px;}
.h2_c01221{height:122.133867px;}
.h0_c01221{height:810.000000px;}
.w0_c01221{width:1080.000000px;}
.x0_c01221{left:0.000000px;}
.x3_c01221{left:62.172000px;}
.x6_c01221{left:337.245000px;}
.x2_c01221{left:432.510000px;}
.x1_c01221{left:437.370000px;}
.x5_c01221{left:698.040000px;}
.x4_c01221{left:852.150000px;}
@media print{
.v0_c01221{vertical-align:0.000000pt;}
.ls1_c01221{letter-spacing:-0.094933pt;}
.ls0_c01221{letter-spacing:0.000000pt;}
.ws0_c01221{word-spacing:-53.120000pt;}
.ws1_c01221{word-spacing:0.000000pt;}
._2_c01221{margin-left:-2.230934pt;}
._0_c01221{margin-left:-1.168534pt;}
._1_c01221{width:1.009068pt;}
.fs0_c01221{font-size:53.120000pt;}
.fs1_c01221{font-size:149.120000pt;}
.y0_c01221{bottom:0.000000pt;}
.y2_c01221{bottom:11.232000pt;}
.y4_c01221{bottom:12.896000pt;}
.y1_c01221{bottom:27.232000pt;}
.y3_c01221{bottom:28.896000pt;}
.y5_c01221{bottom:409.626667pt;}
.h1_c01221{height:38.724688pt;}
.h2_c01221{height:108.563437pt;}
.h0_c01221{height:720.000000pt;}
.w0_c01221{width:960.000000pt;}
.x0_c01221{left:0.000000pt;}
.x3_c01221{left:55.264000pt;}
.x6_c01221{left:299.773333pt;}
.x2_c01221{left:384.453333pt;}
.x1_c01221{left:388.773333pt;}
.x5_c01221{left:620.480000pt;}
.x4_c01221{left:757.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_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_71a0f62346831a61acf9a12f.woff2')format("woff");}.ff1_c01222{font-family:ff1_c01222;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01222;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01222{font-family:ff2_c01222;line-height:0.728027;font-style:normal;font-weight:normal;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_565721fb2e660ab80dd152a3.woff2')format("woff");}.ff3_c01222{font-family:ff3_c01222;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsb_c01222{letter-spacing:-0.106800px;}
.lsf_c01222{letter-spacing:-0.042600px;}
.lse_c01222{letter-spacing:-0.021600px;}
.lsa_c01222{letter-spacing:0.000000px;}
.ls1_c01222{letter-spacing:0.018600px;}
.ls9_c01222{letter-spacing:0.037200px;}
.lsc_c01222{letter-spacing:0.341400px;}
.lsd_c01222{letter-spacing:0.756000px;}
.ls7_c01222{letter-spacing:12.259200px;}
.ls6_c01222{letter-spacing:13.098720px;}
.ls0_c01222{letter-spacing:15.858720px;}
.ls2_c01222{letter-spacing:16.578720px;}
.ls5_c01222{letter-spacing:45.379440px;}
.ls4_c01222{letter-spacing:46.080480px;}
.ls3_c01222{letter-spacing:46.136520px;}
.ls8_c01222{letter-spacing:103.058688px;}
.sc__c01222{text-shadow:none;}
.sc0_c01222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01222{-webkit-text-stroke:0px transparent;}
.sc0_c01222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01222{word-spacing:-59.760000px;}
.ws4_c01222{word-spacing:-27.377280px;}
.ws3_c01222{word-spacing:-26.962680px;}
.ws5_c01222{word-spacing:-26.661312px;}
.ws1_c01222{word-spacing:-26.658480px;}
.ws2_c01222{word-spacing:-26.639880px;}
.ws6_c01222{word-spacing:-26.621280px;}
.ws7_c01222{word-spacing:0.000000px;}
._8_c01222{margin-left:-4.679983px;}
._2_c01222{margin-left:-2.509800px;}
._0_c01222{margin-left:-1.314600px;}
._1_c01222{width:1.135201px;}
._9_c01222{width:2.178636px;}
._5_c01222{width:12.920400px;}
._3_c01222{width:15.743997px;}
._4_c01222{width:46.218564px;}
._7_c01222{width:55.400416px;}
._6_c01222{width:103.568606px;}
.fc1_c01222{color:rgb(255,0,0);}
.fc0_c01222{color:rgb(0,0,0);}
.fs0_c01222{font-size:59.760000px;}
.fs1_c01222{font-size:72.000000px;}
.fs2_c01222{font-size:95.760000px;}
.fs3_c01222{font-size:95.904000px;}
.y0_c01222{bottom:0.000000px;}
.y2_c01222{bottom:12.636000px;}
.y4_c01222{bottom:14.508000px;}
.y1_c01222{bottom:30.636000px;}
.y3_c01222{bottom:32.508000px;}
.yd_c01222{bottom:424.545000px;}
.yc_c01222{bottom:453.345000px;}
.yb_c01222{bottom:482.145000px;}
.ya_c01222{bottom:510.945000px;}
.y9_c01222{bottom:539.790000px;}
.y8_c01222{bottom:568.590000px;}
.y7_c01222{bottom:597.390000px;}
.y6_c01222{bottom:647.670000px;}
.y5_c01222{bottom:685.050000px;}
.h1_c01222{height:43.565273px;}
.h2_c01222{height:52.417969px;}
.h3_c01222{height:69.715898px;}
.h4_c01222{height:69.809414px;}
.h5_c01222{height:69.914391px;}
.h0_c01222{height:810.000000px;}
.w0_c01222{width:1080.000000px;}
.x0_c01222{left:0.000000px;}
.x3_c01222{left:62.172000px;}
.x6_c01222{left:72.504000px;}
.x2_c01222{left:432.510000px;}
.x1_c01222{left:437.370000px;}
.x5_c01222{left:698.040000px;}
.x7_c01222{left:716.910000px;}
.x4_c01222{left:852.150000px;}
@media print{
.v0_c01222{vertical-align:0.000000pt;}
.lsb_c01222{letter-spacing:-0.094933pt;}
.lsf_c01222{letter-spacing:-0.037867pt;}
.lse_c01222{letter-spacing:-0.019200pt;}
.lsa_c01222{letter-spacing:0.000000pt;}
.ls1_c01222{letter-spacing:0.016533pt;}
.ls9_c01222{letter-spacing:0.033067pt;}
.lsc_c01222{letter-spacing:0.303467pt;}
.lsd_c01222{letter-spacing:0.672000pt;}
.ls7_c01222{letter-spacing:10.897067pt;}
.ls6_c01222{letter-spacing:11.643307pt;}
.ls0_c01222{letter-spacing:14.096640pt;}
.ls2_c01222{letter-spacing:14.736640pt;}
.ls5_c01222{letter-spacing:40.337280pt;}
.ls4_c01222{letter-spacing:40.960427pt;}
.ls3_c01222{letter-spacing:41.010240pt;}
.ls8_c01222{letter-spacing:91.607723pt;}
.ws0_c01222{word-spacing:-53.120000pt;}
.ws4_c01222{word-spacing:-24.335360pt;}
.ws3_c01222{word-spacing:-23.966827pt;}
.ws5_c01222{word-spacing:-23.698944pt;}
.ws1_c01222{word-spacing:-23.696427pt;}
.ws2_c01222{word-spacing:-23.679893pt;}
.ws6_c01222{word-spacing:-23.663360pt;}
.ws7_c01222{word-spacing:0.000000pt;}
._8_c01222{margin-left:-4.159985pt;}
._2_c01222{margin-left:-2.230934pt;}
._0_c01222{margin-left:-1.168534pt;}
._1_c01222{width:1.009068pt;}
._9_c01222{width:1.936565pt;}
._5_c01222{width:11.484800pt;}
._3_c01222{width:13.994664pt;}
._4_c01222{width:41.083168pt;}
._7_c01222{width:49.244814pt;}
._6_c01222{width:92.060983pt;}
.fs0_c01222{font-size:53.120000pt;}
.fs1_c01222{font-size:64.000000pt;}
.fs2_c01222{font-size:85.120000pt;}
.fs3_c01222{font-size:85.248000pt;}
.y0_c01222{bottom:0.000000pt;}
.y2_c01222{bottom:11.232000pt;}
.y4_c01222{bottom:12.896000pt;}
.y1_c01222{bottom:27.232000pt;}
.y3_c01222{bottom:28.896000pt;}
.yd_c01222{bottom:377.373333pt;}
.yc_c01222{bottom:402.973333pt;}
.yb_c01222{bottom:428.573333pt;}
.ya_c01222{bottom:454.173333pt;}
.y9_c01222{bottom:479.813333pt;}
.y8_c01222{bottom:505.413333pt;}
.y7_c01222{bottom:531.013333pt;}
.y6_c01222{bottom:575.706667pt;}
.y5_c01222{bottom:608.933333pt;}
.h1_c01222{height:38.724688pt;}
.h2_c01222{height:46.593750pt;}
.h3_c01222{height:61.969687pt;}
.h4_c01222{height:62.052813pt;}
.h5_c01222{height:62.146125pt;}
.h0_c01222{height:720.000000pt;}
.w0_c01222{width:960.000000pt;}
.x0_c01222{left:0.000000pt;}
.x3_c01222{left:55.264000pt;}
.x6_c01222{left:64.448000pt;}
.x2_c01222{left:384.453333pt;}
.x1_c01222{left:388.773333pt;}
.x5_c01222{left:620.480000pt;}
.x7_c01222{left:637.253333pt;}
.x4_c01222{left:757.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_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_18f86b8fd65491154831b949.woff2')format("woff");}.ff1_c01223{font-family:ff1_c01223;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01223;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01223{font-family:ff2_c01223;line-height:0.728027;font-style:normal;font-weight:normal;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_9ee388e0e6961cb93e86ccee.woff2')format("woff");}.ff3_c01223{font-family:ff3_c01223;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7_c01223{letter-spacing:-0.106800px;}
.ls9_c01223{letter-spacing:-0.042600px;}
.lsa_c01223{letter-spacing:-0.021600px;}
.ls6_c01223{letter-spacing:0.000000px;}
.ls1_c01223{letter-spacing:0.018600px;}
.ls4_c01223{letter-spacing:0.037200px;}
.ls8_c01223{letter-spacing:0.341400px;}
.ls3_c01223{letter-spacing:0.738720px;}
.ls5_c01223{letter-spacing:6.480480px;}
.ls0_c01223{letter-spacing:16.578720px;}
.ls2_c01223{letter-spacing:30.218688px;}
.sc__c01223{text-shadow:none;}
.sc0_c01223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01223{-webkit-text-stroke:0px transparent;}
.sc0_c01223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01223{word-spacing:-59.760000px;}
.ws1_c01223{word-spacing:-26.962680px;}
.ws5_c01223{word-spacing:-26.658480px;}
.ws2_c01223{word-spacing:-26.639880px;}
.ws4_c01223{word-spacing:-26.639712px;}
.ws6_c01223{word-spacing:-26.621280px;}
.ws3_c01223{word-spacing:-26.618712px;}
.ws7_c01223{word-spacing:0.000000px;}
._2_c01223{margin-left:-2.509800px;}
._0_c01223{margin-left:-1.314600px;}
._1_c01223{width:1.135201px;}
._6_c01223{width:6.178859px;}
._5_c01223{width:7.386448px;}
._3_c01223{width:16.463921px;}
._4_c01223{width:30.363647px;}
.fc1_c01223{color:rgb(255,0,0);}
.fc0_c01223{color:rgb(0,0,0);}
.fs0_c01223{font-size:59.760000px;}
.fs1_c01223{font-size:72.000000px;}
.fs2_c01223{font-size:95.760000px;}
.fs3_c01223{font-size:95.904000px;}
.y0_c01223{bottom:0.000000px;}
.y2_c01223{bottom:12.636000px;}
.y4_c01223{bottom:14.508000px;}
.y1_c01223{bottom:30.636000px;}
.y3_c01223{bottom:32.508000px;}
.yb_c01223{bottom:485.385000px;}
.ya_c01223{bottom:514.185000px;}
.y9_c01223{bottom:542.985000px;}
.y8_c01223{bottom:571.785000px;}
.y7_c01223{bottom:600.630000px;}
.y6_c01223{bottom:647.670000px;}
.y5_c01223{bottom:685.050000px;}
.h1_c01223{height:43.565273px;}
.h2_c01223{height:52.417969px;}
.h3_c01223{height:69.715898px;}
.h4_c01223{height:69.809414px;}
.h5_c01223{height:69.914391px;}
.h0_c01223{height:810.000000px;}
.w0_c01223{width:1080.000000px;}
.x0_c01223{left:0.000000px;}
.x3_c01223{left:62.172000px;}
.x6_c01223{left:72.504000px;}
.x2_c01223{left:432.510000px;}
.x1_c01223{left:437.370000px;}
.x7_c01223{left:660.525000px;}
.x5_c01223{left:698.040000px;}
.x4_c01223{left:852.150000px;}
@media print{
.v0_c01223{vertical-align:0.000000pt;}
.ls7_c01223{letter-spacing:-0.094933pt;}
.ls9_c01223{letter-spacing:-0.037867pt;}
.lsa_c01223{letter-spacing:-0.019200pt;}
.ls6_c01223{letter-spacing:0.000000pt;}
.ls1_c01223{letter-spacing:0.016533pt;}
.ls4_c01223{letter-spacing:0.033067pt;}
.ls8_c01223{letter-spacing:0.303467pt;}
.ls3_c01223{letter-spacing:0.656640pt;}
.ls5_c01223{letter-spacing:5.760427pt;}
.ls0_c01223{letter-spacing:14.736640pt;}
.ls2_c01223{letter-spacing:26.861056pt;}
.ws0_c01223{word-spacing:-53.120000pt;}
.ws1_c01223{word-spacing:-23.966827pt;}
.ws5_c01223{word-spacing:-23.696427pt;}
.ws2_c01223{word-spacing:-23.679893pt;}
.ws4_c01223{word-spacing:-23.679744pt;}
.ws6_c01223{word-spacing:-23.663360pt;}
.ws3_c01223{word-spacing:-23.661077pt;}
.ws7_c01223{word-spacing:0.000000pt;}
._2_c01223{margin-left:-2.230934pt;}
._0_c01223{margin-left:-1.168534pt;}
._1_c01223{width:1.009068pt;}
._6_c01223{width:5.492319pt;}
._5_c01223{width:6.565731pt;}
._3_c01223{width:14.634596pt;}
._4_c01223{width:26.989908pt;}
.fs0_c01223{font-size:53.120000pt;}
.fs1_c01223{font-size:64.000000pt;}
.fs2_c01223{font-size:85.120000pt;}
.fs3_c01223{font-size:85.248000pt;}
.y0_c01223{bottom:0.000000pt;}
.y2_c01223{bottom:11.232000pt;}
.y4_c01223{bottom:12.896000pt;}
.y1_c01223{bottom:27.232000pt;}
.y3_c01223{bottom:28.896000pt;}
.yb_c01223{bottom:431.453333pt;}
.ya_c01223{bottom:457.053333pt;}
.y9_c01223{bottom:482.653333pt;}
.y8_c01223{bottom:508.253333pt;}
.y7_c01223{bottom:533.893333pt;}
.y6_c01223{bottom:575.706667pt;}
.y5_c01223{bottom:608.933333pt;}
.h1_c01223{height:38.724688pt;}
.h2_c01223{height:46.593750pt;}
.h3_c01223{height:61.969687pt;}
.h4_c01223{height:62.052813pt;}
.h5_c01223{height:62.146125pt;}
.h0_c01223{height:720.000000pt;}
.w0_c01223{width:960.000000pt;}
.x0_c01223{left:0.000000pt;}
.x3_c01223{left:55.264000pt;}
.x6_c01223{left:64.448000pt;}
.x2_c01223{left:384.453333pt;}
.x1_c01223{left:388.773333pt;}
.x7_c01223{left:587.133333pt;}
.x5_c01223{left:620.480000pt;}
.x4_c01223{left:757.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_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_052936c47f1a63bef6a1a076.woff2')format("woff");}.ff1_c01224{font-family:ff1_c01224;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01224;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01224{font-family:ff2_c01224;line-height:0.728027;font-style:normal;font-weight:normal;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_4bec2b55c850d827060e8069.woff2')format("woff");}.ff3_c01224{font-family:ff3_c01224;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-0.106800px;}
.ls0_c01224{letter-spacing:0.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;}
}
.ws0_c01224{word-spacing:-59.760000px;}
.ws1_c01224{word-spacing:0.000000px;}
._2_c01224{margin-left:-2.509800px;}
._0_c01224{margin-left:-1.314600px;}
._1_c01224{width:1.135201px;}
._3_c01224{width:3.327240px;}
.fc0_c01224{color:rgb(0,0,0);}
.fs0_c01224{font-size:59.760000px;}
.fs1_c01224{font-size:167.760000px;}
.y0_c01224{bottom:0.000000px;}
.y2_c01224{bottom:12.636000px;}
.y4_c01224{bottom:14.508000px;}
.y1_c01224{bottom:30.636000px;}
.y3_c01224{bottom:32.508000px;}
.y5_c01224{bottom:460.830000px;}
.h1_c01224{height:43.565273px;}
.h2_c01224{height:122.133867px;}
.h0_c01224{height:810.000000px;}
.w0_c01224{width:1080.000000px;}
.x0_c01224{left:0.000000px;}
.x3_c01224{left:62.172000px;}
.x6_c01224{left:144.252000px;}
.x2_c01224{left:432.510000px;}
.x1_c01224{left:437.370000px;}
.x5_c01224{left:698.040000px;}
.x4_c01224{left:852.150000px;}
@media print{
.v0_c01224{vertical-align:0.000000pt;}
.ls1_c01224{letter-spacing:-0.094933pt;}
.ls0_c01224{letter-spacing:0.000000pt;}
.ws0_c01224{word-spacing:-53.120000pt;}
.ws1_c01224{word-spacing:0.000000pt;}
._2_c01224{margin-left:-2.230934pt;}
._0_c01224{margin-left:-1.168534pt;}
._1_c01224{width:1.009068pt;}
._3_c01224{width:2.957547pt;}
.fs0_c01224{font-size:53.120000pt;}
.fs1_c01224{font-size:149.120000pt;}
.y0_c01224{bottom:0.000000pt;}
.y2_c01224{bottom:11.232000pt;}
.y4_c01224{bottom:12.896000pt;}
.y1_c01224{bottom:27.232000pt;}
.y3_c01224{bottom:28.896000pt;}
.y5_c01224{bottom:409.626667pt;}
.h1_c01224{height:38.724688pt;}
.h2_c01224{height:108.563437pt;}
.h0_c01224{height:720.000000pt;}
.w0_c01224{width:960.000000pt;}
.x0_c01224{left:0.000000pt;}
.x3_c01224{left:55.264000pt;}
.x6_c01224{left:128.224000pt;}
.x2_c01224{left:384.453333pt;}
.x1_c01224{left:388.773333pt;}
.x5_c01224{left:620.480000pt;}
.x4_c01224{left:757.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_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_a1bc8ba3cb6c5e15771c5b64.woff2')format("woff");}.ff1_c01225{font-family:ff1_c01225;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01225;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01225{font-family:ff2_c01225;line-height:0.728027;font-style:normal;font-weight:normal;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_866989ac73724c48ce90124c.woff2')format("woff");}.ff3_c01225{font-family:ff3_c01225;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c01225{letter-spacing:-0.106800px;}
.ls0_c01225{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01225{word-spacing:-60.048000px;}
.ws0_c01225{word-spacing:-59.760000px;}
.ws2_c01225{word-spacing:0.000000px;}
._4_c01225{margin-left:-8.843928px;}
._2_c01225{margin-left:-2.509800px;}
._0_c01225{margin-left:-1.314600px;}
._1_c01225{width:1.135201px;}
._3_c01225{width:2.970646px;}
.fc2_c01225{color:rgb(255,0,0);}
.fc1_c01225{color:rgb(0,0,255);}
.fc0_c01225{color:rgb(0,0,0);}
.fs0_c01225{font-size:59.760000px;}
.fs3_c01225{font-size:72.000000px;}
.fs1_c01225{font-size:95.760000px;}
.fs2_c01225{font-size:216.000000px;}
.y0_c01225{bottom:0.000000px;}
.y2_c01225{bottom:12.636000px;}
.y4_c01225{bottom:14.508000px;}
.y1_c01225{bottom:30.636000px;}
.y3_c01225{bottom:32.508000px;}
.y6_c01225{bottom:269.820000px;}
.y7_c01225{bottom:317.775000px;}
.y5_c01225{bottom:599.010000px;}
.y9_c01225{bottom:647.670000px;}
.y8_c01225{bottom:685.050000px;}
.h1_c01225{height:43.565273px;}
.h4_c01225{height:52.417969px;}
.h2_c01225{height:69.715898px;}
.h3_c01225{height:157.253906px;}
.h0_c01225{height:810.000000px;}
.w0_c01225{width:1080.000000px;}
.x0_c01225{left:0.000000px;}
.x8_c01225{left:59.256000px;}
.x3_c01225{left:62.172000px;}
.x9_c01225{left:72.504000px;}
.x6_c01225{left:336.240000px;}
.x7_c01225{left:339.090000px;}
.x2_c01225{left:432.510000px;}
.x1_c01225{left:437.370000px;}
.x5_c01225{left:698.040000px;}
.x4_c01225{left:852.150000px;}
@media print{
.v0_c01225{vertical-align:0.000000pt;}
.ls1_c01225{letter-spacing:-0.094933pt;}
.ls0_c01225{letter-spacing:0.000000pt;}
.ws1_c01225{word-spacing:-53.376000pt;}
.ws0_c01225{word-spacing:-53.120000pt;}
.ws2_c01225{word-spacing:0.000000pt;}
._4_c01225{margin-left:-7.861269pt;}
._2_c01225{margin-left:-2.230934pt;}
._0_c01225{margin-left:-1.168534pt;}
._1_c01225{width:1.009068pt;}
._3_c01225{width:2.640574pt;}
.fs0_c01225{font-size:53.120000pt;}
.fs3_c01225{font-size:64.000000pt;}
.fs1_c01225{font-size:85.120000pt;}
.fs2_c01225{font-size:192.000000pt;}
.y0_c01225{bottom:0.000000pt;}
.y2_c01225{bottom:11.232000pt;}
.y4_c01225{bottom:12.896000pt;}
.y1_c01225{bottom:27.232000pt;}
.y3_c01225{bottom:28.896000pt;}
.y6_c01225{bottom:239.840000pt;}
.y7_c01225{bottom:282.466667pt;}
.y5_c01225{bottom:532.453333pt;}
.y9_c01225{bottom:575.706667pt;}
.y8_c01225{bottom:608.933333pt;}
.h1_c01225{height:38.724688pt;}
.h4_c01225{height:46.593750pt;}
.h2_c01225{height:61.969687pt;}
.h3_c01225{height:139.781250pt;}
.h0_c01225{height:720.000000pt;}
.w0_c01225{width:960.000000pt;}
.x0_c01225{left:0.000000pt;}
.x8_c01225{left:52.672000pt;}
.x3_c01225{left:55.264000pt;}
.x9_c01225{left:64.448000pt;}
.x6_c01225{left:298.880000pt;}
.x7_c01225{left:301.413333pt;}
.x2_c01225{left:384.453333pt;}
.x1_c01225{left:388.773333pt;}
.x5_c01225{left:620.480000pt;}
.x4_c01225{left:757.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_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_9593f7232ac911f77400114a.woff2')format("woff");}.ff1_c01226{font-family:ff1_c01226;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01226;src:url('chunks/assets/font_b1464c546a27d09842b45717.woff2')format("woff");}.ff2_c01226{font-family:ff2_c01226;line-height:0.728027;font-style:normal;font-weight:normal;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_5854065e22ee62de3288ac81.woff2')format("woff");}.ff3_c01226{font-family:ff3_c01226;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c01226{letter-spacing:-0.106800px;}
.ls1_c01226{letter-spacing:0.000000px;}
.ls0_c01226{letter-spacing:100.452000px;}
.sc__c01226{text-shadow:none;}
.sc0_c01226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01226{-webkit-text-stroke:0px transparent;}
.sc0_c01226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01226{word-spacing:-59.760000px;}
.ws1_c01226{word-spacing:0.000000px;}
._3_c01226{margin-left:-14.235479px;}
._2_c01226{margin-left:-2.509800px;}
._0_c01226{margin-left:-1.314600px;}
._1_c01226{width:1.135201px;}
._4_c01226{width:2.513975px;}
.fc2_c01226{color:rgb(255,0,0);}
.fc1_c01226{color:rgb(0,0,255);}
.fc0_c01226{color:rgb(0,0,0);}
.fs0_c01226{font-size:59.760000px;}
.fs3_c01226{font-size:72.000000px;}
.fs4_c01226{font-size:95.760000px;}
.fs2_c01226{font-size:192.240000px;}
.fs1_c01226{font-size:192.384000px;}
.y0_c01226{bottom:0.000000px;}
.y2_c01226{bottom:12.636000px;}
.y4_c01226{bottom:14.508000px;}
.y1_c01226{bottom:30.636000px;}
.y3_c01226{bottom:32.508000px;}
.yb_c01226{bottom:187.635000px;}
.ya_c01226{bottom:245.235000px;}
.y9_c01226{bottom:302.865000px;}
.y8_c01226{bottom:360.465000px;}
.y7_c01226{bottom:418.110000px;}
.y6_c01226{bottom:475.710000px;}
.y5_c01226{bottom:533.310000px;}
.yd_c01226{bottom:647.670000px;}
.yc_c01226{bottom:685.050000px;}
.h1_c01226{height:43.565273px;}
.h4_c01226{height:52.417969px;}
.h5_c01226{height:69.715898px;}
.h3_c01226{height:139.955977px;}
.h2_c01226{height:140.060812px;}
.h0_c01226{height:810.000000px;}
.w0_c01226{width:1080.000000px;}
.x0_c01226{left:0.000000px;}
.x3_c01226{left:62.172000px;}
.x7_c01226{left:72.504000px;}
.x6_c01226{left:116.856000px;}
.x2_c01226{left:432.510000px;}
.x1_c01226{left:437.370000px;}
.x5_c01226{left:698.040000px;}
.x4_c01226{left:852.150000px;}
@media print{
.v0_c01226{vertical-align:0.000000pt;}
.ls2_c01226{letter-spacing:-0.094933pt;}
.ls1_c01226{letter-spacing:0.000000pt;}
.ls0_c01226{letter-spacing:89.290667pt;}
.ws0_c01226{word-spacing:-53.120000pt;}
.ws1_c01226{word-spacing:0.000000pt;}
._3_c01226{margin-left:-12.653759pt;}
._2_c01226{margin-left:-2.230934pt;}
._0_c01226{margin-left:-1.168534pt;}
._1_c01226{width:1.009068pt;}
._4_c01226{width:2.234644pt;}
.fs0_c01226{font-size:53.120000pt;}
.fs3_c01226{font-size:64.000000pt;}
.fs4_c01226{font-size:85.120000pt;}
.fs2_c01226{font-size:170.880000pt;}
.fs1_c01226{font-size:171.008000pt;}
.y0_c01226{bottom:0.000000pt;}
.y2_c01226{bottom:11.232000pt;}
.y4_c01226{bottom:12.896000pt;}
.y1_c01226{bottom:27.232000pt;}
.y3_c01226{bottom:28.896000pt;}
.yb_c01226{bottom:166.786667pt;}
.ya_c01226{bottom:217.986667pt;}
.y9_c01226{bottom:269.213333pt;}
.y8_c01226{bottom:320.413333pt;}
.y7_c01226{bottom:371.653333pt;}
.y6_c01226{bottom:422.853333pt;}
.y5_c01226{bottom:474.053333pt;}
.yd_c01226{bottom:575.706667pt;}
.yc_c01226{bottom:608.933333pt;}
.h1_c01226{height:38.724688pt;}
.h4_c01226{height:46.593750pt;}
.h5_c01226{height:61.969687pt;}
.h3_c01226{height:124.405313pt;}
.h2_c01226{height:124.498500pt;}
.h0_c01226{height:720.000000pt;}
.w0_c01226{width:960.000000pt;}
.x0_c01226{left:0.000000pt;}
.x3_c01226{left:55.264000pt;}
.x7_c01226{left:64.448000pt;}
.x6_c01226{left:103.872000pt;}
.x2_c01226{left:384.453333pt;}
.x1_c01226{left:388.773333pt;}
.x5_c01226{left:620.480000pt;}
.x4_c01226{left:757.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_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_4a0252e0b830ddce774b76d2.woff2')format("woff");}.ff1_c01227{font-family:ff1_c01227;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01227;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01227{font-family:ff2_c01227;line-height:0.728027;font-style:normal;font-weight:normal;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_6b45568c3418222043d2c7c8.woff2')format("woff");}.ff3_c01227{font-family:ff3_c01227;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c01227{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01227{vertical-align:0.000000px;}
.ls2_c01227{letter-spacing:-0.106800px;}
.ls1_c01227{letter-spacing:0.000000px;}
.ls0_c01227{letter-spacing:0.037200px;}
.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:-59.760000px;}
.ws1_c01227{word-spacing:-26.658480px;}
.ws2_c01227{word-spacing:0.000000px;}
._3_c01227{margin-left:-3.589803px;}
._2_c01227{margin-left:-2.509800px;}
._0_c01227{margin-left:-1.314600px;}
._1_c01227{width:1.135201px;}
._4_c01227{width:3.085800px;}
.fc1_c01227{color:rgb(0,128,0);}
.fc0_c01227{color:rgb(0,0,0);}
.fs0_c01227{font-size:59.760000px;}
.fs3_c01227{font-size:72.000000px;}
.fs1_c01227{font-size:95.760000px;}
.fs2_c01227{font-size:95.904000px;}
.y0_c01227{bottom:0.000000px;}
.y2_c01227{bottom:12.636000px;}
.y4_c01227{bottom:14.508000px;}
.y1_c01227{bottom:30.636000px;}
.y3_c01227{bottom:32.508000px;}
.yd_c01227{bottom:251.565000px;}
.yc_c01227{bottom:286.350000px;}
.yb_c01227{bottom:321.270000px;}
.ya_c01227{bottom:356.010000px;}
.y9_c01227{bottom:390.750000px;}
.y8_c01227{bottom:425.700000px;}
.y7_c01227{bottom:460.440000px;}
.y6_c01227{bottom:495.180000px;}
.y5_c01227{bottom:588.600000px;}
.ye_c01227{bottom:685.050000px;}
.h1_c01227{height:43.565273px;}
.h5_c01227{height:52.417969px;}
.h2_c01227{height:69.715898px;}
.h3_c01227{height:69.809414px;}
.h4_c01227{height:69.914391px;}
.h0_c01227{height:810.000000px;}
.w0_c01227{width:1080.000000px;}
.x0_c01227{left:0.000000px;}
.x3_c01227{left:62.172000px;}
.x6_c01227{left:72.504000px;}
.x7_c01227{left:193.650000px;}
.xb_c01227{left:374.940000px;}
.xa_c01227{left:407.520000px;}
.x2_c01227{left:432.510000px;}
.x8_c01227{left:435.060000px;}
.x1_c01227{left:437.370000px;}
.x9_c01227{left:541.290000px;}
.x5_c01227{left:698.040000px;}
.x4_c01227{left:852.150000px;}
@media print{
.v0_c01227{vertical-align:0.000000pt;}
.ls2_c01227{letter-spacing:-0.094933pt;}
.ls1_c01227{letter-spacing:0.000000pt;}
.ls0_c01227{letter-spacing:0.033067pt;}
.ws0_c01227{word-spacing:-53.120000pt;}
.ws1_c01227{word-spacing:-23.696427pt;}
.ws2_c01227{word-spacing:0.000000pt;}
._3_c01227{margin-left:-3.190936pt;}
._2_c01227{margin-left:-2.230934pt;}
._0_c01227{margin-left:-1.168534pt;}
._1_c01227{width:1.009068pt;}
._4_c01227{width:2.742934pt;}
.fs0_c01227{font-size:53.120000pt;}
.fs3_c01227{font-size:64.000000pt;}
.fs1_c01227{font-size:85.120000pt;}
.fs2_c01227{font-size:85.248000pt;}
.y0_c01227{bottom:0.000000pt;}
.y2_c01227{bottom:11.232000pt;}
.y4_c01227{bottom:12.896000pt;}
.y1_c01227{bottom:27.232000pt;}
.y3_c01227{bottom:28.896000pt;}
.yd_c01227{bottom:223.613333pt;}
.yc_c01227{bottom:254.533333pt;}
.yb_c01227{bottom:285.573333pt;}
.ya_c01227{bottom:316.453333pt;}
.y9_c01227{bottom:347.333333pt;}
.y8_c01227{bottom:378.400000pt;}
.y7_c01227{bottom:409.280000pt;}
.y6_c01227{bottom:440.160000pt;}
.y5_c01227{bottom:523.200000pt;}
.ye_c01227{bottom:608.933333pt;}
.h1_c01227{height:38.724688pt;}
.h5_c01227{height:46.593750pt;}
.h2_c01227{height:61.969687pt;}
.h3_c01227{height:62.052813pt;}
.h4_c01227{height:62.146125pt;}
.h0_c01227{height:720.000000pt;}
.w0_c01227{width:960.000000pt;}
.x0_c01227{left:0.000000pt;}
.x3_c01227{left:55.264000pt;}
.x6_c01227{left:64.448000pt;}
.x7_c01227{left:172.133333pt;}
.xb_c01227{left:333.280000pt;}
.xa_c01227{left:362.240000pt;}
.x2_c01227{left:384.453333pt;}
.x8_c01227{left:386.720000pt;}
.x1_c01227{left:388.773333pt;}
.x9_c01227{left:481.146667pt;}
.x5_c01227{left:620.480000pt;}
.x4_c01227{left:757.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_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_e447d6cf6b5ae6e2ae19aceb.woff2')format("woff");}.ff1_c01228{font-family:ff1_c01228;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01228;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01228{font-family:ff2_c01228;line-height:0.728027;font-style:normal;font-weight:normal;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_84aa80f14259c2925a2d0b60.woff2')format("woff");}.ff3_c01228{font-family:ff3_c01228;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01228;src:url('chunks/assets/font_cc0b848b1987b8d644a9bc63.woff2')format("woff");}.ff4_c01228{font-family:ff4_c01228;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01228;src:url('chunks/assets/font_080e91002152ba5d90516901.woff2')format("woff");}.ff5_c01228{font-family:ff5_c01228;line-height:0.715820;font-style: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;}
.ls3_c01228{letter-spacing:-0.106800px;}
.ls2_c01228{letter-spacing:0.000000px;}
.ls4_c01228{letter-spacing:0.144000px;}
.ls1_c01228{letter-spacing:0.216000px;}
.ls0_c01228{letter-spacing:0.288000px;}
.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:-59.760000px;}
.ws2_c01228{word-spacing:-20.304000px;}
.ws1_c01228{word-spacing:-20.016000px;}
.ws3_c01228{word-spacing:0.000000px;}
._8_c01228{margin-left:-7.272000px;}
._4_c01228{margin-left:-5.490601px;}
._3_c01228{margin-left:-4.436399px;}
._2_c01228{margin-left:-2.509800px;}
._0_c01228{margin-left:-1.314600px;}
._1_c01228{width:1.135201px;}
._5_c01228{width:2.168400px;}
._a_c01228{width:4.083601px;}
._6_c01228{width:25.974624px;}
._9_c01228{width:143.713200px;}
._7_c01228{width:192.383976px;}
.fc1_c01228{color:rgb(0,0,255);}
.fc0_c01228{color:rgb(0,0,0);}
.fs0_c01228{font-size:59.760000px;}
.fs2_c01228{font-size:72.000000px;}
.fs1_c01228{font-size:120.384000px;}
.y0_c01228{bottom:0.000000px;}
.y2_c01228{bottom:12.636000px;}
.y4_c01228{bottom:14.508000px;}
.y1_c01228{bottom:30.636000px;}
.y3_c01228{bottom:32.508000px;}
.y1b_c01228{bottom:116.496000px;}
.y1a_c01228{bottom:138.096000px;}
.y19_c01228{bottom:159.690000px;}
.y18_c01228{bottom:181.290000px;}
.y17_c01228{bottom:202.935000px;}
.y16_c01228{bottom:224.535000px;}
.y15_c01228{bottom:246.135000px;}
.y14_c01228{bottom:267.735000px;}
.y13_c01228{bottom:289.335000px;}
.y12_c01228{bottom:310.935000px;}
.y11_c01228{bottom:332.535000px;}
.y10_c01228{bottom:354.165000px;}
.yf_c01228{bottom:375.765000px;}
.ye_c01228{bottom:397.365000px;}
.yd_c01228{bottom:418.965000px;}
.yc_c01228{bottom:440.565000px;}
.yb_c01228{bottom:462.165000px;}
.ya_c01228{bottom:483.765000px;}
.y9_c01228{bottom:505.410000px;}
.y8_c01228{bottom:527.010000px;}
.y7_c01228{bottom:548.610000px;}
.y6_c01228{bottom:570.210000px;}
.y5_c01228{bottom:617.685000px;}
.y1c_c01228{bottom:685.050000px;}
.h1_c01228{height:43.565273px;}
.h4_c01228{height:52.417969px;}
.h3_c01228{height:52.488281px;}
.h2_c01228{height:87.642844px;}
.h0_c01228{height:810.000000px;}
.w0_c01228{width:1080.000000px;}
.x0_c01228{left:0.000000px;}
.x3_c01228{left:62.172000px;}
.x7_c01228{left:72.504000px;}
.x6_c01228{left:73.800000px;}
.x2_c01228{left:432.510000px;}
.x1_c01228{left:437.370000px;}
.x5_c01228{left:698.040000px;}
.x4_c01228{left:852.150000px;}
@media print{
.v0_c01228{vertical-align:0.000000pt;}
.ls3_c01228{letter-spacing:-0.094933pt;}
.ls2_c01228{letter-spacing:0.000000pt;}
.ls4_c01228{letter-spacing:0.128000pt;}
.ls1_c01228{letter-spacing:0.192000pt;}
.ls0_c01228{letter-spacing:0.256000pt;}
.ws0_c01228{word-spacing:-53.120000pt;}
.ws2_c01228{word-spacing:-18.048000pt;}
.ws1_c01228{word-spacing:-17.792000pt;}
.ws3_c01228{word-spacing:0.000000pt;}
._8_c01228{margin-left:-6.464000pt;}
._4_c01228{margin-left:-4.880535pt;}
._3_c01228{margin-left:-3.943466pt;}
._2_c01228{margin-left:-2.230934pt;}
._0_c01228{margin-left:-1.168534pt;}
._1_c01228{width:1.009068pt;}
._5_c01228{width:1.927467pt;}
._a_c01228{width:3.629868pt;}
._6_c01228{width:23.088554pt;}
._9_c01228{width:127.745067pt;}
._7_c01228{width:171.007979pt;}
.fs0_c01228{font-size:53.120000pt;}
.fs2_c01228{font-size:64.000000pt;}
.fs1_c01228{font-size:107.008000pt;}
.y0_c01228{bottom:0.000000pt;}
.y2_c01228{bottom:11.232000pt;}
.y4_c01228{bottom:12.896000pt;}
.y1_c01228{bottom:27.232000pt;}
.y3_c01228{bottom:28.896000pt;}
.y1b_c01228{bottom:103.552000pt;}
.y1a_c01228{bottom:122.752000pt;}
.y19_c01228{bottom:141.946667pt;}
.y18_c01228{bottom:161.146667pt;}
.y17_c01228{bottom:180.386667pt;}
.y16_c01228{bottom:199.586667pt;}
.y15_c01228{bottom:218.786667pt;}
.y14_c01228{bottom:237.986667pt;}
.y13_c01228{bottom:257.186667pt;}
.y12_c01228{bottom:276.386667pt;}
.y11_c01228{bottom:295.586667pt;}
.y10_c01228{bottom:314.813333pt;}
.yf_c01228{bottom:334.013333pt;}
.ye_c01228{bottom:353.213333pt;}
.yd_c01228{bottom:372.413333pt;}
.yc_c01228{bottom:391.613333pt;}
.yb_c01228{bottom:410.813333pt;}
.ya_c01228{bottom:430.013333pt;}
.y9_c01228{bottom:449.253333pt;}
.y8_c01228{bottom:468.453333pt;}
.y7_c01228{bottom:487.653333pt;}
.y6_c01228{bottom:506.853333pt;}
.y5_c01228{bottom:549.053333pt;}
.y1c_c01228{bottom:608.933333pt;}
.h1_c01228{height:38.724688pt;}
.h4_c01228{height:46.593750pt;}
.h3_c01228{height:46.656250pt;}
.h2_c01228{height:77.904750pt;}
.h0_c01228{height:720.000000pt;}
.w0_c01228{width:960.000000pt;}
.x0_c01228{left:0.000000pt;}
.x3_c01228{left:55.264000pt;}
.x7_c01228{left:64.448000pt;}
.x6_c01228{left:65.600000pt;}
.x2_c01228{left:384.453333pt;}
.x1_c01228{left:388.773333pt;}
.x5_c01228{left:620.480000pt;}
.x4_c01228{left:757.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_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_e8bdc75ca1db9b91e0e41b11.woff2')format("woff");}.ff1_c01229{font-family:ff1_c01229;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01229;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01229{font-family:ff2_c01229;line-height:0.728027;font-style:normal;font-weight:normal;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_71bf0d4630fc64bab090e6d4.woff2')format("woff");}.ff3_c01229{font-family:ff3_c01229;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01229;src:url('chunks/assets/font_f382ba608d1d4336f5c68539.woff2')format("woff");}.ff4_c01229{font-family:ff4_c01229;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01229;src:url('chunks/assets/font_080e91002152ba5d90516901.woff2')format("woff");}.ff5_c01229{font-family:ff5_c01229;line-height:0.715820;font-style: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;}
.ls4_c01229{letter-spacing:-0.432000px;}
.ls3_c01229{letter-spacing:-0.106800px;}
.ls2_c01229{letter-spacing:0.000000px;}
.ls0_c01229{letter-spacing:0.144000px;}
.ls1_c01229{letter-spacing:0.288000px;}
.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:-59.760000px;}
.ws3_c01229{word-spacing:-20.304000px;}
.ws1_c01229{word-spacing:-20.160000px;}
.ws2_c01229{word-spacing:-20.016000px;}
.ws4_c01229{word-spacing:-19.584000px;}
.ws5_c01229{word-spacing:0.000000px;}
._8_c01229{margin-left:-7.200000px;}
._5_c01229{margin-left:-5.113201px;}
._9_c01229{margin-left:-3.826777px;}
._2_c01229{margin-left:-2.509800px;}
._0_c01229{margin-left:-1.314600px;}
._1_c01229{width:1.135201px;}
._a_c01229{width:2.246975px;}
._3_c01229{width:3.357000px;}
._6_c01229{width:25.974624px;}
._4_c01229{width:143.713200px;}
._7_c01229{width:192.383976px;}
.fc1_c01229{color:rgb(0,0,255);}
.fc0_c01229{color:rgb(0,0,0);}
.fs0_c01229{font-size:59.760000px;}
.fs1_c01229{font-size:72.000000px;}
.fs2_c01229{font-size:72.144000px;}
.y24_c01229{bottom:-12.672000px;}
.y0_c01229{bottom:0.000000px;}
.y23_c01229{bottom:8.928000px;}
.y2_c01229{bottom:12.636000px;}
.y4_c01229{bottom:14.508000px;}
.y22_c01229{bottom:30.528000px;}
.y1_c01229{bottom:30.636000px;}
.y3_c01229{bottom:32.508000px;}
.y21_c01229{bottom:52.128000px;}
.y20_c01229{bottom:73.728000px;}
.y1f_c01229{bottom:95.328000px;}
.y1e_c01229{bottom:116.928000px;}
.y1d_c01229{bottom:138.564000px;}
.y1c_c01229{bottom:160.170000px;}
.y1b_c01229{bottom:181.770000px;}
.y1a_c01229{bottom:203.370000px;}
.y19_c01229{bottom:224.970000px;}
.y18_c01229{bottom:246.570000px;}
.y17_c01229{bottom:268.170000px;}
.y16_c01229{bottom:289.800000px;}
.y15_c01229{bottom:311.400000px;}
.y14_c01229{bottom:333.000000px;}
.y13_c01229{bottom:354.600000px;}
.y12_c01229{bottom:376.200000px;}
.y11_c01229{bottom:397.800000px;}
.y10_c01229{bottom:419.400000px;}
.yf_c01229{bottom:441.030000px;}
.ye_c01229{bottom:462.630000px;}
.yd_c01229{bottom:484.230000px;}
.yc_c01229{bottom:505.830000px;}
.yb_c01229{bottom:527.430000px;}
.ya_c01229{bottom:549.030000px;}
.y9_c01229{bottom:570.675000px;}
.y8_c01229{bottom:592.275000px;}
.y7_c01229{bottom:613.875000px;}
.y6_c01229{bottom:635.475000px;}
.y5_c01229{bottom:685.050000px;}
.h1_c01229{height:43.565273px;}
.h2_c01229{height:52.417969px;}
.h3_c01229{height:52.488281px;}
.h4_c01229{height:52.593258px;}
.h0_c01229{height:810.000000px;}
.w0_c01229{width:1080.000000px;}
.x0_c01229{left:0.000000px;}
.x3_c01229{left:62.172000px;}
.x6_c01229{left:72.504000px;}
.x7_c01229{left:73.656000px;}
.x2_c01229{left:432.510000px;}
.x1_c01229{left:437.370000px;}
.x5_c01229{left:698.040000px;}
.x4_c01229{left:852.150000px;}
@media print{
.v0_c01229{vertical-align:0.000000pt;}
.ls4_c01229{letter-spacing:-0.384000pt;}
.ls3_c01229{letter-spacing:-0.094933pt;}
.ls2_c01229{letter-spacing:0.000000pt;}
.ls0_c01229{letter-spacing:0.128000pt;}
.ls1_c01229{letter-spacing:0.256000pt;}
.ws0_c01229{word-spacing:-53.120000pt;}
.ws3_c01229{word-spacing:-18.048000pt;}
.ws1_c01229{word-spacing:-17.920000pt;}
.ws2_c01229{word-spacing:-17.792000pt;}
.ws4_c01229{word-spacing:-17.408000pt;}
.ws5_c01229{word-spacing:0.000000pt;}
._8_c01229{margin-left:-6.400000pt;}
._5_c01229{margin-left:-4.545068pt;}
._9_c01229{margin-left:-3.401580pt;}
._2_c01229{margin-left:-2.230934pt;}
._0_c01229{margin-left:-1.168534pt;}
._1_c01229{width:1.009068pt;}
._a_c01229{width:1.997311pt;}
._3_c01229{width:2.984000pt;}
._6_c01229{width:23.088554pt;}
._4_c01229{width:127.745067pt;}
._7_c01229{width:171.007979pt;}
.fs0_c01229{font-size:53.120000pt;}
.fs1_c01229{font-size:64.000000pt;}
.fs2_c01229{font-size:64.128000pt;}
.y24_c01229{bottom:-11.264000pt;}
.y0_c01229{bottom:0.000000pt;}
.y23_c01229{bottom:7.936000pt;}
.y2_c01229{bottom:11.232000pt;}
.y4_c01229{bottom:12.896000pt;}
.y22_c01229{bottom:27.136000pt;}
.y1_c01229{bottom:27.232000pt;}
.y3_c01229{bottom:28.896000pt;}
.y21_c01229{bottom:46.336000pt;}
.y20_c01229{bottom:65.536000pt;}
.y1f_c01229{bottom:84.736000pt;}
.y1e_c01229{bottom:103.936000pt;}
.y1d_c01229{bottom:123.168000pt;}
.y1c_c01229{bottom:142.373333pt;}
.y1b_c01229{bottom:161.573333pt;}
.y1a_c01229{bottom:180.773333pt;}
.y19_c01229{bottom:199.973333pt;}
.y18_c01229{bottom:219.173333pt;}
.y17_c01229{bottom:238.373333pt;}
.y16_c01229{bottom:257.600000pt;}
.y15_c01229{bottom:276.800000pt;}
.y14_c01229{bottom:296.000000pt;}
.y13_c01229{bottom:315.200000pt;}
.y12_c01229{bottom:334.400000pt;}
.y11_c01229{bottom:353.600000pt;}
.y10_c01229{bottom:372.800000pt;}
.yf_c01229{bottom:392.026667pt;}
.ye_c01229{bottom:411.226667pt;}
.yd_c01229{bottom:430.426667pt;}
.yc_c01229{bottom:449.626667pt;}
.yb_c01229{bottom:468.826667pt;}
.ya_c01229{bottom:488.026667pt;}
.y9_c01229{bottom:507.266667pt;}
.y8_c01229{bottom:526.466667pt;}
.y7_c01229{bottom:545.666667pt;}
.y6_c01229{bottom:564.866667pt;}
.y5_c01229{bottom:608.933333pt;}
.h1_c01229{height:38.724688pt;}
.h2_c01229{height:46.593750pt;}
.h3_c01229{height:46.656250pt;}
.h4_c01229{height:46.749562pt;}
.h0_c01229{height:720.000000pt;}
.w0_c01229{width:960.000000pt;}
.x0_c01229{left:0.000000pt;}
.x3_c01229{left:55.264000pt;}
.x6_c01229{left:64.448000pt;}
.x7_c01229{left:65.472000pt;}
.x2_c01229{left:384.453333pt;}
.x1_c01229{left:388.773333pt;}
.x5_c01229{left:620.480000pt;}
.x4_c01229{left:757.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_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_ab6f9b6476e953584daf22ac.woff2')format("woff");}.ff1_c01230{font-family:ff1_c01230;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01230;src:url('chunks/assets/font_87be7b5d6552a5387372bc7e.woff2')format("woff");}.ff2_c01230{font-family:ff2_c01230;line-height:0.728027;font-style:normal;font-weight:normal;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_7d8089cbe9244f8d24f27723.woff2')format("woff");}.ff3_c01230{font-family:ff3_c01230;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c01230{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01230{vertical-align:0.000000px;}
.ls5_c01230{letter-spacing:-0.432000px;}
.ls7_c01230{letter-spacing:-0.144000px;}
.ls4_c01230{letter-spacing:-0.106800px;}
.ls3_c01230{letter-spacing:0.000000px;}
.ls2_c01230{letter-spacing:0.144000px;}
.ls6_c01230{letter-spacing:0.216000px;}
.ls0_c01230{letter-spacing:0.288000px;}
.ls1_c01230{letter-spacing:11.664000px;}
.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:-59.760000px;}
.ws1_c01230{word-spacing:-20.304000px;}
.ws4_c01230{word-spacing:-20.232000px;}
.ws5_c01230{word-spacing:-20.160000px;}
.ws2_c01230{word-spacing:-20.016000px;}
.ws6_c01230{word-spacing:-19.872000px;}
.ws3_c01230{word-spacing:-19.584000px;}
.ws7_c01230{word-spacing:0.000000px;}
._9_c01230{margin-left:-7.476072px;}
._b_c01230{margin-left:-5.345376px;}
._4_c01230{margin-left:-4.248000px;}
._2_c01230{margin-left:-2.509800px;}
._0_c01230{margin-left:-1.314600px;}
._1_c01230{width:1.135201px;}
._c_c01230{width:3.116376px;}
._a_c01230{width:4.501129px;}
._8_c01230{width:5.592024px;}
._5_c01230{width:10.806384px;}
._3_c01230{width:12.072024px;}
._7_c01230{width:114.390600px;}
._6_c01230{width:143.713200px;}
.fc1_c01230{color:rgb(0,0,255);}
.fc0_c01230{color:rgb(0,0,0);}
.fs0_c01230{font-size:59.760000px;}
.fs1_c01230{font-size:72.000000px;}
.y0_c01230{bottom:0.000000px;}
.y2_c01230{bottom:12.636000px;}
.y4_c01230{bottom:14.508000px;}
.y1_c01230{bottom:30.636000px;}
.y3_c01230{bottom:32.508000px;}
.y1a_c01230{bottom:351.975000px;}
.y19_c01230{bottom:373.575000px;}
.y18_c01230{bottom:395.175000px;}
.y17_c01230{bottom:416.805000px;}
.y16_c01230{bottom:438.405000px;}
.y15_c01230{bottom:460.005000px;}
.y14_c01230{bottom:481.605000px;}
.y13_c01230{bottom:503.205000px;}
.y12_c01230{bottom:524.805000px;}
.yc_c01230{bottom:534.630000px;}
.y11_c01230{bottom:546.405000px;}
.y8_c01230{bottom:552.630000px;}
.yb_c01230{bottom:562.170000px;}
.y10_c01230{bottom:568.050000px;}
.y7_c01230{bottom:580.215000px;}
.yf_c01230{bottom:589.650000px;}
.ya_c01230{bottom:589.755000px;}
.y6_c01230{bottom:607.755000px;}
.ye_c01230{bottom:611.250000px;}
.y9_c01230{bottom:617.475000px;}
.yd_c01230{bottom:632.850000px;}
.y5_c01230{bottom:635.475000px;}
.y1b_c01230{bottom:685.050000px;}
.h1_c01230{height:43.565273px;}
.h3_c01230{height:52.417969px;}
.h2_c01230{height:52.488281px;}
.h0_c01230{height:810.000000px;}
.w0_c01230{width:1080.000000px;}
.x0_c01230{left:0.000000px;}
.x3_c01230{left:62.172000px;}
.x7_c01230{left:72.504000px;}
.x6_c01230{left:73.656000px;}
.x2_c01230{left:432.510000px;}
.x1_c01230{left:437.370000px;}
.x5_c01230{left:698.040000px;}
.x4_c01230{left:852.150000px;}
@media print{
.v0_c01230{vertical-align:0.000000pt;}
.ls5_c01230{letter-spacing:-0.384000pt;}
.ls7_c01230{letter-spacing:-0.128000pt;}
.ls4_c01230{letter-spacing:-0.094933pt;}
.ls3_c01230{letter-spacing:0.000000pt;}
.ls2_c01230{letter-spacing:0.128000pt;}
.ls6_c01230{letter-spacing:0.192000pt;}
.ls0_c01230{letter-spacing:0.256000pt;}
.ls1_c01230{letter-spacing:10.368000pt;}
.ws0_c01230{word-spacing:-53.120000pt;}
.ws1_c01230{word-spacing:-18.048000pt;}
.ws4_c01230{word-spacing:-17.984000pt;}
.ws5_c01230{word-spacing:-17.920000pt;}
.ws2_c01230{word-spacing:-17.792000pt;}
.ws6_c01230{word-spacing:-17.664000pt;}
.ws3_c01230{word-spacing:-17.408000pt;}
.ws7_c01230{word-spacing:0.000000pt;}
._9_c01230{margin-left:-6.645397pt;}
._b_c01230{margin-left:-4.751446pt;}
._4_c01230{margin-left:-3.776000pt;}
._2_c01230{margin-left:-2.230934pt;}
._0_c01230{margin-left:-1.168534pt;}
._1_c01230{width:1.009068pt;}
._c_c01230{width:2.770112pt;}
._a_c01230{width:4.001004pt;}
._8_c01230{width:4.970688pt;}
._5_c01230{width:9.605675pt;}
._3_c01230{width:10.730688pt;}
._7_c01230{width:101.680533pt;}
._6_c01230{width:127.745067pt;}
.fs0_c01230{font-size:53.120000pt;}
.fs1_c01230{font-size:64.000000pt;}
.y0_c01230{bottom:0.000000pt;}
.y2_c01230{bottom:11.232000pt;}
.y4_c01230{bottom:12.896000pt;}
.y1_c01230{bottom:27.232000pt;}
.y3_c01230{bottom:28.896000pt;}
.y1a_c01230{bottom:312.866667pt;}
.y19_c01230{bottom:332.066667pt;}
.y18_c01230{bottom:351.266667pt;}
.y17_c01230{bottom:370.493333pt;}
.y16_c01230{bottom:389.693333pt;}
.y15_c01230{bottom:408.893333pt;}
.y14_c01230{bottom:428.093333pt;}
.y13_c01230{bottom:447.293333pt;}
.y12_c01230{bottom:466.493333pt;}
.yc_c01230{bottom:475.226667pt;}
.y11_c01230{bottom:485.693333pt;}
.y8_c01230{bottom:491.226667pt;}
.yb_c01230{bottom:499.706667pt;}
.y10_c01230{bottom:504.933333pt;}
.y7_c01230{bottom:515.746667pt;}
.yf_c01230{bottom:524.133333pt;}
.ya_c01230{bottom:524.226667pt;}
.y6_c01230{bottom:540.226667pt;}
.ye_c01230{bottom:543.333333pt;}
.y9_c01230{bottom:548.866667pt;}
.yd_c01230{bottom:562.533333pt;}
.y5_c01230{bottom:564.866667pt;}
.y1b_c01230{bottom:608.933333pt;}
.h1_c01230{height:38.724688pt;}
.h3_c01230{height:46.593750pt;}
.h2_c01230{height:46.656250pt;}
.h0_c01230{height:720.000000pt;}
.w0_c01230{width:960.000000pt;}
.x0_c01230{left:0.000000pt;}
.x3_c01230{left:55.264000pt;}
.x7_c01230{left:64.448000pt;}
.x6_c01230{left:65.472000pt;}
.x2_c01230{left:384.453333pt;}
.x1_c01230{left:388.773333pt;}
.x5_c01230{left:620.480000pt;}
.x4_c01230{left:757.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_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_27997a950561a3505a09be9d.woff2')format("woff");}.ff1_c01231{font-family:ff1_c01231;line-height:0.981934;font-style:normal;font-weight:normal;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_d0972c000f4830ecef4ae175.woff2')format("woff");}.ff2_c01231{font-family:ff2_c01231;line-height:0.687012;font-style:normal;font-weight:normal;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_4226cf88133eb2f00195dd67.woff2')format("woff");}.ff3_c01231{font-family:ff3_c01231;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01231;src:url('chunks/assets/font_eae33c6359ed7b5f62d2b467.woff2')format("woff");}.ff4_c01231{font-family:ff4_c01231;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01231;src:url('chunks/assets/font_6fdd1457de54e28c8eec22e6.woff2')format("woff");}.ff5_c01231{font-family:ff5_c01231;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01231;src:url('chunks/assets/font_6fd7d4a766acdacdf7895f1d.woff2')format("woff");}.ff6_c01231{font-family:ff6_c01231;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01231{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c01231{vertical-align:-30.240000px;}
.v3_c01231{vertical-align:-23.760000px;}
.v0_c01231{vertical-align:0.000000px;}
.v1_c01231{vertical-align:30.240000px;}
.lsa_c01231{letter-spacing:-0.322800px;}
.ls9_c01231{letter-spacing:-0.295200px;}
.lsf_c01231{letter-spacing:-0.240600px;}
.lsc_c01231{letter-spacing:-0.222600px;}
.lsb_c01231{letter-spacing:-0.216600px;}
.ls6_c01231{letter-spacing:-0.211800px;}
.ls8_c01231{letter-spacing:-0.126000px;}
.lsd_c01231{letter-spacing:-0.058200px;}
.ls2_c01231{letter-spacing:0.000000px;}
.ls0_c01231{letter-spacing:0.022200px;}
.ls7_c01231{letter-spacing:0.031800px;}
.lse_c01231{letter-spacing:0.060600px;}
.ls4_c01231{letter-spacing:0.083400px;}
.ls1_c01231{letter-spacing:0.180000px;}
.ls12_c01231{letter-spacing:0.186600px;}
.ls3_c01231{letter-spacing:0.208200px;}
.ls5_c01231{letter-spacing:0.209400px;}
.ls10_c01231{letter-spacing:0.479400px;}
.ls11_c01231{letter-spacing:0.654000px;}
.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;}
}
.ws5_c01231{word-spacing:-120.240000px;}
.ws0_c01231{word-spacing:-72.000000px;}
.ws6_c01231{word-spacing:-13.715160px;}
.wsd_c01231{word-spacing:-13.692360px;}
.ws4_c01231{word-spacing:-13.505760px;}
.ws1_c01231{word-spacing:-11.110440px;}
.ws2_c01231{word-spacing:-10.924440px;}
.ws3_c01231{word-spacing:-10.902240px;}
.ws8_c01231{word-spacing:-10.776240px;}
.wsb_c01231{word-spacing:-10.685640px;}
.wsc_c01231{word-spacing:-10.679640px;}
.ws9_c01231{word-spacing:-10.607040px;}
.wsa_c01231{word-spacing:-10.579440px;}
.ws7_c01231{word-spacing:-8.786880px;}
.wse_c01231{word-spacing:0.000000px;}
._0_c01231{margin-left:-1.080000px;}
._8_c01231{width:1.003218px;}
._1_c01231{width:2.004000px;}
._6_c01231{width:3.884400px;}
._5_c01231{width:5.139599px;}
._7_c01231{width:6.333604px;}
._9_c01231{width:7.351197px;}
._b_c01231{width:8.426399px;}
._a_c01231{width:10.304387px;}
._2_c01231{width:92.118094px;}
._4_c01231{width:135.100368px;}
._3_c01231{width:159.018143px;}
.fc2_c01231{color:transparent;}
.fc1_c01231{color:rgb(0,0,0);}
.fc0_c01231{color:rgb(0,0,255);}
.fs6_c01231{font-size:30.240000px;}
.fs5_c01231{font-size:38.880000px;}
.fs1_c01231{font-size:48.240000px;}
.fs2_c01231{font-size:54.000000px;}
.fs3_c01231{font-size:59.760000px;}
.fs0_c01231{font-size:72.000000px;}
.fs4_c01231{font-size:120.240000px;}
.y0_c01231{bottom:0.000000px;}
.y2_c01231{bottom:15.300000px;}
.y10_c01231{bottom:67.716000px;}
.yf_c01231{bottom:85.176000px;}
.ye_c01231{bottom:101.016000px;}
.yd_c01231{bottom:115.776000px;}
.yc_c01231{bottom:130.356000px;}
.yb_c01231{bottom:145.116000px;}
.ya_c01231{bottom:159.690000px;}
.y9_c01231{bottom:178.050000px;}
.y37_c01231{bottom:203.790000px;}
.y36_c01231{bottom:225.750000px;}
.y35_c01231{bottom:247.710000px;}
.y34_c01231{bottom:269.850000px;}
.y33_c01231{bottom:291.855000px;}
.y32_c01231{bottom:313.815000px;}
.y31_c01231{bottom:335.775000px;}
.y30_c01231{bottom:357.735000px;}
.y2f_c01231{bottom:379.695000px;}
.y2e_c01231{bottom:401.655000px;}
.y2d_c01231{bottom:423.615000px;}
.y2c_c01231{bottom:445.575000px;}
.y2b_c01231{bottom:467.535000px;}
.y2a_c01231{bottom:489.495000px;}
.y29_c01231{bottom:511.455000px;}
.y28_c01231{bottom:533.415000px;}
.y27_c01231{bottom:555.405000px;}
.y26_c01231{bottom:577.545000px;}
.y25_c01231{bottom:599.505000px;}
.y24_c01231{bottom:621.465000px;}
.y23_c01231{bottom:643.425000px;}
.y22_c01231{bottom:665.385000px;}
.y21_c01231{bottom:687.345000px;}
.y20_c01231{bottom:709.305000px;}
.y1f_c01231{bottom:731.265000px;}
.y1e_c01231{bottom:760.965000px;}
.y1d_c01231{bottom:781.305000px;}
.y1c_c01231{bottom:803.985000px;}
.y1b_c01231{bottom:821.625000px;}
.y1a_c01231{bottom:836.385000px;}
.y19_c01231{bottom:851.010000px;}
.y18_c01231{bottom:865.770000px;}
.y17_c01231{bottom:880.350000px;}
.y16_c01231{bottom:894.930000px;}
.y15_c01231{bottom:909.690000px;}
.y14_c01231{bottom:930.210000px;}
.y13_c01231{bottom:944.970000px;}
.y12_c01231{bottom:954.330000px;}
.y11_c01231{bottom:1006.530000px;}
.y8_c01231{bottom:1060.890000px;}
.y7_c01231{bottom:1075.470000px;}
.y6_c01231{bottom:1090.230000px;}
.y5_c01231{bottom:1104.810000px;}
.y4_c01231{bottom:1119.390000px;}
.y3_c01231{bottom:1134.180000px;}
.y1_c01231{bottom:1145.520000px;}
.h9_c01231{height:26.445234px;}
.h2_c01231{height:32.400000px;}
.h5_c01231{height:35.991211px;}
.h4_c01231{height:42.186445px;}
.h6_c01231{height:52.260820px;}
.h3_c01231{height:57.867188px;}
.h8_c01231{height:64.241016px;}
.h7_c01231{height:96.638203px;}
.h0_c01231{height:1262.880000px;}
.h1_c01231{height:1263.000000px;}
.w2_c01231{width:739.230000px;}
.w0_c01231{width:892.980000px;}
.w1_c01231{width:893.250000px;}
.x0_c01231{left:0.000000px;}
.x2_c01231{left:7.920000px;}
.x1_c01231{left:77.040000px;}
.x3_c01231{left:84.960000px;}
.x5_c01231{left:127.476000px;}
.x4_c01231{left:442.695000px;}
@media print{
.v2_c01231{vertical-align:-26.880000pt;}
.v3_c01231{vertical-align:-21.120000pt;}
.v0_c01231{vertical-align:0.000000pt;}
.v1_c01231{vertical-align:26.880000pt;}
.lsa_c01231{letter-spacing:-0.286933pt;}
.ls9_c01231{letter-spacing:-0.262400pt;}
.lsf_c01231{letter-spacing:-0.213867pt;}
.lsc_c01231{letter-spacing:-0.197867pt;}
.lsb_c01231{letter-spacing:-0.192533pt;}
.ls6_c01231{letter-spacing:-0.188267pt;}
.ls8_c01231{letter-spacing:-0.112000pt;}
.lsd_c01231{letter-spacing:-0.051733pt;}
.ls2_c01231{letter-spacing:0.000000pt;}
.ls0_c01231{letter-spacing:0.019733pt;}
.ls7_c01231{letter-spacing:0.028267pt;}
.lse_c01231{letter-spacing:0.053867pt;}
.ls4_c01231{letter-spacing:0.074133pt;}
.ls1_c01231{letter-spacing:0.160000pt;}
.ls12_c01231{letter-spacing:0.165867pt;}
.ls3_c01231{letter-spacing:0.185067pt;}
.ls5_c01231{letter-spacing:0.186133pt;}
.ls10_c01231{letter-spacing:0.426133pt;}
.ls11_c01231{letter-spacing:0.581333pt;}
.ws5_c01231{word-spacing:-106.880000pt;}
.ws0_c01231{word-spacing:-64.000000pt;}
.ws6_c01231{word-spacing:-12.191253pt;}
.wsd_c01231{word-spacing:-12.170987pt;}
.ws4_c01231{word-spacing:-12.005120pt;}
.ws1_c01231{word-spacing:-9.875947pt;}
.ws2_c01231{word-spacing:-9.710613pt;}
.ws3_c01231{word-spacing:-9.690880pt;}
.ws8_c01231{word-spacing:-9.578880pt;}
.wsb_c01231{word-spacing:-9.498347pt;}
.wsc_c01231{word-spacing:-9.493013pt;}
.ws9_c01231{word-spacing:-9.428480pt;}
.wsa_c01231{word-spacing:-9.403947pt;}
.ws7_c01231{word-spacing:-7.810560pt;}
.wse_c01231{word-spacing:0.000000pt;}
._0_c01231{margin-left:-0.960000pt;}
._8_c01231{width:0.891750pt;}
._1_c01231{width:1.781333pt;}
._6_c01231{width:3.452800pt;}
._5_c01231{width:4.568532pt;}
._7_c01231{width:5.629870pt;}
._9_c01231{width:6.534397pt;}
._b_c01231{width:7.490132pt;}
._a_c01231{width:9.159455pt;}
._2_c01231{width:81.882750pt;}
._4_c01231{width:120.089216pt;}
._3_c01231{width:141.349460pt;}
.fs6_c01231{font-size:26.880000pt;}
.fs5_c01231{font-size:34.560000pt;}
.fs1_c01231{font-size:42.880000pt;}
.fs2_c01231{font-size:48.000000pt;}
.fs3_c01231{font-size:53.120000pt;}
.fs0_c01231{font-size:64.000000pt;}
.fs4_c01231{font-size:106.880000pt;}
.y0_c01231{bottom:0.000000pt;}
.y2_c01231{bottom:13.600000pt;}
.y10_c01231{bottom:60.192000pt;}
.yf_c01231{bottom:75.712000pt;}
.ye_c01231{bottom:89.792000pt;}
.yd_c01231{bottom:102.912000pt;}
.yc_c01231{bottom:115.872000pt;}
.yb_c01231{bottom:128.992000pt;}
.ya_c01231{bottom:141.946667pt;}
.y9_c01231{bottom:158.266667pt;}
.y37_c01231{bottom:181.146667pt;}
.y36_c01231{bottom:200.666667pt;}
.y35_c01231{bottom:220.186667pt;}
.y34_c01231{bottom:239.866667pt;}
.y33_c01231{bottom:259.426667pt;}
.y32_c01231{bottom:278.946667pt;}
.y31_c01231{bottom:298.466667pt;}
.y30_c01231{bottom:317.986667pt;}
.y2f_c01231{bottom:337.506667pt;}
.y2e_c01231{bottom:357.026667pt;}
.y2d_c01231{bottom:376.546667pt;}
.y2c_c01231{bottom:396.066667pt;}
.y2b_c01231{bottom:415.586667pt;}
.y2a_c01231{bottom:435.106667pt;}
.y29_c01231{bottom:454.626667pt;}
.y28_c01231{bottom:474.146667pt;}
.y27_c01231{bottom:493.693333pt;}
.y26_c01231{bottom:513.373333pt;}
.y25_c01231{bottom:532.893333pt;}
.y24_c01231{bottom:552.413333pt;}
.y23_c01231{bottom:571.933333pt;}
.y22_c01231{bottom:591.453333pt;}
.y21_c01231{bottom:610.973333pt;}
.y20_c01231{bottom:630.493333pt;}
.y1f_c01231{bottom:650.013333pt;}
.y1e_c01231{bottom:676.413333pt;}
.y1d_c01231{bottom:694.493333pt;}
.y1c_c01231{bottom:714.653333pt;}
.y1b_c01231{bottom:730.333333pt;}
.y1a_c01231{bottom:743.453333pt;}
.y19_c01231{bottom:756.453333pt;}
.y18_c01231{bottom:769.573333pt;}
.y17_c01231{bottom:782.533333pt;}
.y16_c01231{bottom:795.493333pt;}
.y15_c01231{bottom:808.613333pt;}
.y14_c01231{bottom:826.853333pt;}
.y13_c01231{bottom:839.973333pt;}
.y12_c01231{bottom:848.293333pt;}
.y11_c01231{bottom:894.693333pt;}
.y8_c01231{bottom:943.013333pt;}
.y7_c01231{bottom:955.973333pt;}
.y6_c01231{bottom:969.093333pt;}
.y5_c01231{bottom:982.053333pt;}
.y4_c01231{bottom:995.013333pt;}
.y3_c01231{bottom:1008.160000pt;}
.y1_c01231{bottom:1018.240000pt;}
.h9_c01231{height:23.506875pt;}
.h2_c01231{height:28.800000pt;}
.h5_c01231{height:31.992188pt;}
.h4_c01231{height:37.499062pt;}
.h6_c01231{height:46.454062pt;}
.h3_c01231{height:51.437500pt;}
.h8_c01231{height:57.103125pt;}
.h7_c01231{height:85.900625pt;}
.h0_c01231{height:1122.560000pt;}
.h1_c01231{height:1122.666667pt;}
.w2_c01231{width:657.093333pt;}
.w0_c01231{width:793.760000pt;}
.w1_c01231{width:794.000000pt;}
.x0_c01231{left:0.000000pt;}
.x2_c01231{left:7.040000pt;}
.x1_c01231{left:68.480000pt;}
.x3_c01231{left:75.520000pt;}
.x5_c01231{left:113.312000pt;}
.x4_c01231{left:393.506667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_527ae1a7d96b50ea9378b2a4.woff2')format("woff");}.ff1_c01232{font-family:ff1_c01232;line-height:0.981934;font-style:normal;font-weight:normal;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_d0972c000f4830ecef4ae175.woff2')format("woff");}.ff2_c01232{font-family:ff2_c01232;line-height:0.687012;font-style:normal;font-weight:normal;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_eae33c6359ed7b5f62d2b467.woff2')format("woff");}.ff3_c01232{font-family:ff3_c01232;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01232;src:url('chunks/assets/font_d522b03af4753fb1c5368831.woff2')format("woff");}.ff4_c01232{font-family:ff4_c01232;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01232;src:url('chunks/assets/font_d18b5815a51797ea942b8389.woff2')format("woff");}.ff5_c01232{font-family:ff5_c01232;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01232;src:url('chunks/assets/font_d56c69c3a8a5fe44bc8bf2d8.woff2')format("woff");}.ff6_c01232{font-family:ff6_c01232;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01232{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01232{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01232{vertical-align:0.000000px;}
.lse_c01232{letter-spacing:-0.960000px;}
.ls19_c01232{letter-spacing:-0.696000px;}
.ls18_c01232{letter-spacing:-0.690000px;}
.ls8_c01232{letter-spacing:-0.660000px;}
.ls16_c01232{letter-spacing:-0.636000px;}
.ls15_c01232{letter-spacing:-0.315600px;}
.ls11_c01232{letter-spacing:-0.240600px;}
.ls13_c01232{letter-spacing:-0.228000px;}
.lsc_c01232{letter-spacing:-0.078600px;}
.ls10_c01232{letter-spacing:-0.064800px;}
.lsb_c01232{letter-spacing:-0.058200px;}
.ls17_c01232{letter-spacing:-0.010200px;}
.ls7_c01232{letter-spacing:0.000000px;}
.ls4_c01232{letter-spacing:0.022200px;}
.ls1a_c01232{letter-spacing:0.031800px;}
.ls14_c01232{letter-spacing:0.083400px;}
.ls1_c01232{letter-spacing:0.174480px;}
.ls0_c01232{letter-spacing:0.180000px;}
.ls2_c01232{letter-spacing:0.305520px;}
.ls9_c01232{letter-spacing:0.306000px;}
.ls6_c01232{letter-spacing:0.358560px;}
.lsd_c01232{letter-spacing:0.393600px;}
.lsf_c01232{letter-spacing:0.479400px;}
.ls12_c01232{letter-spacing:0.492000px;}
.lsa_c01232{letter-spacing:0.744000px;}
.ls3_c01232{letter-spacing:0.780480px;}
.ls5_c01232{letter-spacing:4.937760px;}
.sc__c01232{text-shadow:none;}
.sc0_c01232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01232{-webkit-text-stroke:0px transparent;}
.sc0_c01232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01232{word-spacing:-59.760000px;}
.ws1_c01232{word-spacing:-13.505760px;}
.ws3_c01232{word-spacing:-13.447560px;}
.ws2_c01232{word-spacing:-13.427160px;}
.ws5_c01232{word-spacing:-10.924440px;}
.ws4_c01232{word-spacing:-10.902240px;}
.ws7_c01232{word-spacing:-10.892040px;}
.ws6_c01232{word-spacing:-10.586640px;}
.ws8_c01232{word-spacing:-10.206240px;}
.ws9_c01232{word-spacing:0.000000px;}
._4_c01232{margin-left:-1.030203px;}
._0_c01232{width:1.186774px;}
._5_c01232{width:2.275541px;}
._2_c01232{width:3.416419px;}
._1_c01232{width:5.079600px;}
._3_c01232{width:6.244800px;}
._6_c01232{width:7.614739px;}
._7_c01232{width:11.973271px;}
.fc1_c01232{color:rgb(0,0,0);}
.fc0_c01232{color:rgb(0,0,255);}
.fs3_c01232{font-size:48.240000px;}
.fs1_c01232{font-size:54.000000px;}
.fs0_c01232{font-size:59.760000px;}
.fs2_c01232{font-size:72.000000px;}
.y0_c01232{bottom:0.000000px;}
.y3_c01232{bottom:71.136000px;}
.y2_c01232{bottom:88.776000px;}
.y32_c01232{bottom:146.016000px;}
.y31_c01232{bottom:165.270000px;}
.y30_c01232{bottom:184.350000px;}
.y2f_c01232{bottom:199.110000px;}
.y2e_c01232{bottom:218.190000px;}
.y2d_c01232{bottom:232.770000px;}
.y2c_c01232{bottom:252.030000px;}
.y2b_c01232{bottom:266.610000px;}
.y2a_c01232{bottom:285.915000px;}
.y29_c01232{bottom:300.495000px;}
.y28_c01232{bottom:327.135000px;}
.y27_c01232{bottom:351.795000px;}
.y26_c01232{bottom:373.755000px;}
.y25_c01232{bottom:395.715000px;}
.y24_c01232{bottom:417.675000px;}
.y23_c01232{bottom:439.635000px;}
.y22_c01232{bottom:461.595000px;}
.y21_c01232{bottom:483.555000px;}
.y20_c01232{bottom:505.515000px;}
.y1f_c01232{bottom:527.475000px;}
.y1e_c01232{bottom:549.435000px;}
.y1d_c01232{bottom:571.425000px;}
.y1c_c01232{bottom:593.565000px;}
.y1b_c01232{bottom:615.525000px;}
.y1a_c01232{bottom:637.485000px;}
.y19_c01232{bottom:659.445000px;}
.y18_c01232{bottom:681.405000px;}
.y17_c01232{bottom:703.365000px;}
.y16_c01232{bottom:725.325000px;}
.y15_c01232{bottom:747.285000px;}
.y14_c01232{bottom:769.245000px;}
.y13_c01232{bottom:791.205000px;}
.y12_c01232{bottom:813.165000px;}
.y11_c01232{bottom:835.125000px;}
.y10_c01232{bottom:857.130000px;}
.yf_c01232{bottom:879.090000px;}
.ye_c01232{bottom:901.230000px;}
.yd_c01232{bottom:923.190000px;}
.yc_c01232{bottom:945.150000px;}
.yb_c01232{bottom:967.110000px;}
.ya_c01232{bottom:989.070000px;}
.y9_c01232{bottom:1011.030000px;}
.y8_c01232{bottom:1032.990000px;}
.y7_c01232{bottom:1054.950000px;}
.y6_c01232{bottom:1076.910000px;}
.y5_c01232{bottom:1098.870000px;}
.y4_c01232{bottom:1120.830000px;}
.y1_c01232{bottom:1163.520000px;}
.h3_c01232{height:35.991211px;}
.h6_c01232{height:42.186445px;}
.h2_c01232{height:48.029766px;}
.h4_c01232{height:52.260820px;}
.h5_c01232{height:57.867188px;}
.h0_c01232{height:1262.880000px;}
.h1_c01232{height:1263.000000px;}
.w0_c01232{width:892.980000px;}
.w1_c01232{width:893.250000px;}
.x0_c01232{left:0.000000px;}
.x1_c01232{left:84.960000px;}
.x5_c01232{left:99.936000px;}
.x6_c01232{left:106.236000px;}
.x4_c01232{left:127.476000px;}
.x3_c01232{left:442.695000px;}
.x2_c01232{left:446.475000px;}
@media print{
.v0_c01232{vertical-align:0.000000pt;}
.lse_c01232{letter-spacing:-0.853333pt;}
.ls19_c01232{letter-spacing:-0.618667pt;}
.ls18_c01232{letter-spacing:-0.613333pt;}
.ls8_c01232{letter-spacing:-0.586667pt;}
.ls16_c01232{letter-spacing:-0.565333pt;}
.ls15_c01232{letter-spacing:-0.280533pt;}
.ls11_c01232{letter-spacing:-0.213867pt;}
.ls13_c01232{letter-spacing:-0.202667pt;}
.lsc_c01232{letter-spacing:-0.069867pt;}
.ls10_c01232{letter-spacing:-0.057600pt;}
.lsb_c01232{letter-spacing:-0.051733pt;}
.ls17_c01232{letter-spacing:-0.009067pt;}
.ls7_c01232{letter-spacing:0.000000pt;}
.ls4_c01232{letter-spacing:0.019733pt;}
.ls1a_c01232{letter-spacing:0.028267pt;}
.ls14_c01232{letter-spacing:0.074133pt;}
.ls1_c01232{letter-spacing:0.155093pt;}
.ls0_c01232{letter-spacing:0.160000pt;}
.ls2_c01232{letter-spacing:0.271573pt;}
.ls9_c01232{letter-spacing:0.272000pt;}
.ls6_c01232{letter-spacing:0.318720pt;}
.lsd_c01232{letter-spacing:0.349867pt;}
.lsf_c01232{letter-spacing:0.426133pt;}
.ls12_c01232{letter-spacing:0.437333pt;}
.lsa_c01232{letter-spacing:0.661333pt;}
.ls3_c01232{letter-spacing:0.693760pt;}
.ls5_c01232{letter-spacing:4.389120pt;}
.ws0_c01232{word-spacing:-53.120000pt;}
.ws1_c01232{word-spacing:-12.005120pt;}
.ws3_c01232{word-spacing:-11.953387pt;}
.ws2_c01232{word-spacing:-11.935253pt;}
.ws5_c01232{word-spacing:-9.710613pt;}
.ws4_c01232{word-spacing:-9.690880pt;}
.ws7_c01232{word-spacing:-9.681813pt;}
.ws6_c01232{word-spacing:-9.410347pt;}
.ws8_c01232{word-spacing:-9.072213pt;}
.ws9_c01232{word-spacing:0.000000pt;}
._4_c01232{margin-left:-0.915736pt;}
._0_c01232{width:1.054910pt;}
._5_c01232{width:2.022703pt;}
._2_c01232{width:3.036817pt;}
._1_c01232{width:4.515200pt;}
._3_c01232{width:5.550934pt;}
._6_c01232{width:6.768657pt;}
._7_c01232{width:10.642907pt;}
.fs3_c01232{font-size:42.880000pt;}
.fs1_c01232{font-size:48.000000pt;}
.fs0_c01232{font-size:53.120000pt;}
.fs2_c01232{font-size:64.000000pt;}
.y0_c01232{bottom:0.000000pt;}
.y3_c01232{bottom:63.232000pt;}
.y2_c01232{bottom:78.912000pt;}
.y32_c01232{bottom:129.792000pt;}
.y31_c01232{bottom:146.906667pt;}
.y30_c01232{bottom:163.866667pt;}
.y2f_c01232{bottom:176.986667pt;}
.y2e_c01232{bottom:193.946667pt;}
.y2d_c01232{bottom:206.906667pt;}
.y2c_c01232{bottom:224.026667pt;}
.y2b_c01232{bottom:236.986667pt;}
.y2a_c01232{bottom:254.146667pt;}
.y29_c01232{bottom:267.106667pt;}
.y28_c01232{bottom:290.786667pt;}
.y27_c01232{bottom:312.706667pt;}
.y26_c01232{bottom:332.226667pt;}
.y25_c01232{bottom:351.746667pt;}
.y24_c01232{bottom:371.266667pt;}
.y23_c01232{bottom:390.786667pt;}
.y22_c01232{bottom:410.306667pt;}
.y21_c01232{bottom:429.826667pt;}
.y20_c01232{bottom:449.346667pt;}
.y1f_c01232{bottom:468.866667pt;}
.y1e_c01232{bottom:488.386667pt;}
.y1d_c01232{bottom:507.933333pt;}
.y1c_c01232{bottom:527.613333pt;}
.y1b_c01232{bottom:547.133333pt;}
.y1a_c01232{bottom:566.653333pt;}
.y19_c01232{bottom:586.173333pt;}
.y18_c01232{bottom:605.693333pt;}
.y17_c01232{bottom:625.213333pt;}
.y16_c01232{bottom:644.733333pt;}
.y15_c01232{bottom:664.253333pt;}
.y14_c01232{bottom:683.773333pt;}
.y13_c01232{bottom:703.293333pt;}
.y12_c01232{bottom:722.813333pt;}
.y11_c01232{bottom:742.333333pt;}
.y10_c01232{bottom:761.893333pt;}
.yf_c01232{bottom:781.413333pt;}
.ye_c01232{bottom:801.093333pt;}
.yd_c01232{bottom:820.613333pt;}
.yc_c01232{bottom:840.133333pt;}
.yb_c01232{bottom:859.653333pt;}
.ya_c01232{bottom:879.173333pt;}
.y9_c01232{bottom:898.693333pt;}
.y8_c01232{bottom:918.213333pt;}
.y7_c01232{bottom:937.733333pt;}
.y6_c01232{bottom:957.253333pt;}
.y5_c01232{bottom:976.773333pt;}
.y4_c01232{bottom:996.293333pt;}
.y1_c01232{bottom:1034.240000pt;}
.h3_c01232{height:31.992188pt;}
.h6_c01232{height:37.499062pt;}
.h2_c01232{height:42.693125pt;}
.h4_c01232{height:46.454062pt;}
.h5_c01232{height:51.437500pt;}
.h0_c01232{height:1122.560000pt;}
.h1_c01232{height:1122.666667pt;}
.w0_c01232{width:793.760000pt;}
.w1_c01232{width:794.000000pt;}
.x0_c01232{left:0.000000pt;}
.x1_c01232{left:75.520000pt;}
.x5_c01232{left:88.832000pt;}
.x6_c01232{left:94.432000pt;}
.x4_c01232{left:113.312000pt;}
.x3_c01232{left:393.506667pt;}
.x2_c01232{left:396.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_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_1e42e552cf403c1061baec69.woff2')format("woff");}.ff1_c01233{font-family:ff1_c01233;line-height:0.981934;font-style:normal;font-weight:normal;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_959a6c0415b129750b09f95a.woff2')format("woff");}.ff2_c01233{font-family:ff2_c01233;line-height:1.052734;font-style:normal;font-weight:normal;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_a56339ad072f286f5c34c265.woff2')format("woff");}.ff3_c01233{font-family:ff3_c01233;line-height:0.982910;font-style:normal;font-weight:normal;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_a3f9d400614c6b53a3b29039.woff2')format("woff");}.ff4_c01233{font-family:ff4_c01233;line-height:0.680176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c01233{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01233{vertical-align:0.000000px;}
.ls3_c01233{letter-spacing:-0.126000px;}
.ls2_c01233{letter-spacing:0.000000px;}
.ls1_c01233{letter-spacing:0.022200px;}
.ls4_c01233{letter-spacing:0.180000px;}
.ls0_c01233{letter-spacing:0.262800px;}
.sc__c01233{text-shadow:none;}
.sc0_c01233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01233{-webkit-text-stroke:0px transparent;}
.sc0_c01233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01233{word-spacing:-13.505760px;}
.ws3_c01233{word-spacing:-10.924440px;}
.ws1_c01233{word-spacing:-10.902240px;}
.ws2_c01233{word-spacing:-10.776240px;}
.ws4_c01233{word-spacing:0.000000px;}
._2_c01233{margin-left:-1.206000px;}
._0_c01233{width:1.075800px;}
._1_c01233{width:3.521424px;}
._3_c01233{width:4.728099px;}
._4_c01233{width:6.448384px;}
.fc1_c01233{color:rgb(0,0,0);}
.fc2_c01233{color:rgb(49,132,155);}
.fc0_c01233{color:rgb(0,0,255);}
.fs2_c01233{font-size:48.240000px;}
.fs1_c01233{font-size:54.000000px;}
.fs0_c01233{font-size:59.760000px;}
.y0_c01233{bottom:0.000000px;}
.y3_c01233{bottom:67.716000px;}
.y2_c01233{bottom:85.716000px;}
.ya_c01233{bottom:1027.050000px;}
.y9_c01233{bottom:1041.630000px;}
.y8_c01233{bottom:1060.890000px;}
.y7_c01233{bottom:1075.470000px;}
.y6_c01233{bottom:1094.550000px;}
.y5_c01233{bottom:1109.310000px;}
.y4_c01233{bottom:1123.920000px;}
.y1_c01233{bottom:1163.520000px;}
.h5_c01233{height:42.186445px;}
.h3_c01233{height:47.223633px;}
.h2_c01233{height:48.029766px;}
.h4_c01233{height:52.260820px;}
.h0_c01233{height:1262.880000px;}
.h1_c01233{height:1263.000000px;}
.w0_c01233{width:892.980000px;}
.w1_c01233{width:893.250000px;}
.x0_c01233{left:0.000000px;}
.x1_c01233{left:84.960000px;}
.x4_c01233{left:106.236000px;}
.x3_c01233{left:442.695000px;}
.x2_c01233{left:446.475000px;}
@media print{
.v0_c01233{vertical-align:0.000000pt;}
.ls3_c01233{letter-spacing:-0.112000pt;}
.ls2_c01233{letter-spacing:0.000000pt;}
.ls1_c01233{letter-spacing:0.019733pt;}
.ls4_c01233{letter-spacing:0.160000pt;}
.ls0_c01233{letter-spacing:0.233600pt;}
.ws0_c01233{word-spacing:-12.005120pt;}
.ws3_c01233{word-spacing:-9.710613pt;}
.ws1_c01233{word-spacing:-9.690880pt;}
.ws2_c01233{word-spacing:-9.578880pt;}
.ws4_c01233{word-spacing:0.000000pt;}
._2_c01233{margin-left:-1.072000pt;}
._0_c01233{width:0.956266pt;}
._1_c01233{width:3.130154pt;}
._3_c01233{width:4.202755pt;}
._4_c01233{width:5.731897pt;}
.fs2_c01233{font-size:42.880000pt;}
.fs1_c01233{font-size:48.000000pt;}
.fs0_c01233{font-size:53.120000pt;}
.y0_c01233{bottom:0.000000pt;}
.y3_c01233{bottom:60.192000pt;}
.y2_c01233{bottom:76.192000pt;}
.ya_c01233{bottom:912.933333pt;}
.y9_c01233{bottom:925.893333pt;}
.y8_c01233{bottom:943.013333pt;}
.y7_c01233{bottom:955.973333pt;}
.y6_c01233{bottom:972.933333pt;}
.y5_c01233{bottom:986.053333pt;}
.y4_c01233{bottom:999.040000pt;}
.y1_c01233{bottom:1034.240000pt;}
.h5_c01233{height:37.499062pt;}
.h3_c01233{height:41.976562pt;}
.h2_c01233{height:42.693125pt;}
.h4_c01233{height:46.454062pt;}
.h0_c01233{height:1122.560000pt;}
.h1_c01233{height:1122.666667pt;}
.w0_c01233{width:793.760000pt;}
.w1_c01233{width:794.000000pt;}
.x0_c01233{left:0.000000pt;}
.x1_c01233{left:75.520000pt;}
.x4_c01233{left:94.432000pt;}
.x3_c01233{left:393.506667pt;}
.x2_c01233{left:396.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_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_c4a5450794b8833f6c391ef7.woff2')format("woff");}.ff1_c01234{font-family:ff1_c01234;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c01234{vertical-align:50.400000px;}
.ls1_c01234{letter-spacing:0.000000px;}
.ls3_c01234{letter-spacing:0.037200px;}
.ls2_c01234{letter-spacing:0.245400px;}
.ls0_c01234{letter-spacing:47.045376px;}
.sc__c01234{text-shadow:none;}
.sc0_c01234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01234{-webkit-text-stroke:0px transparent;}
.sc0_c01234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01234{word-spacing:-46.922712px;}
.ws3_c01234{word-spacing:0.000000px;}
.ws2_c01234{word-spacing:15.273360px;}
.ws1_c01234{word-spacing:15.393360px;}
._3_c01234{margin-left:-9.519962px;}
._5_c01234{margin-left:-6.318505px;}
._1_c01234{margin-left:-4.864872px;}
._4_c01234{margin-left:-2.527200px;}
._2_c01234{margin-left:-1.347672px;}
._0_c01234{width:1.174152px;}
.fc0_c01234{color:rgb(255,255,255);}
.fs3_c01234{font-size:84.240000px;}
.fs2_c01234{font-size:112.320000px;}
.fs0_c01234{font-size:167.760000px;}
.fs1_c01234{font-size:167.904000px;}
.y0_c01234{bottom:0.000000px;}
.yb_c01234{bottom:142.056000px;}
.ya_c01234{bottom:167.250000px;}
.y9_c01234{bottom:192.450000px;}
.y8_c01234{bottom:242.895000px;}
.y7_c01234{bottom:268.095000px;}
.y6_c01234{bottom:293.295000px;}
.y5_c01234{bottom:377.205000px;}
.y4_c01234{bottom:422.565000px;}
.y3_c01234{bottom:543.390000px;}
.y2_c01234{bottom:603.690000px;}
.y1_c01234{bottom:649.050000px;}
.h4_c01234{height:61.329023px;}
.h1_c01234{height:122.133867px;}
.h3_c01234{height:122.238703px;}
.h2_c01234{height:132.172031px;}
.h0_c01234{height:810.000000px;}
.w0_c01234{width:1440.000000px;}
.x0_c01234{left:0.000000px;}
.x4_c01234{left:414.900000px;}
.x1_c01234{left:417.240000px;}
.x5_c01234{left:462.960000px;}
.x7_c01234{left:484.740000px;}
.x3_c01234{left:505.260000px;}
.x9_c01234{left:552.240000px;}
.xa_c01234{left:597.810000px;}
.x2_c01234{left:606.810000px;}
.x8_c01234{left:614.910000px;}
.x6_c01234{left:651.090000px;}
@media print{
.v0_c01234{vertical-align:0.000000pt;}
.v1_c01234{vertical-align:44.800000pt;}
.ls1_c01234{letter-spacing:0.000000pt;}
.ls3_c01234{letter-spacing:0.033067pt;}
.ls2_c01234{letter-spacing:0.218133pt;}
.ls0_c01234{letter-spacing:41.818112pt;}
.ws0_c01234{word-spacing:-41.709077pt;}
.ws3_c01234{word-spacing:0.000000pt;}
.ws2_c01234{word-spacing:13.576320pt;}
.ws1_c01234{word-spacing:13.682987pt;}
._3_c01234{margin-left:-8.462189pt;}
._5_c01234{margin-left:-5.616449pt;}
._1_c01234{margin-left:-4.324331pt;}
._4_c01234{margin-left:-2.246400pt;}
._2_c01234{margin-left:-1.197930pt;}
._0_c01234{width:1.043691pt;}
.fs3_c01234{font-size:74.880000pt;}
.fs2_c01234{font-size:99.840000pt;}
.fs0_c01234{font-size:149.120000pt;}
.fs1_c01234{font-size:149.248000pt;}
.y0_c01234{bottom:0.000000pt;}
.yb_c01234{bottom:126.272000pt;}
.ya_c01234{bottom:148.666667pt;}
.y9_c01234{bottom:171.066667pt;}
.y8_c01234{bottom:215.906667pt;}
.y7_c01234{bottom:238.306667pt;}
.y6_c01234{bottom:260.706667pt;}
.y5_c01234{bottom:335.293333pt;}
.y4_c01234{bottom:375.613333pt;}
.y3_c01234{bottom:483.013333pt;}
.y2_c01234{bottom:536.613333pt;}
.y1_c01234{bottom:576.933333pt;}
.h4_c01234{height:54.514687pt;}
.h1_c01234{height:108.563437pt;}
.h3_c01234{height:108.656625pt;}
.h2_c01234{height:117.486250pt;}
.h0_c01234{height:720.000000pt;}
.w0_c01234{width:1280.000000pt;}
.x0_c01234{left:0.000000pt;}
.x4_c01234{left:368.800000pt;}
.x1_c01234{left:370.880000pt;}
.x5_c01234{left:411.520000pt;}
.x7_c01234{left:430.880000pt;}
.x3_c01234{left:449.120000pt;}
.x9_c01234{left:490.880000pt;}
.xa_c01234{left:531.386667pt;}
.x2_c01234{left:539.386667pt;}
.x8_c01234{left:546.586667pt;}
.x6_c01234{left:578.746667pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_254ce42dbc5dc30aa442f4bf.woff2')format("woff");}.ff1_c01236{font-family:ff1_c01236;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01236;src:url('chunks/assets/font_f6a7bdeedabbdec7d82413d5.woff2')format("woff");}.ff2_c01236{font-family:ff2_c01236;line-height:0.893555;font-style:normal;font-weight:normal;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_fb8438af048a2dfefe59e77e.woff2')format("woff");}.ff3_c01236{font-family:ff3_c01236;line-height:0.910645;font-style:normal;font-weight:normal;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_24d2ea40154f0ab2adea501b.woff2')format("woff");}.ff4_c01236{font-family:ff4_c01236;line-height:0.938965;font-style: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;}
.v1_c01236{vertical-align:10.200000px;}
.ls0_c01236{letter-spacing:0.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:-23.940000px;}
.ws1_c01236{word-spacing:-21.060000px;}
.ws2_c01236{word-spacing:0.000000px;}
._9_c01236{margin-left:-13.405248px;}
._4_c01236{margin-left:-7.055904px;}
._7_c01236{margin-left:-5.925792px;}
._8_c01236{margin-left:-4.324176px;}
._5_c01236{margin-left:-2.880000px;}
._1_c01236{margin-left:-1.872000px;}
._0_c01236{width:1.728000px;}
._3_c01236{width:3.212353px;}
._2_c01236{width:47.844000px;}
._6_c01236{width:1278.812400px;}
.fc1_c01236{color:rgb(0,0,0);}
.fc0_c01236{color:rgb(255,255,255);}
.fs4_c01236{font-size:84.240000px;}
.fs1_c01236{font-size:95.760000px;}
.fs2_c01236{font-size:95.904000px;}
.fs3_c01236{font-size:102.240000px;}
.fs0_c01236{font-size:144.000000px;}
.fs5_c01236{font-size:144.144000px;}
.y0_c01236{bottom:0.000000px;}
.y14_c01236{bottom:6.120000px;}
.y11_c01236{bottom:57.924000px;}
.y10_c01236{bottom:84.204000px;}
.yf_c01236{bottom:110.664000px;}
.ye_c01236{bottom:164.010000px;}
.yd_c01236{bottom:216.930000px;}
.yc_c01236{bottom:245.955000px;}
.yb_c01236{bottom:270.795000px;}
.ya_c01236{bottom:299.775000px;}
.y5_c01236{bottom:312.195000px;}
.y9_c01236{bottom:324.615000px;}
.y8_c01236{bottom:353.595000px;}
.y7_c01236{bottom:382.605000px;}
.y6_c01236{bottom:407.445000px;}
.y16_c01236{bottom:450.435000px;}
.y12_c01236{bottom:460.335000px;}
.y4_c01236{bottom:546.810000px;}
.y2_c01236{bottom:571.680000px;}
.y3_c01236{bottom:596.520000px;}
.y13_c01236{bottom:637.635000px;}
.y15_c01236{bottom:660.570000px;}
.y1_c01236{bottom:745.710000px;}
.h8_c01236{height:57.092344px;}
.h9_c01236{height:61.370156px;}
.h2_c01236{height:64.899844px;}
.h3_c01236{height:66.536367px;}
.h4_c01236{height:66.636422px;}
.h7_c01236{height:67.292344px;}
.h6_c01236{height:71.038828px;}
.h5_c01236{height:97.593750px;}
.ha_c01236{height:97.691344px;}
.h1_c01236{height:104.835938px;}
.h0_c01236{height:810.000000px;}
.w0_c01236{width:1440.000000px;}
.x0_c01236{left:0.000000px;}
.x5_c01236{left:4.968000px;}
.x2_c01236{left:26.388000px;}
.xa_c01236{left:47.124000px;}
.x9_c01236{left:52.812000px;}
.x6_c01236{left:215.565000px;}
.xf_c01236{left:217.980000px;}
.x3_c01236{left:222.510000px;}
.xe_c01236{left:225.825000px;}
.x7_c01236{left:235.905000px;}
.x4_c01236{left:242.850000px;}
.x1_c01236{left:247.650000px;}
.x8_c01236{left:256.110000px;}
.xd_c01236{left:526.530000px;}
.xb_c01236{left:779.835000px;}
.xc_c01236{left:1020.030000px;}
@media print{
.v0_c01236{vertical-align:0.000000pt;}
.v1_c01236{vertical-align:9.066667pt;}
.ls0_c01236{letter-spacing:0.000000pt;}
.ws0_c01236{word-spacing:-21.280000pt;}
.ws1_c01236{word-spacing:-18.720000pt;}
.ws2_c01236{word-spacing:0.000000pt;}
._9_c01236{margin-left:-11.915776pt;}
._4_c01236{margin-left:-6.271915pt;}
._7_c01236{margin-left:-5.267370pt;}
._8_c01236{margin-left:-3.843712pt;}
._5_c01236{margin-left:-2.560000pt;}
._1_c01236{margin-left:-1.664000pt;}
._0_c01236{width:1.536000pt;}
._3_c01236{width:2.855425pt;}
._2_c01236{width:42.528000pt;}
._6_c01236{width:1136.722133pt;}
.fs4_c01236{font-size:74.880000pt;}
.fs1_c01236{font-size:85.120000pt;}
.fs2_c01236{font-size:85.248000pt;}
.fs3_c01236{font-size:90.880000pt;}
.fs0_c01236{font-size:128.000000pt;}
.fs5_c01236{font-size:128.128000pt;}
.y0_c01236{bottom:0.000000pt;}
.y14_c01236{bottom:5.440000pt;}
.y11_c01236{bottom:51.488000pt;}
.y10_c01236{bottom:74.848000pt;}
.yf_c01236{bottom:98.368000pt;}
.ye_c01236{bottom:145.786667pt;}
.yd_c01236{bottom:192.826667pt;}
.yc_c01236{bottom:218.626667pt;}
.yb_c01236{bottom:240.706667pt;}
.ya_c01236{bottom:266.466667pt;}
.y5_c01236{bottom:277.506667pt;}
.y9_c01236{bottom:288.546667pt;}
.y8_c01236{bottom:314.306667pt;}
.y7_c01236{bottom:340.093333pt;}
.y6_c01236{bottom:362.173333pt;}
.y16_c01236{bottom:400.386667pt;}
.y12_c01236{bottom:409.186667pt;}
.y4_c01236{bottom:486.053333pt;}
.y2_c01236{bottom:508.160000pt;}
.y3_c01236{bottom:530.240000pt;}
.y13_c01236{bottom:566.786667pt;}
.y15_c01236{bottom:587.173333pt;}
.y1_c01236{bottom:662.853333pt;}
.h8_c01236{height:50.748750pt;}
.h9_c01236{height:54.551250pt;}
.h2_c01236{height:57.688750pt;}
.h3_c01236{height:59.143438pt;}
.h4_c01236{height:59.232375pt;}
.h7_c01236{height:59.815417pt;}
.h6_c01236{height:63.145625pt;}
.h5_c01236{height:86.750000pt;}
.ha_c01236{height:86.836750pt;}
.h1_c01236{height:93.187500pt;}
.h0_c01236{height:720.000000pt;}
.w0_c01236{width:1280.000000pt;}
.x0_c01236{left:0.000000pt;}
.x5_c01236{left:4.416000pt;}
.x2_c01236{left:23.456000pt;}
.xa_c01236{left:41.888000pt;}
.x9_c01236{left:46.944000pt;}
.x6_c01236{left:191.613333pt;}
.xf_c01236{left:193.760000pt;}
.x3_c01236{left:197.786667pt;}
.xe_c01236{left:200.733333pt;}
.x7_c01236{left:209.693333pt;}
.x4_c01236{left:215.866667pt;}
.x1_c01236{left:220.133333pt;}
.x8_c01236{left:227.653333pt;}
.xd_c01236{left:468.026667pt;}
.xb_c01236{left:693.186667pt;}
.xc_c01236{left:906.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_679b63aefdd4311852b4be39.woff2')format("woff");}.ff1_c01237{font-family:ff1_c01237;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01237;src:url('chunks/assets/font_0fed73567ce1fc6d5f5fc9a5.woff2')format("woff");}.ff2_c01237{font-family:ff2_c01237;line-height:0.893555;font-style:normal;font-weight:normal;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_899f8cba589eeec08fbdf65f.woff2')format("woff");}.ff3_c01237{font-family:ff3_c01237;line-height:0.910645;font-style:normal;font-weight:normal;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_24d2ea40154f0ab2adea501b.woff2')format("woff");}.ff4_c01237{font-family:ff4_c01237;line-height:0.938965;font-style:normal;font-weight:normal;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_432099472650798c477e8269.woff2')format("woff");}.ff5_c01237{font-family:ff5_c01237;line-height:0.972656;font-style: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;}
.v2_c01237{vertical-align:49.536000px;}
.v1_c01237{vertical-align:54.180000px;}
.ls2_c01237{letter-spacing:-0.144000px;}
.ls1_c01237{letter-spacing:0.000000px;}
.ls0_c01237{letter-spacing:0.216000px;}
.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;}
}
.wsa_c01237{word-spacing:-34.596000px;}
.wsc_c01237{word-spacing:-23.940000px;}
.wsd_c01237{word-spacing:0.000000px;}
.ws0_c01237{word-spacing:204.197507px;}
.wsb_c01237{word-spacing:379.395888px;}
.ws1_c01237{word-spacing:399.237288px;}
.ws9_c01237{word-spacing:669.900000px;}
.ws5_c01237{word-spacing:677.100000px;}
.ws3_c01237{word-spacing:693.660000px;}
.ws7_c01237{word-spacing:700.860000px;}
.ws4_c01237{word-spacing:968.232000px;}
.ws8_c01237{word-spacing:969.672000px;}
.ws2_c01237{word-spacing:992.712000px;}
.ws6_c01237{word-spacing:994.152000px;}
._13_c01237{margin-left:-8.874469px;}
._e_c01237{margin-left:-7.468093px;}
._f_c01237{margin-left:-6.278063px;}
._d_c01237{margin-left:-4.824000px;}
._a_c01237{margin-left:-3.177360px;}
._12_c01237{margin-left:-2.058144px;}
._2_c01237{margin-left:-1.010880px;}
._6_c01237{width:1.092240px;}
._10_c01237{width:2.259264px;}
._11_c01237{width:3.706177px;}
._9_c01237{width:14.223360px;}
._7_c01237{width:186.125533px;}
._8_c01237{width:214.549680px;}
._4_c01237{width:240.372960px;}
._3_c01237{width:252.433440px;}
._1_c01237{width:385.282560px;}
._0_c01237{width:443.068080px;}
._5_c01237{width:465.072960px;}
._c_c01237{width:591.110880px;}
._b_c01237{width:820.416000px;}
.fc2_c01237{color:rgb(0,86,151);}
.fc1_c01237{color:rgb(0,0,0);}
.fc0_c01237{color:rgb(255,255,255);}
.fs2_c01237{font-size:66.240000px;}
.fs3_c01237{font-size:72.000000px;}
.fs1_c01237{font-size:84.240000px;}
.fs4_c01237{font-size:95.760000px;}
.fs5_c01237{font-size:95.904000px;}
.fsa_c01237{font-size:120.240000px;}
.fs7_c01237{font-size:138.240000px;}
.fs6_c01237{font-size:138.384000px;}
.fs0_c01237{font-size:144.000000px;}
.fs8_c01237{font-size:192.240000px;}
.fs9_c01237{font-size:192.384000px;}
.y0_c01237{bottom:0.000000px;}
.y13_c01237{bottom:12.996000px;}
.y12_c01237{bottom:87.516000px;}
.y1f_c01237{bottom:119.916000px;}
.y11_c01237{bottom:127.584000px;}
.y1e_c01237{bottom:132.372000px;}
.y10_c01237{bottom:167.655000px;}
.y1d_c01237{bottom:188.280000px;}
.y8_c01237{bottom:195.510000px;}
.yf_c01237{bottom:207.690000px;}
.y7_c01237{bottom:213.120000px;}
.ye_c01237{bottom:247.755000px;}
.y1c_c01237{bottom:288.075000px;}
.y19_c01237{bottom:293.370000px;}
.yd_c01237{bottom:307.290000px;}
.yc_c01237{bottom:327.090000px;}
.yb_c01237{bottom:346.935000px;}
.y9_c01237{bottom:381.630000px;}
.y6_c01237{bottom:395.175000px;}
.y18_c01237{bottom:404.100000px;}
.ya_c01237{bottom:408.630000px;}
.y1b_c01237{bottom:415.005000px;}
.y17_c01237{bottom:439.740000px;}
.y5_c01237{bottom:454.170000px;}
.y4_c01237{bottom:481.170000px;}
.y3_c01237{bottom:529.020000px;}
.y1a_c01237{bottom:547.125000px;}
.y16_c01237{bottom:550.440000px;}
.y2_c01237{bottom:571.500000px;}
.y15_c01237{bottom:645.045000px;}
.y14_c01237{bottom:673.845000px;}
.y1_c01237{bottom:745.710000px;}
.h6_c01237{height:46.025156px;}
.h7_c01237{height:48.796875px;}
.h8_c01237{height:50.027344px;}
.h2_c01237{height:57.092344px;}
.h3_c01237{height:58.531992px;}
.h9_c01237{height:61.370156px;}
.ha_c01237{height:64.899844px;}
.hb_c01237{height:64.997438px;}
.h12_c01237{height:66.536367px;}
.h10_c01237{height:90.884531px;}
.hd_c01237{height:96.052500px;}
.hc_c01237{height:96.152555px;}
.h1_c01237{height:104.835938px;}
.h4_c01237{height:112.711992px;}
.h11_c01237{height:116.072367px;}
.he_c01237{height:130.287656px;}
.hf_c01237{height:130.385250px;}
.h5_c01237{height:377.640000px;}
.h0_c01237{height:810.000000px;}
.w1_c01237{width:226.440000px;}
.w0_c01237{width:1440.000000px;}
.x0_c01237{left:0.000000px;}
.x7_c01237{left:17.490000px;}
.x13_c01237{left:99.144000px;}
.x15_c01237{left:101.376000px;}
.x17_c01237{left:118.152000px;}
.x14_c01237{left:128.844000px;}
.x16_c01237{left:144.936000px;}
.x11_c01237{left:178.845000px;}
.x10_c01237{left:190.410000px;}
.x12_c01237{left:209.985000px;}
.x1_c01237{left:247.650000px;}
.x18_c01237{left:336.780000px;}
.xf_c01237{left:410.040000px;}
.xe_c01237{left:526.530000px;}
.xb_c01237{left:541.875000px;}
.x4_c01237{left:565.125000px;}
.x3_c01237{left:579.165000px;}
.x5_c01237{left:581.685000px;}
.xc_c01237{left:679.650000px;}
.xd_c01237{left:685.770000px;}
.x2_c01237{left:764.385000px;}
.x6_c01237{left:919.620000px;}
.x8_c01237{left:957.090000px;}
.x9_c01237{left:1169.745000px;}
.xa_c01237{left:1189.590000px;}
@media print{
.v0_c01237{vertical-align:0.000000pt;}
.v2_c01237{vertical-align:44.032000pt;}
.v1_c01237{vertical-align:48.160000pt;}
.ls2_c01237{letter-spacing:-0.128000pt;}
.ls1_c01237{letter-spacing:0.000000pt;}
.ls0_c01237{letter-spacing:0.192000pt;}
.wsa_c01237{word-spacing:-30.752000pt;}
.wsc_c01237{word-spacing:-21.280000pt;}
.wsd_c01237{word-spacing:0.000000pt;}
.ws0_c01237{word-spacing:181.508895pt;}
.wsb_c01237{word-spacing:337.240790pt;}
.ws1_c01237{word-spacing:354.877590pt;}
.ws9_c01237{word-spacing:595.466667pt;}
.ws5_c01237{word-spacing:601.866667pt;}
.ws3_c01237{word-spacing:616.586667pt;}
.ws7_c01237{word-spacing:622.986667pt;}
.ws4_c01237{word-spacing:860.650667pt;}
.ws8_c01237{word-spacing:861.930667pt;}
.ws2_c01237{word-spacing:882.410667pt;}
.ws6_c01237{word-spacing:883.690667pt;}
._13_c01237{margin-left:-7.888417pt;}
._e_c01237{margin-left:-6.638305pt;}
._f_c01237{margin-left:-5.580500pt;}
._d_c01237{margin-left:-4.288000pt;}
._a_c01237{margin-left:-2.824320pt;}
._12_c01237{margin-left:-1.829461pt;}
._2_c01237{margin-left:-0.898560pt;}
._6_c01237{width:0.970880pt;}
._10_c01237{width:2.008235pt;}
._11_c01237{width:3.294380pt;}
._9_c01237{width:12.642987pt;}
._7_c01237{width:165.444918pt;}
._8_c01237{width:190.710827pt;}
._4_c01237{width:213.664853pt;}
._3_c01237{width:224.385280pt;}
._1_c01237{width:342.473387pt;}
._0_c01237{width:393.838293pt;}
._5_c01237{width:413.398187pt;}
._c_c01237{width:525.431893pt;}
._b_c01237{width:729.258667pt;}
.fs2_c01237{font-size:58.880000pt;}
.fs3_c01237{font-size:64.000000pt;}
.fs1_c01237{font-size:74.880000pt;}
.fs4_c01237{font-size:85.120000pt;}
.fs5_c01237{font-size:85.248000pt;}
.fsa_c01237{font-size:106.880000pt;}
.fs7_c01237{font-size:122.880000pt;}
.fs6_c01237{font-size:123.008000pt;}
.fs0_c01237{font-size:128.000000pt;}
.fs8_c01237{font-size:170.880000pt;}
.fs9_c01237{font-size:171.008000pt;}
.y0_c01237{bottom:0.000000pt;}
.y13_c01237{bottom:11.552000pt;}
.y12_c01237{bottom:77.792000pt;}
.y1f_c01237{bottom:106.592000pt;}
.y11_c01237{bottom:113.408000pt;}
.y1e_c01237{bottom:117.664000pt;}
.y10_c01237{bottom:149.026667pt;}
.y1d_c01237{bottom:167.360000pt;}
.y8_c01237{bottom:173.786667pt;}
.yf_c01237{bottom:184.613333pt;}
.y7_c01237{bottom:189.440000pt;}
.ye_c01237{bottom:220.226667pt;}
.y1c_c01237{bottom:256.066667pt;}
.y19_c01237{bottom:260.773333pt;}
.yd_c01237{bottom:273.146667pt;}
.yc_c01237{bottom:290.746667pt;}
.yb_c01237{bottom:308.386667pt;}
.y9_c01237{bottom:339.226667pt;}
.y6_c01237{bottom:351.266667pt;}
.y18_c01237{bottom:359.200000pt;}
.ya_c01237{bottom:363.226667pt;}
.y1b_c01237{bottom:368.893333pt;}
.y17_c01237{bottom:390.880000pt;}
.y5_c01237{bottom:403.706667pt;}
.y4_c01237{bottom:427.706667pt;}
.y3_c01237{bottom:470.240000pt;}
.y1a_c01237{bottom:486.333333pt;}
.y16_c01237{bottom:489.280000pt;}
.y2_c01237{bottom:508.000000pt;}
.y15_c01237{bottom:573.373333pt;}
.y14_c01237{bottom:598.973333pt;}
.y1_c01237{bottom:662.853333pt;}
.h6_c01237{height:40.911250pt;}
.h7_c01237{height:43.375000pt;}
.h8_c01237{height:44.468750pt;}
.h2_c01237{height:50.748750pt;}
.h3_c01237{height:52.028437pt;}
.h9_c01237{height:54.551250pt;}
.ha_c01237{height:57.688750pt;}
.hb_c01237{height:57.775500pt;}
.h12_c01237{height:59.143438pt;}
.h10_c01237{height:80.786250pt;}
.hd_c01237{height:85.380000pt;}
.hc_c01237{height:85.468938pt;}
.h1_c01237{height:93.187500pt;}
.h4_c01237{height:100.188438pt;}
.h11_c01237{height:103.175437pt;}
.he_c01237{height:115.811250pt;}
.hf_c01237{height:115.898000pt;}
.h5_c01237{height:335.680000pt;}
.h0_c01237{height:720.000000pt;}
.w1_c01237{width:201.280000pt;}
.w0_c01237{width:1280.000000pt;}
.x0_c01237{left:0.000000pt;}
.x7_c01237{left:15.546667pt;}
.x13_c01237{left:88.128000pt;}
.x15_c01237{left:90.112000pt;}
.x17_c01237{left:105.024000pt;}
.x14_c01237{left:114.528000pt;}
.x16_c01237{left:128.832000pt;}
.x11_c01237{left:158.973333pt;}
.x10_c01237{left:169.253333pt;}
.x12_c01237{left:186.653333pt;}
.x1_c01237{left:220.133333pt;}
.x18_c01237{left:299.360000pt;}
.xf_c01237{left:364.480000pt;}
.xe_c01237{left:468.026667pt;}
.xb_c01237{left:481.666667pt;}
.x4_c01237{left:502.333333pt;}
.x3_c01237{left:514.813333pt;}
.x5_c01237{left:517.053333pt;}
.xc_c01237{left:604.133333pt;}
.xd_c01237{left:609.573333pt;}
.x2_c01237{left:679.453333pt;}
.x6_c01237{left:817.440000pt;}
.x8_c01237{left:850.746667pt;}
.x9_c01237{left:1039.773333pt;}
.xa_c01237{left:1057.413333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c48f7a71493da3cc59fd4e6.woff2')format("woff");}.ff1_c01238{font-family:ff1_c01238;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01238;src:url('chunks/assets/font_18d7613b12dc32090179a6a5.woff2')format("woff");}.ff2_c01238{font-family:ff2_c01238;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01238;src:url('chunks/assets/font_b8e063ba3209948563d8ac2f.woff2')format("woff");}.ff3_c01238{font-family:ff3_c01238;line-height:0.910645;font-style:normal;font-weight:normal;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_24d2ea40154f0ab2adea501b.woff2')format("woff");}.ff4_c01238{font-family:ff4_c01238;line-height:0.938965;font-style: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;}
.v1_c01238{vertical-align:54.000000px;}
.ls3_c01238{letter-spacing:-0.341400px;}
.ls2_c01238{letter-spacing:0.000000px;}
.ls0_c01238{letter-spacing:652.768080px;}
.ls1_c01238{letter-spacing:657.808080px;}
.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:-144.000000px;}
.wsa_c01238{word-spacing:-25.596000px;}
.ws1_c01238{word-spacing:-25.560000px;}
.ws7_c01238{word-spacing:-21.060000px;}
.ws8_c01238{word-spacing:-1.990956px;}
.ws5_c01238{word-spacing:-1.702884px;}
.ws3_c01238{word-spacing:-1.171356px;}
.ws4_c01238{word-spacing:-0.082320px;}
.wsb_c01238{word-spacing:0.000000px;}
.ws9_c01238{word-spacing:338.452488px;}
.ws6_c01238{word-spacing:863.937288px;}
.ws2_c01238{word-spacing:988.045200px;}
._c_c01238{margin-left:-9.214765px;}
._b_c01238{margin-left:-7.918813px;}
._7_c01238{margin-left:-6.065364px;}
._2_c01238{margin-left:-4.723200px;}
._1_c01238{margin-left:-2.965164px;}
._0_c01238{margin-left:-1.022400px;}
._3_c01238{width:1.179107px;}
._6_c01238{width:19.893600px;}
._4_c01238{width:211.530240px;}
._5_c01238{width:213.124251px;}
._9_c01238{width:327.939036px;}
._a_c01238{width:713.933040px;}
._8_c01238{width:840.568800px;}
.fc1_c01238{color:rgb(0,0,0);}
.fc0_c01238{color:rgb(255,255,255);}
.fs5_c01238{font-size:84.240000px;}
.fs6_c01238{font-size:84.384000px;}
.fs2_c01238{font-size:95.760000px;}
.fs1_c01238{font-size:102.240000px;}
.fs7_c01238{font-size:102.384000px;}
.fs4_c01238{font-size:108.000000px;}
.fs3_c01238{font-size:108.144000px;}
.fs0_c01238{font-size:144.000000px;}
.y0_c01238{bottom:0.000000px;}
.y2d_c01238{bottom:6.120000px;}
.y29_c01238{bottom:65.196000px;}
.y28_c01238{bottom:78.732000px;}
.y2f_c01238{bottom:80.856000px;}
.y2e_c01238{bottom:82.584000px;}
.y2a_c01238{bottom:92.232000px;}
.y18_c01238{bottom:106.560000px;}
.y1f_c01238{bottom:124.200000px;}
.y25_c01238{bottom:143.460000px;}
.y2c_c01238{bottom:155.520000px;}
.y27_c01238{bottom:156.960000px;}
.y23_c01238{bottom:156.990000px;}
.y2b_c01238{bottom:157.215000px;}
.y24_c01238{bottom:170.460000px;}
.y26_c01238{bottom:183.960000px;}
.y20_c01238{bottom:195.555000px;}
.yf_c01238{bottom:195.660000px;}
.y22_c01238{bottom:220.170000px;}
.yb_c01238{bottom:226.440000px;}
.ya_c01238{bottom:228.165000px;}
.y21_c01238{bottom:233.715000px;}
.y1d_c01238{bottom:292.710000px;}
.y9_c01238{bottom:303.015000px;}
.y19_c01238{bottom:303.375000px;}
.y8_c01238{bottom:303.585000px;}
.y1c_c01238{bottom:306.255000px;}
.y1e_c01238{bottom:319.755000px;}
.y1b_c01238{bottom:355.935000px;}
.y34_c01238{bottom:376.020000px;}
.y33_c01238{bottom:376.635000px;}
.y1a_c01238{bottom:382.935000px;}
.y16_c01238{bottom:382.965000px;}
.y17_c01238{bottom:409.935000px;}
.ye_c01238{bottom:422.640000px;}
.y5_c01238{bottom:432.795000px;}
.y15_c01238{bottom:446.190000px;}
.y6_c01238{bottom:448.920000px;}
.y14_c01238{bottom:459.690000px;}
.y4_c01238{bottom:469.695000px;}
.y31_c01238{bottom:513.615000px;}
.y13_c01238{bottom:518.730000px;}
.y32_c01238{bottom:524.880000px;}
.y12_c01238{bottom:532.230000px;}
.y30_c01238{bottom:541.155000px;}
.y3_c01238{bottom:581.145000px;}
.y11_c01238{bottom:591.270000px;}
.y7_c01238{bottom:597.675000px;}
.yd_c01238{bottom:604.800000px;}
.y10_c01238{bottom:618.300000px;}
.y2_c01238{bottom:619.305000px;}
.yc_c01238{bottom:658.545000px;}
.y1_c01238{bottom:745.710000px;}
.h6_c01238{height:57.092344px;}
.h9_c01238{height:58.531992px;}
.h8_c01238{height:58.632047px;}
.he_c01238{height:61.370156px;}
.h3_c01238{height:64.899844px;}
.h2_c01238{height:69.291562px;}
.hf_c01238{height:69.389156px;}
.h5_c01238{height:73.195312px;}
.h4_c01238{height:73.292906px;}
.h1_c01238{height:104.835938px;}
.ha_c01238{height:112.531992px;}
.hc_c01238{height:112.632047px;}
.hd_c01238{height:352.620000px;}
.h7_c01238{height:377.640000px;}
.hb_c01238{height:566.460000px;}
.h0_c01238{height:810.000000px;}
.w1_c01238{width:295.380000px;}
.w2_c01238{width:352.260000px;}
.w0_c01238{width:1440.000000px;}
.x0_c01238{left:0.000000px;}
.xb_c01238{left:9.870000px;}
.x20_c01238{left:12.525000px;}
.x5_c01238{left:111.960000px;}
.x1b_c01238{left:130.395000px;}
.x17_c01238{left:174.675000px;}
.x3_c01238{left:192.390000px;}
.x7_c01238{left:194.190000px;}
.x2d_c01238{left:207.690000px;}
.x6_c01238{left:220.830000px;}
.x2a_c01238{left:223.350000px;}
.x2_c01238{left:224.790000px;}
.xd_c01238{left:227.490000px;}
.x2e_c01238{left:228.570000px;}
.x2f_c01238{left:232.350000px;}
.x2c_c01238{left:239.550000px;}
.x4_c01238{left:246.210000px;}
.x1_c01238{left:247.650000px;}
.x22_c01238{left:257.190000px;}
.x2b_c01238{left:526.530000px;}
.x1d_c01238{left:553.575000px;}
.x11_c01238{left:554.835000px;}
.x9_c01238{left:574.455000px;}
.x1f_c01238{left:577.695000px;}
.x15_c01238{left:585.075000px;}
.x26_c01238{left:590.835000px;}
.x13_c01238{left:596.415000px;}
.xa_c01238{left:758.880000px;}
.x23_c01238{left:776.265000px;}
.x1a_c01238{left:796.470000px;}
.x27_c01238{left:810.870000px;}
.x21_c01238{left:859.290000px;}
.x8_c01238{left:860.370000px;}
.xe_c01238{left:875.130000px;}
.xc_c01238{left:975.390000px;}
.xf_c01238{left:1054.080000px;}
.x1c_c01238{left:1067.655000px;}
.x16_c01238{left:1068.915000px;}
.x28_c01238{left:1082.775000px;}
.x24_c01238{left:1084.395000px;}
.x18_c01238{left:1085.655000px;}
.x25_c01238{left:1122.555000px;}
.x14_c01238{left:1149.195000px;}
.x12_c01238{left:1153.335000px;}
.x29_c01238{left:1169.895000px;}
.x10_c01238{left:1173.675000px;}
.x1e_c01238{left:1177.275000px;}
.x19_c01238{left:1193.295000px;}
@media print{
.v0_c01238{vertical-align:0.000000pt;}
.v1_c01238{vertical-align:48.000000pt;}
.ls3_c01238{letter-spacing:-0.303467pt;}
.ls2_c01238{letter-spacing:0.000000pt;}
.ls0_c01238{letter-spacing:580.238293pt;}
.ls1_c01238{letter-spacing:584.718293pt;}
.ws0_c01238{word-spacing:-128.000000pt;}
.wsa_c01238{word-spacing:-22.752000pt;}
.ws1_c01238{word-spacing:-22.720000pt;}
.ws7_c01238{word-spacing:-18.720000pt;}
.ws8_c01238{word-spacing:-1.769738pt;}
.ws5_c01238{word-spacing:-1.513675pt;}
.ws3_c01238{word-spacing:-1.041205pt;}
.ws4_c01238{word-spacing:-0.073173pt;}
.wsb_c01238{word-spacing:0.000000pt;}
.ws9_c01238{word-spacing:300.846656pt;}
.ws6_c01238{word-spacing:767.944256pt;}
.ws2_c01238{word-spacing:878.262400pt;}
._c_c01238{margin-left:-8.190902pt;}
._b_c01238{margin-left:-7.038945pt;}
._7_c01238{margin-left:-5.391435pt;}
._2_c01238{margin-left:-4.198400pt;}
._1_c01238{margin-left:-2.635702pt;}
._0_c01238{margin-left:-0.908800pt;}
._3_c01238{width:1.048095pt;}
._6_c01238{width:17.683200pt;}
._4_c01238{width:188.026880pt;}
._5_c01238{width:189.443779pt;}
._9_c01238{width:291.501365pt;}
._a_c01238{width:634.607147pt;}
._8_c01238{width:747.172267pt;}
.fs5_c01238{font-size:74.880000pt;}
.fs6_c01238{font-size:75.008000pt;}
.fs2_c01238{font-size:85.120000pt;}
.fs1_c01238{font-size:90.880000pt;}
.fs7_c01238{font-size:91.008000pt;}
.fs4_c01238{font-size:96.000000pt;}
.fs3_c01238{font-size:96.128000pt;}
.fs0_c01238{font-size:128.000000pt;}
.y0_c01238{bottom:0.000000pt;}
.y2d_c01238{bottom:5.440000pt;}
.y29_c01238{bottom:57.952000pt;}
.y28_c01238{bottom:69.984000pt;}
.y2f_c01238{bottom:71.872000pt;}
.y2e_c01238{bottom:73.408000pt;}
.y2a_c01238{bottom:81.984000pt;}
.y18_c01238{bottom:94.720000pt;}
.y1f_c01238{bottom:110.400000pt;}
.y25_c01238{bottom:127.520000pt;}
.y2c_c01238{bottom:138.240000pt;}
.y27_c01238{bottom:139.520000pt;}
.y23_c01238{bottom:139.546667pt;}
.y2b_c01238{bottom:139.746667pt;}
.y24_c01238{bottom:151.520000pt;}
.y26_c01238{bottom:163.520000pt;}
.y20_c01238{bottom:173.826667pt;}
.yf_c01238{bottom:173.920000pt;}
.y22_c01238{bottom:195.706667pt;}
.yb_c01238{bottom:201.280000pt;}
.ya_c01238{bottom:202.813333pt;}
.y21_c01238{bottom:207.746667pt;}
.y1d_c01238{bottom:260.186667pt;}
.y9_c01238{bottom:269.346667pt;}
.y19_c01238{bottom:269.666667pt;}
.y8_c01238{bottom:269.853333pt;}
.y1c_c01238{bottom:272.226667pt;}
.y1e_c01238{bottom:284.226667pt;}
.y1b_c01238{bottom:316.386667pt;}
.y34_c01238{bottom:334.240000pt;}
.y33_c01238{bottom:334.786667pt;}
.y1a_c01238{bottom:340.386667pt;}
.y16_c01238{bottom:340.413333pt;}
.y17_c01238{bottom:364.386667pt;}
.ye_c01238{bottom:375.680000pt;}
.y5_c01238{bottom:384.706667pt;}
.y15_c01238{bottom:396.613333pt;}
.y6_c01238{bottom:399.040000pt;}
.y14_c01238{bottom:408.613333pt;}
.y4_c01238{bottom:417.506667pt;}
.y31_c01238{bottom:456.546667pt;}
.y13_c01238{bottom:461.093333pt;}
.y32_c01238{bottom:466.560000pt;}
.y12_c01238{bottom:473.093333pt;}
.y30_c01238{bottom:481.026667pt;}
.y3_c01238{bottom:516.573333pt;}
.y11_c01238{bottom:525.573333pt;}
.y7_c01238{bottom:531.266667pt;}
.yd_c01238{bottom:537.600000pt;}
.y10_c01238{bottom:549.600000pt;}
.y2_c01238{bottom:550.493333pt;}
.yc_c01238{bottom:585.373333pt;}
.y1_c01238{bottom:662.853333pt;}
.h6_c01238{height:50.748750pt;}
.h9_c01238{height:52.028437pt;}
.h8_c01238{height:52.117375pt;}
.he_c01238{height:54.551250pt;}
.h3_c01238{height:57.688750pt;}
.h2_c01238{height:61.592500pt;}
.hf_c01238{height:61.679250pt;}
.h5_c01238{height:65.062500pt;}
.h4_c01238{height:65.149250pt;}
.h1_c01238{height:93.187500pt;}
.ha_c01238{height:100.028437pt;}
.hc_c01238{height:100.117375pt;}
.hd_c01238{height:313.440000pt;}
.h7_c01238{height:335.680000pt;}
.hb_c01238{height:503.520000pt;}
.h0_c01238{height:720.000000pt;}
.w1_c01238{width:262.560000pt;}
.w2_c01238{width:313.120000pt;}
.w0_c01238{width:1280.000000pt;}
.x0_c01238{left:0.000000pt;}
.xb_c01238{left:8.773333pt;}
.x20_c01238{left:11.133333pt;}
.x5_c01238{left:99.520000pt;}
.x1b_c01238{left:115.906667pt;}
.x17_c01238{left:155.266667pt;}
.x3_c01238{left:171.013333pt;}
.x7_c01238{left:172.613333pt;}
.x2d_c01238{left:184.613333pt;}
.x6_c01238{left:196.293333pt;}
.x2a_c01238{left:198.533333pt;}
.x2_c01238{left:199.813333pt;}
.xd_c01238{left:202.213333pt;}
.x2e_c01238{left:203.173333pt;}
.x2f_c01238{left:206.533333pt;}
.x2c_c01238{left:212.933333pt;}
.x4_c01238{left:218.853333pt;}
.x1_c01238{left:220.133333pt;}
.x22_c01238{left:228.613333pt;}
.x2b_c01238{left:468.026667pt;}
.x1d_c01238{left:492.066667pt;}
.x11_c01238{left:493.186667pt;}
.x9_c01238{left:510.626667pt;}
.x1f_c01238{left:513.506667pt;}
.x15_c01238{left:520.066667pt;}
.x26_c01238{left:525.186667pt;}
.x13_c01238{left:530.146667pt;}
.xa_c01238{left:674.560000pt;}
.x23_c01238{left:690.013333pt;}
.x1a_c01238{left:707.973333pt;}
.x27_c01238{left:720.773333pt;}
.x21_c01238{left:763.813333pt;}
.x8_c01238{left:764.773333pt;}
.xe_c01238{left:777.893333pt;}
.xc_c01238{left:867.013333pt;}
.xf_c01238{left:936.960000pt;}
.x1c_c01238{left:949.026667pt;}
.x16_c01238{left:950.146667pt;}
.x28_c01238{left:962.466667pt;}
.x24_c01238{left:963.906667pt;}
.x18_c01238{left:965.026667pt;}
.x25_c01238{left:997.826667pt;}
.x14_c01238{left:1021.506667pt;}
.x12_c01238{left:1025.186667pt;}
.x29_c01238{left:1039.906667pt;}
.x10_c01238{left:1043.266667pt;}
.x1e_c01238{left:1046.466667pt;}
.x19_c01238{left:1060.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_666d84b2ddbf05173b625d89.woff2')format("woff");}.ff1_c01239{font-family:ff1_c01239;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01239;src:url('chunks/assets/font_3c54309b5e4800417e55abb7.woff2')format("woff");}.ff2_c01239{font-family:ff2_c01239;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01239;src:url('chunks/assets/font_eec37e04ddbe7a31423df706.woff2')format("woff");}.ff3_c01239{font-family:ff3_c01239;line-height:0.910645;font-style:normal;font-weight:normal;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_24d2ea40154f0ab2adea501b.woff2')format("woff");}.ff4_c01239{font-family:ff4_c01239;line-height:0.938965;font-style: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:-0.288000px;}
.ls0_c01239{letter-spacing:0.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:-26.712000px;}
.ws1_c01239{word-spacing:-21.060000px;}
.ws2_c01239{word-spacing:0.000000px;}
._5_c01239{margin-left:-7.331675px;}
._4_c01239{margin-left:-6.030180px;}
._0_c01239{margin-left:-4.536000px;}
._3_c01239{margin-left:-2.484000px;}
._1_c01239{margin-left:-1.297836px;}
._2_c01239{width:1.620000px;}
.fc1_c01239{color:rgb(0,0,0);}
.fc0_c01239{color:rgb(255,255,255);}
.fs3_c01239{font-size:84.240000px;}
.fs1_c01239{font-size:108.000000px;}
.fs2_c01239{font-size:108.144000px;}
.fs0_c01239{font-size:144.000000px;}
.y0_c01239{bottom:0.000000px;}
.y18_c01239{bottom:6.120000px;}
.y13_c01239{bottom:99.972000px;}
.y16_c01239{bottom:113.904000px;}
.y6_c01239{bottom:115.272000px;}
.y3_c01239{bottom:115.956000px;}
.y12_c01239{bottom:129.132000px;}
.y15_c01239{bottom:190.230000px;}
.y14_c01239{bottom:190.905000px;}
.y5_c01239{bottom:191.625000px;}
.y4_c01239{bottom:192.270000px;}
.y11_c01239{bottom:267.375000px;}
.y17_c01239{bottom:267.660000px;}
.y2_c01239{bottom:268.740000px;}
.y7_c01239{bottom:269.070000px;}
.y9_c01239{bottom:340.230000px;}
.ya_c01239{bottom:341.970000px;}
.yd_c01239{bottom:416.595000px;}
.ye_c01239{bottom:474.765000px;}
.y10_c01239{bottom:526.575000px;}
.yf_c01239{bottom:551.775000px;}
.yc_c01239{bottom:575.310000px;}
.yb_c01239{bottom:600.510000px;}
.y8_c01239{bottom:659.910000px;}
.y1_c01239{bottom:745.710000px;}
.h6_c01239{height:57.092344px;}
.h5_c01239{height:58.531992px;}
.h7_c01239{height:61.370156px;}
.h2_c01239{height:73.195312px;}
.h3_c01239{height:73.292906px;}
.h4_c01239{height:75.041016px;}
.h1_c01239{height:104.835938px;}
.h0_c01239{height:810.000000px;}
.w0_c01239{width:1440.000000px;}
.x0_c01239{left:0.000000px;}
.x7_c01239{left:90.648000px;}
.x1_c01239{left:247.650000px;}
.x6_c01239{left:281.340000px;}
.x5_c01239{left:282.705000px;}
.x4_c01239{left:370.650000px;}
.x3_c01239{left:381.885000px;}
.x2_c01239{left:397.335000px;}
.xd_c01239{left:486.390000px;}
.xc_c01239{left:494.670000px;}
.x14_c01239{left:526.530000px;}
.x9_c01239{left:760.650000px;}
.xb_c01239{left:797.550000px;}
.x8_c01239{left:801.255000px;}
.x13_c01239{left:847.695000px;}
.x12_c01239{left:849.060000px;}
.xa_c01239{left:868.320000px;}
.x10_c01239{left:908.460000px;}
.xf_c01239{left:956.160000px;}
.xe_c01239{left:958.290000px;}
.x11_c01239{left:973.905000px;}
@media print{
.v0_c01239{vertical-align:0.000000pt;}
.ls1_c01239{letter-spacing:-0.256000pt;}
.ls0_c01239{letter-spacing:0.000000pt;}
.ws0_c01239{word-spacing:-23.744000pt;}
.ws1_c01239{word-spacing:-18.720000pt;}
.ws2_c01239{word-spacing:0.000000pt;}
._5_c01239{margin-left:-6.517044pt;}
._4_c01239{margin-left:-5.360160pt;}
._0_c01239{margin-left:-4.032000pt;}
._3_c01239{margin-left:-2.208000pt;}
._1_c01239{margin-left:-1.153632pt;}
._2_c01239{width:1.440000pt;}
.fs3_c01239{font-size:74.880000pt;}
.fs1_c01239{font-size:96.000000pt;}
.fs2_c01239{font-size:96.128000pt;}
.fs0_c01239{font-size:128.000000pt;}
.y0_c01239{bottom:0.000000pt;}
.y18_c01239{bottom:5.440000pt;}
.y13_c01239{bottom:88.864000pt;}
.y16_c01239{bottom:101.248000pt;}
.y6_c01239{bottom:102.464000pt;}
.y3_c01239{bottom:103.072000pt;}
.y12_c01239{bottom:114.784000pt;}
.y15_c01239{bottom:169.093333pt;}
.y14_c01239{bottom:169.693333pt;}
.y5_c01239{bottom:170.333333pt;}
.y4_c01239{bottom:170.906667pt;}
.y11_c01239{bottom:237.666667pt;}
.y17_c01239{bottom:237.920000pt;}
.y2_c01239{bottom:238.880000pt;}
.y7_c01239{bottom:239.173333pt;}
.y9_c01239{bottom:302.426667pt;}
.ya_c01239{bottom:303.973333pt;}
.yd_c01239{bottom:370.306667pt;}
.ye_c01239{bottom:422.013333pt;}
.y10_c01239{bottom:468.066667pt;}
.yf_c01239{bottom:490.466667pt;}
.yc_c01239{bottom:511.386667pt;}
.yb_c01239{bottom:533.786667pt;}
.y8_c01239{bottom:586.586667pt;}
.y1_c01239{bottom:662.853333pt;}
.h6_c01239{height:50.748750pt;}
.h5_c01239{height:52.028437pt;}
.h7_c01239{height:54.551250pt;}
.h2_c01239{height:65.062500pt;}
.h3_c01239{height:65.149250pt;}
.h4_c01239{height:66.703125pt;}
.h1_c01239{height:93.187500pt;}
.h0_c01239{height:720.000000pt;}
.w0_c01239{width:1280.000000pt;}
.x0_c01239{left:0.000000pt;}
.x7_c01239{left:80.576000pt;}
.x1_c01239{left:220.133333pt;}
.x6_c01239{left:250.080000pt;}
.x5_c01239{left:251.293333pt;}
.x4_c01239{left:329.466667pt;}
.x3_c01239{left:339.453333pt;}
.x2_c01239{left:353.186667pt;}
.xd_c01239{left:432.346667pt;}
.xc_c01239{left:439.706667pt;}
.x14_c01239{left:468.026667pt;}
.x9_c01239{left:676.133333pt;}
.xb_c01239{left:708.933333pt;}
.x8_c01239{left:712.226667pt;}
.x13_c01239{left:753.506667pt;}
.x12_c01239{left:754.720000pt;}
.xa_c01239{left:771.840000pt;}
.x10_c01239{left:807.520000pt;}
.xf_c01239{left:849.920000pt;}
.xe_c01239{left:851.813333pt;}
.x11_c01239{left:865.693333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_817746006e9470ce60d97c34.woff2')format("woff");}.ff1_c01240{font-family:ff1_c01240;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01240;src:url('chunks/assets/font_a15ed82d2746ab87af8d85b7.woff2')format("woff");}.ff2_c01240{font-family:ff2_c01240;line-height:0.893555;font-style:normal;font-weight:normal;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_3cbd4dc0103e234b4c89aecc.woff2')format("woff");}.ff3_c01240{font-family:ff3_c01240;line-height:0.910645;font-style:normal;font-weight:normal;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_24d2ea40154f0ab2adea501b.woff2')format("woff");}.ff4_c01240{font-family:ff4_c01240;line-height:0.938965;font-style: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;}
.v1_c01240{vertical-align:61.020000px;}
.ls2_c01240{letter-spacing:-0.180000px;}
.ls1_c01240{letter-spacing:0.000000px;}
.ls0_c01240{letter-spacing:2674.248000px;}
.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;}
}
.ws2_c01240{word-spacing:-27.000000px;}
.ws0_c01240{word-spacing:-23.940000px;}
.ws3_c01240{word-spacing:0.000000px;}
.ws1_c01240{word-spacing:2.105136px;}
._1_c01240{margin-left:-10.152000px;}
._6_c01240{margin-left:-7.852224px;}
._8_c01240{margin-left:-5.845152px;}
._7_c01240{margin-left:-3.830400px;}
._3_c01240{margin-left:-2.448000px;}
._0_c01240{margin-left:-1.008000px;}
._2_c01240{width:1.404000px;}
._5_c01240{width:26.381280px;}
._4_c01240{width:288.982800px;}
.fc1_c01240{color:rgb(0,0,0);}
.fc0_c01240{color:rgb(255,255,255);}
.fs6_c01240{font-size:84.240000px;}
.fs3_c01240{font-size:95.760000px;}
.fs4_c01240{font-size:95.904000px;}
.fs1_c01240{font-size:108.000000px;}
.fs5_c01240{font-size:108.144000px;}
.fs0_c01240{font-size:144.000000px;}
.fs2_c01240{font-size:144.144000px;}
.y0_c01240{bottom:0.000000px;}
.y1c_c01240{bottom:6.120000px;}
.y12_c01240{bottom:43.200000px;}
.yb_c01240{bottom:91.875000px;}
.y17_c01240{bottom:91.905000px;}
.y1e_c01240{bottom:104.040000px;}
.y1d_c01240{bottom:136.440000px;}
.ye_c01240{bottom:144.180000px;}
.y16_c01240{bottom:159.120000px;}
.y1b_c01240{bottom:215.895000px;}
.y1a_c01240{bottom:221.010000px;}
.y15_c01240{bottom:251.025000px;}
.y19_c01240{bottom:306.105000px;}
.yf_c01240{bottom:307.545000px;}
.y18_c01240{bottom:311.190000px;}
.y13_c01240{bottom:338.505000px;}
.y14_c01240{bottom:350.745000px;}
.y11_c01240{bottom:350.850000px;}
.ya_c01240{bottom:360.000000px;}
.y4_c01240{bottom:386.820000px;}
.y7_c01240{bottom:396.285000px;}
.y3_c01240{bottom:415.980000px;}
.y10_c01240{bottom:420.945000px;}
.yd_c01240{bottom:451.725000px;}
.yc_c01240{bottom:482.685000px;}
.y6_c01240{bottom:486.870000px;}
.y5_c01240{bottom:491.940000px;}
.y9_c01240{bottom:532.335000px;}
.y8_c01240{bottom:577.050000px;}
.y2_c01240{bottom:582.150000px;}
.y1_c01240{bottom:745.710000px;}
.hd_c01240{height:61.370156px;}
.h8_c01240{height:64.899844px;}
.h6_c01240{height:66.536367px;}
.ha_c01240{height:66.636422px;}
.h2_c01240{height:73.195312px;}
.hc_c01240{height:73.292906px;}
.he_c01240{height:75.041016px;}
.h4_c01240{height:97.593750px;}
.h3_c01240{height:97.691344px;}
.h1_c01240{height:104.835938px;}
.h5_c01240{height:125.919844px;}
.h7_c01240{height:201.240000px;}
.hb_c01240{height:201.420000px;}
.h9_c01240{height:632.880000px;}
.h0_c01240{height:810.000000px;}
.w2_c01240{width:203.940000px;}
.w1_c01240{width:252.540000px;}
.w0_c01240{width:1440.000000px;}
.x0_c01240{left:0.000000px;}
.xa_c01240{left:13.650000px;}
.x14_c01240{left:29.916000px;}
.x6_c01240{left:37.512000px;}
.x7_c01240{left:38.808000px;}
.xe_c01240{left:88.530000px;}
.x4_c01240{left:96.732000px;}
.x5_c01240{left:109.332000px;}
.x2_c01240{left:132.012000px;}
.x3_c01240{left:151.815000px;}
.x12_c01240{left:180.795000px;}
.x1_c01240{left:247.650000px;}
.x9_c01240{left:423.720000px;}
.x8_c01240{left:457.530000px;}
.x10_c01240{left:478.770000px;}
.x11_c01240{left:501.090000px;}
.x13_c01240{left:526.530000px;}
.xd_c01240{left:676.080000px;}
.xc_c01240{left:694.410000px;}
.xb_c01240{left:698.370000px;}
.xf_c01240{left:746.790000px;}
@media print{
.v0_c01240{vertical-align:0.000000pt;}
.v1_c01240{vertical-align:54.240000pt;}
.ls2_c01240{letter-spacing:-0.160000pt;}
.ls1_c01240{letter-spacing:0.000000pt;}
.ls0_c01240{letter-spacing:2377.109333pt;}
.ws2_c01240{word-spacing:-24.000000pt;}
.ws0_c01240{word-spacing:-21.280000pt;}
.ws3_c01240{word-spacing:0.000000pt;}
.ws1_c01240{word-spacing:1.871232pt;}
._1_c01240{margin-left:-9.024000pt;}
._6_c01240{margin-left:-6.979755pt;}
._8_c01240{margin-left:-5.195690pt;}
._7_c01240{margin-left:-3.404800pt;}
._3_c01240{margin-left:-2.176000pt;}
._0_c01240{margin-left:-0.896000pt;}
._2_c01240{width:1.248000pt;}
._5_c01240{width:23.450027pt;}
._4_c01240{width:256.873600pt;}
.fs6_c01240{font-size:74.880000pt;}
.fs3_c01240{font-size:85.120000pt;}
.fs4_c01240{font-size:85.248000pt;}
.fs1_c01240{font-size:96.000000pt;}
.fs5_c01240{font-size:96.128000pt;}
.fs0_c01240{font-size:128.000000pt;}
.fs2_c01240{font-size:128.128000pt;}
.y0_c01240{bottom:0.000000pt;}
.y1c_c01240{bottom:5.440000pt;}
.y12_c01240{bottom:38.400000pt;}
.yb_c01240{bottom:81.666667pt;}
.y17_c01240{bottom:81.693333pt;}
.y1e_c01240{bottom:92.480000pt;}
.y1d_c01240{bottom:121.280000pt;}
.ye_c01240{bottom:128.160000pt;}
.y16_c01240{bottom:141.440000pt;}
.y1b_c01240{bottom:191.906667pt;}
.y1a_c01240{bottom:196.453333pt;}
.y15_c01240{bottom:223.133333pt;}
.y19_c01240{bottom:272.093333pt;}
.yf_c01240{bottom:273.373333pt;}
.y18_c01240{bottom:276.613333pt;}
.y13_c01240{bottom:300.893333pt;}
.y14_c01240{bottom:311.773333pt;}
.y11_c01240{bottom:311.866667pt;}
.ya_c01240{bottom:320.000000pt;}
.y4_c01240{bottom:343.840000pt;}
.y7_c01240{bottom:352.253333pt;}
.y3_c01240{bottom:369.760000pt;}
.y10_c01240{bottom:374.173333pt;}
.yd_c01240{bottom:401.533333pt;}
.yc_c01240{bottom:429.053333pt;}
.y6_c01240{bottom:432.773333pt;}
.y5_c01240{bottom:437.280000pt;}
.y9_c01240{bottom:473.186667pt;}
.y8_c01240{bottom:512.933333pt;}
.y2_c01240{bottom:517.466667pt;}
.y1_c01240{bottom:662.853333pt;}
.hd_c01240{height:54.551250pt;}
.h8_c01240{height:57.688750pt;}
.h6_c01240{height:59.143438pt;}
.ha_c01240{height:59.232375pt;}
.h2_c01240{height:65.062500pt;}
.hc_c01240{height:65.149250pt;}
.he_c01240{height:66.703125pt;}
.h4_c01240{height:86.750000pt;}
.h3_c01240{height:86.836750pt;}
.h1_c01240{height:93.187500pt;}
.h5_c01240{height:111.928750pt;}
.h7_c01240{height:178.880000pt;}
.hb_c01240{height:179.040000pt;}
.h9_c01240{height:562.560000pt;}
.h0_c01240{height:720.000000pt;}
.w2_c01240{width:181.280000pt;}
.w1_c01240{width:224.480000pt;}
.w0_c01240{width:1280.000000pt;}
.x0_c01240{left:0.000000pt;}
.xa_c01240{left:12.133333pt;}
.x14_c01240{left:26.592000pt;}
.x6_c01240{left:33.344000pt;}
.x7_c01240{left:34.496000pt;}
.xe_c01240{left:78.693333pt;}
.x4_c01240{left:85.984000pt;}
.x5_c01240{left:97.184000pt;}
.x2_c01240{left:117.344000pt;}
.x3_c01240{left:134.946667pt;}
.x12_c01240{left:160.706667pt;}
.x1_c01240{left:220.133333pt;}
.x9_c01240{left:376.640000pt;}
.x8_c01240{left:406.693333pt;}
.x10_c01240{left:425.573333pt;}
.x11_c01240{left:445.413333pt;}
.x13_c01240{left:468.026667pt;}
.xd_c01240{left:600.960000pt;}
.xc_c01240{left:617.253333pt;}
.xb_c01240{left:620.773333pt;}
.xf_c01240{left:663.813333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_30ac54b1b8ea8f897b039b2b.woff2')format("woff");}.ff1_c01241{font-family:ff1_c01241;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01241;src:url('chunks/assets/font_bc9e4716589416ae4751f072.woff2')format("woff");}.ff2_c01241{font-family:ff2_c01241;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01241;src:url('chunks/assets/font_b3aff757c2bf1b45579c4989.woff2')format("woff");}.ff3_c01241{font-family:ff3_c01241;line-height:0.910645;font-style:normal;font-weight:normal;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_24d2ea40154f0ab2adea501b.woff2')format("woff");}.ff4_c01241{font-family:ff4_c01241;line-height:0.938965;font-style:normal;font-weight:normal;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_4afb1bf8e7c4344bbe5669cd.woff2')format("woff");}.ff5_c01241{font-family:ff5_c01241;line-height:0.972656;font-style: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;}
.v2_c01241{vertical-align:15.240000px;}
.v1_c01241{vertical-align:62.160000px;}
.v3_c01241{vertical-align:217.560000px;}
.ls1_c01241{letter-spacing:-0.144000px;}
.ls2_c01241{letter-spacing:0.000000px;}
.ls0_c01241{letter-spacing:495.496320px;}
.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;}
}
.ws2_c01241{word-spacing:0.000000px;}
.ws1_c01241{word-spacing:0.684000px;}
.ws0_c01241{word-spacing:2.535024px;}
._2_c01241{margin-left:-8.426976px;}
._6_c01241{margin-left:-7.288800px;}
._9_c01241{margin-left:-5.775218px;}
._b_c01241{margin-left:-2.371824px;}
._4_c01241{margin-left:-1.244976px;}
._0_c01241{width:1.008000px;}
._5_c01241{width:2.202576px;}
._7_c01241{width:4.117776px;}
._8_c01241{width:25.218720px;}
._1_c01241{width:41.160000px;}
._a_c01241{width:47.868000px;}
._d_c01241{width:65.865600px;}
._3_c01241{width:710.040000px;}
._c_c01241{width:877.788720px;}
.fc2_c01241{color:rgb(208,214,224);}
.fc1_c01241{color:rgb(0,0,0);}
.fc0_c01241{color:rgb(255,255,255);}
.fs3_c01241{font-size:84.240000px;}
.fs1_c01241{font-size:95.760000px;}
.fs2_c01241{font-size:95.904000px;}
.fs8_c01241{font-size:120.240000px;}
.fs7_c01241{font-size:120.384000px;}
.fs0_c01241{font-size:144.000000px;}
.fs4_c01241{font-size:162.000000px;}
.fs5_c01241{font-size:162.144000px;}
.fs6_c01241{font-size:390.384000px;}
.y0_c01241{bottom:0.000000px;}
.ye_c01241{bottom:6.120000px;}
.y1f_c01241{bottom:152.790000px;}
.y1a_c01241{bottom:153.210000px;}
.y1d_c01241{bottom:160.530000px;}
.y1e_c01241{bottom:183.750000px;}
.y1c_c01241{bottom:185.370000px;}
.y1b_c01241{bottom:210.210000px;}
.y4_c01241{bottom:223.530000px;}
.y17_c01241{bottom:308.730000px;}
.yd_c01241{bottom:325.980000px;}
.y19_c01241{bottom:328.425000px;}
.y3_c01241{bottom:348.480000px;}
.y18_c01241{bottom:353.265000px;}
.yc_c01241{bottom:356.940000px;}
.yb_c01241{bottom:403.560000px;}
.ya_c01241{bottom:434.340000px;}
.y13_c01241{bottom:447.765000px;}
.y7_c01241{bottom:449.850000px;}
.y16_c01241{bottom:450.900000px;}
.y9_c01241{bottom:465.120000px;}
.y15_c01241{bottom:479.910000px;}
.y8_c01241{bottom:496.080000px;}
.y14_c01241{bottom:508.890000px;}
.y6_c01241{bottom:541.050000px;}
.y5_c01241{bottom:572.010000px;}
.yf_c01241{bottom:586.800000px;}
.y12_c01241{bottom:589.965000px;}
.y11_c01241{bottom:618.945000px;}
.y2_c01241{bottom:632.310000px;}
.y10_c01241{bottom:647.925000px;}
.y1_c01241{bottom:745.710000px;}
.h7_c01241{height:61.370156px;}
.h2_c01241{height:64.899844px;}
.h5_c01241{height:66.536367px;}
.h6_c01241{height:66.636422px;}
.hb_c01241{height:83.545664px;}
.h1_c01241{height:104.835938px;}
.h8_c01241{height:112.561523px;}
.h9_c01241{height:112.661578px;}
.h4_c01241{height:128.696367px;}
.ha_c01241{height:310.315406px;}
.h3_c01241{height:431.640000px;}
.h0_c01241{height:810.000000px;}
.w1_c01241{width:288.360000px;}
.w0_c01241{width:1440.000000px;}
.x0_c01241{left:0.000000px;}
.x4_c01241{left:13.320000px;}
.x11_c01241{left:60.444000px;}
.x12_c01241{left:138.384000px;}
.x13_c01241{left:158.730000px;}
.x14_c01241{left:178.890000px;}
.x1_c01241{left:247.650000px;}
.x6_c01241{left:266.970000px;}
.x10_c01241{left:526.530000px;}
.x3_c01241{left:778.500000px;}
.xd_c01241{left:802.650000px;}
.x15_c01241{left:814.530000px;}
.xe_c01241{left:848.550000px;}
.x8_c01241{left:856.650000px;}
.x7_c01241{left:898.590000px;}
.x5_c01241{left:992.730000px;}
.x9_c01241{left:1099.905000px;}
.xb_c01241{left:1107.285000px;}
.xc_c01241{left:1114.305000px;}
.xa_c01241{left:1130.685000px;}
.xf_c01241{left:1142.025000px;}
.x2_c01241{left:1166.145000px;}
@media print{
.v0_c01241{vertical-align:0.000000pt;}
.v2_c01241{vertical-align:13.546667pt;}
.v1_c01241{vertical-align:55.253333pt;}
.v3_c01241{vertical-align:193.386667pt;}
.ls1_c01241{letter-spacing:-0.128000pt;}
.ls2_c01241{letter-spacing:0.000000pt;}
.ls0_c01241{letter-spacing:440.441173pt;}
.ws2_c01241{word-spacing:0.000000pt;}
.ws1_c01241{word-spacing:0.608000pt;}
.ws0_c01241{word-spacing:2.253355pt;}
._2_c01241{margin-left:-7.490645pt;}
._6_c01241{margin-left:-6.478933pt;}
._9_c01241{margin-left:-5.133527pt;}
._b_c01241{margin-left:-2.108288pt;}
._4_c01241{margin-left:-1.106645pt;}
._0_c01241{width:0.896000pt;}
._5_c01241{width:1.957845pt;}
._7_c01241{width:3.660245pt;}
._8_c01241{width:22.416640pt;}
._1_c01241{width:36.586667pt;}
._a_c01241{width:42.549333pt;}
._d_c01241{width:58.547200pt;}
._3_c01241{width:631.146667pt;}
._c_c01241{width:780.256640pt;}
.fs3_c01241{font-size:74.880000pt;}
.fs1_c01241{font-size:85.120000pt;}
.fs2_c01241{font-size:85.248000pt;}
.fs8_c01241{font-size:106.880000pt;}
.fs7_c01241{font-size:107.008000pt;}
.fs0_c01241{font-size:128.000000pt;}
.fs4_c01241{font-size:144.000000pt;}
.fs5_c01241{font-size:144.128000pt;}
.fs6_c01241{font-size:347.008000pt;}
.y0_c01241{bottom:0.000000pt;}
.ye_c01241{bottom:5.440000pt;}
.y1f_c01241{bottom:135.813333pt;}
.y1a_c01241{bottom:136.186667pt;}
.y1d_c01241{bottom:142.693333pt;}
.y1e_c01241{bottom:163.333333pt;}
.y1c_c01241{bottom:164.773333pt;}
.y1b_c01241{bottom:186.853333pt;}
.y4_c01241{bottom:198.693333pt;}
.y17_c01241{bottom:274.426667pt;}
.yd_c01241{bottom:289.760000pt;}
.y19_c01241{bottom:291.933333pt;}
.y3_c01241{bottom:309.760000pt;}
.y18_c01241{bottom:314.013333pt;}
.yc_c01241{bottom:317.280000pt;}
.yb_c01241{bottom:358.720000pt;}
.ya_c01241{bottom:386.080000pt;}
.y13_c01241{bottom:398.013333pt;}
.y7_c01241{bottom:399.866667pt;}
.y16_c01241{bottom:400.800000pt;}
.y9_c01241{bottom:413.440000pt;}
.y15_c01241{bottom:426.586667pt;}
.y8_c01241{bottom:440.960000pt;}
.y14_c01241{bottom:452.346667pt;}
.y6_c01241{bottom:480.933333pt;}
.y5_c01241{bottom:508.453333pt;}
.yf_c01241{bottom:521.600000pt;}
.y12_c01241{bottom:524.413333pt;}
.y11_c01241{bottom:550.173333pt;}
.y2_c01241{bottom:562.053333pt;}
.y10_c01241{bottom:575.933333pt;}
.y1_c01241{bottom:662.853333pt;}
.h7_c01241{height:54.551250pt;}
.h2_c01241{height:57.688750pt;}
.h5_c01241{height:59.143438pt;}
.h6_c01241{height:59.232375pt;}
.hb_c01241{height:74.262812pt;}
.h1_c01241{height:93.187500pt;}
.h8_c01241{height:100.054688pt;}
.h9_c01241{height:100.143625pt;}
.h4_c01241{height:114.396771pt;}
.ha_c01241{height:275.835917pt;}
.h3_c01241{height:383.680000pt;}
.h0_c01241{height:720.000000pt;}
.w1_c01241{width:256.320000pt;}
.w0_c01241{width:1280.000000pt;}
.x0_c01241{left:0.000000pt;}
.x4_c01241{left:11.840000pt;}
.x11_c01241{left:53.728000pt;}
.x12_c01241{left:123.008000pt;}
.x13_c01241{left:141.093333pt;}
.x14_c01241{left:159.013333pt;}
.x1_c01241{left:220.133333pt;}
.x6_c01241{left:237.306667pt;}
.x10_c01241{left:468.026667pt;}
.x3_c01241{left:692.000000pt;}
.xd_c01241{left:713.466667pt;}
.x15_c01241{left:724.026667pt;}
.xe_c01241{left:754.266667pt;}
.x8_c01241{left:761.466667pt;}
.x7_c01241{left:798.746667pt;}
.x5_c01241{left:882.426667pt;}
.x9_c01241{left:977.693333pt;}
.xb_c01241{left:984.253333pt;}
.xc_c01241{left:990.493333pt;}
.xa_c01241{left:1005.053333pt;}
.xf_c01241{left:1015.133333pt;}
.x2_c01241{left:1036.573333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c289d67ea0f5ede33aad35a1.woff2')format("woff");}.ff1_c01242{font-family:ff1_c01242;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01242;src:url('chunks/assets/font_c87b59e0a9bf2ba84a065a84.woff2')format("woff");}.ff2_c01242{font-family:ff2_c01242;line-height:0.910645;font-style:normal;font-weight:normal;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_1428e1a97cde9dfeb9b355c6.woff2')format("woff");}.ff3_c01242{font-family:ff3_c01242;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01242;src:url('chunks/assets/font_24d2ea40154f0ab2adea501b.woff2')format("woff");}.ff4_c01242{font-family:ff4_c01242;line-height:0.938965;font-style: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;}
.ls1_c01242{letter-spacing:0.000000px;}
.ls0_c01242{letter-spacing:0.017400px;}
.sc__c01242{text-shadow:none;}
.sc0_c01242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01242{-webkit-text-stroke:0px transparent;}
.sc0_c01242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01242{word-spacing:-36.000000px;}
.ws1_c01242{word-spacing:-22.500000px;}
.ws2_c01242{word-spacing:0.000000px;}
._3_c01242{margin-left:-7.200000px;}
._5_c01242{margin-left:-5.388000px;}
._1_c01242{margin-left:-2.880000px;}
._2_c01242{margin-left:-1.080000px;}
._0_c01242{width:1.008000px;}
._4_c01242{width:43.560000px;}
.fc1_c01242{color:rgb(0,0,0);}
.fc0_c01242{color:rgb(255,255,255);}
.fs2_c01242{font-size:77.760000px;}
.fs7_c01242{font-size:84.240000px;}
.fs3_c01242{font-size:90.000000px;}
.fs4_c01242{font-size:90.144000px;}
.fs5_c01242{font-size:108.000000px;}
.fs6_c01242{font-size:108.144000px;}
.fs0_c01242{font-size:144.000000px;}
.fs1_c01242{font-size:144.144000px;}
.y0_c01242{bottom:0.000000px;}
.y14_c01242{bottom:6.120000px;}
.yb_c01242{bottom:146.988000px;}
.y8_c01242{bottom:158.580000px;}
.ya_c01242{bottom:170.205000px;}
.y12_c01242{bottom:174.750000px;}
.y7_c01242{bottom:181.980000px;}
.y9_c01242{bottom:193.605000px;}
.y13_c01242{bottom:233.025000px;}
.y10_c01242{bottom:306.390000px;}
.y3_c01242{bottom:329.790000px;}
.y11_c01242{bottom:364.650000px;}
.y2_c01242{bottom:367.095000px;}
.yd_c01242{bottom:410.475000px;}
.y6_c01242{bottom:422.250000px;}
.yc_c01242{bottom:433.905000px;}
.ye_c01242{bottom:438.015000px;}
.yf_c01242{bottom:496.260000px;}
.y5_c01242{bottom:568.650000px;}
.y4_c01242{bottom:588.810000px;}
.y1_c01242{bottom:745.710000px;}
.h4_c01242{height:54.029531px;}
.ha_c01242{height:61.370156px;}
.h5_c01242{height:62.534180px;}
.h6_c01242{height:62.634234px;}
.h8_c01242{height:73.195312px;}
.h7_c01242{height:75.041016px;}
.h9_c01242{height:75.141070px;}
.h3_c01242{height:100.054688px;}
.h2_c01242{height:100.154742px;}
.h1_c01242{height:104.835938px;}
.h0_c01242{height:810.000000px;}
.w0_c01242{width:1440.000000px;}
.x0_c01242{left:0.000000px;}
.xd_c01242{left:143.316000px;}
.xc_c01242{left:167.655000px;}
.xb_c01242{left:230.370000px;}
.x9_c01242{left:237.750000px;}
.x1_c01242{left:247.650000px;}
.xa_c01242{left:257.370000px;}
.x3_c01242{left:326.055000px;}
.x4_c01242{left:350.970000px;}
.x5_c01242{left:365.550000px;}
.x2_c01242{left:375.015000px;}
.x8_c01242{left:500.295000px;}
.x7_c01242{left:515.955000px;}
.x10_c01242{left:526.530000px;}
.x6_c01242{left:582.300000px;}
.xe_c01242{left:838.155000px;}
.xf_c01242{left:840.570000px;}
@media print{
.v0_c01242{vertical-align:0.000000pt;}
.ls1_c01242{letter-spacing:0.000000pt;}
.ls0_c01242{letter-spacing:0.015467pt;}
.ws0_c01242{word-spacing:-32.000000pt;}
.ws1_c01242{word-spacing:-20.000000pt;}
.ws2_c01242{word-spacing:0.000000pt;}
._3_c01242{margin-left:-6.400000pt;}
._5_c01242{margin-left:-4.789333pt;}
._1_c01242{margin-left:-2.560000pt;}
._2_c01242{margin-left:-0.960000pt;}
._0_c01242{width:0.896000pt;}
._4_c01242{width:38.720000pt;}
.fs2_c01242{font-size:69.120000pt;}
.fs7_c01242{font-size:74.880000pt;}
.fs3_c01242{font-size:80.000000pt;}
.fs4_c01242{font-size:80.128000pt;}
.fs5_c01242{font-size:96.000000pt;}
.fs6_c01242{font-size:96.128000pt;}
.fs0_c01242{font-size:128.000000pt;}
.fs1_c01242{font-size:128.128000pt;}
.y0_c01242{bottom:0.000000pt;}
.y14_c01242{bottom:5.440000pt;}
.yb_c01242{bottom:130.656000pt;}
.y8_c01242{bottom:140.960000pt;}
.ya_c01242{bottom:151.293333pt;}
.y12_c01242{bottom:155.333333pt;}
.y7_c01242{bottom:161.760000pt;}
.y9_c01242{bottom:172.093333pt;}
.y13_c01242{bottom:207.133333pt;}
.y10_c01242{bottom:272.346667pt;}
.y3_c01242{bottom:293.146667pt;}
.y11_c01242{bottom:324.133333pt;}
.y2_c01242{bottom:326.306667pt;}
.yd_c01242{bottom:364.866667pt;}
.y6_c01242{bottom:375.333333pt;}
.yc_c01242{bottom:385.693333pt;}
.ye_c01242{bottom:389.346667pt;}
.yf_c01242{bottom:441.120000pt;}
.y5_c01242{bottom:505.466667pt;}
.y4_c01242{bottom:523.386667pt;}
.y1_c01242{bottom:662.853333pt;}
.h4_c01242{height:48.026250pt;}
.ha_c01242{height:54.551250pt;}
.h5_c01242{height:55.585938pt;}
.h6_c01242{height:55.674875pt;}
.h8_c01242{height:65.062500pt;}
.h7_c01242{height:66.703125pt;}
.h9_c01242{height:66.792063pt;}
.h3_c01242{height:88.937500pt;}
.h2_c01242{height:89.026438pt;}
.h1_c01242{height:93.187500pt;}
.h0_c01242{height:720.000000pt;}
.w0_c01242{width:1280.000000pt;}
.x0_c01242{left:0.000000pt;}
.xd_c01242{left:127.392000pt;}
.xc_c01242{left:149.026667pt;}
.xb_c01242{left:204.773333pt;}
.x9_c01242{left:211.333333pt;}
.x1_c01242{left:220.133333pt;}
.xa_c01242{left:228.773333pt;}
.x3_c01242{left:289.826667pt;}
.x4_c01242{left:311.973333pt;}
.x5_c01242{left:324.933333pt;}
.x2_c01242{left:333.346667pt;}
.x8_c01242{left:444.706667pt;}
.x7_c01242{left:458.626667pt;}
.x10_c01242{left:468.026667pt;}
.x6_c01242{left:517.600000pt;}
.xe_c01242{left:745.026667pt;}
.xf_c01242{left:747.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d2c97ce16806200e7eaa2e42.woff2')format("woff");}.ff1_c01243{font-family:ff1_c01243;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01243;src:url('chunks/assets/font_30f967ec2b7084ec31f5c6cb.woff2')format("woff");}.ff2_c01243{font-family:ff2_c01243;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01243;src:url('chunks/assets/font_24d2ea40154f0ab2adea501b.woff2')format("woff");}.ff3_c01243{font-family:ff3_c01243;line-height:0.938965;font-style:normal;font-weight:normal;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_aa913b0a5d7bb03f01707916.woff2')format("woff");}.ff4_c01243{font-family:ff4_c01243;line-height:0.972656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01243;src:url('chunks/assets/font_7930146fe7ddc04aeecd146d.woff2')format("woff");}.ff5_c01243{font-family:ff5_c01243;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c01243{vertical-align:-18.180000px;}
.v0_c01243{vertical-align:0.000000px;}
.v1_c01243{vertical-align:30.240000px;}
.ls2_c01243{letter-spacing:-0.342600px;}
.ls8_c01243{letter-spacing:-0.053400px;}
.ls3_c01243{letter-spacing:-0.034800px;}
.ls1_c01243{letter-spacing:0.000000px;}
.ls6_c01243{letter-spacing:0.259800px;}
.ls0_c01243{letter-spacing:0.360000px;}
.ls5_c01243{letter-spacing:0.666000px;}
.ls7_c01243{letter-spacing:0.978000px;}
.ls4_c01243{letter-spacing:1.080000px;}
.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:-144.000000px;}
.ws1_c01243{word-spacing:-16.920000px;}
.ws19_c01243{word-spacing:-14.940000px;}
.ws2c_c01243{word-spacing:0.000000px;}
.wsb_c01243{word-spacing:0.131316px;}
.wsc_c01243{word-spacing:0.169488px;}
.ws17_c01243{word-spacing:0.439920px;}
.ws2a_c01243{word-spacing:0.646920px;}
.ws2b_c01243{word-spacing:0.853200px;}
.wsa_c01243{word-spacing:1.828596px;}
.ws18_c01243{word-spacing:1.902479px;}
.ws16_c01243{word-spacing:1.967759px;}
.ws29_c01243{word-spacing:2.058479px;}
.ws8_c01243{word-spacing:2.364960px;}
.wsf_c01243{word-spacing:2.599920px;}
.ws7_c01243{word-spacing:2.754618px;}
.ws5_c01243{word-spacing:3.044640px;}
.ws6_c01243{word-spacing:3.344640px;}
.ws9_c01243{word-spacing:3.925080px;}
.wse_c01243{word-spacing:4.553280px;}
.ws10_c01243{word-spacing:5.394479px;}
.wsd_c01243{word-spacing:5.400000px;}
.ws26_c01243{word-spacing:5.709119px;}
.ws28_c01243{word-spacing:6.366120px;}
.ws27_c01243{word-spacing:7.126920px;}
.ws1b_c01243{word-spacing:9.385920px;}
.ws1f_c01243{word-spacing:10.519920px;}
.ws15_c01243{word-spacing:11.154479px;}
.ws1a_c01243{word-spacing:11.349121px;}
.ws20_c01243{word-spacing:11.370240px;}
.ws21_c01243{word-spacing:11.749800px;}
.ws1d_c01243{word-spacing:11.870879px;}
.ws1e_c01243{word-spacing:11.911201px;}
.ws1c_c01243{word-spacing:12.054479px;}
.ws13_c01243{word-spacing:19.368720px;}
.ws11_c01243{word-spacing:19.879920px;}
.ws2_c01243{word-spacing:20.028000px;}
.ws12_c01243{word-spacing:20.199119px;}
.ws14_c01243{word-spacing:20.901720px;}
.ws23_c01243{word-spacing:24.406920px;}
.ws25_c01243{word-spacing:24.407040px;}
.ws22_c01243{word-spacing:24.734040px;}
.ws24_c01243{word-spacing:24.968880px;}
.ws4_c01243{word-spacing:30.221178px;}
.ws3_c01243{word-spacing:31.284960px;}
._2_c01243{margin-left:-6.622813px;}
._5_c01243{margin-left:-5.368218px;}
._3_c01243{margin-left:-2.537027px;}
._0_c01243{margin-left:-1.296000px;}
._1_c01243{width:1.020960px;}
._8_c01243{width:21.466848px;}
._a_c01243{width:27.579844px;}
._9_c01243{width:36.993121px;}
._4_c01243{width:45.537600px;}
._7_c01243{width:55.140960px;}
._6_c01243{width:56.296800px;}
.fc1_c01243{color:rgb(0,0,0);}
.fc0_c01243{color:rgb(255,255,255);}
.fs7_c01243{font-size:40.464000px;}
.fs8_c01243{font-size:59.760000px;}
.fs6_c01243{font-size:67.680000px;}
.fs2_c01243{font-size:84.240000px;}
.fs5_c01243{font-size:102.240000px;}
.fs4_c01243{font-size:102.384000px;}
.fs1_c01243{font-size:108.000000px;}
.fs0_c01243{font-size:144.000000px;}
.fs3_c01243{font-size:192.240000px;}
.y0_c01243{bottom:0.000000px;}
.y3_c01243{bottom:13.392000px;}
.yf_c01243{bottom:129.852000px;}
.y12_c01243{bottom:137.232000px;}
.y11_c01243{bottom:163.515000px;}
.y10_c01243{bottom:189.975000px;}
.y1c_c01243{bottom:263.700000px;}
.yb_c01243{bottom:269.310000px;}
.ye_c01243{bottom:272.340000px;}
.y1b_c01243{bottom:281.880000px;}
.y1a_c01243{bottom:299.880000px;}
.yd_c01243{bottom:303.120000px;}
.y19_c01243{bottom:317.880000px;}
.yc_c01243{bottom:333.900000px;}
.y18_c01243{bottom:335.880000px;}
.y7_c01243{bottom:408.810000px;}
.ya_c01243{bottom:411.660000px;}
.y9_c01243{bottom:442.650000px;}
.y8_c01243{bottom:473.430000px;}
.y17_c01243{bottom:543.090000px;}
.y4_c01243{bottom:548.280000px;}
.y16_c01243{bottom:561.270000px;}
.y6_c01243{bottom:568.725000px;}
.y15_c01243{bottom:579.270000px;}
.y5_c01243{bottom:595.230000px;}
.y14_c01243{bottom:597.270000px;}
.y13_c01243{bottom:619.815000px;}
.y2_c01243{bottom:671.835000px;}
.y1_c01243{bottom:745.710000px;}
.h8_c01243{height:28.115367px;}
.h9_c01243{height:41.522695px;}
.h3_c01243{height:61.370156px;}
.h7_c01243{height:71.038828px;}
.h5_c01243{height:71.138883px;}
.h2_c01243{height:74.988281px;}
.h6_c01243{height:77.265703px;}
.h1_c01243{height:104.835938px;}
.h4_c01243{height:145.306406px;}
.h0_c01243{height:810.000000px;}
.w0_c01243{width:1440.000000px;}
.x0_c01243{left:0.000000px;}
.x7_c01243{left:50.256000px;}
.x4_c01243{left:53.316000px;}
.x5_c01243{left:132.732000px;}
.x2_c01243{left:146.016000px;}
.x6_c01243{left:153.075000px;}
.x1_c01243{left:247.650000px;}
.x3_c01243{left:526.530000px;}
.x8_c01243{left:1006.200000px;}
@media print{
.v2_c01243{vertical-align:-16.160000pt;}
.v0_c01243{vertical-align:0.000000pt;}
.v1_c01243{vertical-align:26.880000pt;}
.ls2_c01243{letter-spacing:-0.304533pt;}
.ls8_c01243{letter-spacing:-0.047467pt;}
.ls3_c01243{letter-spacing:-0.030933pt;}
.ls1_c01243{letter-spacing:0.000000pt;}
.ls6_c01243{letter-spacing:0.230933pt;}
.ls0_c01243{letter-spacing:0.320000pt;}
.ls5_c01243{letter-spacing:0.592000pt;}
.ls7_c01243{letter-spacing:0.869333pt;}
.ls4_c01243{letter-spacing:0.960000pt;}
.ws0_c01243{word-spacing:-128.000000pt;}
.ws1_c01243{word-spacing:-15.040000pt;}
.ws19_c01243{word-spacing:-13.280000pt;}
.ws2c_c01243{word-spacing:0.000000pt;}
.wsb_c01243{word-spacing:0.116725pt;}
.wsc_c01243{word-spacing:0.150656pt;}
.ws17_c01243{word-spacing:0.391040pt;}
.ws2a_c01243{word-spacing:0.575040pt;}
.ws2b_c01243{word-spacing:0.758400pt;}
.wsa_c01243{word-spacing:1.625418pt;}
.ws18_c01243{word-spacing:1.691092pt;}
.ws16_c01243{word-spacing:1.749119pt;}
.ws29_c01243{word-spacing:1.829759pt;}
.ws8_c01243{word-spacing:2.102187pt;}
.wsf_c01243{word-spacing:2.311040pt;}
.ws7_c01243{word-spacing:2.448549pt;}
.ws5_c01243{word-spacing:2.706347pt;}
.ws6_c01243{word-spacing:2.973013pt;}
.ws9_c01243{word-spacing:3.488960pt;}
.wse_c01243{word-spacing:4.047360pt;}
.ws10_c01243{word-spacing:4.795092pt;}
.wsd_c01243{word-spacing:4.800000pt;}
.ws26_c01243{word-spacing:5.074772pt;}
.ws28_c01243{word-spacing:5.658774pt;}
.ws27_c01243{word-spacing:6.335040pt;}
.ws1b_c01243{word-spacing:8.343040pt;}
.ws1f_c01243{word-spacing:9.351040pt;}
.ws15_c01243{word-spacing:9.915092pt;}
.ws1a_c01243{word-spacing:10.088108pt;}
.ws20_c01243{word-spacing:10.106880pt;}
.ws21_c01243{word-spacing:10.444266pt;}
.ws1d_c01243{word-spacing:10.551892pt;}
.ws1e_c01243{word-spacing:10.587734pt;}
.ws1c_c01243{word-spacing:10.715092pt;}
.ws13_c01243{word-spacing:17.216640pt;}
.ws11_c01243{word-spacing:17.671040pt;}
.ws2_c01243{word-spacing:17.802667pt;}
.ws12_c01243{word-spacing:17.954772pt;}
.ws14_c01243{word-spacing:18.579306pt;}
.ws23_c01243{word-spacing:21.695040pt;}
.ws25_c01243{word-spacing:21.695147pt;}
.ws22_c01243{word-spacing:21.985814pt;}
.ws24_c01243{word-spacing:22.194560pt;}
.ws4_c01243{word-spacing:26.863269pt;}
.ws3_c01243{word-spacing:27.808853pt;}
._2_c01243{margin-left:-5.886945pt;}
._5_c01243{margin-left:-4.771749pt;}
._3_c01243{margin-left:-2.255135pt;}
._0_c01243{margin-left:-1.152000pt;}
._1_c01243{width:0.907520pt;}
._8_c01243{width:19.081643pt;}
._a_c01243{width:24.515417pt;}
._9_c01243{width:32.882774pt;}
._4_c01243{width:40.477867pt;}
._7_c01243{width:49.014187pt;}
._6_c01243{width:50.041600pt;}
.fs7_c01243{font-size:35.968000pt;}
.fs8_c01243{font-size:53.120000pt;}
.fs6_c01243{font-size:60.160000pt;}
.fs2_c01243{font-size:74.880000pt;}
.fs5_c01243{font-size:90.880000pt;}
.fs4_c01243{font-size:91.008000pt;}
.fs1_c01243{font-size:96.000000pt;}
.fs0_c01243{font-size:128.000000pt;}
.fs3_c01243{font-size:170.880000pt;}
.y0_c01243{bottom:0.000000pt;}
.y3_c01243{bottom:11.904000pt;}
.yf_c01243{bottom:115.424000pt;}
.y12_c01243{bottom:121.984000pt;}
.y11_c01243{bottom:145.346667pt;}
.y10_c01243{bottom:168.866667pt;}
.y1c_c01243{bottom:234.400000pt;}
.yb_c01243{bottom:239.386667pt;}
.ye_c01243{bottom:242.080000pt;}
.y1b_c01243{bottom:250.560000pt;}
.y1a_c01243{bottom:266.560000pt;}
.yd_c01243{bottom:269.440000pt;}
.y19_c01243{bottom:282.560000pt;}
.yc_c01243{bottom:296.800000pt;}
.y18_c01243{bottom:298.560000pt;}
.y7_c01243{bottom:363.386667pt;}
.ya_c01243{bottom:365.920000pt;}
.y9_c01243{bottom:393.466667pt;}
.y8_c01243{bottom:420.826667pt;}
.y17_c01243{bottom:482.746667pt;}
.y4_c01243{bottom:487.360000pt;}
.y16_c01243{bottom:498.906667pt;}
.y6_c01243{bottom:505.533333pt;}
.y15_c01243{bottom:514.906667pt;}
.y5_c01243{bottom:529.093333pt;}
.y14_c01243{bottom:530.906667pt;}
.y13_c01243{bottom:550.946667pt;}
.y2_c01243{bottom:597.186667pt;}
.y1_c01243{bottom:662.853333pt;}
.h8_c01243{height:24.991437pt;}
.h9_c01243{height:36.909063pt;}
.h3_c01243{height:54.551250pt;}
.h7_c01243{height:63.145625pt;}
.h5_c01243{height:63.234562pt;}
.h2_c01243{height:66.656250pt;}
.h6_c01243{height:68.680625pt;}
.h1_c01243{height:93.187500pt;}
.h4_c01243{height:129.161250pt;}
.h0_c01243{height:720.000000pt;}
.w0_c01243{width:1280.000000pt;}
.x0_c01243{left:0.000000pt;}
.x7_c01243{left:44.672000pt;}
.x4_c01243{left:47.392000pt;}
.x5_c01243{left:117.984000pt;}
.x2_c01243{left:129.792000pt;}
.x6_c01243{left:136.066667pt;}
.x1_c01243{left:220.133333pt;}
.x3_c01243{left:468.026667pt;}
.x8_c01243{left:894.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_ad15a7dfab6b9a843ed84a8a.woff2')format("woff");}.ff1_c01244{font-family:ff1_c01244;line-height:0.910645;font-style: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;}
.ls0_c01244{letter-spacing:0.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;}
}
.ws0_c01244{word-spacing:-23.940000px;}
.ws1_c01244{word-spacing:0.000000px;}
._0_c01244{margin-left:-11.880000px;}
._2_c01244{margin-left:-1.057392px;}
._1_c01244{width:1.246848px;}
.fc0_c01244{color:rgb(255,255,255);}
.fs2_c01244{font-size:95.760000px;}
.fs1_c01244{font-size:95.904000px;}
.fs0_c01244{font-size:360.000000px;}
.y0_c01244{bottom:0.000000px;}
.y4_c01244{bottom:278.925000px;}
.y3_c01244{bottom:307.725000px;}
.y2_c01244{bottom:336.570000px;}
.y1_c01244{bottom:445.650000px;}
.h3_c01244{height:66.536367px;}
.h2_c01244{height:66.636422px;}
.h1_c01244{height:250.136719px;}
.h0_c01244{height:810.000000px;}
.w0_c01244{width:1440.000000px;}
.x0_c01244{left:0.000000px;}
.x1_c01244{left:455.190000px;}
.x3_c01244{left:561.930000px;}
.x4_c01244{left:583.890000px;}
.x2_c01244{left:618.630000px;}
@media print{
.v0_c01244{vertical-align:0.000000pt;}
.ls0_c01244{letter-spacing:0.000000pt;}
.ws0_c01244{word-spacing:-21.280000pt;}
.ws1_c01244{word-spacing:0.000000pt;}
._0_c01244{margin-left:-10.560000pt;}
._2_c01244{margin-left:-0.939904pt;}
._1_c01244{width:1.108309pt;}
.fs2_c01244{font-size:85.120000pt;}
.fs1_c01244{font-size:85.248000pt;}
.fs0_c01244{font-size:320.000000pt;}
.y0_c01244{bottom:0.000000pt;}
.y4_c01244{bottom:247.933333pt;}
.y3_c01244{bottom:273.533333pt;}
.y2_c01244{bottom:299.173333pt;}
.y1_c01244{bottom:396.133333pt;}
.h3_c01244{height:59.143438pt;}
.h2_c01244{height:59.232375pt;}
.h1_c01244{height:222.343750pt;}
.h0_c01244{height:720.000000pt;}
.w0_c01244{width:1280.000000pt;}
.x0_c01244{left:0.000000pt;}
.x1_c01244{left:404.613333pt;}
.x3_c01244{left:499.493333pt;}
.x4_c01244{left:519.013333pt;}
.x2_c01244{left:549.893333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a4012fe1a5714060ec455146.woff2')format("woff");}.ff1_c01245{font-family:ff1_c01245;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01245;src:url('chunks/assets/font_8a8c81b96832e41dc5ccb772.woff2')format("woff");}.ff2_c01245{font-family:ff2_c01245;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01245;src:url('chunks/assets/font_ad6337026ada2122b38eb541.woff2')format("woff");}.ff3_c01245{font-family:ff3_c01245;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c01245{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c01245{vertical-align:-15.600000px;}
.v0_c01245{vertical-align:0.000000px;}
.v1_c01245{vertical-align:21.600000px;}
.ls2b_c01245{letter-spacing:-1.080000px;}
.ls2c_c01245{letter-spacing:-0.900000px;}
.ls19_c01245{letter-spacing:-0.864000px;}
.ls1d_c01245{letter-spacing:-0.672000px;}
.ls29_c01245{letter-spacing:-0.540000px;}
.ls26_c01245{letter-spacing:-0.528000px;}
.ls17_c01245{letter-spacing:-0.480000px;}
.ls23_c01245{letter-spacing:-0.432000px;}
.ls20_c01245{letter-spacing:-0.420000px;}
.ls24_c01245{letter-spacing:-0.384000px;}
.ls15_c01245{letter-spacing:-0.336000px;}
.ls27_c01245{letter-spacing:-0.300000px;}
.ls12_c01245{letter-spacing:-0.216000px;}
.ls16_c01245{letter-spacing:-0.192000px;}
.ls28_c01245{letter-spacing:-0.180000px;}
.ls1e_c01245{letter-spacing:-0.144000px;}
.ls1b_c01245{letter-spacing:-0.096000px;}
.ls13_c01245{letter-spacing:0.000000px;}
.ls1a_c01245{letter-spacing:0.048000px;}
.lsb_c01245{letter-spacing:0.060000px;}
.ls6_c01245{letter-spacing:0.096000px;}
.lsa_c01245{letter-spacing:0.120000px;}
.ls18_c01245{letter-spacing:0.144000px;}
.ls25_c01245{letter-spacing:0.288000px;}
.lsc_c01245{letter-spacing:0.300000px;}
.ls21_c01245{letter-spacing:0.318000px;}
.ls22_c01245{letter-spacing:0.336000px;}
.ls1f_c01245{letter-spacing:0.360000px;}
.ls5_c01245{letter-spacing:0.390000px;}
.lsd_c01245{letter-spacing:0.480000px;}
.ls1c_c01245{letter-spacing:0.528000px;}
.ls2a_c01245{letter-spacing:0.540000px;}
.ls2_c01245{letter-spacing:0.619200px;}
.ls14_c01245{letter-spacing:0.624000px;}
.lse_c01245{letter-spacing:0.660000px;}
.ls8_c01245{letter-spacing:0.840000px;}
.ls4_c01245{letter-spacing:0.864000px;}
.ls3_c01245{letter-spacing:0.912000px;}
.ls1_c01245{letter-spacing:1.152000px;}
.ls7_c01245{letter-spacing:2.040000px;}
.ls9_c01245{letter-spacing:3.240000px;}
.ls11_c01245{letter-spacing:4.422000px;}
.lsf_c01245{letter-spacing:5.640000px;}
.ls10_c01245{letter-spacing:6.840000px;}
.ls0_c01245{letter-spacing:91.152000px;}
.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;}
}
.wsb_c01245{word-spacing:-27.480000px;}
.ws0_c01245{word-spacing:-16.056000px;}
.wse_c01245{word-spacing:-15.840000px;}
.ws15_c01245{word-spacing:-14.220000px;}
.ws16_c01245{word-spacing:-13.860000px;}
.ws10_c01245{word-spacing:-13.680000px;}
.ws12_c01245{word-spacing:-13.620000px;}
.wsa_c01245{word-spacing:-13.560000px;}
.ws11_c01245{word-spacing:-13.380000px;}
.wsf_c01245{word-spacing:-13.260000px;}
.ws13_c01245{word-spacing:-13.140000px;}
.ws17_c01245{word-spacing:-13.020000px;}
.ws18_c01245{word-spacing:-12.660000px;}
.ws14_c01245{word-spacing:-12.480000px;}
.ws2_c01245{word-spacing:-11.472000px;}
.wsc_c01245{word-spacing:-11.136000px;}
.ws1_c01245{word-spacing:-10.944000px;}
.ws3_c01245{word-spacing:-10.848000px;}
.ws8_c01245{word-spacing:-10.752000px;}
.ws4_c01245{word-spacing:-10.656000px;}
.ws9_c01245{word-spacing:-10.512000px;}
.ws5_c01245{word-spacing:-10.368000px;}
.wsd_c01245{word-spacing:-10.320000px;}
.ws7_c01245{word-spacing:-10.176000px;}
.ws6_c01245{word-spacing:-9.984000px;}
.ws30_c01245{word-spacing:-1.266000px;}
.ws2a_c01245{word-spacing:-1.200000px;}
.ws26_c01245{word-spacing:-1.104000px;}
.ws53_c01245{word-spacing:-0.900000px;}
.ws2f_c01245{word-spacing:-0.660000px;}
.ws29_c01245{word-spacing:-0.600000px;}
.ws54_c01245{word-spacing:-0.480000px;}
.ws5f_c01245{word-spacing:-0.420000px;}
.ws38_c01245{word-spacing:-0.384000px;}
.ws31_c01245{word-spacing:-0.318000px;}
.ws56_c01245{word-spacing:-0.300000px;}
.ws2b_c01245{word-spacing:-0.252000px;}
.ws43_c01245{word-spacing:-0.222000px;}
.ws3c_c01245{word-spacing:-0.192000px;}
.ws3a_c01245{word-spacing:-0.186000px;}
.ws1e_c01245{word-spacing:-0.144000px;}
.ws4b_c01245{word-spacing:-0.120000px;}
.ws44_c01245{word-spacing:-0.102000px;}
.ws3e_c01245{word-spacing:-0.096000px;}
.ws2e_c01245{word-spacing:-0.060000px;}
.ws1d_c01245{word-spacing:-0.048000px;}
.ws1a_c01245{word-spacing:0.000000px;}
.ws32_c01245{word-spacing:0.030000px;}
.ws46_c01245{word-spacing:0.048000px;}
.ws63_c01245{word-spacing:0.060000px;}
.ws24_c01245{word-spacing:0.096000px;}
.ws1c_c01245{word-spacing:0.144000px;}
.ws55_c01245{word-spacing:0.180000px;}
.ws33_c01245{word-spacing:0.192000px;}
.ws28_c01245{word-spacing:0.240000px;}
.ws1b_c01245{word-spacing:0.288000px;}
.ws4f_c01245{word-spacing:0.300000px;}
.ws36_c01245{word-spacing:0.318000px;}
.ws37_c01245{word-spacing:0.324000px;}
.ws22_c01245{word-spacing:0.336000px;}
.ws27_c01245{word-spacing:0.360000px;}
.ws45_c01245{word-spacing:0.384000px;}
.ws2c_c01245{word-spacing:0.420000px;}
.ws34_c01245{word-spacing:0.432000px;}
.ws3f_c01245{word-spacing:0.480000px;}
.ws35_c01245{word-spacing:0.540000px;}
.ws3b_c01245{word-spacing:0.576000px;}
.ws3d_c01245{word-spacing:0.612000px;}
.ws25_c01245{word-spacing:0.624000px;}
.ws41_c01245{word-spacing:0.648000px;}
.ws19_c01245{word-spacing:0.720000px;}
.ws4a_c01245{word-spacing:0.780000px;}
.ws40_c01245{word-spacing:1.002000px;}
.ws1f_c01245{word-spacing:1.008000px;}
.ws2d_c01245{word-spacing:1.080000px;}
.ws49_c01245{word-spacing:1.140000px;}
.ws23_c01245{word-spacing:1.152000px;}
.ws48_c01245{word-spacing:1.260000px;}
.ws21_c01245{word-spacing:1.344000px;}
.ws50_c01245{word-spacing:1.380000px;}
.ws47_c01245{word-spacing:1.392000px;}
.ws20_c01245{word-spacing:1.488000px;}
.ws39_c01245{word-spacing:1.584000px;}
.ws42_c01245{word-spacing:1.632000px;}
.ws5a_c01245{word-spacing:1.920000px;}
.ws5c_c01245{word-spacing:1.980000px;}
.ws4c_c01245{word-spacing:2.340000px;}
.ws5e_c01245{word-spacing:2.460000px;}
.ws5b_c01245{word-spacing:2.580000px;}
.ws5d_c01245{word-spacing:2.700000px;}
.ws4d_c01245{word-spacing:3.180000px;}
.ws4e_c01245{word-spacing:3.540000px;}
.ws52_c01245{word-spacing:3.660000px;}
.ws65_c01245{word-spacing:3.780000px;}
.ws64_c01245{word-spacing:4.740000px;}
.ws51_c01245{word-spacing:4.980000px;}
.ws58_c01245{word-spacing:5.340000px;}
.ws59_c01245{word-spacing:5.580000px;}
.ws57_c01245{word-spacing:5.940000px;}
.ws62_c01245{word-spacing:6.300000px;}
.ws60_c01245{word-spacing:7.020000px;}
.ws61_c01245{word-spacing:7.140000px;}
._6_c01245{margin-left:-2.292000px;}
._1_c01245{margin-left:-1.152000px;}
._0_c01245{width:1.036800px;}
._2_c01245{width:2.121600px;}
._7_c01245{width:3.202176px;}
._9_c01245{width:4.682400px;}
._8_c01245{width:6.331200px;}
._3_c01245{width:261.792000px;}
._4_c01245{width:304.464000px;}
._5_c01245{width:327.772800px;}
.fc1_c01245{color:rgb(0,0,0);}
.fc0_c01245{color:rgb(0,0,255);}
.fs5_c01245{font-size:30.000000px;}
.fs4_c01245{font-size:39.600000px;}
.fs1_c01245{font-size:48.000000px;}
.fs2_c01245{font-size:60.000000px;}
.fs0_c01245{font-size:72.000000px;}
.fs3_c01245{font-size:120.000000px;}
.y0_c01245{bottom:0.000000px;}
.y2_c01245{bottom:15.300000px;}
.yb_c01245{bottom:67.800000px;}
.ya_c01245{bottom:103.800000px;}
.y9_c01245{bottom:118.500000px;}
.y8_c01245{bottom:133.200000px;}
.y7_c01245{bottom:147.900000px;}
.y2d_c01245{bottom:196.800000px;}
.y2c_c01245{bottom:218.700000px;}
.y2b_c01245{bottom:240.600000px;}
.y2a_c01245{bottom:262.800000px;}
.y29_c01245{bottom:284.700000px;}
.y28_c01245{bottom:306.600000px;}
.y27_c01245{bottom:328.500000px;}
.y26_c01245{bottom:350.700000px;}
.y25_c01245{bottom:372.600000px;}
.y24_c01245{bottom:394.500000px;}
.y23_c01245{bottom:416.400000px;}
.y22_c01245{bottom:438.600000px;}
.y21_c01245{bottom:460.500000px;}
.y20_c01245{bottom:482.400000px;}
.y1f_c01245{bottom:504.300000px;}
.y1e_c01245{bottom:526.500000px;}
.y1d_c01245{bottom:548.400000px;}
.y1c_c01245{bottom:570.300000px;}
.y1b_c01245{bottom:592.200000px;}
.y1a_c01245{bottom:614.400000px;}
.y19_c01245{bottom:636.300000px;}
.y18_c01245{bottom:658.200000px;}
.y17_c01245{bottom:680.100000px;}
.y16_c01245{bottom:702.300000px;}
.y15_c01245{bottom:724.200000px;}
.y14_c01245{bottom:746.100000px;}
.y13_c01245{bottom:775.800000px;}
.y12_c01245{bottom:867.787500px;}
.y11_c01245{bottom:882.487500px;}
.y10_c01245{bottom:897.187500px;}
.yf_c01245{bottom:926.287500px;}
.ye_c01245{bottom:943.687500px;}
.yd_c01245{bottom:954.300000px;}
.yc_c01245{bottom:1006.800000px;}
.y6_c01245{bottom:1075.500000px;}
.y5_c01245{bottom:1090.200000px;}
.y4_c01245{bottom:1104.900000px;}
.y3_c01245{bottom:1119.600000px;}
.y1_c01245{bottom:1145.700000px;}
.h8_c01245{height:21.533203px;}
.h1_c01245{height:32.400000px;}
.h3_c01245{height:34.453125px;}
.h4_c01245{height:34.851562px;}
.h9_c01245{height:43.066406px;}
.h5_c01245{height:43.564453px;}
.h7_c01245{height:50.023828px;}
.h2_c01245{height:52.277344px;}
.h6_c01245{height:87.128906px;}
.h0_c01245{height:1263.000000px;}
.w2_c01245{width:738.900000px;}
.w0_c01245{width:893.100000px;}
.w1_c01245{width:893.250000px;}
.x0_c01245{left:0.000000px;}
.x2_c01245{left:7.800000px;}
.x1_c01245{left:77.100000px;}
.x3_c01245{left:84.900000px;}
.x4_c01245{left:442.500000px;}
@media print{
.v2_c01245{vertical-align:-13.866667pt;}
.v0_c01245{vertical-align:0.000000pt;}
.v1_c01245{vertical-align:19.200000pt;}
.ls2b_c01245{letter-spacing:-0.960000pt;}
.ls2c_c01245{letter-spacing:-0.800000pt;}
.ls19_c01245{letter-spacing:-0.768000pt;}
.ls1d_c01245{letter-spacing:-0.597333pt;}
.ls29_c01245{letter-spacing:-0.480000pt;}
.ls26_c01245{letter-spacing:-0.469333pt;}
.ls17_c01245{letter-spacing:-0.426667pt;}
.ls23_c01245{letter-spacing:-0.384000pt;}
.ls20_c01245{letter-spacing:-0.373333pt;}
.ls24_c01245{letter-spacing:-0.341333pt;}
.ls15_c01245{letter-spacing:-0.298667pt;}
.ls27_c01245{letter-spacing:-0.266667pt;}
.ls12_c01245{letter-spacing:-0.192000pt;}
.ls16_c01245{letter-spacing:-0.170667pt;}
.ls28_c01245{letter-spacing:-0.160000pt;}
.ls1e_c01245{letter-spacing:-0.128000pt;}
.ls1b_c01245{letter-spacing:-0.085333pt;}
.ls13_c01245{letter-spacing:0.000000pt;}
.ls1a_c01245{letter-spacing:0.042667pt;}
.lsb_c01245{letter-spacing:0.053333pt;}
.ls6_c01245{letter-spacing:0.085333pt;}
.lsa_c01245{letter-spacing:0.106667pt;}
.ls18_c01245{letter-spacing:0.128000pt;}
.ls25_c01245{letter-spacing:0.256000pt;}
.lsc_c01245{letter-spacing:0.266667pt;}
.ls21_c01245{letter-spacing:0.282667pt;}
.ls22_c01245{letter-spacing:0.298667pt;}
.ls1f_c01245{letter-spacing:0.320000pt;}
.ls5_c01245{letter-spacing:0.346667pt;}
.lsd_c01245{letter-spacing:0.426667pt;}
.ls1c_c01245{letter-spacing:0.469333pt;}
.ls2a_c01245{letter-spacing:0.480000pt;}
.ls2_c01245{letter-spacing:0.550400pt;}
.ls14_c01245{letter-spacing:0.554667pt;}
.lse_c01245{letter-spacing:0.586667pt;}
.ls8_c01245{letter-spacing:0.746667pt;}
.ls4_c01245{letter-spacing:0.768000pt;}
.ls3_c01245{letter-spacing:0.810667pt;}
.ls1_c01245{letter-spacing:1.024000pt;}
.ls7_c01245{letter-spacing:1.813333pt;}
.ls9_c01245{letter-spacing:2.880000pt;}
.ls11_c01245{letter-spacing:3.930667pt;}
.lsf_c01245{letter-spacing:5.013333pt;}
.ls10_c01245{letter-spacing:6.080000pt;}
.ls0_c01245{letter-spacing:81.024000pt;}
.wsb_c01245{word-spacing:-24.426667pt;}
.ws0_c01245{word-spacing:-14.272000pt;}
.wse_c01245{word-spacing:-14.080000pt;}
.ws15_c01245{word-spacing:-12.640000pt;}
.ws16_c01245{word-spacing:-12.320000pt;}
.ws10_c01245{word-spacing:-12.160000pt;}
.ws12_c01245{word-spacing:-12.106667pt;}
.wsa_c01245{word-spacing:-12.053333pt;}
.ws11_c01245{word-spacing:-11.893333pt;}
.wsf_c01245{word-spacing:-11.786667pt;}
.ws13_c01245{word-spacing:-11.680000pt;}
.ws17_c01245{word-spacing:-11.573333pt;}
.ws18_c01245{word-spacing:-11.253333pt;}
.ws14_c01245{word-spacing:-11.093333pt;}
.ws2_c01245{word-spacing:-10.197333pt;}
.wsc_c01245{word-spacing:-9.898667pt;}
.ws1_c01245{word-spacing:-9.728000pt;}
.ws3_c01245{word-spacing:-9.642667pt;}
.ws8_c01245{word-spacing:-9.557333pt;}
.ws4_c01245{word-spacing:-9.472000pt;}
.ws9_c01245{word-spacing:-9.344000pt;}
.ws5_c01245{word-spacing:-9.216000pt;}
.wsd_c01245{word-spacing:-9.173333pt;}
.ws7_c01245{word-spacing:-9.045333pt;}
.ws6_c01245{word-spacing:-8.874667pt;}
.ws30_c01245{word-spacing:-1.125333pt;}
.ws2a_c01245{word-spacing:-1.066667pt;}
.ws26_c01245{word-spacing:-0.981333pt;}
.ws53_c01245{word-spacing:-0.800000pt;}
.ws2f_c01245{word-spacing:-0.586667pt;}
.ws29_c01245{word-spacing:-0.533333pt;}
.ws54_c01245{word-spacing:-0.426667pt;}
.ws5f_c01245{word-spacing:-0.373333pt;}
.ws38_c01245{word-spacing:-0.341333pt;}
.ws31_c01245{word-spacing:-0.282667pt;}
.ws56_c01245{word-spacing:-0.266667pt;}
.ws2b_c01245{word-spacing:-0.224000pt;}
.ws43_c01245{word-spacing:-0.197333pt;}
.ws3c_c01245{word-spacing:-0.170667pt;}
.ws3a_c01245{word-spacing:-0.165333pt;}
.ws1e_c01245{word-spacing:-0.128000pt;}
.ws4b_c01245{word-spacing:-0.106667pt;}
.ws44_c01245{word-spacing:-0.090667pt;}
.ws3e_c01245{word-spacing:-0.085333pt;}
.ws2e_c01245{word-spacing:-0.053333pt;}
.ws1d_c01245{word-spacing:-0.042667pt;}
.ws1a_c01245{word-spacing:0.000000pt;}
.ws32_c01245{word-spacing:0.026667pt;}
.ws46_c01245{word-spacing:0.042667pt;}
.ws63_c01245{word-spacing:0.053333pt;}
.ws24_c01245{word-spacing:0.085333pt;}
.ws1c_c01245{word-spacing:0.128000pt;}
.ws55_c01245{word-spacing:0.160000pt;}
.ws33_c01245{word-spacing:0.170667pt;}
.ws28_c01245{word-spacing:0.213333pt;}
.ws1b_c01245{word-spacing:0.256000pt;}
.ws4f_c01245{word-spacing:0.266667pt;}
.ws36_c01245{word-spacing:0.282667pt;}
.ws37_c01245{word-spacing:0.288000pt;}
.ws22_c01245{word-spacing:0.298667pt;}
.ws27_c01245{word-spacing:0.320000pt;}
.ws45_c01245{word-spacing:0.341333pt;}
.ws2c_c01245{word-spacing:0.373333pt;}
.ws34_c01245{word-spacing:0.384000pt;}
.ws3f_c01245{word-spacing:0.426667pt;}
.ws35_c01245{word-spacing:0.480000pt;}
.ws3b_c01245{word-spacing:0.512000pt;}
.ws3d_c01245{word-spacing:0.544000pt;}
.ws25_c01245{word-spacing:0.554667pt;}
.ws41_c01245{word-spacing:0.576000pt;}
.ws19_c01245{word-spacing:0.640000pt;}
.ws4a_c01245{word-spacing:0.693333pt;}
.ws40_c01245{word-spacing:0.890667pt;}
.ws1f_c01245{word-spacing:0.896000pt;}
.ws2d_c01245{word-spacing:0.960000pt;}
.ws49_c01245{word-spacing:1.013333pt;}
.ws23_c01245{word-spacing:1.024000pt;}
.ws48_c01245{word-spacing:1.120000pt;}
.ws21_c01245{word-spacing:1.194667pt;}
.ws50_c01245{word-spacing:1.226667pt;}
.ws47_c01245{word-spacing:1.237333pt;}
.ws20_c01245{word-spacing:1.322667pt;}
.ws39_c01245{word-spacing:1.408000pt;}
.ws42_c01245{word-spacing:1.450667pt;}
.ws5a_c01245{word-spacing:1.706667pt;}
.ws5c_c01245{word-spacing:1.760000pt;}
.ws4c_c01245{word-spacing:2.080000pt;}
.ws5e_c01245{word-spacing:2.186667pt;}
.ws5b_c01245{word-spacing:2.293333pt;}
.ws5d_c01245{word-spacing:2.400000pt;}
.ws4d_c01245{word-spacing:2.826667pt;}
.ws4e_c01245{word-spacing:3.146667pt;}
.ws52_c01245{word-spacing:3.253333pt;}
.ws65_c01245{word-spacing:3.360000pt;}
.ws64_c01245{word-spacing:4.213333pt;}
.ws51_c01245{word-spacing:4.426667pt;}
.ws58_c01245{word-spacing:4.746667pt;}
.ws59_c01245{word-spacing:4.960000pt;}
.ws57_c01245{word-spacing:5.280000pt;}
.ws62_c01245{word-spacing:5.600000pt;}
.ws60_c01245{word-spacing:6.240000pt;}
.ws61_c01245{word-spacing:6.346667pt;}
._6_c01245{margin-left:-2.037333pt;}
._1_c01245{margin-left:-1.024000pt;}
._0_c01245{width:0.921600pt;}
._2_c01245{width:1.885867pt;}
._7_c01245{width:2.846379pt;}
._9_c01245{width:4.162133pt;}
._8_c01245{width:5.627733pt;}
._3_c01245{width:232.704000pt;}
._4_c01245{width:270.634667pt;}
._5_c01245{width:291.353600pt;}
.fs5_c01245{font-size:26.666667pt;}
.fs4_c01245{font-size:35.200000pt;}
.fs1_c01245{font-size:42.666667pt;}
.fs2_c01245{font-size:53.333333pt;}
.fs0_c01245{font-size:64.000000pt;}
.fs3_c01245{font-size:106.666667pt;}
.y0_c01245{bottom:0.000000pt;}
.y2_c01245{bottom:13.600000pt;}
.yb_c01245{bottom:60.266667pt;}
.ya_c01245{bottom:92.266667pt;}
.y9_c01245{bottom:105.333333pt;}
.y8_c01245{bottom:118.400000pt;}
.y7_c01245{bottom:131.466667pt;}
.y2d_c01245{bottom:174.933333pt;}
.y2c_c01245{bottom:194.400000pt;}
.y2b_c01245{bottom:213.866667pt;}
.y2a_c01245{bottom:233.600000pt;}
.y29_c01245{bottom:253.066667pt;}
.y28_c01245{bottom:272.533333pt;}
.y27_c01245{bottom:292.000000pt;}
.y26_c01245{bottom:311.733333pt;}
.y25_c01245{bottom:331.200000pt;}
.y24_c01245{bottom:350.666667pt;}
.y23_c01245{bottom:370.133333pt;}
.y22_c01245{bottom:389.866667pt;}
.y21_c01245{bottom:409.333333pt;}
.y20_c01245{bottom:428.800000pt;}
.y1f_c01245{bottom:448.266667pt;}
.y1e_c01245{bottom:468.000000pt;}
.y1d_c01245{bottom:487.466667pt;}
.y1c_c01245{bottom:506.933333pt;}
.y1b_c01245{bottom:526.400000pt;}
.y1a_c01245{bottom:546.133333pt;}
.y19_c01245{bottom:565.600000pt;}
.y18_c01245{bottom:585.066667pt;}
.y17_c01245{bottom:604.533333pt;}
.y16_c01245{bottom:624.266667pt;}
.y15_c01245{bottom:643.733333pt;}
.y14_c01245{bottom:663.200000pt;}
.y13_c01245{bottom:689.600000pt;}
.y12_c01245{bottom:771.366667pt;}
.y11_c01245{bottom:784.433333pt;}
.y10_c01245{bottom:797.500000pt;}
.yf_c01245{bottom:823.366667pt;}
.ye_c01245{bottom:838.833333pt;}
.yd_c01245{bottom:848.266667pt;}
.yc_c01245{bottom:894.933333pt;}
.y6_c01245{bottom:956.000000pt;}
.y5_c01245{bottom:969.066667pt;}
.y4_c01245{bottom:982.133333pt;}
.y3_c01245{bottom:995.200000pt;}
.y1_c01245{bottom:1018.400000pt;}
.h8_c01245{height:19.140625pt;}
.h1_c01245{height:28.800000pt;}
.h3_c01245{height:30.625000pt;}
.h4_c01245{height:30.979167pt;}
.h9_c01245{height:38.281250pt;}
.h5_c01245{height:38.723958pt;}
.h7_c01245{height:44.465625pt;}
.h2_c01245{height:46.468750pt;}
.h6_c01245{height:77.447917pt;}
.h0_c01245{height:1122.666667pt;}
.w2_c01245{width:656.800000pt;}
.w0_c01245{width:793.866667pt;}
.w1_c01245{width:794.000000pt;}
.x0_c01245{left:0.000000pt;}
.x2_c01245{left:6.933333pt;}
.x1_c01245{left:68.533333pt;}
.x3_c01245{left:75.466667pt;}
.x4_c01245{left:393.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_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_d1b5f7234d36a0c9c4f188e8.woff2')format("woff");}.ff1_c01246{font-family:ff1_c01246;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01246;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff2_c01246{font-family:ff2_c01246;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01246;src:url('chunks/assets/font_4ceaec478c27f679afe68f5b.woff2')format("woff");}.ff3_c01246{font-family:ff3_c01246;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls12_c01246{letter-spacing:-1.500000px;}
.ls16_c01246{letter-spacing:-1.080000px;}
.ls1a_c01246{letter-spacing:-0.900000px;}
.ls1c_c01246{letter-spacing:-0.660000px;}
.ls13_c01246{letter-spacing:-0.540000px;}
.ls1d_c01246{letter-spacing:-0.504000px;}
.ls14_c01246{letter-spacing:-0.420000px;}
.ls17_c01246{letter-spacing:-0.336000px;}
.ls15_c01246{letter-spacing:-0.300000px;}
.ls1b_c01246{letter-spacing:-0.252000px;}
.ls11_c01246{letter-spacing:-0.216000px;}
.ls18_c01246{letter-spacing:-0.180000px;}
.ls19_c01246{letter-spacing:-0.120000px;}
.ls10_c01246{letter-spacing:0.000000px;}
.ls3_c01246{letter-spacing:0.060000px;}
.lsd_c01246{letter-spacing:0.120000px;}
.lsf_c01246{letter-spacing:0.180000px;}
.ls4_c01246{letter-spacing:0.300000px;}
.ls0_c01246{letter-spacing:0.540000px;}
.ls1_c01246{letter-spacing:0.600000px;}
.ls2_c01246{letter-spacing:0.660000px;}
.lsa_c01246{letter-spacing:0.840000px;}
.lsb_c01246{letter-spacing:2.040000px;}
.ls6_c01246{letter-spacing:3.240000px;}
.ls5_c01246{letter-spacing:4.440000px;}
.lsc_c01246{letter-spacing:5.640000px;}
.ls8_c01246{letter-spacing:9.234000px;}
.ls7_c01246{letter-spacing:9.240000px;}
.ls9_c01246{letter-spacing:10.440000px;}
.lse_c01246{letter-spacing:61.704000px;}
.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;}
}
.wse_c01246{word-spacing:-18.732000px;}
.ws6_c01246{word-spacing:-18.648000px;}
.ws1_c01246{word-spacing:-16.056000px;}
.ws10_c01246{word-spacing:-15.768000px;}
.wsc_c01246{word-spacing:-14.220000px;}
.ws4_c01246{word-spacing:-13.860000px;}
.wsa_c01246{word-spacing:-13.680000px;}
.ws7_c01246{word-spacing:-13.620000px;}
.ws0_c01246{word-spacing:-13.560000px;}
.ws9_c01246{word-spacing:-13.440000px;}
.ws8_c01246{word-spacing:-13.380000px;}
.ws3_c01246{word-spacing:-13.260000px;}
.wsb_c01246{word-spacing:-13.140000px;}
.ws2_c01246{word-spacing:-13.020000px;}
.wsf_c01246{word-spacing:-12.900000px;}
.wsd_c01246{word-spacing:-12.660000px;}
.ws5_c01246{word-spacing:-12.480000px;}
.ws34_c01246{word-spacing:-0.900000px;}
.ws13_c01246{word-spacing:-0.660000px;}
.ws11_c01246{word-spacing:-0.540000px;}
.ws14_c01246{word-spacing:-0.480000px;}
.ws22_c01246{word-spacing:-0.420000px;}
.ws35_c01246{word-spacing:-0.120000px;}
.ws1d_c01246{word-spacing:-0.060000px;}
.ws12_c01246{word-spacing:0.000000px;}
.ws21_c01246{word-spacing:0.060000px;}
.ws23_c01246{word-spacing:0.180000px;}
.ws18_c01246{word-spacing:0.300000px;}
.ws17_c01246{word-spacing:0.420000px;}
.ws16_c01246{word-spacing:0.540000px;}
.ws3a_c01246{word-spacing:0.660000px;}
.ws25_c01246{word-spacing:0.720000px;}
.ws2a_c01246{word-spacing:1.080000px;}
.ws24_c01246{word-spacing:1.140000px;}
.ws15_c01246{word-spacing:1.500000px;}
.ws32_c01246{word-spacing:1.980000px;}
.ws33_c01246{word-spacing:2.220000px;}
.ws2b_c01246{word-spacing:2.340000px;}
.ws30_c01246{word-spacing:2.580000px;}
.ws29_c01246{word-spacing:2.940000px;}
.ws28_c01246{word-spacing:3.540000px;}
.ws1a_c01246{word-spacing:3.780000px;}
.ws1e_c01246{word-spacing:4.140000px;}
.ws36_c01246{word-spacing:4.380000px;}
.ws1b_c01246{word-spacing:4.740000px;}
.ws1c_c01246{word-spacing:4.860000px;}
.ws37_c01246{word-spacing:4.980000px;}
.ws2f_c01246{word-spacing:5.100000px;}
.ws2d_c01246{word-spacing:5.580000px;}
.ws2e_c01246{word-spacing:5.760000px;}
.ws2c_c01246{word-spacing:5.940000px;}
.ws31_c01246{word-spacing:6.180000px;}
.ws27_c01246{word-spacing:6.720000px;}
.ws19_c01246{word-spacing:7.140000px;}
.ws26_c01246{word-spacing:7.260000px;}
.ws1f_c01246{word-spacing:9.420000px;}
.ws20_c01246{word-spacing:9.540000px;}
.ws39_c01246{word-spacing:10.320000px;}
.ws38_c01246{word-spacing:10.740000px;}
.ws3c_c01246{word-spacing:11.520000px;}
.ws3b_c01246{word-spacing:11.940000px;}
._5_c01246{margin-left:-2.448000px;}
._0_c01246{margin-left:-1.326000px;}
._1_c01246{width:1.872000px;}
._8_c01246{width:3.090000px;}
._6_c01246{width:5.316000px;}
._4_c01246{width:7.368000px;}
._3_c01246{width:8.436000px;}
._7_c01246{width:9.570000px;}
._a_c01246{width:11.412000px;}
._9_c01246{width:61.848000px;}
._2_c01246{width:108.864000px;}
.fc1_c01246{color:rgb(0,0,0);}
.fc0_c01246{color:rgb(0,0,255);}
.fs1_c01246{font-size:54.000000px;}
.fs0_c01246{font-size:60.000000px;}
.fs2_c01246{font-size:72.000000px;}
.fs3_c01246{font-size:84.000000px;}
.y0_c01246{bottom:0.000000px;}
.y3_c01246{bottom:71.400000px;}
.y2_c01246{bottom:88.800000px;}
.y2d_c01246{bottom:155.700000px;}
.y2c_c01246{bottom:177.600000px;}
.y2b_c01246{bottom:199.500000px;}
.y2a_c01246{bottom:221.700000px;}
.y29_c01246{bottom:243.600000px;}
.y28_c01246{bottom:265.500000px;}
.y27_c01246{bottom:295.200000px;}
.y26_c01246{bottom:319.800000px;}
.y25_c01246{bottom:341.700000px;}
.y24_c01246{bottom:363.900000px;}
.y23_c01246{bottom:385.800000px;}
.y22_c01246{bottom:407.700000px;}
.y21_c01246{bottom:429.600000px;}
.y20_c01246{bottom:459.300000px;}
.y1f_c01246{bottom:493.200000px;}
.y1e_c01246{bottom:520.800000px;}
.y1d_c01246{bottom:542.700000px;}
.y1c_c01246{bottom:564.600000px;}
.y1b_c01246{bottom:586.800000px;}
.y1a_c01246{bottom:608.700000px;}
.y19_c01246{bottom:630.600000px;}
.y18_c01246{bottom:652.500000px;}
.y17_c01246{bottom:674.700000px;}
.y16_c01246{bottom:696.600000px;}
.y15_c01246{bottom:718.500000px;}
.y14_c01246{bottom:740.400000px;}
.y13_c01246{bottom:762.600000px;}
.y12_c01246{bottom:784.500000px;}
.y11_c01246{bottom:806.400000px;}
.y10_c01246{bottom:828.300000px;}
.yf_c01246{bottom:850.500000px;}
.ye_c01246{bottom:872.400000px;}
.yd_c01246{bottom:894.300000px;}
.yc_c01246{bottom:916.200000px;}
.yb_c01246{bottom:938.400000px;}
.ya_c01246{bottom:960.300000px;}
.y9_c01246{bottom:982.200000px;}
.y8_c01246{bottom:1004.100000px;}
.y7_c01246{bottom:1035.300000px;}
.y6_c01246{bottom:1062.900000px;}
.y5_c01246{bottom:1088.700000px;}
.y4_c01246{bottom:1118.400000px;}
.y1_c01246{bottom:1163.700000px;}
.h2_c01246{height:35.991211px;}
.h4_c01246{height:43.066406px;}
.h1_c01246{height:43.564453px;}
.h3_c01246{height:52.277344px;}
.h5_c01246{height:60.990234px;}
.h0_c01246{height:1263.000000px;}
.w0_c01246{width:893.100000px;}
.w1_c01246{width:893.250000px;}
.x0_c01246{left:0.000000px;}
.x1_c01246{left:84.900000px;}
.x4_c01246{left:99.900000px;}
.x3_c01246{left:442.500000px;}
.x2_c01246{left:446.400000px;}
@media print{
.v0_c01246{vertical-align:0.000000pt;}
.ls12_c01246{letter-spacing:-1.333333pt;}
.ls16_c01246{letter-spacing:-0.960000pt;}
.ls1a_c01246{letter-spacing:-0.800000pt;}
.ls1c_c01246{letter-spacing:-0.586667pt;}
.ls13_c01246{letter-spacing:-0.480000pt;}
.ls1d_c01246{letter-spacing:-0.448000pt;}
.ls14_c01246{letter-spacing:-0.373333pt;}
.ls17_c01246{letter-spacing:-0.298667pt;}
.ls15_c01246{letter-spacing:-0.266667pt;}
.ls1b_c01246{letter-spacing:-0.224000pt;}
.ls11_c01246{letter-spacing:-0.192000pt;}
.ls18_c01246{letter-spacing:-0.160000pt;}
.ls19_c01246{letter-spacing:-0.106667pt;}
.ls10_c01246{letter-spacing:0.000000pt;}
.ls3_c01246{letter-spacing:0.053333pt;}
.lsd_c01246{letter-spacing:0.106667pt;}
.lsf_c01246{letter-spacing:0.160000pt;}
.ls4_c01246{letter-spacing:0.266667pt;}
.ls0_c01246{letter-spacing:0.480000pt;}
.ls1_c01246{letter-spacing:0.533333pt;}
.ls2_c01246{letter-spacing:0.586667pt;}
.lsa_c01246{letter-spacing:0.746667pt;}
.lsb_c01246{letter-spacing:1.813333pt;}
.ls6_c01246{letter-spacing:2.880000pt;}
.ls5_c01246{letter-spacing:3.946667pt;}
.lsc_c01246{letter-spacing:5.013333pt;}
.ls8_c01246{letter-spacing:8.208000pt;}
.ls7_c01246{letter-spacing:8.213333pt;}
.ls9_c01246{letter-spacing:9.280000pt;}
.lse_c01246{letter-spacing:54.848000pt;}
.wse_c01246{word-spacing:-16.650667pt;}
.ws6_c01246{word-spacing:-16.576000pt;}
.ws1_c01246{word-spacing:-14.272000pt;}
.ws10_c01246{word-spacing:-14.016000pt;}
.wsc_c01246{word-spacing:-12.640000pt;}
.ws4_c01246{word-spacing:-12.320000pt;}
.wsa_c01246{word-spacing:-12.160000pt;}
.ws7_c01246{word-spacing:-12.106667pt;}
.ws0_c01246{word-spacing:-12.053333pt;}
.ws9_c01246{word-spacing:-11.946667pt;}
.ws8_c01246{word-spacing:-11.893333pt;}
.ws3_c01246{word-spacing:-11.786667pt;}
.wsb_c01246{word-spacing:-11.680000pt;}
.ws2_c01246{word-spacing:-11.573333pt;}
.wsf_c01246{word-spacing:-11.466667pt;}
.wsd_c01246{word-spacing:-11.253333pt;}
.ws5_c01246{word-spacing:-11.093333pt;}
.ws34_c01246{word-spacing:-0.800000pt;}
.ws13_c01246{word-spacing:-0.586667pt;}
.ws11_c01246{word-spacing:-0.480000pt;}
.ws14_c01246{word-spacing:-0.426667pt;}
.ws22_c01246{word-spacing:-0.373333pt;}
.ws35_c01246{word-spacing:-0.106667pt;}
.ws1d_c01246{word-spacing:-0.053333pt;}
.ws12_c01246{word-spacing:0.000000pt;}
.ws21_c01246{word-spacing:0.053333pt;}
.ws23_c01246{word-spacing:0.160000pt;}
.ws18_c01246{word-spacing:0.266667pt;}
.ws17_c01246{word-spacing:0.373333pt;}
.ws16_c01246{word-spacing:0.480000pt;}
.ws3a_c01246{word-spacing:0.586667pt;}
.ws25_c01246{word-spacing:0.640000pt;}
.ws2a_c01246{word-spacing:0.960000pt;}
.ws24_c01246{word-spacing:1.013333pt;}
.ws15_c01246{word-spacing:1.333333pt;}
.ws32_c01246{word-spacing:1.760000pt;}
.ws33_c01246{word-spacing:1.973333pt;}
.ws2b_c01246{word-spacing:2.080000pt;}
.ws30_c01246{word-spacing:2.293333pt;}
.ws29_c01246{word-spacing:2.613333pt;}
.ws28_c01246{word-spacing:3.146667pt;}
.ws1a_c01246{word-spacing:3.360000pt;}
.ws1e_c01246{word-spacing:3.680000pt;}
.ws36_c01246{word-spacing:3.893333pt;}
.ws1b_c01246{word-spacing:4.213333pt;}
.ws1c_c01246{word-spacing:4.320000pt;}
.ws37_c01246{word-spacing:4.426667pt;}
.ws2f_c01246{word-spacing:4.533333pt;}
.ws2d_c01246{word-spacing:4.960000pt;}
.ws2e_c01246{word-spacing:5.120000pt;}
.ws2c_c01246{word-spacing:5.280000pt;}
.ws31_c01246{word-spacing:5.493333pt;}
.ws27_c01246{word-spacing:5.973333pt;}
.ws19_c01246{word-spacing:6.346667pt;}
.ws26_c01246{word-spacing:6.453333pt;}
.ws1f_c01246{word-spacing:8.373333pt;}
.ws20_c01246{word-spacing:8.480000pt;}
.ws39_c01246{word-spacing:9.173333pt;}
.ws38_c01246{word-spacing:9.546667pt;}
.ws3c_c01246{word-spacing:10.240000pt;}
.ws3b_c01246{word-spacing:10.613333pt;}
._5_c01246{margin-left:-2.176000pt;}
._0_c01246{margin-left:-1.178667pt;}
._1_c01246{width:1.664000pt;}
._8_c01246{width:2.746667pt;}
._6_c01246{width:4.725333pt;}
._4_c01246{width:6.549333pt;}
._3_c01246{width:7.498667pt;}
._7_c01246{width:8.506667pt;}
._a_c01246{width:10.144000pt;}
._9_c01246{width:54.976000pt;}
._2_c01246{width:96.768000pt;}
.fs1_c01246{font-size:48.000000pt;}
.fs0_c01246{font-size:53.333333pt;}
.fs2_c01246{font-size:64.000000pt;}
.fs3_c01246{font-size:74.666667pt;}
.y0_c01246{bottom:0.000000pt;}
.y3_c01246{bottom:63.466667pt;}
.y2_c01246{bottom:78.933333pt;}
.y2d_c01246{bottom:138.400000pt;}
.y2c_c01246{bottom:157.866667pt;}
.y2b_c01246{bottom:177.333333pt;}
.y2a_c01246{bottom:197.066667pt;}
.y29_c01246{bottom:216.533333pt;}
.y28_c01246{bottom:236.000000pt;}
.y27_c01246{bottom:262.400000pt;}
.y26_c01246{bottom:284.266667pt;}
.y25_c01246{bottom:303.733333pt;}
.y24_c01246{bottom:323.466667pt;}
.y23_c01246{bottom:342.933333pt;}
.y22_c01246{bottom:362.400000pt;}
.y21_c01246{bottom:381.866667pt;}
.y20_c01246{bottom:408.266667pt;}
.y1f_c01246{bottom:438.400000pt;}
.y1e_c01246{bottom:462.933333pt;}
.y1d_c01246{bottom:482.400000pt;}
.y1c_c01246{bottom:501.866667pt;}
.y1b_c01246{bottom:521.600000pt;}
.y1a_c01246{bottom:541.066667pt;}
.y19_c01246{bottom:560.533333pt;}
.y18_c01246{bottom:580.000000pt;}
.y17_c01246{bottom:599.733333pt;}
.y16_c01246{bottom:619.200000pt;}
.y15_c01246{bottom:638.666667pt;}
.y14_c01246{bottom:658.133333pt;}
.y13_c01246{bottom:677.866667pt;}
.y12_c01246{bottom:697.333333pt;}
.y11_c01246{bottom:716.800000pt;}
.y10_c01246{bottom:736.266667pt;}
.yf_c01246{bottom:756.000000pt;}
.ye_c01246{bottom:775.466667pt;}
.yd_c01246{bottom:794.933333pt;}
.yc_c01246{bottom:814.400000pt;}
.yb_c01246{bottom:834.133333pt;}
.ya_c01246{bottom:853.600000pt;}
.y9_c01246{bottom:873.066667pt;}
.y8_c01246{bottom:892.533333pt;}
.y7_c01246{bottom:920.266667pt;}
.y6_c01246{bottom:944.800000pt;}
.y5_c01246{bottom:967.733333pt;}
.y4_c01246{bottom:994.133333pt;}
.y1_c01246{bottom:1034.400000pt;}
.h2_c01246{height:31.992188pt;}
.h4_c01246{height:38.281250pt;}
.h1_c01246{height:38.723958pt;}
.h3_c01246{height:46.468750pt;}
.h5_c01246{height:54.213542pt;}
.h0_c01246{height:1122.666667pt;}
.w0_c01246{width:793.866667pt;}
.w1_c01246{width:794.000000pt;}
.x0_c01246{left:0.000000pt;}
.x1_c01246{left:75.466667pt;}
.x4_c01246{left:88.800000pt;}
.x3_c01246{left:393.333333pt;}
.x2_c01246{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_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_d0993d481c30b01370f097f1.woff2')format("woff");}.ff1_c01247{font-family:ff1_c01247;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01247;src:url('chunks/assets/font_184c38b35126e03bf3d4cf09.woff2')format("woff");}.ff2_c01247{font-family:ff2_c01247;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0_c01247{vertical-align:0.000000px;}
.ls1c_c01247{letter-spacing:-1.080000px;}
.ls15_c01247{letter-spacing:-0.540000px;}
.ls12_c01247{letter-spacing:-0.504000px;}
.lsf_c01247{letter-spacing:-0.420000px;}
.ls14_c01247{letter-spacing:-0.300000px;}
.ls11_c01247{letter-spacing:-0.252000px;}
.ls13_c01247{letter-spacing:-0.216000px;}
.ls19_c01247{letter-spacing:-0.180000px;}
.ls1a_c01247{letter-spacing:-0.120000px;}
.ls10_c01247{letter-spacing:0.000000px;}
.ls1_c01247{letter-spacing:0.054000px;}
.ls5_c01247{letter-spacing:0.060000px;}
.ls2_c01247{letter-spacing:0.114000px;}
.ls16_c01247{letter-spacing:0.120000px;}
.ls7_c01247{letter-spacing:0.300000px;}
.ls1d_c01247{letter-spacing:0.480000px;}
.ls18_c01247{letter-spacing:0.504000px;}
.lsc_c01247{letter-spacing:0.540000px;}
.ls9_c01247{letter-spacing:0.660000px;}
.ls4_c01247{letter-spacing:0.834000px;}
.ls3_c01247{letter-spacing:0.840000px;}
.ls17_c01247{letter-spacing:0.900000px;}
.ls1b_c01247{letter-spacing:1.500000px;}
.lsd_c01247{letter-spacing:2.040000px;}
.ls8_c01247{letter-spacing:3.240000px;}
.lse_c01247{letter-spacing:4.440000px;}
.lsb_c01247{letter-spacing:5.640000px;}
.ls6_c01247{letter-spacing:6.840000px;}
.lsa_c01247{letter-spacing:9.240000px;}
.ls0_c01247{letter-spacing:61.704000px;}
.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:-18.732000px;}
.ws9_c01247{word-spacing:-16.056000px;}
.ws2_c01247{word-spacing:-15.768000px;}
.ws8_c01247{word-spacing:-14.220000px;}
.wsa_c01247{word-spacing:-13.860000px;}
.wsc_c01247{word-spacing:-13.680000px;}
.ws4_c01247{word-spacing:-13.620000px;}
.ws0_c01247{word-spacing:-13.560000px;}
.ws7_c01247{word-spacing:-13.440000px;}
.wsb_c01247{word-spacing:-13.380000px;}
.ws3_c01247{word-spacing:-13.260000px;}
.ws6_c01247{word-spacing:-13.140000px;}
.ws5_c01247{word-spacing:-13.020000px;}
.wsd_c01247{word-spacing:-12.480000px;}
.ws2c_c01247{word-spacing:-1.500000px;}
.ws19_c01247{word-spacing:-1.020000px;}
.ws1a_c01247{word-spacing:-0.900000px;}
.ws1d_c01247{word-spacing:-0.660000px;}
.ws1e_c01247{word-spacing:-0.540000px;}
.ws30_c01247{word-spacing:-0.480000px;}
.ws18_c01247{word-spacing:-0.420000px;}
.ws1c_c01247{word-spacing:-0.252000px;}
.ws1f_c01247{word-spacing:-0.180000px;}
.ws17_c01247{word-spacing:-0.120000px;}
.ws12_c01247{word-spacing:-0.060000px;}
.wsf_c01247{word-spacing:0.000000px;}
.wse_c01247{word-spacing:0.060000px;}
.ws16_c01247{word-spacing:0.180000px;}
.ws13_c01247{word-spacing:0.300000px;}
.ws15_c01247{word-spacing:0.540000px;}
.ws10_c01247{word-spacing:0.720000px;}
.ws24_c01247{word-spacing:1.140000px;}
.ws28_c01247{word-spacing:1.380000px;}
.ws2e_c01247{word-spacing:2.220000px;}
.ws27_c01247{word-spacing:2.340000px;}
.ws26_c01247{word-spacing:2.580000px;}
.ws2f_c01247{word-spacing:2.700000px;}
.ws23_c01247{word-spacing:3.180000px;}
.ws1b_c01247{word-spacing:3.540000px;}
.ws25_c01247{word-spacing:3.660000px;}
.ws2d_c01247{word-spacing:3.900000px;}
.ws14_c01247{word-spacing:4.740000px;}
.ws21_c01247{word-spacing:4.980000px;}
.ws2a_c01247{word-spacing:5.100000px;}
.ws2b_c01247{word-spacing:5.520000px;}
.ws20_c01247{word-spacing:5.940000px;}
.ws22_c01247{word-spacing:7.140000px;}
.ws29_c01247{word-spacing:9.540000px;}
.ws11_c01247{word-spacing:13.140000px;}
._6_c01247{margin-left:-2.284800px;}
._2_c01247{margin-left:-1.044000px;}
._0_c01247{width:1.380000px;}
._7_c01247{width:2.580000px;}
._4_c01247{width:4.620000px;}
._9_c01247{width:6.028800px;}
._8_c01247{width:9.840000px;}
._3_c01247{width:12.540000px;}
._5_c01247{width:61.848000px;}
._1_c01247{width:108.864000px;}
.fc1_c01247{color:rgb(0,0,0);}
.fc0_c01247{color:rgb(0,0,255);}
.fs1_c01247{font-size:54.000000px;}
.fs0_c01247{font-size:60.000000px;}
.fs3_c01247{font-size:72.000000px;}
.fs2_c01247{font-size:84.000000px;}
.y0_c01247{bottom:0.000000px;}
.y3_c01247{bottom:67.800000px;}
.y2_c01247{bottom:85.800000px;}
.y2e_c01247{bottom:137.400000px;}
.y2d_c01247{bottom:159.300000px;}
.y2c_c01247{bottom:181.500000px;}
.y2b_c01247{bottom:203.400000px;}
.y2a_c01247{bottom:225.300000px;}
.y29_c01247{bottom:247.200000px;}
.y28_c01247{bottom:269.100000px;}
.y27_c01247{bottom:291.300000px;}
.y26_c01247{bottom:313.200000px;}
.y25_c01247{bottom:335.100000px;}
.y24_c01247{bottom:357.000000px;}
.y23_c01247{bottom:386.700000px;}
.y22_c01247{bottom:411.600000px;}
.y21_c01247{bottom:433.500000px;}
.y20_c01247{bottom:455.400000px;}
.y1f_c01247{bottom:477.300000px;}
.y1e_c01247{bottom:499.500000px;}
.y1d_c01247{bottom:521.400000px;}
.y1c_c01247{bottom:543.300000px;}
.y1b_c01247{bottom:565.200000px;}
.y1a_c01247{bottom:587.400000px;}
.y19_c01247{bottom:609.300000px;}
.y18_c01247{bottom:631.200000px;}
.y17_c01247{bottom:653.100000px;}
.y16_c01247{bottom:675.000000px;}
.y15_c01247{bottom:697.200000px;}
.y14_c01247{bottom:719.100000px;}
.y13_c01247{bottom:741.000000px;}
.y12_c01247{bottom:762.900000px;}
.y11_c01247{bottom:794.100000px;}
.y10_c01247{bottom:821.700000px;}
.yf_c01247{bottom:843.600000px;}
.ye_c01247{bottom:865.800000px;}
.yd_c01247{bottom:887.700000px;}
.yc_c01247{bottom:909.600000px;}
.yb_c01247{bottom:931.500000px;}
.ya_c01247{bottom:961.200000px;}
.y9_c01247{bottom:986.100000px;}
.y8_c01247{bottom:1008.000000px;}
.y7_c01247{bottom:1029.900000px;}
.y6_c01247{bottom:1051.800000px;}
.y5_c01247{bottom:1081.500000px;}
.y4_c01247{bottom:1115.400000px;}
.y1_c01247{bottom:1163.700000px;}
.h2_c01247{height:38.759766px;}
.h5_c01247{height:43.066406px;}
.h1_c01247{height:43.564453px;}
.h4_c01247{height:52.277344px;}
.h3_c01247{height:60.990234px;}
.h0_c01247{height:1263.000000px;}
.w0_c01247{width:893.100000px;}
.w1_c01247{width:893.250000px;}
.x0_c01247{left:0.000000px;}
.x1_c01247{left:84.900000px;}
.x4_c01247{left:99.900000px;}
.x3_c01247{left:442.500000px;}
.x2_c01247{left:446.400000px;}
@media print{
.v0_c01247{vertical-align:0.000000pt;}
.ls1c_c01247{letter-spacing:-0.960000pt;}
.ls15_c01247{letter-spacing:-0.480000pt;}
.ls12_c01247{letter-spacing:-0.448000pt;}
.lsf_c01247{letter-spacing:-0.373333pt;}
.ls14_c01247{letter-spacing:-0.266667pt;}
.ls11_c01247{letter-spacing:-0.224000pt;}
.ls13_c01247{letter-spacing:-0.192000pt;}
.ls19_c01247{letter-spacing:-0.160000pt;}
.ls1a_c01247{letter-spacing:-0.106667pt;}
.ls10_c01247{letter-spacing:0.000000pt;}
.ls1_c01247{letter-spacing:0.048000pt;}
.ls5_c01247{letter-spacing:0.053333pt;}
.ls2_c01247{letter-spacing:0.101333pt;}
.ls16_c01247{letter-spacing:0.106667pt;}
.ls7_c01247{letter-spacing:0.266667pt;}
.ls1d_c01247{letter-spacing:0.426667pt;}
.ls18_c01247{letter-spacing:0.448000pt;}
.lsc_c01247{letter-spacing:0.480000pt;}
.ls9_c01247{letter-spacing:0.586667pt;}
.ls4_c01247{letter-spacing:0.741333pt;}
.ls3_c01247{letter-spacing:0.746667pt;}
.ls17_c01247{letter-spacing:0.800000pt;}
.ls1b_c01247{letter-spacing:1.333333pt;}
.lsd_c01247{letter-spacing:1.813333pt;}
.ls8_c01247{letter-spacing:2.880000pt;}
.lse_c01247{letter-spacing:3.946667pt;}
.lsb_c01247{letter-spacing:5.013333pt;}
.ls6_c01247{letter-spacing:6.080000pt;}
.lsa_c01247{letter-spacing:8.213333pt;}
.ls0_c01247{letter-spacing:54.848000pt;}
.ws1_c01247{word-spacing:-16.650667pt;}
.ws9_c01247{word-spacing:-14.272000pt;}
.ws2_c01247{word-spacing:-14.016000pt;}
.ws8_c01247{word-spacing:-12.640000pt;}
.wsa_c01247{word-spacing:-12.320000pt;}
.wsc_c01247{word-spacing:-12.160000pt;}
.ws4_c01247{word-spacing:-12.106667pt;}
.ws0_c01247{word-spacing:-12.053333pt;}
.ws7_c01247{word-spacing:-11.946667pt;}
.wsb_c01247{word-spacing:-11.893333pt;}
.ws3_c01247{word-spacing:-11.786667pt;}
.ws6_c01247{word-spacing:-11.680000pt;}
.ws5_c01247{word-spacing:-11.573333pt;}
.wsd_c01247{word-spacing:-11.093333pt;}
.ws2c_c01247{word-spacing:-1.333333pt;}
.ws19_c01247{word-spacing:-0.906667pt;}
.ws1a_c01247{word-spacing:-0.800000pt;}
.ws1d_c01247{word-spacing:-0.586667pt;}
.ws1e_c01247{word-spacing:-0.480000pt;}
.ws30_c01247{word-spacing:-0.426667pt;}
.ws18_c01247{word-spacing:-0.373333pt;}
.ws1c_c01247{word-spacing:-0.224000pt;}
.ws1f_c01247{word-spacing:-0.160000pt;}
.ws17_c01247{word-spacing:-0.106667pt;}
.ws12_c01247{word-spacing:-0.053333pt;}
.wsf_c01247{word-spacing:0.000000pt;}
.wse_c01247{word-spacing:0.053333pt;}
.ws16_c01247{word-spacing:0.160000pt;}
.ws13_c01247{word-spacing:0.266667pt;}
.ws15_c01247{word-spacing:0.480000pt;}
.ws10_c01247{word-spacing:0.640000pt;}
.ws24_c01247{word-spacing:1.013333pt;}
.ws28_c01247{word-spacing:1.226667pt;}
.ws2e_c01247{word-spacing:1.973333pt;}
.ws27_c01247{word-spacing:2.080000pt;}
.ws26_c01247{word-spacing:2.293333pt;}
.ws2f_c01247{word-spacing:2.400000pt;}
.ws23_c01247{word-spacing:2.826667pt;}
.ws1b_c01247{word-spacing:3.146667pt;}
.ws25_c01247{word-spacing:3.253333pt;}
.ws2d_c01247{word-spacing:3.466667pt;}
.ws14_c01247{word-spacing:4.213333pt;}
.ws21_c01247{word-spacing:4.426667pt;}
.ws2a_c01247{word-spacing:4.533333pt;}
.ws2b_c01247{word-spacing:4.906667pt;}
.ws20_c01247{word-spacing:5.280000pt;}
.ws22_c01247{word-spacing:6.346667pt;}
.ws29_c01247{word-spacing:8.480000pt;}
.ws11_c01247{word-spacing:11.680000pt;}
._6_c01247{margin-left:-2.030933pt;}
._2_c01247{margin-left:-0.928000pt;}
._0_c01247{width:1.226667pt;}
._7_c01247{width:2.293333pt;}
._4_c01247{width:4.106667pt;}
._9_c01247{width:5.358933pt;}
._8_c01247{width:8.746667pt;}
._3_c01247{width:11.146667pt;}
._5_c01247{width:54.976000pt;}
._1_c01247{width:96.768000pt;}
.fs1_c01247{font-size:48.000000pt;}
.fs0_c01247{font-size:53.333333pt;}
.fs3_c01247{font-size:64.000000pt;}
.fs2_c01247{font-size:74.666667pt;}
.y0_c01247{bottom:0.000000pt;}
.y3_c01247{bottom:60.266667pt;}
.y2_c01247{bottom:76.266667pt;}
.y2e_c01247{bottom:122.133333pt;}
.y2d_c01247{bottom:141.600000pt;}
.y2c_c01247{bottom:161.333333pt;}
.y2b_c01247{bottom:180.800000pt;}
.y2a_c01247{bottom:200.266667pt;}
.y29_c01247{bottom:219.733333pt;}
.y28_c01247{bottom:239.200000pt;}
.y27_c01247{bottom:258.933333pt;}
.y26_c01247{bottom:278.400000pt;}
.y25_c01247{bottom:297.866667pt;}
.y24_c01247{bottom:317.333333pt;}
.y23_c01247{bottom:343.733333pt;}
.y22_c01247{bottom:365.866667pt;}
.y21_c01247{bottom:385.333333pt;}
.y20_c01247{bottom:404.800000pt;}
.y1f_c01247{bottom:424.266667pt;}
.y1e_c01247{bottom:444.000000pt;}
.y1d_c01247{bottom:463.466667pt;}
.y1c_c01247{bottom:482.933333pt;}
.y1b_c01247{bottom:502.400000pt;}
.y1a_c01247{bottom:522.133333pt;}
.y19_c01247{bottom:541.600000pt;}
.y18_c01247{bottom:561.066667pt;}
.y17_c01247{bottom:580.533333pt;}
.y16_c01247{bottom:600.000000pt;}
.y15_c01247{bottom:619.733333pt;}
.y14_c01247{bottom:639.200000pt;}
.y13_c01247{bottom:658.666667pt;}
.y12_c01247{bottom:678.133333pt;}
.y11_c01247{bottom:705.866667pt;}
.y10_c01247{bottom:730.400000pt;}
.yf_c01247{bottom:749.866667pt;}
.ye_c01247{bottom:769.600000pt;}
.yd_c01247{bottom:789.066667pt;}
.yc_c01247{bottom:808.533333pt;}
.yb_c01247{bottom:828.000000pt;}
.ya_c01247{bottom:854.400000pt;}
.y9_c01247{bottom:876.533333pt;}
.y8_c01247{bottom:896.000000pt;}
.y7_c01247{bottom:915.466667pt;}
.y6_c01247{bottom:934.933333pt;}
.y5_c01247{bottom:961.333333pt;}
.y4_c01247{bottom:991.466667pt;}
.y1_c01247{bottom:1034.400000pt;}
.h2_c01247{height:34.453125pt;}
.h5_c01247{height:38.281250pt;}
.h1_c01247{height:38.723958pt;}
.h4_c01247{height:46.468750pt;}
.h3_c01247{height:54.213542pt;}
.h0_c01247{height:1122.666667pt;}
.w0_c01247{width:793.866667pt;}
.w1_c01247{width:794.000000pt;}
.x0_c01247{left:0.000000pt;}
.x1_c01247{left:75.466667pt;}
.x4_c01247{left:88.800000pt;}
.x3_c01247{left:393.333333pt;}
.x2_c01247{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_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_94d68b95b0ac3ba0d9bf0fb1.woff2')format("woff");}.ff1_c01248{font-family:ff1_c01248;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01248;src:url('chunks/assets/font_c8cf22335dcf9a9b46a4f7a0.woff2')format("woff");}.ff2_c01248{font-family:ff2_c01248;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01248;src:url('chunks/assets/font_f0b77eb6935dfb85416e2015.woff2')format("woff");}.ff3_c01248{font-family:ff3_c01248;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01248{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01248{vertical-align:0.000000px;}
.lsb_c01248{letter-spacing:-1.104000px;}
.lsc_c01248{letter-spacing:-0.528000px;}
.ls8_c01248{letter-spacing:-0.336000px;}
.ls6_c01248{letter-spacing:-0.216000px;}
.lsa_c01248{letter-spacing:-0.192000px;}
.ls7_c01248{letter-spacing:-0.096000px;}
.ls5_c01248{letter-spacing:0.000000px;}
.ls2_c01248{letter-spacing:0.048000px;}
.ls0_c01248{letter-spacing:0.096000px;}
.ls4_c01248{letter-spacing:0.180000px;}
.ls9_c01248{letter-spacing:0.240000px;}
.ls1_c01248{letter-spacing:0.912000px;}
.ls3_c01248{letter-spacing:5.952000px;}
.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;}
}
.ws0_c01248{word-spacing:-13.560000px;}
.ws1_c01248{word-spacing:-10.848000px;}
.ws3_c01248{word-spacing:-10.656000px;}
.ws2_c01248{word-spacing:-10.512000px;}
.ws5_c01248{word-spacing:-10.320000px;}
.ws4_c01248{word-spacing:-9.744000px;}
.ws6_c01248{word-spacing:-0.540000px;}
.ws18_c01248{word-spacing:-0.048000px;}
.ws7_c01248{word-spacing:0.000000px;}
.ws16_c01248{word-spacing:0.096000px;}
.ws17_c01248{word-spacing:0.144000px;}
.ws11_c01248{word-spacing:0.288000px;}
.wsa_c01248{word-spacing:0.336000px;}
.ws8_c01248{word-spacing:0.720000px;}
.ws12_c01248{word-spacing:1.104000px;}
.ws13_c01248{word-spacing:1.344000px;}
.ws14_c01248{word-spacing:4.752000px;}
.ws15_c01248{word-spacing:5.088000px;}
.wsf_c01248{word-spacing:5.952000px;}
.ws10_c01248{word-spacing:6.144000px;}
.wsc_c01248{word-spacing:8.112000px;}
.wsd_c01248{word-spacing:8.304000px;}
.wse_c01248{word-spacing:8.352000px;}
.wsb_c01248{word-spacing:34.752000px;}
.ws9_c01248{word-spacing:34.848000px;}
._0_c01248{margin-left:-1.326000px;}
._1_c01248{width:1.130400px;}
._2_c01248{width:2.296800px;}
.fc1_c01248{color:rgb(0,0,0);}
.fc0_c01248{color:rgb(0,0,255);}
.fs3_c01248{font-size:48.000000px;}
.fs1_c01248{font-size:54.000000px;}
.fs0_c01248{font-size:60.000000px;}
.fs2_c01248{font-size:72.000000px;}
.y0_c01248{bottom:0.000000px;}
.y3_c01248{bottom:71.400000px;}
.y2_c01248{bottom:88.800000px;}
.y10_c01248{bottom:912.600000px;}
.yf_c01248{bottom:927.300000px;}
.ye_c01248{bottom:946.200000px;}
.yd_c01248{bottom:960.900000px;}
.yc_c01248{bottom:975.600000px;}
.yb_c01248{bottom:994.800000px;}
.ya_c01248{bottom:1009.500000px;}
.y9_c01248{bottom:1024.200000px;}
.y8_c01248{bottom:1043.100000px;}
.y7_c01248{bottom:1057.800000px;}
.y6_c01248{bottom:1077.000000px;}
.y5_c01248{bottom:1091.700000px;}
.y4_c01248{bottom:1118.400000px;}
.y1_c01248{bottom:1163.700000px;}
.h4_c01248{height:34.453125px;}
.h2_c01248{height:35.991211px;}
.h1_c01248{height:43.564453px;}
.h3_c01248{height:52.277344px;}
.h0_c01248{height:1263.000000px;}
.w0_c01248{width:893.100000px;}
.w1_c01248{width:893.250000px;}
.x0_c01248{left:0.000000px;}
.x1_c01248{left:84.900000px;}
.x4_c01248{left:106.200000px;}
.x3_c01248{left:442.500000px;}
.x2_c01248{left:446.400000px;}
@media print{
.v0_c01248{vertical-align:0.000000pt;}
.lsb_c01248{letter-spacing:-0.981333pt;}
.lsc_c01248{letter-spacing:-0.469333pt;}
.ls8_c01248{letter-spacing:-0.298667pt;}
.ls6_c01248{letter-spacing:-0.192000pt;}
.lsa_c01248{letter-spacing:-0.170667pt;}
.ls7_c01248{letter-spacing:-0.085333pt;}
.ls5_c01248{letter-spacing:0.000000pt;}
.ls2_c01248{letter-spacing:0.042667pt;}
.ls0_c01248{letter-spacing:0.085333pt;}
.ls4_c01248{letter-spacing:0.160000pt;}
.ls9_c01248{letter-spacing:0.213333pt;}
.ls1_c01248{letter-spacing:0.810667pt;}
.ls3_c01248{letter-spacing:5.290667pt;}
.ws0_c01248{word-spacing:-12.053333pt;}
.ws1_c01248{word-spacing:-9.642667pt;}
.ws3_c01248{word-spacing:-9.472000pt;}
.ws2_c01248{word-spacing:-9.344000pt;}
.ws5_c01248{word-spacing:-9.173333pt;}
.ws4_c01248{word-spacing:-8.661333pt;}
.ws6_c01248{word-spacing:-0.480000pt;}
.ws18_c01248{word-spacing:-0.042667pt;}
.ws7_c01248{word-spacing:0.000000pt;}
.ws16_c01248{word-spacing:0.085333pt;}
.ws17_c01248{word-spacing:0.128000pt;}
.ws11_c01248{word-spacing:0.256000pt;}
.wsa_c01248{word-spacing:0.298667pt;}
.ws8_c01248{word-spacing:0.640000pt;}
.ws12_c01248{word-spacing:0.981333pt;}
.ws13_c01248{word-spacing:1.194667pt;}
.ws14_c01248{word-spacing:4.224000pt;}
.ws15_c01248{word-spacing:4.522667pt;}
.wsf_c01248{word-spacing:5.290667pt;}
.ws10_c01248{word-spacing:5.461333pt;}
.wsc_c01248{word-spacing:7.210667pt;}
.wsd_c01248{word-spacing:7.381333pt;}
.wse_c01248{word-spacing:7.424000pt;}
.wsb_c01248{word-spacing:30.890667pt;}
.ws9_c01248{word-spacing:30.976000pt;}
._0_c01248{margin-left:-1.178667pt;}
._1_c01248{width:1.004800pt;}
._2_c01248{width:2.041600pt;}
.fs3_c01248{font-size:42.666667pt;}
.fs1_c01248{font-size:48.000000pt;}
.fs0_c01248{font-size:53.333333pt;}
.fs2_c01248{font-size:64.000000pt;}
.y0_c01248{bottom:0.000000pt;}
.y3_c01248{bottom:63.466667pt;}
.y2_c01248{bottom:78.933333pt;}
.y10_c01248{bottom:811.200000pt;}
.yf_c01248{bottom:824.266667pt;}
.ye_c01248{bottom:841.066667pt;}
.yd_c01248{bottom:854.133333pt;}
.yc_c01248{bottom:867.200000pt;}
.yb_c01248{bottom:884.266667pt;}
.ya_c01248{bottom:897.333333pt;}
.y9_c01248{bottom:910.400000pt;}
.y8_c01248{bottom:927.200000pt;}
.y7_c01248{bottom:940.266667pt;}
.y6_c01248{bottom:957.333333pt;}
.y5_c01248{bottom:970.400000pt;}
.y4_c01248{bottom:994.133333pt;}
.y1_c01248{bottom:1034.400000pt;}
.h4_c01248{height:30.625000pt;}
.h2_c01248{height:31.992188pt;}
.h1_c01248{height:38.723958pt;}
.h3_c01248{height:46.468750pt;}
.h0_c01248{height:1122.666667pt;}
.w0_c01248{width:793.866667pt;}
.w1_c01248{width:794.000000pt;}
.x0_c01248{left:0.000000pt;}
.x1_c01248{left:75.466667pt;}
.x4_c01248{left:94.400000pt;}
.x3_c01248{left:393.333333pt;}
.x2_c01248{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_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_a97faf99e400f68244ba73e8.woff2')format("woff");}.ff1_c01249{font-family:ff1_c01249;line-height:0.938965;font-style:normal;font-weight:normal;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_514d6eb5e3e259b28b02b8d5.woff2')format("woff");}.ff2_c01249{font-family:ff2_c01249;line-height:0.938965;font-style: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;}
.ls3_c01249{letter-spacing:-0.324000px;}
.ls1_c01249{letter-spacing:-0.216000px;}
.ls5_c01249{letter-spacing:-0.144000px;}
.ls2_c01249{letter-spacing:0.000000px;}
.ls0_c01249{letter-spacing:0.120240px;}
.ls4_c01249{letter-spacing:0.288000px;}
.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:-59.832000px;}
.ws1_c01249{word-spacing:-33.546960px;}
.ws8_c01249{word-spacing:-7.200000px;}
.ws5_c01249{word-spacing:-1.620000px;}
.ws2_c01249{word-spacing:0.000000px;}
.ws7_c01249{word-spacing:0.216000px;}
.ws9_c01249{word-spacing:0.432000px;}
.ws6_c01249{word-spacing:0.540000px;}
.ws3_c01249{word-spacing:0.972000px;}
.ws4_c01249{word-spacing:1.296000px;}
._1_c01249{margin-left:-10.843200px;}
._3_c01249{margin-left:-5.184000px;}
._2_c01249{margin-left:-2.700000px;}
._6_c01249{margin-left:-1.231200px;}
._0_c01249{width:1.317600px;}
._4_c01249{width:3.477600px;}
._5_c01249{width:4.590000px;}
._7_c01249{width:6.508800px;}
.fc1_c01249{color:rgb(255,255,255);}
.fc0_c01249{color:rgb(255,255,204);}
.fs2_c01249{font-size:108.000000px;}
.fs1_c01249{font-size:120.240000px;}
.fs3_c01249{font-size:144.000000px;}
.fs0_c01249{font-size:216.000000px;}
.y0_c01249{bottom:0.000000px;}
.ya_c01249{bottom:169.107000px;}
.y9_c01249{bottom:201.507000px;}
.y8_c01249{bottom:233.907000px;}
.y7_c01249{bottom:266.307000px;}
.y6_c01249{bottom:298.707000px;}
.y5_c01249{bottom:331.107000px;}
.y4_c01249{bottom:363.507000px;}
.y3_c01249{bottom:396.627000px;}
.yc_c01249{bottom:498.478950px;}
.yb_c01249{bottom:541.678950px;}
.y2_c01249{bottom:654.032850px;}
.y1_c01249{bottom:718.832850px;}
.h3_c01249{height:78.679688px;}
.h2_c01249{height:87.596719px;}
.h4_c01249{height:104.906250px;}
.h1_c01249{height:157.359375px;}
.h0_c01249{height:810.000000px;}
.w0_c01249{width:1080.000000px;}
.x0_c01249{left:0.000000px;}
.x1_c01249{left:131.100900px;}
.x4_c01249{left:189.162600px;}
.x3_c01249{left:194.186250px;}
.x5_c01249{left:280.422600px;}
.x2_c01249{left:287.160900px;}
@media print{
.v0_c01249{vertical-align:0.000000pt;}
.ls3_c01249{letter-spacing:-0.288000pt;}
.ls1_c01249{letter-spacing:-0.192000pt;}
.ls5_c01249{letter-spacing:-0.128000pt;}
.ls2_c01249{letter-spacing:0.000000pt;}
.ls0_c01249{letter-spacing:0.106880pt;}
.ls4_c01249{letter-spacing:0.256000pt;}
.ws0_c01249{word-spacing:-53.184000pt;}
.ws1_c01249{word-spacing:-29.819520pt;}
.ws8_c01249{word-spacing:-6.400000pt;}
.ws5_c01249{word-spacing:-1.440000pt;}
.ws2_c01249{word-spacing:0.000000pt;}
.ws7_c01249{word-spacing:0.192000pt;}
.ws9_c01249{word-spacing:0.384000pt;}
.ws6_c01249{word-spacing:0.480000pt;}
.ws3_c01249{word-spacing:0.864000pt;}
.ws4_c01249{word-spacing:1.152000pt;}
._1_c01249{margin-left:-9.638400pt;}
._3_c01249{margin-left:-4.608000pt;}
._2_c01249{margin-left:-2.400000pt;}
._6_c01249{margin-left:-1.094400pt;}
._0_c01249{width:1.171200pt;}
._4_c01249{width:3.091200pt;}
._5_c01249{width:4.080000pt;}
._7_c01249{width:5.785600pt;}
.fs2_c01249{font-size:96.000000pt;}
.fs1_c01249{font-size:106.880000pt;}
.fs3_c01249{font-size:128.000000pt;}
.fs0_c01249{font-size:192.000000pt;}
.y0_c01249{bottom:0.000000pt;}
.ya_c01249{bottom:150.317333pt;}
.y9_c01249{bottom:179.117333pt;}
.y8_c01249{bottom:207.917333pt;}
.y7_c01249{bottom:236.717333pt;}
.y6_c01249{bottom:265.517333pt;}
.y5_c01249{bottom:294.317333pt;}
.y4_c01249{bottom:323.117333pt;}
.y3_c01249{bottom:352.557333pt;}
.yc_c01249{bottom:443.092400pt;}
.yb_c01249{bottom:481.492400pt;}
.y2_c01249{bottom:581.362533pt;}
.y1_c01249{bottom:638.962533pt;}
.h3_c01249{height:69.937500pt;}
.h2_c01249{height:77.863750pt;}
.h4_c01249{height:93.250000pt;}
.h1_c01249{height:139.875000pt;}
.h0_c01249{height:720.000000pt;}
.w0_c01249{width:960.000000pt;}
.x0_c01249{left:0.000000pt;}
.x1_c01249{left:116.534133pt;}
.x4_c01249{left:168.144533pt;}
.x3_c01249{left:172.610000pt;}
.x5_c01249{left:249.264533pt;}
.x2_c01249{left:255.254133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c3e06437d69b02a84bff2375.woff2')format("woff");}.ff1_c01250{font-family:ff1_c01250;line-height:0.938965;font-style: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;}
.ls0_c01250{letter-spacing:-0.239760px;}
.ls1_c01250{letter-spacing:-0.192240px;}
.ls2_c01250{letter-spacing:0.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;}
}
.ws0_c01250{word-spacing:-66.413520px;}
.ws2_c01250{word-spacing:0.000000px;}
.ws1_c01250{word-spacing:1.198800px;}
._1_c01250{margin-left:-17.609184px;}
._2_c01250{margin-left:-14.302656px;}
._3_c01250{margin-left:-10.419408px;}
._0_c01250{width:1.126872px;}
.fc1_c01250{color:rgb(255,255,255);}
.fc0_c01250{color:rgb(255,255,204);}
.fs1_c01250{font-size:192.240000px;}
.fs0_c01250{font-size:239.760000px;}
.fs2_c01250{font-size:264.240000px;}
.y0_c01250{bottom:0.000000px;}
.y3_c01250{bottom:519.240000px;}
.y2_c01250{bottom:635.442060px;}
.y1_c01250{bottom:707.430000px;}
.h1_c01250{height:174.668906px;}
.h2_c01250{height:192.502969px;}
.h0_c01250{height:810.000000px;}
.w0_c01250{width:1080.000000px;}
.x0_c01250{left:0.000000px;}
.x1_c01250{left:77.373750px;}
.x2_c01250{left:251.079870px;}
.x3_c01250{left:258.007500px;}
@media print{
.v0_c01250{vertical-align:0.000000pt;}
.ls0_c01250{letter-spacing:-0.213120pt;}
.ls1_c01250{letter-spacing:-0.170880pt;}
.ls2_c01250{letter-spacing:0.000000pt;}
.ws0_c01250{word-spacing:-59.034240pt;}
.ws2_c01250{word-spacing:0.000000pt;}
.ws1_c01250{word-spacing:1.065600pt;}
._1_c01250{margin-left:-15.652608pt;}
._2_c01250{margin-left:-12.713472pt;}
._3_c01250{margin-left:-9.261696pt;}
._0_c01250{width:1.001664pt;}
.fs1_c01250{font-size:170.880000pt;}
.fs0_c01250{font-size:213.120000pt;}
.fs2_c01250{font-size:234.880000pt;}
.y0_c01250{bottom:0.000000pt;}
.y3_c01250{bottom:461.546667pt;}
.y2_c01250{bottom:564.837387pt;}
.y1_c01250{bottom:628.826667pt;}
.h1_c01250{height:155.261250pt;}
.h2_c01250{height:171.113750pt;}
.h0_c01250{height:720.000000pt;}
.w0_c01250{width:960.000000pt;}
.x0_c01250{left:0.000000pt;}
.x1_c01250{left:68.776667pt;}
.x2_c01250{left:223.182107pt;}
.x3_c01250{left:229.340000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a1107fca3b83fa1c1405a874.woff2')format("woff");}.ff1_c01251{font-family:ff1_c01251;line-height:0.938965;font-style:normal;font-weight:normal;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_467aae2b3c1a37a9d7a18661.woff2')format("woff");}.ff2_c01251{font-family:ff2_c01251;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c01251{vertical-align:-35.280000px;}
.v0_c01251{vertical-align:0.000000px;}
.ls3_c01251{letter-spacing:-0.336960px;}
.ls5_c01251{letter-spacing:-0.216000px;}
.ls4_c01251{letter-spacing:-0.084240px;}
.ls2_c01251{letter-spacing:0.000000px;}
.ls0_c01251{letter-spacing:0.037440px;}
.ls1_c01251{letter-spacing:0.288000px;}
.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;}
}
.ws1_c01251{word-spacing:-40.320000px;}
.ws0_c01251{word-spacing:-40.032000px;}
.ws2_c01251{word-spacing:-33.426720px;}
.ws8_c01251{word-spacing:-2.190240px;}
.ws3_c01251{word-spacing:-1.920672px;}
.wsa_c01251{word-spacing:-1.684800px;}
.ws7_c01251{word-spacing:-1.683360px;}
.ws5_c01251{word-spacing:-0.961920px;}
.ws9_c01251{word-spacing:-0.252720px;}
.ws6_c01251{word-spacing:-0.240480px;}
.ws4_c01251{word-spacing:0.000000px;}
._1_c01251{margin-left:-8.669304px;}
._4_c01251{margin-left:-5.587632px;}
._7_c01251{margin-left:-3.936528px;}
._6_c01251{margin-left:-2.889432px;}
._0_c01251{margin-left:-1.440000px;}
._2_c01251{width:1.274544px;}
._3_c01251{width:2.611440px;}
._5_c01251{width:4.126248px;}
.fc2_c01251{color:rgb(255,255,204);}
.fc1_c01251{color:rgb(255,255,255);}
.fc0_c01251{color:rgb(0,0,0);}
.fs3_c01251{font-size:84.240000px;}
.fs1_c01251{font-size:95.760000px;}
.fs2_c01251{font-size:120.240000px;}
.fs0_c01251{font-size:144.000000px;}
.fs4_c01251{font-size:216.000000px;}
.y0_c01251{bottom:0.000000px;}
.ya_c01251{bottom:25.072500px;}
.y9_c01251{bottom:69.490620px;}
.y6_c01251{bottom:75.865620px;}
.y8_c01251{bottom:105.502500px;}
.y5_c01251{bottom:111.877500px;}
.y1_c01251{bottom:421.885200px;}
.y4_c01251{bottom:436.615620px;}
.y3_c01251{bottom:472.627500px;}
.y2_c01251{bottom:489.750000px;}
.y7_c01251{bottom:493.627500px;}
.yb_c01251{bottom:709.477500px;}
.h3_c01251{height:61.370156px;}
.h2_c01251{height:87.596719px;}
.h1_c01251{height:104.906250px;}
.h4_c01251{height:157.359375px;}
.h0_c01251{height:810.000000px;}
.w0_c01251{width:1080.000000px;}
.x0_c01251{left:0.000000px;}
.x6_c01251{left:42.110250px;}
.x3_c01251{left:122.606250px;}
.x4_c01251{left:130.181370px;}
.x5_c01251{left:154.083750px;}
.xa_c01251{left:244.050000px;}
.xb_c01251{left:353.366250px;}
.x1_c01251{left:436.687500px;}
.x2_c01251{left:523.875150px;}
.x8_c01251{left:731.565000px;}
.x7_c01251{left:788.212500px;}
.x9_c01251{left:803.017620px;}
@media print{
.v1_c01251{vertical-align:-31.360000pt;}
.v0_c01251{vertical-align:0.000000pt;}
.ls3_c01251{letter-spacing:-0.299520pt;}
.ls5_c01251{letter-spacing:-0.192000pt;}
.ls4_c01251{letter-spacing:-0.074880pt;}
.ls2_c01251{letter-spacing:0.000000pt;}
.ls0_c01251{letter-spacing:0.033280pt;}
.ls1_c01251{letter-spacing:0.256000pt;}
.ws1_c01251{word-spacing:-35.840000pt;}
.ws0_c01251{word-spacing:-35.584000pt;}
.ws2_c01251{word-spacing:-29.712640pt;}
.ws8_c01251{word-spacing:-1.946880pt;}
.ws3_c01251{word-spacing:-1.707264pt;}
.wsa_c01251{word-spacing:-1.497600pt;}
.ws7_c01251{word-spacing:-1.496320pt;}
.ws5_c01251{word-spacing:-0.855040pt;}
.ws9_c01251{word-spacing:-0.224640pt;}
.ws6_c01251{word-spacing:-0.213760pt;}
.ws4_c01251{word-spacing:0.000000pt;}
._1_c01251{margin-left:-7.706048pt;}
._4_c01251{margin-left:-4.966784pt;}
._7_c01251{margin-left:-3.499136pt;}
._6_c01251{margin-left:-2.568384pt;}
._0_c01251{margin-left:-1.280000pt;}
._2_c01251{width:1.132928pt;}
._3_c01251{width:2.321280pt;}
._5_c01251{width:3.667776pt;}
.fs3_c01251{font-size:74.880000pt;}
.fs1_c01251{font-size:85.120000pt;}
.fs2_c01251{font-size:106.880000pt;}
.fs0_c01251{font-size:128.000000pt;}
.fs4_c01251{font-size:192.000000pt;}
.y0_c01251{bottom:0.000000pt;}
.ya_c01251{bottom:22.286667pt;}
.y9_c01251{bottom:61.769440pt;}
.y6_c01251{bottom:67.436107pt;}
.y8_c01251{bottom:93.780000pt;}
.y5_c01251{bottom:99.446667pt;}
.y1_c01251{bottom:375.009067pt;}
.y4_c01251{bottom:388.102773pt;}
.y3_c01251{bottom:420.113333pt;}
.y2_c01251{bottom:435.333333pt;}
.y7_c01251{bottom:438.780000pt;}
.yb_c01251{bottom:630.646667pt;}
.h3_c01251{height:54.551250pt;}
.h2_c01251{height:77.863750pt;}
.h1_c01251{height:93.250000pt;}
.h4_c01251{height:139.875000pt;}
.h0_c01251{height:720.000000pt;}
.w0_c01251{width:960.000000pt;}
.x0_c01251{left:0.000000pt;}
.x6_c01251{left:37.431333pt;}
.x3_c01251{left:108.983333pt;}
.x4_c01251{left:115.716773pt;}
.x5_c01251{left:136.963333pt;}
.xa_c01251{left:216.933333pt;}
.xb_c01251{left:314.103333pt;}
.x1_c01251{left:388.166667pt;}
.x2_c01251{left:465.666800pt;}
.x8_c01251{left:650.280000pt;}
.x7_c01251{left:700.633333pt;}
.x9_c01251{left:713.793440pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3b21618a4c8e59b80fa1aa6f.woff2')format("woff");}.ff1_c01252{font-family:ff1_c01252;line-height:0.938965;font-style:normal;font-weight:normal;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_467aae2b3c1a37a9d7a18661.woff2')format("woff");}.ff2_c01252{font-family:ff2_c01252;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c01252{vertical-align:-35.280000px;}
.v2_c01252{vertical-align:-29.520000px;}
.v3_c01252{vertical-align:-12.750000px;}
.v0_c01252{vertical-align:0.000000px;}
.lse_c01252{letter-spacing:-0.336960px;}
.lsc_c01252{letter-spacing:-0.335520px;}
.lsd_c01252{letter-spacing:-0.167760px;}
.lsf_c01252{letter-spacing:-0.084240px;}
.lsa_c01252{letter-spacing:0.000000px;}
.ls0_c01252{letter-spacing:0.037440px;}
.ls2_c01252{letter-spacing:0.053280px;}
.lsb_c01252{letter-spacing:0.120240px;}
.ls5_c01252{letter-spacing:0.204480px;}
.ls9_c01252{letter-spacing:0.285192px;}
.ls1_c01252{letter-spacing:0.288000px;}
.ls4_c01252{letter-spacing:0.306720px;}
.ls8_c01252{letter-spacing:0.335520px;}
.ls7_c01252{letter-spacing:47.140560px;}
.ls3_c01252{letter-spacing:540.714480px;}
.ls6_c01252{letter-spacing:585.954480px;}
.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;}
}
.ws5_c01252{word-spacing:-46.972800px;}
.ws6_c01252{word-spacing:-46.469520px;}
.ws4_c01252{word-spacing:-46.301760px;}
.ws1_c01252{word-spacing:-40.320000px;}
.ws0_c01252{word-spacing:-40.032000px;}
.ws2_c01252{word-spacing:-33.546960px;}
.ws3_c01252{word-spacing:-33.426720px;}
.wsc_c01252{word-spacing:-2.190240px;}
.ws7_c01252{word-spacing:-1.920672px;}
.wse_c01252{word-spacing:-1.684800px;}
.wsa_c01252{word-spacing:-1.683360px;}
.ws9_c01252{word-spacing:-1.082160px;}
.wsd_c01252{word-spacing:-0.252720px;}
.ws8_c01252{word-spacing:0.000000px;}
.wsb_c01252{word-spacing:2.013120px;}
._3_c01252{margin-left:-13.118832px;}
._6_c01252{margin-left:-8.509680px;}
._5_c01252{margin-left:-6.924528px;}
._1_c01252{margin-left:-5.639256px;}
._8_c01252{margin-left:-2.889432px;}
._0_c01252{margin-left:-1.440000px;}
._2_c01252{width:1.130256px;}
._4_c01252{width:2.611440px;}
._7_c01252{width:4.110912px;}
.fc3_c01252{color:rgb(255,255,204);}
.fc2_c01252{color:rgb(255,0,0);}
.fc1_c01252{color:rgb(255,255,255);}
.fc0_c01252{color:rgb(0,0,0);}
.fs3_c01252{font-size:79.920000px;}
.fs6_c01252{font-size:84.240000px;}
.fs1_c01252{font-size:95.760000px;}
.fs4_c01252{font-size:108.000000px;}
.fs2_c01252{font-size:120.240000px;}
.fs0_c01252{font-size:144.000000px;}
.fs5_c01252{font-size:167.760000px;}
.y0_c01252{bottom:0.000000px;}
.yb_c01252{bottom:25.072500px;}
.y7_c01252{bottom:56.377500px;}
.y6_c01252{bottom:114.127500px;}
.ya_c01252{bottom:164.140620px;}
.y9_c01252{bottom:214.552500px;}
.y1_c01252{bottom:326.260200px;}
.y2_c01252{bottom:394.125000px;}
.y5_c01252{bottom:528.502500px;}
.y4_c01252{bottom:625.627500px;}
.y8_c01252{bottom:677.820000px;}
.y3_c01252{bottom:682.815000px;}
.h5_c01252{height:61.370156px;}
.h3_c01252{height:78.679688px;}
.h2_c01252{height:87.596719px;}
.h1_c01252{height:104.906250px;}
.h4_c01252{height:122.215781px;}
.h0_c01252{height:810.000000px;}
.w0_c01252{width:1080.000000px;}
.x0_c01252{left:0.000000px;}
.x6_c01252{left:66.900000px;}
.x5_c01252{left:81.506250px;}
.x8_c01252{left:239.737500px;}
.xb_c01252{left:244.050000px;}
.xa_c01252{left:382.606950px;}
.x9_c01252{left:423.288750px;}
.x1_c01252{left:447.750000px;}
.x2_c01252{left:534.937500px;}
.x3_c01252{left:583.800000px;}
.x4_c01252{left:676.642500px;}
.x7_c01252{left:812.958750px;}
@media print{
.v1_c01252{vertical-align:-31.360000pt;}
.v2_c01252{vertical-align:-26.240000pt;}
.v3_c01252{vertical-align:-11.333333pt;}
.v0_c01252{vertical-align:0.000000pt;}
.lse_c01252{letter-spacing:-0.299520pt;}
.lsc_c01252{letter-spacing:-0.298240pt;}
.lsd_c01252{letter-spacing:-0.149120pt;}
.lsf_c01252{letter-spacing:-0.074880pt;}
.lsa_c01252{letter-spacing:0.000000pt;}
.ls0_c01252{letter-spacing:0.033280pt;}
.ls2_c01252{letter-spacing:0.047360pt;}
.lsb_c01252{letter-spacing:0.106880pt;}
.ls5_c01252{letter-spacing:0.181760pt;}
.ls9_c01252{letter-spacing:0.253504pt;}
.ls1_c01252{letter-spacing:0.256000pt;}
.ls4_c01252{letter-spacing:0.272640pt;}
.ls8_c01252{letter-spacing:0.298240pt;}
.ls7_c01252{letter-spacing:41.902720pt;}
.ls3_c01252{letter-spacing:480.635093pt;}
.ls6_c01252{letter-spacing:520.848427pt;}
.ws5_c01252{word-spacing:-41.753600pt;}
.ws6_c01252{word-spacing:-41.306240pt;}
.ws4_c01252{word-spacing:-41.157120pt;}
.ws1_c01252{word-spacing:-35.840000pt;}
.ws0_c01252{word-spacing:-35.584000pt;}
.ws2_c01252{word-spacing:-29.819520pt;}
.ws3_c01252{word-spacing:-29.712640pt;}
.wsc_c01252{word-spacing:-1.946880pt;}
.ws7_c01252{word-spacing:-1.707264pt;}
.wse_c01252{word-spacing:-1.497600pt;}
.wsa_c01252{word-spacing:-1.496320pt;}
.ws9_c01252{word-spacing:-0.961920pt;}
.wsd_c01252{word-spacing:-0.224640pt;}
.ws8_c01252{word-spacing:0.000000pt;}
.wsb_c01252{word-spacing:1.789440pt;}
._3_c01252{margin-left:-11.661184pt;}
._6_c01252{margin-left:-7.564160pt;}
._5_c01252{margin-left:-6.155136pt;}
._1_c01252{margin-left:-5.012672pt;}
._8_c01252{margin-left:-2.568384pt;}
._0_c01252{margin-left:-1.280000pt;}
._2_c01252{width:1.004672pt;}
._4_c01252{width:2.321280pt;}
._7_c01252{width:3.654144pt;}
.fs3_c01252{font-size:71.040000pt;}
.fs6_c01252{font-size:74.880000pt;}
.fs1_c01252{font-size:85.120000pt;}
.fs4_c01252{font-size:96.000000pt;}
.fs2_c01252{font-size:106.880000pt;}
.fs0_c01252{font-size:128.000000pt;}
.fs5_c01252{font-size:149.120000pt;}
.y0_c01252{bottom:0.000000pt;}
.yb_c01252{bottom:22.286667pt;}
.y7_c01252{bottom:50.113333pt;}
.y6_c01252{bottom:101.446667pt;}
.ya_c01252{bottom:145.902773pt;}
.y9_c01252{bottom:190.713333pt;}
.y1_c01252{bottom:290.009067pt;}
.y2_c01252{bottom:350.333333pt;}
.y5_c01252{bottom:469.780000pt;}
.y4_c01252{bottom:556.113333pt;}
.y8_c01252{bottom:602.506667pt;}
.y3_c01252{bottom:606.946667pt;}
.h5_c01252{height:54.551250pt;}
.h3_c01252{height:69.937500pt;}
.h2_c01252{height:77.863750pt;}
.h1_c01252{height:93.250000pt;}
.h4_c01252{height:108.636250pt;}
.h0_c01252{height:720.000000pt;}
.w0_c01252{width:960.000000pt;}
.x0_c01252{left:0.000000pt;}
.x6_c01252{left:59.466667pt;}
.x5_c01252{left:72.450000pt;}
.x8_c01252{left:213.100000pt;}
.xb_c01252{left:216.933333pt;}
.xa_c01252{left:340.095067pt;}
.x9_c01252{left:376.256667pt;}
.x1_c01252{left:398.000000pt;}
.x2_c01252{left:475.500000pt;}
.x3_c01252{left:518.933333pt;}
.x4_c01252{left:601.460000pt;}
.x7_c01252{left:722.630000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9712ea99b611260a97f608df.woff2')format("woff");}.ff1_c01253{font-family:ff1_c01253;line-height:0.938965;font-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_c01253{transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);}
.m2_c01253{transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);}
.m0_c01253{transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);}
.m3_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;}
.v1_c01253{vertical-align:34.500000px;}
.ls3_c01253{letter-spacing:-7.668000px;}
.ls2_c01253{letter-spacing:-0.240480px;}
.ls1_c01253{letter-spacing:-0.167760px;}
.ls0_c01253{letter-spacing:0.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;}
}
.ws3_c01253{word-spacing:-33.426720px;}
.ws1_c01253{word-spacing:-30.145097px;}
.ws0_c01253{word-spacing:-24.984138px;}
.ws2_c01253{word-spacing:-24.593659px;}
.ws4_c01253{word-spacing:-22.356000px;}
.ws6_c01253{word-spacing:-0.721440px;}
.ws5_c01253{word-spacing:1.845360px;}
._2_c01253{margin-left:-9.461664px;}
._0_c01253{margin-left:-1.279540px;}
._1_c01253{width:1.140768px;}
._4_c01253{width:7.376400px;}
._3_c01253{width:2673.533112px;}
.fc0_c01253{color:rgb(255,255,255);}
.fs2_c01253{font-size:88.466400px;}
.fs0_c01253{font-size:89.871000px;}
.fs5_c01253{font-size:108.000000px;}
.fs1_c01253{font-size:108.435600px;}
.fs4_c01253{font-size:120.240000px;}
.fs3_c01253{font-size:167.760000px;}
.y4_c01253{bottom:-0.003450px;}
.y0_c01253{bottom:0.000000px;}
.yc_c01253{bottom:71.070000px;}
.y8_c01253{bottom:106.055400px;}
.y5_c01253{bottom:128.838000px;}
.y2_c01253{bottom:134.993100px;}
.y1_c01253{bottom:157.407000px;}
.y6_c01253{bottom:162.847500px;}
.y7_c01253{bottom:247.038000px;}
.y3_c01253{bottom:249.913500px;}
.y9_c01253{bottom:420.427500px;}
.yb_c01253{bottom:673.240620px;}
.ya_c01253{bottom:700.627500px;}
.h6_c01253{height:64.449155px;}
.h2_c01253{height:65.472428px;}
.hb_c01253{height:78.679688px;}
.h4_c01253{height:78.997029px;}
.ha_c01253{height:87.596719px;}
.h9_c01253{height:122.096719px;}
.h8_c01253{height:122.215781px;}
.h3_c01253{height:133.459500px;}
.h7_c01253{height:142.498500px;}
.h1_c01253{height:178.399500px;}
.h5_c01253{height:209.242500px;}
.h0_c01253{height:810.000000px;}
.w1_c01253{width:115.390500px;}
.w3_c01253{width:116.691000px;}
.w2_c01253{width:282.508500px;}
.w4_c01253{width:323.466000px;}
.w0_c01253{width:1080.000000px;}
.x0_c01253{left:0.000000px;}
.x2_c01253{left:24.978900px;}
.x6_c01253{left:26.089950px;}
.xa_c01253{left:32.403750px;}
.x4_c01253{left:56.755800px;}
.x8_c01253{left:83.293650px;}
.x7_c01253{left:163.782000px;}
.x5_c01253{left:273.655500px;}
.xc_c01253{left:277.800000px;}
.x3_c01253{left:349.681500px;}
.x9_c01253{left:370.050000px;}
.x1_c01253{left:583.153500px;}
.xb_c01253{left:815.240100px;}
@media print{
.v0_c01253{vertical-align:0.000000pt;}
.v1_c01253{vertical-align:30.666667pt;}
.ls3_c01253{letter-spacing:-6.816000pt;}
.ls2_c01253{letter-spacing:-0.213760pt;}
.ls1_c01253{letter-spacing:-0.149120pt;}
.ls0_c01253{letter-spacing:0.000000pt;}
.ws3_c01253{word-spacing:-29.712640pt;}
.ws1_c01253{word-spacing:-26.795642pt;}
.ws0_c01253{word-spacing:-22.208123pt;}
.ws2_c01253{word-spacing:-21.861030pt;}
.ws4_c01253{word-spacing:-19.872000pt;}
.ws6_c01253{word-spacing:-0.641280pt;}
.ws5_c01253{word-spacing:1.640320pt;}
._2_c01253{margin-left:-8.410368pt;}
._0_c01253{margin-left:-1.137369pt;}
._1_c01253{width:1.014016pt;}
._4_c01253{width:6.556800pt;}
._3_c01253{width:2376.473877pt;}
.fs2_c01253{font-size:78.636800pt;}
.fs0_c01253{font-size:79.885333pt;}
.fs5_c01253{font-size:96.000000pt;}
.fs1_c01253{font-size:96.387200pt;}
.fs4_c01253{font-size:106.880000pt;}
.fs3_c01253{font-size:149.120000pt;}
.y4_c01253{bottom:-0.003067pt;}
.y0_c01253{bottom:0.000000pt;}
.yc_c01253{bottom:63.173333pt;}
.y8_c01253{bottom:94.271467pt;}
.y5_c01253{bottom:114.522667pt;}
.y2_c01253{bottom:119.993867pt;}
.y1_c01253{bottom:139.917333pt;}
.y6_c01253{bottom:144.753333pt;}
.y7_c01253{bottom:219.589333pt;}
.y3_c01253{bottom:222.145333pt;}
.y9_c01253{bottom:373.713333pt;}
.yb_c01253{bottom:598.436107pt;}
.ya_c01253{bottom:622.780000pt;}
.h6_c01253{height:57.288137pt;}
.h2_c01253{height:58.197714pt;}
.hb_c01253{height:69.937500pt;}
.h4_c01253{height:70.219581pt;}
.ha_c01253{height:77.863750pt;}
.h9_c01253{height:108.530417pt;}
.h8_c01253{height:108.636250pt;}
.h3_c01253{height:118.630667pt;}
.h7_c01253{height:126.665333pt;}
.h1_c01253{height:158.577333pt;}
.h5_c01253{height:185.993333pt;}
.h0_c01253{height:720.000000pt;}
.w1_c01253{width:102.569333pt;}
.w3_c01253{width:103.725333pt;}
.w2_c01253{width:251.118667pt;}
.w4_c01253{width:287.525333pt;}
.w0_c01253{width:960.000000pt;}
.x0_c01253{left:0.000000pt;}
.x2_c01253{left:22.203467pt;}
.x6_c01253{left:23.191067pt;}
.xa_c01253{left:28.803333pt;}
.x4_c01253{left:50.449600pt;}
.x8_c01253{left:74.038800pt;}
.x7_c01253{left:145.584000pt;}
.x5_c01253{left:243.249333pt;}
.xc_c01253{left:246.933333pt;}
.x3_c01253{left:310.828000pt;}
.x9_c01253{left:328.933333pt;}
.x1_c01253{left:518.358667pt;}
.xb_c01253{left:724.657867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2295441978f42786f7ff469c.woff2')format("woff");}.ff1_c01254{font-family:ff1_c01254;line-height:0.938965;font-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_c01254{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.v1_c01254{vertical-align:12.720240px;}
.v2_c01254{vertical-align:25.459200px;}
.ls5_c01254{letter-spacing:-1.836000px;}
.ls4_c01254{letter-spacing:-1.566720px;}
.ls6_c01254{letter-spacing:-0.324000px;}
.ls0_c01254{letter-spacing:-0.217440px;}
.ls7_c01254{letter-spacing:-0.216000px;}
.ls3_c01254{letter-spacing:-0.195840px;}
.ls1_c01254{letter-spacing:0.000000px;}
.ls2_c01254{letter-spacing:0.097920px;}
.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;}
}
.ws2_c01254{word-spacing:-30.224160px;}
.ws1_c01254{word-spacing:-30.006720px;}
.ws9_c01254{word-spacing:-29.808000px;}
.ws8_c01254{word-spacing:-29.700000px;}
.ws7_c01254{word-spacing:-28.188000px;}
.ws5_c01254{word-spacing:-27.221760px;}
.ws4_c01254{word-spacing:-27.025920px;}
.ws6_c01254{word-spacing:-25.655040px;}
.wsa_c01254{word-spacing:0.000000px;}
.ws0_c01254{word-spacing:545.567832px;}
.ws3_c01254{word-spacing:1781.752320px;}
._0_c01254{width:1.261152px;}
._1_c01254{width:2.302848px;}
.fc1_c01254{color:rgb(255,255,255);}
.fc0_c01254{color:rgb(0,0,0);}
.fs1_c01254{font-size:97.920000px;}
.fs2_c01254{font-size:108.000000px;}
.fs0_c01254{font-size:108.720000px;}
.y0_c01254{bottom:0.000000px;}
.y1_c01254{bottom:27.390000px;}
.ya_c01254{bottom:37.882350px;}
.y9_c01254{bottom:216.757500px;}
.y5_c01254{bottom:342.765000px;}
.y8_c01254{bottom:343.800000px;}
.y4_c01254{bottom:436.515000px;}
.y6_c01254{bottom:465.202350px;}
.y3_c01254{bottom:605.340000px;}
.y2_c01254{bottom:727.702350px;}
.y7_c01254{bottom:753.090000px;}
.h4_c01254{height:71.336250px;}
.h5_c01254{height:78.679688px;}
.h2_c01254{height:79.204219px;}
.h1_c01254{height:91.924459px;}
.h3_c01254{height:96.795450px;}
.h0_c01254{height:810.000000px;}
.w0_c01254{width:1080.000000px;}
.x0_c01254{left:0.000000px;}
.x8_c01254{left:142.492500px;}
.xa_c01254{left:189.112500px;}
.x5_c01254{left:192.300000px;}
.x9_c01254{left:265.987500px;}
.x3_c01254{left:335.362500px;}
.x6_c01254{left:342.487500px;}
.x1_c01254{left:485.362500px;}
.x2_c01254{left:595.425000px;}
.x7_c01254{left:782.362500px;}
.x4_c01254{left:955.800000px;}
@media print{
.v0_c01254{vertical-align:0.000000pt;}
.v1_c01254{vertical-align:11.306880pt;}
.v2_c01254{vertical-align:22.630400pt;}
.ls5_c01254{letter-spacing:-1.632000pt;}
.ls4_c01254{letter-spacing:-1.392640pt;}
.ls6_c01254{letter-spacing:-0.288000pt;}
.ls0_c01254{letter-spacing:-0.193280pt;}
.ls7_c01254{letter-spacing:-0.192000pt;}
.ls3_c01254{letter-spacing:-0.174080pt;}
.ls1_c01254{letter-spacing:0.000000pt;}
.ls2_c01254{letter-spacing:0.087040pt;}
.ws2_c01254{word-spacing:-26.865920pt;}
.ws1_c01254{word-spacing:-26.672640pt;}
.ws9_c01254{word-spacing:-26.496000pt;}
.ws8_c01254{word-spacing:-26.400000pt;}
.ws7_c01254{word-spacing:-25.056000pt;}
.ws5_c01254{word-spacing:-24.197120pt;}
.ws4_c01254{word-spacing:-24.023040pt;}
.ws6_c01254{word-spacing:-22.804480pt;}
.wsa_c01254{word-spacing:0.000000pt;}
.ws0_c01254{word-spacing:484.949184pt;}
.ws3_c01254{word-spacing:1583.779840pt;}
._0_c01254{width:1.121024pt;}
._1_c01254{width:2.046976pt;}
.fs1_c01254{font-size:87.040000pt;}
.fs2_c01254{font-size:96.000000pt;}
.fs0_c01254{font-size:96.640000pt;}
.y0_c01254{bottom:0.000000pt;}
.y1_c01254{bottom:24.346667pt;}
.ya_c01254{bottom:33.673200pt;}
.y9_c01254{bottom:192.673333pt;}
.y5_c01254{bottom:304.680000pt;}
.y8_c01254{bottom:305.600000pt;}
.y4_c01254{bottom:388.013333pt;}
.y6_c01254{bottom:413.513200pt;}
.y3_c01254{bottom:538.080000pt;}
.y2_c01254{bottom:646.846533pt;}
.y7_c01254{bottom:669.413333pt;}
.h4_c01254{height:63.410000pt;}
.h5_c01254{height:69.937500pt;}
.h2_c01254{height:70.403750pt;}
.h1_c01254{height:81.710630pt;}
.h3_c01254{height:86.040400pt;}
.h0_c01254{height:720.000000pt;}
.w0_c01254{width:960.000000pt;}
.x0_c01254{left:0.000000pt;}
.x8_c01254{left:126.660000pt;}
.xa_c01254{left:168.100000pt;}
.x5_c01254{left:170.933333pt;}
.x9_c01254{left:236.433333pt;}
.x3_c01254{left:298.100000pt;}
.x6_c01254{left:304.433333pt;}
.x1_c01254{left:431.433333pt;}
.x2_c01254{left:529.266667pt;}
.x7_c01254{left:695.433333pt;}
.x4_c01254{left:849.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_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_fa2d1f037c9c1d8ee8b6dbb7.woff2')format("woff");}.ff1_c01255{font-family:ff1_c01255;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c01255{transform:matrix(0.000000,-0.250638,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250638,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250638,0.250000,0.000000,0,0);}
.m0_c01255{transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);}
.m2_c01255{transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.v2_c01255{vertical-align:-235.158300px;}
.v1_c01255{vertical-align:-104.337929px;}
.v0_c01255{vertical-align:0.000000px;}
.v3_c01255{vertical-align:13.892429px;}
.v4_c01255{vertical-align:108.245174px;}
.ls5_c01255{letter-spacing:0.000000px;}
.ls0_c01255{letter-spacing:5.780530px;}
.ls2_c01255{letter-spacing:101.298960px;}
.ls1_c01255{letter-spacing:106.508621px;}
.ls3_c01255{letter-spacing:109.981728px;}
.ls4_c01255{letter-spacing:1445.825585px;}
.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:-8.875718px;}
.ws2_c01255{word-spacing:0.000000px;}
.ws1_c01255{word-spacing:1.736554px;}
._b_c01255{margin-left:-57.737880px;}
._1e_c01255{margin-left:-6.027296px;}
._7_c01255{margin-left:-4.234111px;}
._10_c01255{margin-left:-2.529216px;}
._f_c01255{margin-left:-1.180301px;}
._22_c01255{width:2.224025px;}
._1d_c01255{width:3.255422px;}
._1_c01255{width:5.071464px;}
._d_c01255{width:6.418681px;}
._19_c01255{width:9.180000px;}
._15_c01255{width:12.093708px;}
._3_c01255{width:15.214392px;}
._1f_c01255{width:16.846117px;}
._21_c01255{width:18.504000px;}
._e_c01255{width:20.908186px;}
._13_c01255{width:22.510022px;}
._1b_c01255{width:24.110630px;}
._18_c01255{width:25.385635px;}
._4_c01255{width:27.216857px;}
._1a_c01255{width:28.619143px;}
._1c_c01255{width:30.429019px;}
._11_c01255{width:31.446586px;}
._17_c01255{width:33.633216px;}
._16_c01255{width:37.434578px;}
._2_c01255{width:43.276493px;}
._12_c01255{width:45.357274px;}
._6_c01255{width:48.499819px;}
._9_c01255{width:49.971982px;}
._0_c01255{width:52.067030px;}
._c_c01255{width:53.696228px;}
._8_c01255{width:59.470016px;}
._14_c01255{width:70.040995px;}
._a_c01255{width:73.067134px;}
._20_c01255{width:75.358080px;}
._5_c01255{width:547.887161px;}
.fc0_c01255{color:transparent;}
.fs7_c01255{font-size:72.000000px;}
.fs3_c01255{font-size:84.307200px;}
.fs5_c01255{font-size:108.000000px;}
.fs4_c01255{font-size:144.712800px;}
.fs0_c01255{font-size:169.048800px;}
.fs6_c01255{font-size:192.240000px;}
.fs1_c01255{font-size:192.459600px;}
.fs2_c01255{font-size:192.950400px;}
.y0_c01255{bottom:0.000000px;}
.y1e_c01255{bottom:27.390000px;}
.y1c_c01255{bottom:62.070000px;}
.y1_c01255{bottom:108.982350px;}
.y3_c01255{bottom:158.632650px;}
.y2_c01255{bottom:198.178350px;}
.y4_c01255{bottom:232.098515px;}
.y1a_c01255{bottom:270.336904px;}
.y19_c01255{bottom:281.515968px;}
.y5_c01255{bottom:305.419667px;}
.y18_c01255{bottom:320.081929px;}
.y16_c01255{bottom:344.863996px;}
.y6_c01255{bottom:378.885532px;}
.y17_c01255{bottom:404.811274px;}
.y1b_c01255{bottom:425.179600px;}
.y7_c01255{bottom:452.351396px;}
.y15_c01255{bottom:455.677823px;}
.y11_c01255{bottom:483.643837px;}
.y12_c01255{bottom:494.248050px;}
.y10_c01255{bottom:510.053068px;}
.y8_c01255{bottom:525.672548px;}
.yf_c01255{bottom:536.462298px;}
.ye_c01255{bottom:562.871528px;}
.yd_c01255{bottom:589.280759px;}
.y14_c01255{bottom:598.436850px;}
.y9_c01255{bottom:598.993700px;}
.yc_c01255{bottom:615.689989px;}
.yb_c01255{bottom:642.099220px;}
.y13_c01255{bottom:647.652300px;}
.ya_c01255{bottom:668.508450px;}
.y1d_c01255{bottom:736.417350px;}
.ha_c01255{height:72.000000px;}
.h4_c01255{height:84.307200px;}
.h8_c01255{height:108.000000px;}
.h5_c01255{height:144.712800px;}
.h6_c01255{height:158.605229px;}
.h1_c01255{height:169.048800px;}
.h9_c01255{height:192.240000px;}
.h2_c01255{height:192.459600px;}
.h3_c01255{height:192.950400px;}
.h7_c01255{height:252.957974px;}
.h0_c01255{height:810.000000px;}
.w0_c01255{width:1080.000000px;}
.x0_c01255{left:0.000000px;}
.x2_c01255{left:108.250950px;}
.x3_c01255{left:131.116350px;}
.x10_c01255{left:148.717500px;}
.x1_c01255{left:290.848800px;}
.xf_c01255{left:293.880000px;}
.x5_c01255{left:353.705400px;}
.x7_c01255{left:378.304650px;}
.x8_c01255{left:392.067725px;}
.x9_c01255{left:428.262083px;}
.x6_c01255{left:458.712750px;}
.xd_c01255{left:543.448915px;}
.x11_c01255{left:550.061250px;}
.xe_c01255{left:728.209747px;}
.xa_c01255{left:763.646297px;}
.xb_c01255{left:805.037053px;}
.xc_c01255{left:844.803936px;}
.x4_c01255{left:863.569200px;}
@media print{
.v2_c01255{vertical-align:-209.029600pt;}
.v1_c01255{vertical-align:-92.744826pt;}
.v0_c01255{vertical-align:0.000000pt;}
.v3_c01255{vertical-align:12.348826pt;}
.v4_c01255{vertical-align:96.217933pt;}
.ls5_c01255{letter-spacing:0.000000pt;}
.ls0_c01255{letter-spacing:5.138249pt;}
.ls2_c01255{letter-spacing:90.043520pt;}
.ls1_c01255{letter-spacing:94.674330pt;}
.ls3_c01255{letter-spacing:97.761536pt;}
.ls4_c01255{letter-spacing:1285.178298pt;}
.ws0_c01255{word-spacing:-7.889527pt;}
.ws2_c01255{word-spacing:0.000000pt;}
.ws1_c01255{word-spacing:1.543603pt;}
._b_c01255{margin-left:-51.322560pt;}
._1e_c01255{margin-left:-5.357597pt;}
._7_c01255{margin-left:-3.763654pt;}
._10_c01255{margin-left:-2.248192pt;}
._f_c01255{margin-left:-1.049156pt;}
._22_c01255{width:1.976911pt;}
._1d_c01255{width:2.893709pt;}
._1_c01255{width:4.507968pt;}
._d_c01255{width:5.705494pt;}
._19_c01255{width:8.160000pt;}
._15_c01255{width:10.749963pt;}
._3_c01255{width:13.523904pt;}
._1f_c01255{width:14.974326pt;}
._21_c01255{width:16.448000pt;}
._e_c01255{width:18.585054pt;}
._13_c01255{width:20.008909pt;}
._1b_c01255{width:21.431671pt;}
._18_c01255{width:22.565009pt;}
._4_c01255{width:24.192762pt;}
._1a_c01255{width:25.439238pt;}
._1c_c01255{width:27.048017pt;}
._11_c01255{width:27.952521pt;}
._17_c01255{width:29.896192pt;}
._16_c01255{width:33.275181pt;}
._2_c01255{width:38.467994pt;}
._12_c01255{width:40.317577pt;}
._6_c01255{width:43.110950pt;}
._9_c01255{width:44.419539pt;}
._0_c01255{width:46.281805pt;}
._c_c01255{width:47.729981pt;}
._8_c01255{width:52.862237pt;}
._14_c01255{width:62.258662pt;}
._a_c01255{width:64.948563pt;}
._20_c01255{width:66.984960pt;}
._5_c01255{width:487.010810pt;}
.fs7_c01255{font-size:64.000000pt;}
.fs3_c01255{font-size:74.939733pt;}
.fs5_c01255{font-size:96.000000pt;}
.fs4_c01255{font-size:128.633600pt;}
.fs0_c01255{font-size:150.265600pt;}
.fs6_c01255{font-size:170.880000pt;}
.fs1_c01255{font-size:171.075200pt;}
.fs2_c01255{font-size:171.511467pt;}
.y0_c01255{bottom:0.000000pt;}
.y1e_c01255{bottom:24.346667pt;}
.y1c_c01255{bottom:55.173333pt;}
.y1_c01255{bottom:96.873200pt;}
.y3_c01255{bottom:141.006800pt;}
.y2_c01255{bottom:176.158533pt;}
.y4_c01255{bottom:206.309791pt;}
.y1a_c01255{bottom:240.299470pt;}
.y19_c01255{bottom:250.236416pt;}
.y5_c01255{bottom:271.484148pt;}
.y18_c01255{bottom:284.517270pt;}
.y16_c01255{bottom:306.545774pt;}
.y6_c01255{bottom:336.787139pt;}
.y17_c01255{bottom:359.832243pt;}
.y1b_c01255{bottom:377.937422pt;}
.y7_c01255{bottom:402.090130pt;}
.y15_c01255{bottom:405.046954pt;}
.y11_c01255{bottom:429.905633pt;}
.y12_c01255{bottom:439.331600pt;}
.y10_c01255{bottom:453.380505pt;}
.y8_c01255{bottom:467.264487pt;}
.yf_c01255{bottom:476.855376pt;}
.ye_c01255{bottom:500.330247pt;}
.yd_c01255{bottom:523.805119pt;}
.y14_c01255{bottom:531.943867pt;}
.y9_c01255{bottom:532.438845pt;}
.yc_c01255{bottom:547.279990pt;}
.yb_c01255{bottom:570.754862pt;}
.y13_c01255{bottom:575.690933pt;}
.ya_c01255{bottom:594.229733pt;}
.y1d_c01255{bottom:654.593200pt;}
.ha_c01255{height:64.000000pt;}
.h4_c01255{height:74.939733pt;}
.h8_c01255{height:96.000000pt;}
.h5_c01255{height:128.633600pt;}
.h6_c01255{height:140.982426pt;}
.h1_c01255{height:150.265600pt;}
.h9_c01255{height:170.880000pt;}
.h2_c01255{height:171.075200pt;}
.h3_c01255{height:171.511467pt;}
.h7_c01255{height:224.851533pt;}
.h0_c01255{height:720.000000pt;}
.w0_c01255{width:960.000000pt;}
.x0_c01255{left:0.000000pt;}
.x2_c01255{left:96.223067pt;}
.x3_c01255{left:116.547867pt;}
.x10_c01255{left:132.193333pt;}
.x1_c01255{left:258.532267pt;}
.xf_c01255{left:261.226667pt;}
.x5_c01255{left:314.404800pt;}
.x7_c01255{left:336.270800pt;}
.x8_c01255{left:348.504645pt;}
.x9_c01255{left:380.677407pt;}
.x6_c01255{left:407.744667pt;}
.xd_c01255{left:483.065702pt;}
.x11_c01255{left:488.943333pt;}
.xe_c01255{left:647.297553pt;}
.xa_c01255{left:678.796708pt;}
.xb_c01255{left:715.588492pt;}
.xc_c01255{left:750.936832pt;}
.x4_c01255{left:767.617067pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5f55ef94abf965f046ff4002.woff2')format("woff");}.ff1_c01257{font-family:ff1_c01257;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01257{vertical-align:0.000000px;}
.ls0_c01257{letter-spacing:-0.288000px;}
.ls1_c01257{letter-spacing:-0.144000px;}
.ls2_c01257{letter-spacing:0.000000px;}
.ls3_c01257{letter-spacing:0.324000px;}
.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:-39.744000px;}
.ws1_c01257{word-spacing:-30.024000px;}
.ws3_c01257{word-spacing:-0.756000px;}
.ws2_c01257{word-spacing:1.152000px;}
._0_c01257{margin-left:-1.404000px;}
.fc0_c01257{color:rgb(0,0,0);}
.fs1_c01257{font-size:108.000000px;}
.fs0_c01257{font-size:144.000000px;}
.y0_c01257{bottom:0.000000px;}
.y1_c01257{bottom:36.750000px;}
.y4_c01257{bottom:51.420000px;}
.y3_c01257{bottom:83.820000px;}
.y2_c01257{bottom:165.954000px;}
.h2_c01257{height:78.679688px;}
.h1_c01257{height:104.906250px;}
.h0_c01257{height:810.000000px;}
.w0_c01257{width:1080.000000px;}
.x0_c01257{left:0.000000px;}
.x1_c01257{left:155.925000px;}
.x2_c01257{left:511.605000px;}
@media print{
.v0_c01257{vertical-align:0.000000pt;}
.ls0_c01257{letter-spacing:-0.256000pt;}
.ls1_c01257{letter-spacing:-0.128000pt;}
.ls2_c01257{letter-spacing:0.000000pt;}
.ls3_c01257{letter-spacing:0.288000pt;}
.ws0_c01257{word-spacing:-35.328000pt;}
.ws1_c01257{word-spacing:-26.688000pt;}
.ws3_c01257{word-spacing:-0.672000pt;}
.ws2_c01257{word-spacing:1.024000pt;}
._0_c01257{margin-left:-1.248000pt;}
.fs1_c01257{font-size:96.000000pt;}
.fs0_c01257{font-size:128.000000pt;}
.y0_c01257{bottom:0.000000pt;}
.y1_c01257{bottom:32.666667pt;}
.y4_c01257{bottom:45.706667pt;}
.y3_c01257{bottom:74.506667pt;}
.y2_c01257{bottom:147.514667pt;}
.h2_c01257{height:69.937500pt;}
.h1_c01257{height:93.250000pt;}
.h0_c01257{height:720.000000pt;}
.w0_c01257{width:960.000000pt;}
.x0_c01257{left:0.000000pt;}
.x1_c01257{left:138.600000pt;}
.x2_c01257{left:454.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ab841ff7b6cb874c3c67eb30.woff2')format("woff");}.ff1_c01258{font-family:ff1_c01258;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01258{transform:matrix(0.000000,-0.250600,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250600,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250600,0.250000,0.000000,0,0);}
.m2_c01258{transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);}
.m1_c01258{transform:matrix(0.249401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249401,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.v2_c01258{vertical-align:-54.067230px;}
.v0_c01258{vertical-align:0.000000px;}
.v3_c01258{vertical-align:8.220240px;}
.v1_c01258{vertical-align:12.104856px;}
.ls2_c01258{letter-spacing:0.000000px;}
.ls0_c01258{letter-spacing:108.254609px;}
.ls1_c01258{letter-spacing:1458.002160px;}
.sc__c01258{text-shadow:none;}
.sc0_c01258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01258{-webkit-text-stroke:0px transparent;}
.sc0_c01258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01258{word-spacing:-8.827115px;}
.ws2_c01258{word-spacing:-7.901781px;}
.ws3_c01258{word-spacing:0.000000px;}
.ws1_c01258{word-spacing:1.344984px;}
._5_c01258{margin-left:-57.430260px;}
._14_c01258{margin-left:-20.644823px;}
._1_c01258{margin-left:-4.211552px;}
._e_c01258{margin-left:-2.342776px;}
._12_c01258{margin-left:-1.064898px;}
._18_c01258{width:2.931426px;}
._3_c01258{width:5.934460px;}
._9_c01258{width:15.131070px;}
._d_c01258{width:17.606314px;}
._10_c01258{width:18.813198px;}
._f_c01258{width:25.699538px;}
._16_c01258{width:27.339426px;}
._19_c01258{width:28.640382px;}
._13_c01258{width:30.385090px;}
._15_c01258{width:31.393193px;}
._17_c01258{width:34.436574px;}
._11_c01258{width:37.413416px;}
._8_c01258{width:42.148718px;}
._a_c01258{width:43.207611px;}
._0_c01258{width:48.241418px;}
._7_c01258{width:49.390024px;}
._c_c01258{width:52.067975px;}
._6_c01258{width:53.678150px;}
._2_c01258{width:59.153168px;}
._1a_c01258{width:63.422125px;}
._1c_c01258{width:69.950056px;}
._4_c01258{width:72.094120px;}
._1b_c01258{width:98.658135px;}
._b_c01258{width:648.618534px;}
.fc0_c01258{color:transparent;}
.fs4_c01258{font-size:70.993200px;}
.fs6_c01258{font-size:108.000000px;}
.fs3_c01258{font-size:120.149400px;}
.fs5_c01258{font-size:167.760000px;}
.fs2_c01258{font-size:168.123000px;}
.fs0_c01258{font-size:191.434200px;}
.fs1_c01258{font-size:191.893800px;}
.y0_c01258{bottom:0.000000px;}
.y1a_c01258{bottom:26.632350px;}
.yb_c01258{bottom:117.329100px;}
.y2_c01258{bottom:151.472250px;}
.y3_c01258{bottom:217.387770px;}
.y1_c01258{bottom:237.586650px;}
.y4_c01258{bottom:283.207344px;}
.yf_c01258{bottom:327.050850px;}
.y5_c01258{bottom:349.122864px;}
.y6_c01258{bottom:414.942437px;}
.y10_c01258{bottom:435.099150px;}
.yc_c01258{bottom:448.615472px;}
.y7_c01258{bottom:480.857958px;}
.y18_c01258{bottom:534.353425px;}
.y8_c01258{bottom:546.677531px;}
.y17_c01258{bottom:557.674692px;}
.ye_c01258{bottom:565.711762px;}
.y16_c01258{bottom:579.913312px;}
.y15_c01258{bottom:602.151932px;}
.y9_c01258{bottom:612.593051px;}
.y14_c01258{bottom:625.473198px;}
.y13_c01258{bottom:648.794464px;}
.yd_c01258{bottom:655.733700px;}
.y19_c01258{bottom:665.115000px;}
.y12_c01258{bottom:672.115730px;}
.ya_c01258{bottom:678.412625px;}
.y11_c01258{bottom:694.354350px;}
.y1b_c01258{bottom:734.115000px;}
.h6_c01258{height:70.993200px;}
.h8_c01258{height:108.000000px;}
.h5_c01258{height:120.149400px;}
.h9_c01258{height:167.760000px;}
.h4_c01258{height:168.123000px;}
.h7_c01258{height:175.980240px;}
.h3_c01258{height:180.227856px;}
.h1_c01258{height:191.434200px;}
.h2_c01258{height:191.893800px;}
.h0_c01258{height:810.000000px;}
.w0_c01258{width:1080.000000px;}
.x0_c01258{left:0.000000px;}
.x1_c01258{left:89.071200px;}
.x2_c01258{left:136.282950px;}
.xa_c01258{left:253.237500px;}
.x3_c01258{left:288.805050px;}
.x4_c01258{left:308.428337px;}
.x5_c01258{left:399.936000px;}
.xc_c01258{left:405.675000px;}
.x6_c01258{left:465.021066px;}
.xb_c01258{left:616.050000px;}
.x7_c01258{left:681.158550px;}
.x9_c01258{left:750.431250px;}
.x8_c01258{left:804.146250px;}
@media print{
.v2_c01258{vertical-align:-48.059760pt;}
.v0_c01258{vertical-align:0.000000pt;}
.v3_c01258{vertical-align:7.306880pt;}
.v1_c01258{vertical-align:10.759872pt;}
.ls2_c01258{letter-spacing:0.000000pt;}
.ls0_c01258{letter-spacing:96.226319pt;}
.ls1_c01258{letter-spacing:1296.001920pt;}
.ws0_c01258{word-spacing:-7.846324pt;}
.ws2_c01258{word-spacing:-7.023805pt;}
.ws3_c01258{word-spacing:0.000000pt;}
.ws1_c01258{word-spacing:1.195541pt;}
._5_c01258{margin-left:-51.049120pt;}
._14_c01258{margin-left:-18.350953pt;}
._1_c01258{margin-left:-3.743602pt;}
._e_c01258{margin-left:-2.082467pt;}
._12_c01258{margin-left:-0.946576pt;}
._18_c01258{width:2.605712pt;}
._3_c01258{width:5.275076pt;}
._9_c01258{width:13.449840pt;}
._d_c01258{width:15.650057pt;}
._10_c01258{width:16.722843pt;}
._f_c01258{width:22.844034pt;}
._16_c01258{width:24.301712pt;}
._19_c01258{width:25.458118pt;}
._13_c01258{width:27.008969pt;}
._15_c01258{width:27.905060pt;}
._17_c01258{width:30.610288pt;}
._11_c01258{width:33.256370pt;}
._8_c01258{width:37.465527pt;}
._a_c01258{width:38.406765pt;}
._0_c01258{width:42.881261pt;}
._7_c01258{width:43.902243pt;}
._c_c01258{width:46.282644pt;}
._6_c01258{width:47.713911pt;}
._2_c01258{width:52.580594pt;}
._1a_c01258{width:56.375222pt;}
._1c_c01258{width:62.177827pt;}
._4_c01258{width:64.083662pt;}
._1b_c01258{width:87.696120pt;}
._b_c01258{width:576.549808pt;}
.fs4_c01258{font-size:63.105067pt;}
.fs6_c01258{font-size:96.000000pt;}
.fs3_c01258{font-size:106.799467pt;}
.fs5_c01258{font-size:149.120000pt;}
.fs2_c01258{font-size:149.442667pt;}
.fs0_c01258{font-size:170.163733pt;}
.fs1_c01258{font-size:170.572267pt;}
.y0_c01258{bottom:0.000000pt;}
.y1a_c01258{bottom:23.673200pt;}
.yb_c01258{bottom:104.292533pt;}
.y2_c01258{bottom:134.642000pt;}
.y3_c01258{bottom:193.233574pt;}
.y1_c01258{bottom:211.188133pt;}
.y4_c01258{bottom:251.739861pt;}
.yf_c01258{bottom:290.711867pt;}
.y5_c01258{bottom:310.331435pt;}
.y6_c01258{bottom:368.837722pt;}
.y10_c01258{bottom:386.754800pt;}
.yc_c01258{bottom:398.769308pt;}
.y7_c01258{bottom:427.429296pt;}
.y18_c01258{bottom:474.980823pt;}
.y8_c01258{bottom:485.935583pt;}
.y17_c01258{bottom:495.710837pt;}
.ye_c01258{bottom:502.854900pt;}
.y16_c01258{bottom:515.478499pt;}
.y15_c01258{bottom:535.246161pt;}
.y9_c01258{bottom:544.527157pt;}
.y14_c01258{bottom:555.976176pt;}
.y13_c01258{bottom:576.706190pt;}
.yd_c01258{bottom:582.874400pt;}
.y19_c01258{bottom:591.213333pt;}
.y12_c01258{bottom:597.436205pt;}
.ya_c01258{bottom:603.033444pt;}
.y11_c01258{bottom:617.203867pt;}
.y1b_c01258{bottom:652.546667pt;}
.h6_c01258{height:63.105067pt;}
.h8_c01258{height:96.000000pt;}
.h5_c01258{height:106.799467pt;}
.h9_c01258{height:149.120000pt;}
.h4_c01258{height:149.442667pt;}
.h7_c01258{height:156.426880pt;}
.h3_c01258{height:160.202539pt;}
.h1_c01258{height:170.163733pt;}
.h2_c01258{height:170.572267pt;}
.h0_c01258{height:720.000000pt;}
.w0_c01258{width:960.000000pt;}
.x0_c01258{left:0.000000pt;}
.x1_c01258{left:79.174400pt;}
.x2_c01258{left:121.140400pt;}
.xa_c01258{left:225.100000pt;}
.x3_c01258{left:256.715600pt;}
.x4_c01258{left:274.158522pt;}
.x5_c01258{left:355.498667pt;}
.xc_c01258{left:360.600000pt;}
.x6_c01258{left:413.352059pt;}
.xb_c01258{left:547.600000pt;}
.x7_c01258{left:605.474267pt;}
.x9_c01258{left:667.050000pt;}
.x8_c01258{left:714.796667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c36f6f4005889eea9f1fb758.woff2')format("woff");}.ff1_c01259{font-family:ff1_c01259;line-height:0.938965;font-style:normal;font-weight:normal;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_467aae2b3c1a37a9d7a18661.woff2')format("woff");}.ff2_c01259{font-family:ff2_c01259;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c01259{letter-spacing:-0.324000px;}
.ls0_c01259{letter-spacing:-0.167760px;}
.ls1_c01259{letter-spacing:0.324000px;}
.sc__c01259{text-shadow:none;}
.sc0_c01259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01259{-webkit-text-stroke:0px transparent;}
.sc0_c01259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01259{word-spacing:-2.192400px;}
.ws2_c01259{word-spacing:-0.756000px;}
.ws3_c01259{word-spacing:0.324000px;}
.ws1_c01259{word-spacing:3.187440px;}
._2_c01259{margin-left:-5.095080px;}
._1_c01259{margin-left:-1.744704px;}
._0_c01259{width:1.056888px;}
.fc0_c01259{color:rgb(0,0,0);}
.fs1_c01259{font-size:108.000000px;}
.fs0_c01259{font-size:167.760000px;}
.y0_c01259{bottom:0.000000px;}
.y2_c01259{bottom:26.632350px;}
.y1_c01259{bottom:720.240000px;}
.h2_c01259{height:78.679688px;}
.h1_c01259{height:122.215781px;}
.h0_c01259{height:810.000000px;}
.w0_c01259{width:1080.000000px;}
.x0_c01259{left:0.000000px;}
.x1_c01259{left:404.737500px;}
.x2_c01259{left:616.050000px;}
@media print{
.v0_c01259{vertical-align:0.000000pt;}
.ls2_c01259{letter-spacing:-0.288000pt;}
.ls0_c01259{letter-spacing:-0.149120pt;}
.ls1_c01259{letter-spacing:0.288000pt;}
.ws0_c01259{word-spacing:-1.948800pt;}
.ws2_c01259{word-spacing:-0.672000pt;}
.ws3_c01259{word-spacing:0.288000pt;}
.ws1_c01259{word-spacing:2.833280pt;}
._2_c01259{margin-left:-4.528960pt;}
._1_c01259{margin-left:-1.550848pt;}
._0_c01259{width:0.939456pt;}
.fs1_c01259{font-size:96.000000pt;}
.fs0_c01259{font-size:149.120000pt;}
.y0_c01259{bottom:0.000000pt;}
.y2_c01259{bottom:23.673200pt;}
.y1_c01259{bottom:640.213333pt;}
.h2_c01259{height:69.937500pt;}
.h1_c01259{height:108.636250pt;}
.h0_c01259{height:720.000000pt;}
.w0_c01259{width:960.000000pt;}
.x0_c01259{left:0.000000pt;}
.x1_c01259{left:359.766667pt;}
.x2_c01259{left:547.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_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_04f8d571b1ea5d696bed606e.woff2')format("woff");}.ff1_c01260{font-family:ff1_c01260;line-height:0.938965;font-style: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);}
.v1_c01260{vertical-align:-4.464000px;}
.v0_c01260{vertical-align:0.000000px;}
.ls2_c01260{letter-spacing:-0.144000px;}
.ls1_c01260{letter-spacing:0.000000px;}
.ls0_c01260{letter-spacing:0.216000px;}
.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:-30.024000px;}
.ws4_c01260{word-spacing:-0.961920px;}
.ws1_c01260{word-spacing:-0.216000px;}
.ws2_c01260{word-spacing:0.000000px;}
.ws3_c01260{word-spacing:0.432000px;}
._1_c01260{margin-left:-2.044080px;}
._2_c01260{width:1.010016px;}
._0_c01260{width:630.288000px;}
.fc1_c01260{color:rgb(0,0,0);}
.fc0_c01260{color:rgb(255,255,255);}
.fs0_c01260{font-size:108.000000px;}
.fs2_c01260{font-size:120.240000px;}
.fs1_c01260{font-size:144.000000px;}
.y0_c01260{bottom:0.000000px;}
.y4_c01260{bottom:34.440000px;}
.y3_c01260{bottom:127.687500px;}
.y2_c01260{bottom:254.632500px;}
.y1_c01260{bottom:290.445000px;}
.y5_c01260{bottom:757.132500px;}
.h1_c01260{height:78.679688px;}
.h3_c01260{height:87.596719px;}
.h2_c01260{height:104.906250px;}
.h0_c01260{height:810.000000px;}
.w0_c01260{width:1080.000000px;}
.x0_c01260{left:0.000000px;}
.x1_c01260{left:24.371250px;}
.x3_c01260{left:97.676250px;}
.x2_c01260{left:469.867500px;}
.x4_c01260{left:619.796250px;}
.x5_c01260{left:943.863750px;}
@media print{
.v1_c01260{vertical-align:-3.968000pt;}
.v0_c01260{vertical-align:0.000000pt;}
.ls2_c01260{letter-spacing:-0.128000pt;}
.ls1_c01260{letter-spacing:0.000000pt;}
.ls0_c01260{letter-spacing:0.192000pt;}
.ws0_c01260{word-spacing:-26.688000pt;}
.ws4_c01260{word-spacing:-0.855040pt;}
.ws1_c01260{word-spacing:-0.192000pt;}
.ws2_c01260{word-spacing:0.000000pt;}
.ws3_c01260{word-spacing:0.384000pt;}
._1_c01260{margin-left:-1.816960pt;}
._2_c01260{width:0.897792pt;}
._0_c01260{width:560.256000pt;}
.fs0_c01260{font-size:96.000000pt;}
.fs2_c01260{font-size:106.880000pt;}
.fs1_c01260{font-size:128.000000pt;}
.y0_c01260{bottom:0.000000pt;}
.y4_c01260{bottom:30.613333pt;}
.y3_c01260{bottom:113.500000pt;}
.y2_c01260{bottom:226.340000pt;}
.y1_c01260{bottom:258.173333pt;}
.y5_c01260{bottom:673.006667pt;}
.h1_c01260{height:69.937500pt;}
.h3_c01260{height:77.863750pt;}
.h2_c01260{height:93.250000pt;}
.h0_c01260{height:720.000000pt;}
.w0_c01260{width:960.000000pt;}
.x0_c01260{left:0.000000pt;}
.x1_c01260{left:21.663333pt;}
.x3_c01260{left:86.823333pt;}
.x2_c01260{left:417.660000pt;}
.x4_c01260{left:550.930000pt;}
.x5_c01260{left:838.990000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_20061a97bec19a261843b697.woff2')format("woff");}.ff1_c01261{font-family:ff1_c01261;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c01261{transform:matrix(0.000000,-0.250518,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250518,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250518,0.250000,0.000000,0,0);}
.m2_c01261{transform:matrix(0.000000,-0.250571,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250571,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250571,0.250000,0.000000,0,0);}
.m1_c01261{transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);}
.m5_c01261{transform:matrix(0.249481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249481,0.000000,0.000000,0.250000,0,0);}
.m3_c01261{transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249483,0.000000,0.000000,0.250000,0,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);}
.v2_c01261{vertical-align:-32.945760px;}
.v0_c01261{vertical-align:0.000000px;}
.v1_c01261{vertical-align:4.448880px;}
.ls1_c01261{letter-spacing:-0.324000px;}
.ls7_c01261{letter-spacing:-0.264960px;}
.lsb_c01261{letter-spacing:-0.132480px;}
.ls5_c01261{letter-spacing:-0.116816px;}
.ls9_c01261{letter-spacing:-0.115451px;}
.ls3_c01261{letter-spacing:0.000000px;}
.lsa_c01261{letter-spacing:0.064191px;}
.ls6_c01261{letter-spacing:0.064950px;}
.ls8_c01261{letter-spacing:0.115451px;}
.ls4_c01261{letter-spacing:0.116816px;}
.ls2_c01261{letter-spacing:0.120240px;}
.ls0_c01261{letter-spacing:124.929360px;}
.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:-29.700000px;}
.ws5_c01261{word-spacing:-1.683360px;}
.ws7_c01261{word-spacing:-0.116550px;}
.wsa_c01261{word-spacing:-0.115212px;}
.ws8_c01261{word-spacing:-0.064950px;}
.wsb_c01261{word-spacing:-0.064191px;}
.ws6_c01261{word-spacing:0.000000px;}
.ws9_c01261{word-spacing:0.264960px;}
.wsc_c01261{word-spacing:0.463680px;}
.ws4_c01261{word-spacing:0.540000px;}
.ws3_c01261{word-spacing:52.126036px;}
.ws2_c01261{word-spacing:52.742605px;}
.ws1_c01261{word-spacing:837.579816px;}
._0_c01261{margin-left:-5.475600px;}
._4_c01261{margin-left:-4.064112px;}
._2_c01261{margin-left:-1.188000px;}
._1_c01261{width:1.112400px;}
._5_c01261{width:33.876756px;}
._3_c01261{width:766.817064px;}
.fc1_c01261{color:rgb(255,255,255);}
.fc0_c01261{color:rgb(0,0,0);}
.fs7_c01261{font-size:57.606000px;}
.fs6_c01261{font-size:57.725400px;}
.fs3_c01261{font-size:58.275000px;}
.fs2_c01261{font-size:58.408200px;}
.fs8_c01261{font-size:64.191000px;}
.fs4_c01261{font-size:64.950000px;}
.fs5_c01261{font-size:66.240000px;}
.fs0_c01261{font-size:108.000000px;}
.fs1_c01261{font-size:120.240000px;}
.y0_c01261{bottom:0.000000px;}
.y11_c01261{bottom:7.336200px;}
.y6_c01261{bottom:7.423650px;}
.y3_c01261{bottom:22.627500px;}
.y13_c01261{bottom:23.932350px;}
.y12_c01261{bottom:24.047700px;}
.y8_c01261{bottom:24.217050px;}
.y7_c01261{bottom:24.333150px;}
.y14_c01261{bottom:45.436335px;}
.y9_c01261{bottom:45.975300px;}
.y15_c01261{bottom:66.908224px;}
.ya_c01261{bottom:67.701075px;}
.y16_c01261{bottom:88.412209px;}
.yb_c01261{bottom:89.459325px;}
.y17_c01261{bottom:109.916194px;}
.yc_c01261{bottom:111.217575px;}
.y18_c01261{bottom:131.388084px;}
.yd_c01261{bottom:132.943350px;}
.y19_c01261{bottom:152.859974px;}
.ye_c01261{bottom:154.669125px;}
.y2_c01261{bottom:239.062500px;}
.y4_c01261{bottom:339.570000px;}
.y1_c01261{bottom:432.382500px;}
.y10_c01261{bottom:444.960000px;}
.y1a_c01261{bottom:563.752500px;}
.y1b_c01261{bottom:604.455000px;}
.y5_c01261{bottom:624.420000px;}
.yf_c01261{bottom:781.080000px;}
.ha_c01261{height:41.966871px;}
.h9_c01261{height:42.053856px;}
.h5_c01261{height:42.454248px;}
.h4_c01261{height:42.551286px;}
.hb_c01261{height:46.764146px;}
.h6_c01261{height:47.317090px;}
.h7_c01261{height:48.256875px;}
.h1_c01261{height:78.679688px;}
.hc_c01261{height:87.596719px;}
.h2_c01261{height:92.045599px;}
.h8_c01261{height:167.400000px;}
.h3_c01261{height:169.380000px;}
.h0_c01261{height:810.000000px;}
.w2_c01261{width:217.080000px;}
.w1_c01261{width:219.600000px;}
.w0_c01261{width:1080.000000px;}
.x0_c01261{left:0.000000px;}
.x7_c01261{left:14.019150px;}
.x8_c01261{left:24.217200px;}
.x6_c01261{left:78.908250px;}
.x2_c01261{left:85.243500px;}
.x3_c01261{left:126.862500px;}
.x1_c01261{left:145.237500px;}
.x4_c01261{left:300.112500px;}
.x5_c01261{left:774.000000px;}
.xa_c01261{left:776.340000px;}
.xc_c01261{left:863.550000px;}
.x9_c01261{left:887.925000px;}
.xb_c01261{left:903.675000px;}
@media print{
.v2_c01261{vertical-align:-29.285120pt;}
.v0_c01261{vertical-align:0.000000pt;}
.v1_c01261{vertical-align:3.954560pt;}
.ls1_c01261{letter-spacing:-0.288000pt;}
.ls7_c01261{letter-spacing:-0.235520pt;}
.lsb_c01261{letter-spacing:-0.117760pt;}
.ls5_c01261{letter-spacing:-0.103837pt;}
.ls9_c01261{letter-spacing:-0.102623pt;}
.ls3_c01261{letter-spacing:0.000000pt;}
.lsa_c01261{letter-spacing:0.057059pt;}
.ls6_c01261{letter-spacing:0.057733pt;}
.ls8_c01261{letter-spacing:0.102623pt;}
.ls4_c01261{letter-spacing:0.103837pt;}
.ls2_c01261{letter-spacing:0.106880pt;}
.ls0_c01261{letter-spacing:111.048320pt;}
.ws0_c01261{word-spacing:-26.400000pt;}
.ws5_c01261{word-spacing:-1.496320pt;}
.ws7_c01261{word-spacing:-0.103600pt;}
.wsa_c01261{word-spacing:-0.102411pt;}
.ws8_c01261{word-spacing:-0.057733pt;}
.wsb_c01261{word-spacing:-0.057059pt;}
.ws6_c01261{word-spacing:0.000000pt;}
.ws9_c01261{word-spacing:0.235520pt;}
.wsc_c01261{word-spacing:0.412160pt;}
.ws4_c01261{word-spacing:0.480000pt;}
.ws3_c01261{word-spacing:46.334254pt;}
.ws2_c01261{word-spacing:46.882315pt;}
.ws1_c01261{word-spacing:744.515392pt;}
._0_c01261{margin-left:-4.867200pt;}
._4_c01261{margin-left:-3.612544pt;}
._2_c01261{margin-left:-1.056000pt;}
._1_c01261{width:0.988800pt;}
._5_c01261{width:30.112672pt;}
._3_c01261{width:681.615168pt;}
.fs7_c01261{font-size:51.205333pt;}
.fs6_c01261{font-size:51.311467pt;}
.fs3_c01261{font-size:51.800000pt;}
.fs2_c01261{font-size:51.918400pt;}
.fs8_c01261{font-size:57.058667pt;}
.fs4_c01261{font-size:57.733333pt;}
.fs5_c01261{font-size:58.880000pt;}
.fs0_c01261{font-size:96.000000pt;}
.fs1_c01261{font-size:106.880000pt;}
.y0_c01261{bottom:0.000000pt;}
.y11_c01261{bottom:6.521067pt;}
.y6_c01261{bottom:6.598800pt;}
.y3_c01261{bottom:20.113333pt;}
.y13_c01261{bottom:21.273200pt;}
.y12_c01261{bottom:21.375733pt;}
.y8_c01261{bottom:21.526267pt;}
.y7_c01261{bottom:21.629467pt;}
.y14_c01261{bottom:40.387853pt;}
.y9_c01261{bottom:40.866933pt;}
.y15_c01261{bottom:59.473977pt;}
.ya_c01261{bottom:60.178733pt;}
.y16_c01261{bottom:78.588631pt;}
.yb_c01261{bottom:79.519400pt;}
.y17_c01261{bottom:97.703284pt;}
.yc_c01261{bottom:98.860067pt;}
.y18_c01261{bottom:116.789408pt;}
.yd_c01261{bottom:118.171867pt;}
.y19_c01261{bottom:135.875532pt;}
.ye_c01261{bottom:137.483667pt;}
.y2_c01261{bottom:212.500000pt;}
.y4_c01261{bottom:301.840000pt;}
.y1_c01261{bottom:384.340000pt;}
.y10_c01261{bottom:395.520000pt;}
.y1a_c01261{bottom:501.113333pt;}
.y1b_c01261{bottom:537.293333pt;}
.y5_c01261{bottom:555.040000pt;}
.yf_c01261{bottom:694.293333pt;}
.ha_c01261{height:37.303885pt;}
.h9_c01261{height:37.381205pt;}
.h5_c01261{height:37.737109pt;}
.h4_c01261{height:37.823366pt;}
.hb_c01261{height:41.568130pt;}
.h6_c01261{height:42.059635pt;}
.h7_c01261{height:42.895000pt;}
.h1_c01261{height:69.937500pt;}
.hc_c01261{height:77.863750pt;}
.h2_c01261{height:81.818310pt;}
.h8_c01261{height:148.800000pt;}
.h3_c01261{height:150.560000pt;}
.h0_c01261{height:720.000000pt;}
.w2_c01261{width:192.960000pt;}
.w1_c01261{width:195.200000pt;}
.w0_c01261{width:960.000000pt;}
.x0_c01261{left:0.000000pt;}
.x7_c01261{left:12.461467pt;}
.x8_c01261{left:21.526400pt;}
.x6_c01261{left:70.140667pt;}
.x2_c01261{left:75.772000pt;}
.x3_c01261{left:112.766667pt;}
.x1_c01261{left:129.100000pt;}
.x4_c01261{left:266.766667pt;}
.x5_c01261{left:688.000000pt;}
.xa_c01261{left:690.080000pt;}
.xc_c01261{left:767.600000pt;}
.x9_c01261{left:789.266667pt;}
.xb_c01261{left:803.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_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_aefd3ceec2ecea25ded28217.woff2')format("woff");}.ff1_c01262{font-family:ff1_c01262;line-height:0.938965;font-style:normal;font-weight:normal;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_68605b54eee53713d842333a.woff2')format("woff");}.ff2_c01262{font-family:ff2_c01262;line-height:0.817871;font-style:normal;font-weight:normal;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_fdd565e915d960d1609adba1.woff2')format("woff");}.ff3_c01262{font-family:ff3_c01262;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c01262{vertical-align:-41.040000px;}
.v2_c01262{vertical-align:-26.640000px;}
.v0_c01262{vertical-align:0.000000px;}
.ls4_c01262{letter-spacing:-0.324000px;}
.ls7_c01262{letter-spacing:-0.216000px;}
.ls6_c01262{letter-spacing:-0.167760px;}
.ls8_c01262{letter-spacing:0.000000px;}
.ls3_c01262{letter-spacing:0.216000px;}
.ls5_c01262{letter-spacing:0.324000px;}
.ls2_c01262{letter-spacing:29.808000px;}
.ls1_c01262{letter-spacing:41.230080px;}
.ls0_c01262{letter-spacing:70.819200px;}
.sc__c01262{text-shadow:none;}
.sc1_c01262{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1_c01262{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0_c01262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01262{word-spacing:-108.000000px;}
.ws0_c01262{word-spacing:-46.469520px;}
.ws3_c01262{word-spacing:-30.240000px;}
.ws1_c01262{word-spacing:-29.808000px;}
.wsb_c01262{word-spacing:-1.512000px;}
.ws8_c01262{word-spacing:-0.864000px;}
.ws6_c01262{word-spacing:-0.756000px;}
.ws7_c01262{word-spacing:-0.108000px;}
.ws5_c01262{word-spacing:0.000000px;}
.wsa_c01262{word-spacing:0.324000px;}
.ws9_c01262{word-spacing:0.335520px;}
.ws4_c01262{word-spacing:0.540000px;}
._2_c01262{margin-left:-1.360800px;}
._0_c01262{width:1.080000px;}
._1_c01262{width:2.872800px;}
.fc0_c01262{color:rgb(255,255,255);}
.fs4_c01262{font-size:72.000000px;}
.fs1_c01262{font-size:86.400000px;}
.fs0_c01262{font-size:108.000000px;}
.fs3_c01262{font-size:112.320000px;}
.fs2_c01262{font-size:167.760000px;}
.y0_c01262{bottom:0.000000px;}
.y16_c01262{bottom:68.407500px;}
.yb_c01262{bottom:69.532500px;}
.y15_c01262{bottom:100.807500px;}
.ya_c01262{bottom:101.932500px;}
.y14_c01262{bottom:133.207500px;}
.y9_c01262{bottom:134.332500px;}
.y13_c01262{bottom:165.607350px;}
.y8_c01262{bottom:166.732500px;}
.y12_c01262{bottom:198.007350px;}
.y7_c01262{bottom:199.132500px;}
.y11_c01262{bottom:230.407350px;}
.y6_c01262{bottom:231.532500px;}
.y10_c01262{bottom:262.807500px;}
.y5_c01262{bottom:263.932500px;}
.yf_c01262{bottom:295.207500px;}
.y4_c01262{bottom:296.332500px;}
.ye_c01262{bottom:327.607500px;}
.y3_c01262{bottom:328.732350px;}
.yd_c01262{bottom:360.007350px;}
.y2_c01262{bottom:361.132350px;}
.y1_c01262{bottom:612.195000px;}
.yc_c01262{bottom:746.490000px;}
.h1_c01262{height:78.679688px;}
.h2_c01262{height:122.215781px;}
.h0_c01262{height:810.000000px;}
.w0_c01262{width:1080.000000px;}
.x0_c01262{left:0.000000px;}
.x5_c01262{left:40.800000px;}
.x4_c01262{left:66.862500px;}
.x6_c01262{left:74.631000px;}
.x2_c01262{left:600.112500px;}
.x3_c01262{left:633.952500px;}
.x1_c01262{left:894.487650px;}
@media print{
.v1_c01262{vertical-align:-36.480000pt;}
.v2_c01262{vertical-align:-23.680000pt;}
.v0_c01262{vertical-align:0.000000pt;}
.ls4_c01262{letter-spacing:-0.288000pt;}
.ls7_c01262{letter-spacing:-0.192000pt;}
.ls6_c01262{letter-spacing:-0.149120pt;}
.ls8_c01262{letter-spacing:0.000000pt;}
.ls3_c01262{letter-spacing:0.192000pt;}
.ls5_c01262{letter-spacing:0.288000pt;}
.ls2_c01262{letter-spacing:26.496000pt;}
.ls1_c01262{letter-spacing:36.648960pt;}
.ls0_c01262{letter-spacing:62.950400pt;}
.ws2_c01262{word-spacing:-96.000000pt;}
.ws0_c01262{word-spacing:-41.306240pt;}
.ws3_c01262{word-spacing:-26.880000pt;}
.ws1_c01262{word-spacing:-26.496000pt;}
.wsb_c01262{word-spacing:-1.344000pt;}
.ws8_c01262{word-spacing:-0.768000pt;}
.ws6_c01262{word-spacing:-0.672000pt;}
.ws7_c01262{word-spacing:-0.096000pt;}
.ws5_c01262{word-spacing:0.000000pt;}
.wsa_c01262{word-spacing:0.288000pt;}
.ws9_c01262{word-spacing:0.298240pt;}
.ws4_c01262{word-spacing:0.480000pt;}
._2_c01262{margin-left:-1.209600pt;}
._0_c01262{width:0.960000pt;}
._1_c01262{width:2.553600pt;}
.fs4_c01262{font-size:64.000000pt;}
.fs1_c01262{font-size:76.800000pt;}
.fs0_c01262{font-size:96.000000pt;}
.fs3_c01262{font-size:99.840000pt;}
.fs2_c01262{font-size:149.120000pt;}
.y0_c01262{bottom:0.000000pt;}
.y16_c01262{bottom:60.806667pt;}
.yb_c01262{bottom:61.806667pt;}
.y15_c01262{bottom:89.606667pt;}
.ya_c01262{bottom:90.606667pt;}
.y14_c01262{bottom:118.406667pt;}
.y9_c01262{bottom:119.406667pt;}
.y13_c01262{bottom:147.206533pt;}
.y8_c01262{bottom:148.206667pt;}
.y12_c01262{bottom:176.006533pt;}
.y7_c01262{bottom:177.006667pt;}
.y11_c01262{bottom:204.806533pt;}
.y6_c01262{bottom:205.806667pt;}
.y10_c01262{bottom:233.606667pt;}
.y5_c01262{bottom:234.606667pt;}
.yf_c01262{bottom:262.406667pt;}
.y4_c01262{bottom:263.406667pt;}
.ye_c01262{bottom:291.206667pt;}
.y3_c01262{bottom:292.206533pt;}
.yd_c01262{bottom:320.006533pt;}
.y2_c01262{bottom:321.006533pt;}
.y1_c01262{bottom:544.173333pt;}
.yc_c01262{bottom:663.546667pt;}
.h1_c01262{height:69.937500pt;}
.h2_c01262{height:108.636250pt;}
.h0_c01262{height:720.000000pt;}
.w0_c01262{width:960.000000pt;}
.x0_c01262{left:0.000000pt;}
.x5_c01262{left:36.266667pt;}
.x4_c01262{left:59.433333pt;}
.x6_c01262{left:66.338667pt;}
.x2_c01262{left:533.433333pt;}
.x3_c01262{left:563.513333pt;}
.x1_c01262{left:795.100133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_577e5c480c8e16ff66f765d4.woff2')format("woff");}.ff1_c01263{font-family:ff1_c01263;line-height:0.938965;font-style:normal;font-weight:normal;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_83fbf6a18dbd6f7914f9b6b5.woff2')format("woff");}.ff2_c01263{font-family:ff2_c01263;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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:-1.923840px;}
.ls1_c01263{letter-spacing:-0.384480px;}
.ls2_c01263{letter-spacing:-0.240480px;}
.ls5_c01263{letter-spacing:-0.216000px;}
.ls7_c01263{letter-spacing:-0.191520px;}
.ls6_c01263{letter-spacing:-0.144000px;}
.ls4_c01263{letter-spacing:0.000000px;}
.ls0_c01263{letter-spacing:0.288000px;}
.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:-39.888000px;}
.ws2_c01263{word-spacing:-29.808000px;}
.ws0_c01263{word-spacing:-26.933760px;}
.ws1_c01263{word-spacing:-25.250400px;}
.ws4_c01263{word-spacing:-6.920640px;}
.ws7_c01263{word-spacing:-1.008000px;}
.ws5_c01263{word-spacing:-0.480960px;}
.ws9_c01263{word-spacing:0.000000px;}
.ws6_c01263{word-spacing:0.216000px;}
.ws8_c01263{word-spacing:0.432000px;}
.wsa_c01263{word-spacing:0.766080px;}
.wsb_c01263{word-spacing:1.436400px;}
.wsc_c01263{word-spacing:2.394000px;}
._3_c01263{margin-left:-3.763512px;}
._2_c01263{margin-left:-1.454904px;}
._0_c01263{width:1.076544px;}
._4_c01263{width:2.736000px;}
._1_c01263{width:5.901768px;}
.fc0_c01263{color:rgb(255,255,255);}
.fs4_c01263{font-size:95.760000px;}
.fs2_c01263{font-size:108.000000px;}
.fs1_c01263{font-size:120.240000px;}
.fs3_c01263{font-size:144.000000px;}
.fs0_c01263{font-size:192.240000px;}
.y0_c01263{bottom:0.000000px;}
.yc_c01263{bottom:56.100360px;}
.y8_c01263{bottom:78.750000px;}
.yb_c01263{bottom:84.900180px;}
.ya_c01263{bottom:113.700000px;}
.y9_c01263{bottom:168.390000px;}
.y4_c01263{bottom:226.742820px;}
.y3_c01263{bottom:268.556280px;}
.y2_c01263{bottom:270.420000px;}
.y7_c01263{bottom:449.625000px;}
.y6_c01263{bottom:520.500000px;}
.y5_c01263{bottom:707.070000px;}
.y1_c01263{bottom:739.605000px;}
.h5_c01263{height:69.762656px;}
.h3_c01263{height:78.679688px;}
.h2_c01263{height:87.303164px;}
.h4_c01263{height:104.906250px;}
.h1_c01263{height:140.049844px;}
.h0_c01263{height:810.000000px;}
.w0_c01263{width:1080.000000px;}
.x0_c01263{left:0.000000px;}
.x7_c01263{left:94.425000px;}
.x8_c01263{left:113.737500px;}
.x1_c01263{left:257.362500px;}
.xa_c01263{left:513.112500px;}
.x6_c01263{left:526.977000px;}
.x3_c01263{left:595.130010px;}
.x9_c01263{left:625.225500px;}
.x4_c01263{left:657.203910px;}
.x2_c01263{left:964.687650px;}
.x5_c01263{left:980.550000px;}
@media print{
.v0_c01263{vertical-align:0.000000pt;}
.ls3_c01263{letter-spacing:-1.710080pt;}
.ls1_c01263{letter-spacing:-0.341760pt;}
.ls2_c01263{letter-spacing:-0.213760pt;}
.ls5_c01263{letter-spacing:-0.192000pt;}
.ls7_c01263{letter-spacing:-0.170240pt;}
.ls6_c01263{letter-spacing:-0.128000pt;}
.ls4_c01263{letter-spacing:0.000000pt;}
.ls0_c01263{letter-spacing:0.256000pt;}
.ws3_c01263{word-spacing:-35.456000pt;}
.ws2_c01263{word-spacing:-26.496000pt;}
.ws0_c01263{word-spacing:-23.941120pt;}
.ws1_c01263{word-spacing:-22.444800pt;}
.ws4_c01263{word-spacing:-6.151680pt;}
.ws7_c01263{word-spacing:-0.896000pt;}
.ws5_c01263{word-spacing:-0.427520pt;}
.ws9_c01263{word-spacing:0.000000pt;}
.ws6_c01263{word-spacing:0.192000pt;}
.ws8_c01263{word-spacing:0.384000pt;}
.wsa_c01263{word-spacing:0.680960pt;}
.wsb_c01263{word-spacing:1.276800pt;}
.wsc_c01263{word-spacing:2.128000pt;}
._3_c01263{margin-left:-3.345344pt;}
._2_c01263{margin-left:-1.293248pt;}
._0_c01263{width:0.956928pt;}
._4_c01263{width:2.432000pt;}
._1_c01263{width:5.246016pt;}
.fs4_c01263{font-size:85.120000pt;}
.fs2_c01263{font-size:96.000000pt;}
.fs1_c01263{font-size:106.880000pt;}
.fs3_c01263{font-size:128.000000pt;}
.fs0_c01263{font-size:170.880000pt;}
.y0_c01263{bottom:0.000000pt;}
.yc_c01263{bottom:49.866987pt;}
.y8_c01263{bottom:70.000000pt;}
.yb_c01263{bottom:75.466827pt;}
.ya_c01263{bottom:101.066667pt;}
.y9_c01263{bottom:149.680000pt;}
.y4_c01263{bottom:201.549173pt;}
.y3_c01263{bottom:238.716693pt;}
.y2_c01263{bottom:240.373333pt;}
.y7_c01263{bottom:399.666667pt;}
.y6_c01263{bottom:462.666667pt;}
.y5_c01263{bottom:628.506667pt;}
.y1_c01263{bottom:657.426667pt;}
.h5_c01263{height:62.011250pt;}
.h3_c01263{height:69.937500pt;}
.h2_c01263{height:77.602812pt;}
.h4_c01263{height:93.250000pt;}
.h1_c01263{height:124.488750pt;}
.h0_c01263{height:720.000000pt;}
.w0_c01263{width:960.000000pt;}
.x0_c01263{left:0.000000pt;}
.x7_c01263{left:83.933333pt;}
.x8_c01263{left:101.100000pt;}
.x1_c01263{left:228.766667pt;}
.xa_c01263{left:456.100000pt;}
.x6_c01263{left:468.424000pt;}
.x3_c01263{left:529.004453pt;}
.x9_c01263{left:555.756000pt;}
.x4_c01263{left:584.181253pt;}
.x2_c01263{left:857.500133pt;}
.x5_c01263{left:871.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_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_f648fea1f68b691ad48b1e18.woff2')format("woff");}.ff1_c01264{font-family:ff1_c01264;line-height:0.938965;font-style:normal;font-weight:normal;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_c612bd276e5c7ddd4d21f6a1.woff2')format("woff");}.ff2_c01264{font-family:ff2_c01264;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v2_c01264{vertical-align:-48.750000px;}
.v0_c01264{vertical-align:0.000000px;}
.v1_c01264{vertical-align:20.970000px;}
.ls4_c01264{letter-spacing:-1.923840px;}
.ls3_c01264{letter-spacing:-0.240480px;}
.ls1_c01264{letter-spacing:-0.144000px;}
.ls2_c01264{letter-spacing:0.000000px;}
.ls0_c01264{letter-spacing:0.335520px;}
.sc__c01264{text-shadow:none;}
.sc0_c01264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01264{-webkit-text-stroke:0px transparent;}
.sc0_c01264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01264{word-spacing:-26.933760px;}
.ws1_c01264{word-spacing:-25.250400px;}
.ws6_c01264{word-spacing:-8.074080px;}
.ws5_c01264{word-spacing:-1.008000px;}
.ws3_c01264{word-spacing:-0.288000px;}
.ws4_c01264{word-spacing:0.432000px;}
.ws2_c01264{word-spacing:0.503280px;}
._2_c01264{margin-left:-10.944000px;}
._0_c01264{margin-left:-1.224648px;}
._4_c01264{width:6.343920px;}
._3_c01264{width:1361.928000px;}
._1_c01264{width:1872.084168px;}
.fc1_c01264{color:rgb(255,255,204);}
.fc0_c01264{color:rgb(255,255,255);}
.fs3_c01264{font-size:120.240000px;}
.fs1_c01264{font-size:144.000000px;}
.fs0_c01264{font-size:167.760000px;}
.fs2_c01264{font-size:192.240000px;}
.y0_c01264{bottom:0.000000px;}
.y4_c01264{bottom:37.875000px;}
.y7_c01264{bottom:182.489880px;}
.y3_c01264{bottom:347.625000px;}
.y6_c01264{bottom:524.482500px;}
.y1_c01264{bottom:656.865000px;}
.y2_c01264{bottom:657.990000px;}
.y5_c01264{bottom:732.480000px;}
.h5_c01264{height:87.303164px;}
.h3_c01264{height:104.906250px;}
.h2_c01264{height:122.215781px;}
.h4_c01264{height:140.049844px;}
.h1_c01264{height:143.185781px;}
.h0_c01264{height:810.000000px;}
.w0_c01264{width:1080.000000px;}
.x0_c01264{left:0.000000px;}
.x1_c01264{left:126.487500px;}
.x5_c01264{left:238.987500px;}
.x3_c01264{left:389.737500px;}
.x4_c01264{left:407.175000px;}
.x2_c01264{left:420.487500px;}
.x6_c01264{left:980.624850px;}
.x7_c01264{left:989.612790px;}
@media print{
.v2_c01264{vertical-align:-43.333333pt;}
.v0_c01264{vertical-align:0.000000pt;}
.v1_c01264{vertical-align:18.640000pt;}
.ls4_c01264{letter-spacing:-1.710080pt;}
.ls3_c01264{letter-spacing:-0.213760pt;}
.ls1_c01264{letter-spacing:-0.128000pt;}
.ls2_c01264{letter-spacing:0.000000pt;}
.ls0_c01264{letter-spacing:0.298240pt;}
.ws0_c01264{word-spacing:-23.941120pt;}
.ws1_c01264{word-spacing:-22.444800pt;}
.ws6_c01264{word-spacing:-7.176960pt;}
.ws5_c01264{word-spacing:-0.896000pt;}
.ws3_c01264{word-spacing:-0.256000pt;}
.ws4_c01264{word-spacing:0.384000pt;}
.ws2_c01264{word-spacing:0.447360pt;}
._2_c01264{margin-left:-9.728000pt;}
._0_c01264{margin-left:-1.088576pt;}
._4_c01264{width:5.639040pt;}
._3_c01264{width:1210.602667pt;}
._1_c01264{width:1664.074816pt;}
.fs3_c01264{font-size:106.880000pt;}
.fs1_c01264{font-size:128.000000pt;}
.fs0_c01264{font-size:149.120000pt;}
.fs2_c01264{font-size:170.880000pt;}
.y0_c01264{bottom:0.000000pt;}
.y4_c01264{bottom:33.666667pt;}
.y7_c01264{bottom:162.213227pt;}
.y3_c01264{bottom:309.000000pt;}
.y6_c01264{bottom:466.206667pt;}
.y1_c01264{bottom:583.880000pt;}
.y2_c01264{bottom:584.880000pt;}
.y5_c01264{bottom:651.093333pt;}
.h5_c01264{height:77.602812pt;}
.h3_c01264{height:93.250000pt;}
.h2_c01264{height:108.636250pt;}
.h4_c01264{height:124.488750pt;}
.h1_c01264{height:127.276250pt;}
.h0_c01264{height:720.000000pt;}
.w0_c01264{width:960.000000pt;}
.x0_c01264{left:0.000000pt;}
.x1_c01264{left:112.433333pt;}
.x5_c01264{left:212.433333pt;}
.x3_c01264{left:346.433333pt;}
.x4_c01264{left:361.933333pt;}
.x2_c01264{left:373.766667pt;}
.x6_c01264{left:871.666533pt;}
.x7_c01264{left:879.655813pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_35d3fe37e441bac4cc2ec05b.woff2')format("woff");}.ff1_c01265{font-family:ff1_c01265;line-height:0.938965;font-style:normal;font-weight:normal;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_c3d1c3b485c28522fcd12503.woff2')format("woff");}.ff2_c01265{font-family:ff2_c01265;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c01265{transform:matrix(0.000000,-0.250190,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250190,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250190,0.250000,0.000000,0,0);}
.m1_c01265{transform:matrix(0.000000,-0.250477,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250477,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250477,0.250000,0.000000,0,0);}
.m3_c01265{transform:matrix(0.000000,-0.250607,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250607,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250607,0.250000,0.000000,0,0);}
.m5_c01265{transform:matrix(0.176710,-0.176843,0.176710,0.176843,0,0);-ms-transform:matrix(0.176710,-0.176843,0.176710,0.176843,0,0);-webkit-transform:matrix(0.176710,-0.176843,0.176710,0.176843,0,0);}
.m2_c01265{transform:matrix(0.249394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249394,0.000000,0.000000,0.250000,0,0);}
.m0_c01265{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m6_c01265{transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);}
.m4_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;}
.lsf_c01265{letter-spacing:-0.708158px;}
.ls12_c01265{letter-spacing:-0.324000px;}
.lsa_c01265{letter-spacing:-0.288000px;}
.ls11_c01265{letter-spacing:-0.216000px;}
.lse_c01265{letter-spacing:-0.202484px;}
.ls7_c01265{letter-spacing:-0.189137px;}
.ls3_c01265{letter-spacing:-0.189038px;}
.ls9_c01265{letter-spacing:-0.144000px;}
.ls8_c01265{letter-spacing:-0.080954px;}
.ls5_c01265{letter-spacing:-0.080912px;}
.ls6_c01265{letter-spacing:-0.080758px;}
.ls4_c01265{letter-spacing:0.000000px;}
.ls10_c01265{letter-spacing:0.101165px;}
.lsb_c01265{letter-spacing:0.167760px;}
.ls2_c01265{letter-spacing:0.216000px;}
.ls0_c01265{letter-spacing:0.273600px;}
.ls1_c01265{letter-spacing:0.288000px;}
.lsd_c01265{letter-spacing:1.012040px;}
.lsc_c01265{letter-spacing:1.922875px;}
.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;}
}
.ws6_c01265{word-spacing:-33.426720px;}
.ws7_c01265{word-spacing:-30.057576px;}
.wsa_c01265{word-spacing:-29.700000px;}
.ws8_c01265{word-spacing:-29.146740px;}
.ws9_c01265{word-spacing:-27.942847px;}
.ws5_c01265{word-spacing:-26.290015px;}
.ws2_c01265{word-spacing:-26.276338px;}
.ws15_c01265{word-spacing:-0.303496px;}
.wse_c01265{word-spacing:-0.288000px;}
.ws13_c01265{word-spacing:-0.167760px;}
.ws11_c01265{word-spacing:-0.144000px;}
.wsf_c01265{word-spacing:0.000000px;}
.wsb_c01265{word-spacing:0.189038px;}
.wsd_c01265{word-spacing:0.189137px;}
.ws16_c01265{word-spacing:0.216000px;}
.wsc_c01265{word-spacing:0.242275px;}
.ws12_c01265{word-spacing:0.432000px;}
.ws14_c01265{word-spacing:0.505827px;}
.ws10_c01265{word-spacing:0.576000px;}
.ws1_c01265{word-spacing:96.965420px;}
.ws4_c01265{word-spacing:97.015753px;}
.ws0_c01265{word-spacing:119.103053px;}
.ws3_c01265{word-spacing:119.164877px;}
._2_c01265{margin-left:-8.028215px;}
._4_c01265{margin-left:-2.160000px;}
._1_c01265{width:1.130615px;}
._3_c01265{width:2.181385px;}
._0_c01265{width:164.009435px;}
.fc0_c01265{color:rgb(0,0,0);}
.fs7_c01265{font-size:72.000000px;}
.fs2_c01265{font-size:80.758200px;}
.fs1_c01265{font-size:80.912400px;}
.fs4_c01265{font-size:80.954400px;}
.fs0_c01265{font-size:94.519200px;}
.fs3_c01265{font-size:94.568400px;}
.fsb_c01265{font-size:101.165400px;}
.fs9_c01265{font-size:101.203958px;}
.fsa_c01265{font-size:101.242200px;}
.fsc_c01265{font-size:108.000000px;}
.fs6_c01265{font-size:120.240000px;}
.fs5_c01265{font-size:144.000000px;}
.fs8_c01265{font-size:167.760000px;}
.y0_c01265{bottom:0.000000px;}
.y2_c01265{bottom:6.339600px;}
.yb_c01265{bottom:6.342750px;}
.y20_c01265{bottom:19.226400px;}
.y1_c01265{bottom:26.640000px;}
.y21_c01265{bottom:30.358490px;}
.y3_c01265{bottom:40.174500px;}
.yc_c01265{bottom:40.195350px;}
.y4_c01265{bottom:60.524100px;}
.yd_c01265{bottom:60.555450px;}
.y5_c01265{bottom:75.588750px;}
.ye_c01265{bottom:75.627900px;}
.y22_c01265{bottom:99.227250px;}
.y2a_c01265{bottom:102.570000px;}
.y27_c01265{bottom:113.890650px;}
.y19_c01265{bottom:123.315000px;}
.y6_c01265{bottom:133.103683px;}
.yf_c01265{bottom:133.172771px;}
.y23_c01265{bottom:164.680332px;}
.y1f_c01265{bottom:169.020000px;}
.y28_c01265{bottom:170.181313px;}
.y7_c01265{bottom:190.618616px;}
.y10_c01265{bottom:190.717643px;}
.y24_c01265{bottom:230.133415px;}
.y8_c01265{bottom:248.133550px;}
.y11_c01265{bottom:248.262514px;}
.y1c_c01265{bottom:264.127500px;}
.y1b_c01265{bottom:285.727500px;}
.y25_c01265{bottom:295.586497px;}
.y9_c01265{bottom:305.601223px;}
.y12_c01265{bottom:305.760101px;}
.y1a_c01265{bottom:307.327500px;}
.y1e_c01265{bottom:339.493740px;}
.y26_c01265{bottom:361.039579px;}
.ya_c01265{bottom:364.320000px;}
.y14_c01265{bottom:452.377500px;}
.y18_c01265{bottom:505.927500px;}
.y29_c01265{bottom:549.315000px;}
.y17_c01265{bottom:614.565000px;}
.y16_c01265{bottom:636.165000px;}
.y15_c01265{bottom:657.765000px;}
.y1d_c01265{bottom:685.815000px;}
.y13_c01265{bottom:754.312500px;}
.ha_c01265{height:52.453125px;}
.h4_c01265{height:58.833611px;}
.h3_c01265{height:58.945948px;}
.h7_c01265{height:58.976545px;}
.h2_c01265{height:68.858714px;}
.h6_c01265{height:68.894557px;}
.hf_c01265{height:73.700575px;}
.hd_c01265{height:73.728665px;}
.he_c01265{height:73.756525px;}
.h10_c01265{height:78.679688px;}
.h9_c01265{height:87.596719px;}
.h8_c01265{height:104.906250px;}
.hb_c01265{height:122.215781px;}
.h1_c01265{height:345.600000px;}
.h5_c01265{height:345.780000px;}
.hc_c01265{height:412.380000px;}
.h0_c01265{height:810.000000px;}
.w2_c01265{width:340.740000px;}
.w1_c01265{width:454.680000px;}
.w0_c01265{width:1080.000000px;}
.x0_c01265{left:0.000000px;}
.x4_c01265{left:19.822950px;}
.xf_c01265{left:41.861400px;}
.x5_c01265{left:45.651000px;}
.x6_c01265{left:59.433750px;}
.x10_c01265{left:71.958106px;}
.x1_c01265{left:81.000000px;}
.x3_c01265{left:88.152150px;}
.xd_c01265{left:152.587950px;}
.xb_c01265{left:182.925000px;}
.x2_c01265{left:190.009500px;}
.x8_c01265{left:192.300000px;}
.xe_c01265{left:238.501485px;}
.x7_c01265{left:418.425000px;}
.xa_c01265{left:436.612500px;}
.xc_c01265{left:607.500000px;}
.x11_c01265{left:766.800000px;}
.x9_c01265{left:833.175000px;}
@media print{
.v0_c01265{vertical-align:0.000000pt;}
.lsf_c01265{letter-spacing:-0.629474pt;}
.ls12_c01265{letter-spacing:-0.288000pt;}
.lsa_c01265{letter-spacing:-0.256000pt;}
.ls11_c01265{letter-spacing:-0.192000pt;}
.lse_c01265{letter-spacing:-0.179986pt;}
.ls7_c01265{letter-spacing:-0.168122pt;}
.ls3_c01265{letter-spacing:-0.168034pt;}
.ls9_c01265{letter-spacing:-0.128000pt;}
.ls8_c01265{letter-spacing:-0.071959pt;}
.ls5_c01265{letter-spacing:-0.071922pt;}
.ls6_c01265{letter-spacing:-0.071785pt;}
.ls4_c01265{letter-spacing:0.000000pt;}
.ls10_c01265{letter-spacing:0.089925pt;}
.lsb_c01265{letter-spacing:0.149120pt;}
.ls2_c01265{letter-spacing:0.192000pt;}
.ls0_c01265{letter-spacing:0.243200pt;}
.ls1_c01265{letter-spacing:0.256000pt;}
.lsd_c01265{letter-spacing:0.899591pt;}
.lsc_c01265{letter-spacing:1.709222pt;}
.ws6_c01265{word-spacing:-29.712640pt;}
.ws7_c01265{word-spacing:-26.717845pt;}
.wsa_c01265{word-spacing:-26.400000pt;}
.ws8_c01265{word-spacing:-25.908213pt;}
.ws9_c01265{word-spacing:-24.838086pt;}
.ws5_c01265{word-spacing:-23.368902pt;}
.ws2_c01265{word-spacing:-23.356745pt;}
.ws15_c01265{word-spacing:-0.269774pt;}
.wse_c01265{word-spacing:-0.256000pt;}
.ws13_c01265{word-spacing:-0.149120pt;}
.ws11_c01265{word-spacing:-0.128000pt;}
.wsf_c01265{word-spacing:0.000000pt;}
.wsb_c01265{word-spacing:0.168034pt;}
.wsd_c01265{word-spacing:0.168122pt;}
.ws16_c01265{word-spacing:0.192000pt;}
.wsc_c01265{word-spacing:0.215355pt;}
.ws12_c01265{word-spacing:0.384000pt;}
.ws14_c01265{word-spacing:0.449624pt;}
.ws10_c01265{word-spacing:0.512000pt;}
.ws1_c01265{word-spacing:86.191485pt;}
.ws4_c01265{word-spacing:86.236225pt;}
.ws0_c01265{word-spacing:105.869380pt;}
.ws3_c01265{word-spacing:105.924335pt;}
._2_c01265{margin-left:-7.136191pt;}
._4_c01265{margin-left:-1.920000pt;}
._1_c01265{width:1.004991pt;}
._3_c01265{width:1.939009pt;}
._0_c01265{width:145.786164pt;}
.fs7_c01265{font-size:64.000000pt;}
.fs2_c01265{font-size:71.785067pt;}
.fs1_c01265{font-size:71.922133pt;}
.fs4_c01265{font-size:71.959467pt;}
.fs0_c01265{font-size:84.017067pt;}
.fs3_c01265{font-size:84.060800pt;}
.fsb_c01265{font-size:89.924800pt;}
.fs9_c01265{font-size:89.959074pt;}
.fsa_c01265{font-size:89.993067pt;}
.fsc_c01265{font-size:96.000000pt;}
.fs6_c01265{font-size:106.880000pt;}
.fs5_c01265{font-size:128.000000pt;}
.fs8_c01265{font-size:149.120000pt;}
.y0_c01265{bottom:0.000000pt;}
.y2_c01265{bottom:5.635200pt;}
.yb_c01265{bottom:5.638000pt;}
.y20_c01265{bottom:17.090133pt;}
.y1_c01265{bottom:23.680000pt;}
.y21_c01265{bottom:26.985324pt;}
.y3_c01265{bottom:35.710667pt;}
.yc_c01265{bottom:35.729200pt;}
.y4_c01265{bottom:53.799200pt;}
.yd_c01265{bottom:53.827067pt;}
.y5_c01265{bottom:67.190000pt;}
.ye_c01265{bottom:67.224800pt;}
.y22_c01265{bottom:88.202000pt;}
.y2a_c01265{bottom:91.173333pt;}
.y27_c01265{bottom:101.236133pt;}
.y19_c01265{bottom:109.613333pt;}
.y6_c01265{bottom:118.314385pt;}
.yf_c01265{bottom:118.375797pt;}
.y23_c01265{bottom:146.382518pt;}
.y1f_c01265{bottom:150.240000pt;}
.y28_c01265{bottom:151.272278pt;}
.y7_c01265{bottom:169.438770pt;}
.y10_c01265{bottom:169.526794pt;}
.y24_c01265{bottom:204.563035pt;}
.y8_c01265{bottom:220.563155pt;}
.y11_c01265{bottom:220.677790pt;}
.y1c_c01265{bottom:234.780000pt;}
.y1b_c01265{bottom:253.980000pt;}
.y25_c01265{bottom:262.743553pt;}
.y9_c01265{bottom:271.645532pt;}
.y12_c01265{bottom:271.786757pt;}
.y1a_c01265{bottom:273.180000pt;}
.y1e_c01265{bottom:301.772213pt;}
.y26_c01265{bottom:320.924070pt;}
.ya_c01265{bottom:323.840000pt;}
.y14_c01265{bottom:402.113333pt;}
.y18_c01265{bottom:449.713333pt;}
.y29_c01265{bottom:488.280000pt;}
.y17_c01265{bottom:546.280000pt;}
.y16_c01265{bottom:565.480000pt;}
.y15_c01265{bottom:584.680000pt;}
.y1d_c01265{bottom:609.613333pt;}
.y13_c01265{bottom:670.500000pt;}
.ha_c01265{height:46.625000pt;}
.h4_c01265{height:52.296543pt;}
.h3_c01265{height:52.396398pt;}
.h7_c01265{height:52.423596pt;}
.h2_c01265{height:61.207746pt;}
.h6_c01265{height:61.239606pt;}
.hf_c01265{height:65.511622pt;}
.hd_c01265{height:65.536591pt;}
.he_c01265{height:65.561355pt;}
.h10_c01265{height:69.937500pt;}
.h9_c01265{height:77.863750pt;}
.h8_c01265{height:93.250000pt;}
.hb_c01265{height:108.636250pt;}
.h1_c01265{height:307.200000pt;}
.h5_c01265{height:307.360000pt;}
.hc_c01265{height:366.560000pt;}
.h0_c01265{height:720.000000pt;}
.w2_c01265{width:302.880000pt;}
.w1_c01265{width:404.160000pt;}
.w0_c01265{width:960.000000pt;}
.x0_c01265{left:0.000000pt;}
.x4_c01265{left:17.620400pt;}
.xf_c01265{left:37.210133pt;}
.x5_c01265{left:40.578667pt;}
.x6_c01265{left:52.830000pt;}
.x10_c01265{left:63.962761pt;}
.x1_c01265{left:72.000000pt;}
.x3_c01265{left:78.357467pt;}
.xd_c01265{left:135.633733pt;}
.xb_c01265{left:162.600000pt;}
.x2_c01265{left:168.897333pt;}
.x8_c01265{left:170.933333pt;}
.xe_c01265{left:212.001320pt;}
.x7_c01265{left:371.933333pt;}
.xa_c01265{left:388.100000pt;}
.xc_c01265{left:540.000000pt;}
.x11_c01265{left:681.600000pt;}
.x9_c01265{left:740.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_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_8e79b6e9db07dd94562ebdb2.woff2')format("woff");}.ff1_c01266{font-family:ff1_c01266;line-height:0.938965;font-style:normal;font-weight:normal;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_b2319c7c6f4ce4ec7e91ce1b.woff2')format("woff");}.ff2_c01266{font-family:ff2_c01266;line-height:0.938965;font-style:normal;font-weight:normal;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_f84efe121a7405766e2b3b68.woff2')format("woff");}.ff3_c01266{font-family:ff3_c01266;line-height:0.926758;font-style: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:-0.324000px;}
.ls0_c01266{letter-spacing:0.000000px;}
.ls2_c01266{letter-spacing:0.216000px;}
.ls3_c01266{letter-spacing:0.324000px;}
.sc__c01266{text-shadow:none;}
.sc0_c01266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01266{-webkit-text-stroke:0px transparent;}
.sc0_c01266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01266{word-spacing:-30.240000px;}
.ws0_c01266{word-spacing:-29.700000px;}
.ws8_c01266{word-spacing:-1.512000px;}
.ws2_c01266{word-spacing:-0.961920px;}
.ws4_c01266{word-spacing:0.000000px;}
.ws7_c01266{word-spacing:0.324000px;}
.ws3_c01266{word-spacing:0.540000px;}
.ws6_c01266{word-spacing:1.296000px;}
.ws5_c01266{word-spacing:2.052000px;}
._2_c01266{margin-left:-5.605200px;}
._1_c01266{margin-left:-1.296000px;}
._0_c01266{width:1.047600px;}
._4_c01266{width:2.214000px;}
._3_c01266{width:3.337200px;}
.fc0_c01266{color:rgb(0,0,0);}
.fs1_c01266{font-size:108.000000px;}
.fs0_c01266{font-size:120.240000px;}
.y0_c01266{bottom:0.000000px;}
.yb_c01266{bottom:85.027350px;}
.ya_c01266{bottom:117.427350px;}
.y9_c01266{bottom:149.827350px;}
.yc_c01266{bottom:201.208350px;}
.y8_c01266{bottom:264.982350px;}
.y7_c01266{bottom:297.382350px;}
.y6_c01266{bottom:329.782350px;}
.y5_c01266{bottom:362.182350px;}
.y4_c01266{bottom:394.582350px;}
.y3_c01266{bottom:426.982350px;}
.y2_c01266{bottom:459.382350px;}
.y1_c01266{bottom:524.377500px;}
.h2_c01266{height:78.679688px;}
.h1_c01266{height:87.596719px;}
.h0_c01266{height:810.000000px;}
.w0_c01266{width:1080.000000px;}
.x0_c01266{left:0.000000px;}
.x2_c01266{left:59.550000px;}
.x3_c01266{left:65.922000px;}
.x4_c01266{left:84.849000px;}
.x1_c01266{left:505.050000px;}
@media print{
.v0_c01266{vertical-align:0.000000pt;}
.ls1_c01266{letter-spacing:-0.288000pt;}
.ls0_c01266{letter-spacing:0.000000pt;}
.ls2_c01266{letter-spacing:0.192000pt;}
.ls3_c01266{letter-spacing:0.288000pt;}
.ws1_c01266{word-spacing:-26.880000pt;}
.ws0_c01266{word-spacing:-26.400000pt;}
.ws8_c01266{word-spacing:-1.344000pt;}
.ws2_c01266{word-spacing:-0.855040pt;}
.ws4_c01266{word-spacing:0.000000pt;}
.ws7_c01266{word-spacing:0.288000pt;}
.ws3_c01266{word-spacing:0.480000pt;}
.ws6_c01266{word-spacing:1.152000pt;}
.ws5_c01266{word-spacing:1.824000pt;}
._2_c01266{margin-left:-4.982400pt;}
._1_c01266{margin-left:-1.152000pt;}
._0_c01266{width:0.931200pt;}
._4_c01266{width:1.968000pt;}
._3_c01266{width:2.966400pt;}
.fs1_c01266{font-size:96.000000pt;}
.fs0_c01266{font-size:106.880000pt;}
.y0_c01266{bottom:0.000000pt;}
.yb_c01266{bottom:75.579867pt;}
.ya_c01266{bottom:104.379867pt;}
.y9_c01266{bottom:133.179867pt;}
.yc_c01266{bottom:178.851867pt;}
.y8_c01266{bottom:235.539867pt;}
.y7_c01266{bottom:264.339867pt;}
.y6_c01266{bottom:293.139867pt;}
.y5_c01266{bottom:321.939867pt;}
.y4_c01266{bottom:350.739867pt;}
.y3_c01266{bottom:379.539867pt;}
.y2_c01266{bottom:408.339867pt;}
.y1_c01266{bottom:466.113333pt;}
.h2_c01266{height:69.937500pt;}
.h1_c01266{height:77.863750pt;}
.h0_c01266{height:720.000000pt;}
.w0_c01266{width:960.000000pt;}
.x0_c01266{left:0.000000pt;}
.x2_c01266{left:52.933333pt;}
.x3_c01266{left:58.597333pt;}
.x4_c01266{left:75.421333pt;}
.x1_c01266{left:448.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_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_dc4b1cf0327c4907c3c6780c.woff2')format("woff");}.ff1_c01267{font-family:ff1_c01267;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c01267{transform:matrix(0.000000,-0.249993,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249993,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249993,0.250000,0.000000,0,0);}
.m1_c01267{transform:matrix(0.000000,-0.250411,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250411,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250411,0.250000,0.000000,0,0);}
.m9_c01267{transform:matrix(0.000000,-0.250587,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250587,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250587,0.250000,0.000000,0,0);}
.m6_c01267{transform:matrix(0.000000,-0.250674,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250674,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250674,0.250000,0.000000,0,0);}
.m2_c01267{transform:matrix(0.176778,-0.176775,0.176778,0.176775,0,0);-ms-transform:matrix(0.176778,-0.176775,0.176778,0.176775,0,0);-webkit-transform:matrix(0.176778,-0.176775,0.176778,0.176775,0,0);}
.m5_c01267{transform:matrix(0.249327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249327,0.000000,0.000000,0.250000,0,0);}
.m8_c01267{transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);}
.m7_c01267{transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);}
.m0_c01267{transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);}
.ma_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);}
.m3_c01267{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.v2_c01267{vertical-align:-4.464720px;}
.v0_c01267{vertical-align:0.000000px;}
.v1_c01267{vertical-align:4.464720px;}
.v3_c01267{vertical-align:136.556640px;}
.ls14_c01267{letter-spacing:-3.312000px;}
.lsc_c01267{letter-spacing:-2.083170px;}
.ls16_c01267{letter-spacing:-0.336960px;}
.ls8_c01267{letter-spacing:-0.333307px;}
.ls12_c01267{letter-spacing:-0.331200px;}
.ls17_c01267{letter-spacing:-0.324000px;}
.ls13_c01267{letter-spacing:-0.288000px;}
.lsa_c01267{letter-spacing:-0.166658px;}
.ls7_c01267{letter-spacing:-0.166656px;}
.ls10_c01267{letter-spacing:-0.144000px;}
.lse_c01267{letter-spacing:-0.141877px;}
.ls3_c01267{letter-spacing:-0.141779px;}
.ls11_c01267{letter-spacing:-0.132480px;}
.ls15_c01267{letter-spacing:-0.084240px;}
.lsf_c01267{letter-spacing:-0.060727px;}
.ls5_c01267{letter-spacing:-0.060684px;}
.ls6_c01267{letter-spacing:-0.060584px;}
.lsd_c01267{letter-spacing:-0.060521px;}
.ls4_c01267{letter-spacing:0.000000px;}
.lsb_c01267{letter-spacing:0.083327px;}
.ls9_c01267{letter-spacing:0.083329px;}
.ls0_c01267{letter-spacing:0.288000px;}
.ls2_c01267{letter-spacing:68.278320px;}
.ls1_c01267{letter-spacing:1282.720320px;}
.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;}
}
.wsb_c01267{word-spacing:-29.700000px;}
.ws3_c01267{word-spacing:-22.998530px;}
.ws4_c01267{word-spacing:-22.831543px;}
.ws5_c01267{word-spacing:-21.081680px;}
.ws8_c01267{word-spacing:-19.720931px;}
.ws2_c01267{word-spacing:-19.707253px;}
.ws15_c01267{word-spacing:-0.993600px;}
.ws16_c01267{word-spacing:-0.794880px;}
.ws14_c01267{word-spacing:-0.288000px;}
.wse_c01267{word-spacing:-0.249988px;}
.ws18_c01267{word-spacing:-0.144000px;}
.wsf_c01267{word-spacing:0.000000px;}
.wsc_c01267{word-spacing:0.141779px;}
.ws12_c01267{word-spacing:0.141877px;}
.ws11_c01267{word-spacing:0.181562px;}
.wsd_c01267{word-spacing:0.181753px;}
.ws13_c01267{word-spacing:0.432000px;}
.ws10_c01267{word-spacing:0.499961px;}
.ws17_c01267{word-spacing:0.576000px;}
.ws19_c01267{word-spacing:3.456000px;}
.ws1_c01267{word-spacing:72.699432px;}
.ws7_c01267{word-spacing:72.750467px;}
.ws0_c01267{word-spacing:89.351122px;}
.ws6_c01267{word-spacing:89.413846px;}
.ws9_c01267{word-spacing:1059.149520px;}
.wsa_c01267{word-spacing:1269.493920px;}
._5_c01267{margin-left:-7.632000px;}
._4_c01267{margin-left:-5.904000px;}
._8_c01267{margin-left:-4.262544px;}
._6_c01267{margin-left:-2.994546px;}
._3_c01267{margin-left:-1.161818px;}
._1_c01267{width:1.017818px;}
._2_c01267{width:2.072375px;}
._7_c01267{width:3.168000px;}
._0_c01267{width:122.982194px;}
._9_c01267{width:1088.340166px;}
.fc0_c01267{color:rgb(0,0,0);}
.fs6_c01267{font-size:60.520800px;}
.fs2_c01267{font-size:60.584400px;}
.fs1_c01267{font-size:60.684000px;}
.fs8_c01267{font-size:60.726600px;}
.fsa_c01267{font-size:66.240000px;}
.fs0_c01267{font-size:70.889400px;}
.fs7_c01267{font-size:70.938600px;}
.fsb_c01267{font-size:72.000000px;}
.fs4_c01267{font-size:83.326800px;}
.fs3_c01267{font-size:83.328009px;}
.fs5_c01267{font-size:83.329200px;}
.fsc_c01267{font-size:84.240000px;}
.fsf_c01267{font-size:108.000000px;}
.fsd_c01267{font-size:120.240000px;}
.fs9_c01267{font-size:144.000000px;}
.fse_c01267{font-size:167.760000px;}
.y0_c01267{bottom:0.000000px;}
.y2_c01267{bottom:4.754550px;}
.y20_c01267{bottom:4.758150px;}
.yb_c01267{bottom:7.380000px;}
.y16_c01267{bottom:20.436901px;}
.y18_c01267{bottom:30.130650px;}
.y3_c01267{bottom:30.130800px;}
.y21_c01267{bottom:30.152700px;}
.y15_c01267{bottom:44.685000px;}
.y19_c01267{bottom:45.392700px;}
.y4_c01267{bottom:45.393150px;}
.y22_c01267{bottom:45.425700px;}
.y1a_c01267{bottom:54.777900px;}
.y5_c01267{bottom:55.006350px;}
.y23_c01267{bottom:55.045950px;}
.yc_c01267{bottom:76.042500px;}
.y1b_c01267{bottom:88.308586px;}
.y6_c01267{bottom:89.866212px;}
.y24_c01267{bottom:89.930007px;}
.yd_c01267{bottom:116.482050px;}
.y1c_c01267{bottom:121.892439px;}
.y7_c01267{bottom:124.726075px;}
.y25_c01267{bottom:124.814063px;}
.y13_c01267{bottom:128.730300px;}
.y1d_c01267{bottom:155.423126px;}
.ye_c01267{bottom:159.582837px;}
.y8_c01267{bottom:159.585937px;}
.y26_c01267{bottom:159.698120px;}
.y14_c01267{bottom:174.893347px;}
.y1e_c01267{bottom:189.006979px;}
.y9_c01267{bottom:194.445800px;}
.y27_c01267{bottom:194.582176px;}
.yf_c01267{bottom:202.683625px;}
.y38_c01267{bottom:206.632500px;}
.y1f_c01267{bottom:222.537665px;}
.ya_c01267{bottom:229.305662px;}
.y28_c01267{bottom:229.466233px;}
.y10_c01267{bottom:245.784412px;}
.y11_c01267{bottom:288.885199px;}
.y37_c01267{bottom:319.177500px;}
.y12_c01267{bottom:331.985986px;}
.y36_c01267{bottom:388.638720px;}
.y1_c01267{bottom:405.000000px;}
.y17_c01267{bottom:406.980000px;}
.y34_c01267{bottom:472.447500px;}
.y30_c01267{bottom:584.940000px;}
.y33_c01267{bottom:586.074000px;}
.y2d_c01267{bottom:594.093480px;}
.y2f_c01267{bottom:606.540000px;}
.y32_c01267{bottom:607.674000px;}
.y2c_c01267{bottom:613.899240px;}
.y2e_c01267{bottom:628.140000px;}
.y31_c01267{bottom:629.274000px;}
.y2b_c01267{bottom:633.705000px;}
.y35_c01267{bottom:657.315000px;}
.y2a_c01267{bottom:712.050000px;}
.y29_c01267{bottom:755.250000px;}
.h9_c01267{height:44.090348px;}
.h4_c01267{height:44.136682px;}
.h3_c01267{height:44.209242px;}
.hc_c01267{height:44.240277px;}
.he_c01267{height:48.256875px;}
.h2_c01267{height:51.644036px;}
.hb_c01267{height:51.679879px;}
.hf_c01267{height:52.453125px;}
.h7_c01267{height:60.704876px;}
.h6_c01267{height:60.705756px;}
.h8_c01267{height:60.706624px;}
.h10_c01267{height:65.834876px;}
.h13_c01267{height:78.679688px;}
.h11_c01267{height:87.596719px;}
.hd_c01267{height:104.906250px;}
.h12_c01267{height:258.772421px;}
.h1_c01267{height:259.200000px;}
.ha_c01267{height:259.380000px;}
.h5_c01267{height:374.760000px;}
.h0_c01267{height:810.000000px;}
.w3_c01267{width:340.740000px;}
.w4_c01267{width:341.098500px;}
.w1_c01267{width:341.100000px;}
.w2_c01267{width:379.980000px;}
.w0_c01267{width:1080.000000px;}
.x0_c01267{left:0.000000px;}
.x4_c01267{left:14.871000px;}
.x1_c01267{left:19.440000px;}
.x5_c01267{left:34.247250px;}
.xb_c01267{left:59.984786px;}
.x3_c01267{left:66.131550px;}
.xa_c01267{left:74.570700px;}
.x16_c01267{left:88.237500px;}
.x13_c01267{left:109.612500px;}
.x2_c01267{left:142.544700px;}
.xc_c01267{left:154.805400px;}
.x7_c01267{left:161.520000px;}
.x10_c01267{left:167.666250px;}
.xd_c01267{left:211.385927px;}
.x8_c01267{left:233.906168px;}
.x15_c01267{left:271.612500px;}
.x9_c01267{left:306.292337px;}
.x6_c01267{left:321.300000px;}
.x11_c01267{left:365.666250px;}
.xf_c01267{left:369.180000px;}
.x17_c01267{left:406.242240px;}
.x14_c01267{left:449.920500px;}
.x18_c01267{left:527.175000px;}
.xe_c01267{left:718.740000px;}
.x19_c01267{left:729.487500px;}
.x12_c01267{left:801.487500px;}
@media print{
.v2_c01267{vertical-align:-3.968640pt;}
.v0_c01267{vertical-align:0.000000pt;}
.v1_c01267{vertical-align:3.968640pt;}
.v3_c01267{vertical-align:121.383680pt;}
.ls14_c01267{letter-spacing:-2.944000pt;}
.lsc_c01267{letter-spacing:-1.851707pt;}
.ls16_c01267{letter-spacing:-0.299520pt;}
.ls8_c01267{letter-spacing:-0.296273pt;}
.ls12_c01267{letter-spacing:-0.294400pt;}
.ls17_c01267{letter-spacing:-0.288000pt;}
.ls13_c01267{letter-spacing:-0.256000pt;}
.lsa_c01267{letter-spacing:-0.148141pt;}
.ls7_c01267{letter-spacing:-0.148139pt;}
.ls10_c01267{letter-spacing:-0.128000pt;}
.lse_c01267{letter-spacing:-0.126113pt;}
.ls3_c01267{letter-spacing:-0.126026pt;}
.ls11_c01267{letter-spacing:-0.117760pt;}
.ls15_c01267{letter-spacing:-0.074880pt;}
.lsf_c01267{letter-spacing:-0.053979pt;}
.ls5_c01267{letter-spacing:-0.053941pt;}
.ls6_c01267{letter-spacing:-0.053853pt;}
.lsd_c01267{letter-spacing:-0.053796pt;}
.ls4_c01267{letter-spacing:0.000000pt;}
.lsb_c01267{letter-spacing:0.074068pt;}
.ls9_c01267{letter-spacing:0.074070pt;}
.ls0_c01267{letter-spacing:0.256000pt;}
.ls2_c01267{letter-spacing:60.691840pt;}
.ls1_c01267{letter-spacing:1140.195840pt;}
.wsb_c01267{word-spacing:-26.400000pt;}
.ws3_c01267{word-spacing:-20.443138pt;}
.ws4_c01267{word-spacing:-20.294705pt;}
.ws5_c01267{word-spacing:-18.739271pt;}
.ws8_c01267{word-spacing:-17.529716pt;}
.ws2_c01267{word-spacing:-17.517558pt;}
.ws15_c01267{word-spacing:-0.883200pt;}
.ws16_c01267{word-spacing:-0.706560pt;}
.ws14_c01267{word-spacing:-0.256000pt;}
.wse_c01267{word-spacing:-0.222211pt;}
.ws18_c01267{word-spacing:-0.128000pt;}
.wsf_c01267{word-spacing:0.000000pt;}
.wsc_c01267{word-spacing:0.126026pt;}
.ws12_c01267{word-spacing:0.126113pt;}
.ws11_c01267{word-spacing:0.161389pt;}
.wsd_c01267{word-spacing:0.161558pt;}
.ws13_c01267{word-spacing:0.384000pt;}
.ws10_c01267{word-spacing:0.444410pt;}
.ws17_c01267{word-spacing:0.512000pt;}
.ws19_c01267{word-spacing:3.072000pt;}
.ws1_c01267{word-spacing:64.621717pt;}
.ws7_c01267{word-spacing:64.667082pt;}
.ws0_c01267{word-spacing:79.423219pt;}
.ws6_c01267{word-spacing:79.478974pt;}
.ws9_c01267{word-spacing:941.466240pt;}
.wsa_c01267{word-spacing:1128.439040pt;}
._5_c01267{margin-left:-6.784000pt;}
._4_c01267{margin-left:-5.248000pt;}
._8_c01267{margin-left:-3.788928pt;}
._6_c01267{margin-left:-2.661819pt;}
._3_c01267{margin-left:-1.032727pt;}
._1_c01267{width:0.904727pt;}
._2_c01267{width:1.842111pt;}
._7_c01267{width:2.816000pt;}
._0_c01267{width:109.317506pt;}
._9_c01267{width:967.413481pt;}
.fs6_c01267{font-size:53.796267pt;}
.fs2_c01267{font-size:53.852800pt;}
.fs1_c01267{font-size:53.941333pt;}
.fs8_c01267{font-size:53.979200pt;}
.fsa_c01267{font-size:58.880000pt;}
.fs0_c01267{font-size:63.012800pt;}
.fs7_c01267{font-size:63.056533pt;}
.fsb_c01267{font-size:64.000000pt;}
.fs4_c01267{font-size:74.068267pt;}
.fs3_c01267{font-size:74.069341pt;}
.fs5_c01267{font-size:74.070400pt;}
.fsc_c01267{font-size:74.880000pt;}
.fsf_c01267{font-size:96.000000pt;}
.fsd_c01267{font-size:106.880000pt;}
.fs9_c01267{font-size:128.000000pt;}
.fse_c01267{font-size:149.120000pt;}
.y0_c01267{bottom:0.000000pt;}
.y2_c01267{bottom:4.226267pt;}
.y20_c01267{bottom:4.229467pt;}
.yb_c01267{bottom:6.560000pt;}
.y16_c01267{bottom:18.166134pt;}
.y18_c01267{bottom:26.782800pt;}
.y3_c01267{bottom:26.782933pt;}
.y21_c01267{bottom:26.802400pt;}
.y15_c01267{bottom:39.720000pt;}
.y19_c01267{bottom:40.349067pt;}
.y4_c01267{bottom:40.349467pt;}
.y22_c01267{bottom:40.378400pt;}
.y1a_c01267{bottom:48.691467pt;}
.y5_c01267{bottom:48.894533pt;}
.y23_c01267{bottom:48.929733pt;}
.yc_c01267{bottom:67.593333pt;}
.y1b_c01267{bottom:78.496521pt;}
.y6_c01267{bottom:79.881078pt;}
.y24_c01267{bottom:79.937784pt;}
.yd_c01267{bottom:103.539600pt;}
.y1c_c01267{bottom:108.348835pt;}
.y7_c01267{bottom:110.867622pt;}
.y25_c01267{bottom:110.945834pt;}
.y13_c01267{bottom:114.426933pt;}
.y1d_c01267{bottom:138.153889pt;}
.ye_c01267{bottom:141.851411pt;}
.y8_c01267{bottom:141.854167pt;}
.y26_c01267{bottom:141.953884pt;}
.y14_c01267{bottom:155.460753pt;}
.y1e_c01267{bottom:168.006203pt;}
.y9_c01267{bottom:172.840711pt;}
.y27_c01267{bottom:172.961934pt;}
.yf_c01267{bottom:180.163222pt;}
.y38_c01267{bottom:183.673333pt;}
.y1f_c01267{bottom:197.811258pt;}
.ya_c01267{bottom:203.827255pt;}
.y28_c01267{bottom:203.969985pt;}
.y10_c01267{bottom:218.475033pt;}
.y11_c01267{bottom:256.786844pt;}
.y37_c01267{bottom:283.713333pt;}
.y12_c01267{bottom:295.098655pt;}
.y36_c01267{bottom:345.456640pt;}
.y1_c01267{bottom:360.000000pt;}
.y17_c01267{bottom:361.760000pt;}
.y34_c01267{bottom:419.953333pt;}
.y30_c01267{bottom:519.946667pt;}
.y33_c01267{bottom:520.954667pt;}
.y2d_c01267{bottom:528.083093pt;}
.y2f_c01267{bottom:539.146667pt;}
.y32_c01267{bottom:540.154667pt;}
.y2c_c01267{bottom:545.688213pt;}
.y2e_c01267{bottom:558.346667pt;}
.y31_c01267{bottom:559.354667pt;}
.y2b_c01267{bottom:563.293333pt;}
.y35_c01267{bottom:584.280000pt;}
.y2a_c01267{bottom:632.933333pt;}
.y29_c01267{bottom:671.333333pt;}
.h9_c01267{height:39.191421pt;}
.h4_c01267{height:39.232606pt;}
.h3_c01267{height:39.297104pt;}
.hc_c01267{height:39.324691pt;}
.he_c01267{height:42.895000pt;}
.h2_c01267{height:45.905809pt;}
.hb_c01267{height:45.937670pt;}
.hf_c01267{height:46.625000pt;}
.h7_c01267{height:53.959890pt;}
.h6_c01267{height:53.960672pt;}
.h8_c01267{height:53.961444pt;}
.h10_c01267{height:58.519890pt;}
.h13_c01267{height:69.937500pt;}
.h11_c01267{height:77.863750pt;}
.hd_c01267{height:93.250000pt;}
.h12_c01267{height:230.019930pt;}
.h1_c01267{height:230.400000pt;}
.ha_c01267{height:230.560000pt;}
.h5_c01267{height:333.120000pt;}
.h0_c01267{height:720.000000pt;}
.w3_c01267{width:302.880000pt;}
.w4_c01267{width:303.198667pt;}
.w1_c01267{width:303.200000pt;}
.w2_c01267{width:337.760000pt;}
.w0_c01267{width:960.000000pt;}
.x0_c01267{left:0.000000pt;}
.x4_c01267{left:13.218667pt;}
.x1_c01267{left:17.280000pt;}
.x5_c01267{left:30.442000pt;}
.xb_c01267{left:53.319810pt;}
.x3_c01267{left:58.783600pt;}
.xa_c01267{left:66.285067pt;}
.x16_c01267{left:78.433333pt;}
.x13_c01267{left:97.433333pt;}
.x2_c01267{left:126.706400pt;}
.xc_c01267{left:137.604800pt;}
.x7_c01267{left:143.573333pt;}
.x10_c01267{left:149.036667pt;}
.xd_c01267{left:187.898602pt;}
.x8_c01267{left:207.916594pt;}
.x15_c01267{left:241.433333pt;}
.x9_c01267{left:272.259855pt;}
.x6_c01267{left:285.600000pt;}
.x11_c01267{left:325.036667pt;}
.xf_c01267{left:328.160000pt;}
.x17_c01267{left:361.104213pt;}
.x14_c01267{left:399.929333pt;}
.x18_c01267{left:468.600000pt;}
.xe_c01267{left:638.880000pt;}
.x19_c01267{left:648.433333pt;}
.x12_c01267{left:712.433333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f5240cfac213f857d4ad8d9e.woff2')format("woff");}.ff1_c01268{font-family:ff1_c01268;line-height:0.938965;font-style:normal;font-weight:normal;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_ce24e790976528ffba3705bf.woff2')format("woff");}.ff2_c01268{font-family:ff2_c01268;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.v1_c01268{vertical-align:3.744000px;}
.ls3_c01268{letter-spacing:-1.923840px;}
.ls2_c01268{letter-spacing:-0.240480px;}
.ls0_c01268{letter-spacing:-0.144000px;}
.ls1_c01268{letter-spacing:0.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:-39.888000px;}
.ws1_c01268{word-spacing:-26.933760px;}
.ws2_c01268{word-spacing:-25.250400px;}
.ws4_c01268{word-spacing:-1.008000px;}
.ws5_c01268{word-spacing:-0.768960px;}
.ws6_c01268{word-spacing:-0.288000px;}
.ws3_c01268{word-spacing:0.432000px;}
._1_c01268{margin-left:-8.064000px;}
._3_c01268{margin-left:-2.364552px;}
._2_c01268{margin-left:-1.018872px;}
._4_c01268{width:1.022400px;}
._0_c01268{width:1200.384000px;}
.fc1_c01268{color:rgb(255,255,204);}
.fc0_c01268{color:rgb(255,255,255);}
.fs2_c01268{font-size:120.240000px;}
.fs0_c01268{font-size:144.000000px;}
.fs1_c01268{font-size:192.240000px;}
.y0_c01268{bottom:0.000000px;}
.y4_c01268{bottom:25.668000px;}
.y7_c01268{bottom:158.239500px;}
.y9_c01268{bottom:186.614880px;}
.y6_c01268{bottom:349.687500px;}
.y8_c01268{bottom:528.607500px;}
.y3_c01268{bottom:557.604000px;}
.y1_c01268{bottom:675.000000px;}
.y2_c01268{bottom:676.872000px;}
.y5_c01268{bottom:739.605000px;}
.h4_c01268{height:87.303164px;}
.h2_c01268{height:104.906250px;}
.h1_c01268{height:108.650250px;}
.h3_c01268{height:140.049844px;}
.h0_c01268{height:810.000000px;}
.w0_c01268{width:1080.000000px;}
.x0_c01268{left:0.000000px;}
.x7_c01268{left:40.428000px;}
.x6_c01268{left:42.300000px;}
.x3_c01268{left:96.307500px;}
.x5_c01268{left:215.550000px;}
.x1_c01268{left:307.987500px;}
.x2_c01268{left:514.051500px;}
.x8_c01268{left:939.937650px;}
.x9_c01268{left:948.925590px;}
.x4_c01268{left:961.423500px;}
@media print{
.v0_c01268{vertical-align:0.000000pt;}
.v1_c01268{vertical-align:3.328000pt;}
.ls3_c01268{letter-spacing:-1.710080pt;}
.ls2_c01268{letter-spacing:-0.213760pt;}
.ls0_c01268{letter-spacing:-0.128000pt;}
.ls1_c01268{letter-spacing:0.000000pt;}
.ws0_c01268{word-spacing:-35.456000pt;}
.ws1_c01268{word-spacing:-23.941120pt;}
.ws2_c01268{word-spacing:-22.444800pt;}
.ws4_c01268{word-spacing:-0.896000pt;}
.ws5_c01268{word-spacing:-0.683520pt;}
.ws6_c01268{word-spacing:-0.256000pt;}
.ws3_c01268{word-spacing:0.384000pt;}
._1_c01268{margin-left:-7.168000pt;}
._3_c01268{margin-left:-2.101824pt;}
._2_c01268{margin-left:-0.905664pt;}
._4_c01268{width:0.908800pt;}
._0_c01268{width:1067.008000pt;}
.fs2_c01268{font-size:106.880000pt;}
.fs0_c01268{font-size:128.000000pt;}
.fs1_c01268{font-size:170.880000pt;}
.y0_c01268{bottom:0.000000pt;}
.y4_c01268{bottom:22.816000pt;}
.y7_c01268{bottom:140.657333pt;}
.y9_c01268{bottom:165.879893pt;}
.y6_c01268{bottom:310.833333pt;}
.y8_c01268{bottom:469.873333pt;}
.y3_c01268{bottom:495.648000pt;}
.y1_c01268{bottom:600.000000pt;}
.y2_c01268{bottom:601.664000pt;}
.y5_c01268{bottom:657.426667pt;}
.h4_c01268{height:77.602812pt;}
.h2_c01268{height:93.250000pt;}
.h1_c01268{height:96.578000pt;}
.h3_c01268{height:124.488750pt;}
.h0_c01268{height:720.000000pt;}
.w0_c01268{width:960.000000pt;}
.x0_c01268{left:0.000000pt;}
.x7_c01268{left:35.936000pt;}
.x6_c01268{left:37.600000pt;}
.x3_c01268{left:85.606667pt;}
.x5_c01268{left:191.600000pt;}
.x1_c01268{left:273.766667pt;}
.x2_c01268{left:456.934667pt;}
.x8_c01268{left:835.500133pt;}
.x9_c01268{left:843.489413pt;}
.x4_c01268{left:854.598667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7f6041e8625c5e7509b51b31.woff2')format("woff");}.ff1_c01269{font-family:ff1_c01269;line-height:0.938965;font-style:normal;font-weight:normal;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_68605b54eee53713d842333a.woff2')format("woff");}.ff2_c01269{font-family:ff2_c01269;line-height:0.817871;font-style: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;}
.ls4_c01269{letter-spacing:-0.288000px;}
.ls2_c01269{letter-spacing:-0.216000px;}
.ls3_c01269{letter-spacing:-0.144000px;}
.ls1_c01269{letter-spacing:0.288000px;}
.ls0_c01269{letter-spacing:138.672000px;}
.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;}
}
.ws1_c01269{word-spacing:-40.320000px;}
.ws0_c01269{word-spacing:-39.744000px;}
.ws6_c01269{word-spacing:-2.160000px;}
.ws7_c01269{word-spacing:-1.728000px;}
.ws4_c01269{word-spacing:-1.008000px;}
.ws3_c01269{word-spacing:-0.288000px;}
.ws2_c01269{word-spacing:0.000000px;}
.ws8_c01269{word-spacing:0.144000px;}
.ws5_c01269{word-spacing:0.432000px;}
._3_c01269{margin-left:-1.159200px;}
._0_c01269{width:1.015200px;}
._2_c01269{width:2.016000px;}
._1_c01269{width:3.016800px;}
.fc1_c01269{color:rgb(255,255,255);}
.fc0_c01269{color:rgb(255,255,204);}
.fs1_c01269{font-size:144.000000px;}
.fs0_c01269{font-size:216.000000px;}
.y0_c01269{bottom:0.000000px;}
.ye_c01269{bottom:100.305000px;}
.yd_c01269{bottom:143.505000px;}
.yc_c01269{bottom:186.705000px;}
.yb_c01269{bottom:229.905000px;}
.ya_c01269{bottom:273.105000px;}
.y9_c01269{bottom:316.305000px;}
.y8_c01269{bottom:359.505000px;}
.y7_c01269{bottom:428.625000px;}
.y6_c01269{bottom:471.825000px;}
.y5_c01269{bottom:515.025000px;}
.y4_c01269{bottom:558.225000px;}
.y3_c01269{bottom:601.425000px;}
.y2_c01269{bottom:644.625000px;}
.y1_c01269{bottom:726.727500px;}
.h3_c01269{height:104.906250px;}
.h2_c01269{height:110.953125px;}
.h1_c01269{height:157.359375px;}
.h0_c01269{height:810.000000px;}
.w0_c01269{width:1080.000000px;}
.x0_c01269{left:0.000000px;}
.x2_c01269{left:64.800000px;}
.x3_c01269{left:126.360000px;}
.x1_c01269{left:223.608750px;}
@media print{
.v0_c01269{vertical-align:0.000000pt;}
.ls4_c01269{letter-spacing:-0.256000pt;}
.ls2_c01269{letter-spacing:-0.192000pt;}
.ls3_c01269{letter-spacing:-0.128000pt;}
.ls1_c01269{letter-spacing:0.256000pt;}
.ls0_c01269{letter-spacing:123.264000pt;}
.ws1_c01269{word-spacing:-35.840000pt;}
.ws0_c01269{word-spacing:-35.328000pt;}
.ws6_c01269{word-spacing:-1.920000pt;}
.ws7_c01269{word-spacing:-1.536000pt;}
.ws4_c01269{word-spacing:-0.896000pt;}
.ws3_c01269{word-spacing:-0.256000pt;}
.ws2_c01269{word-spacing:0.000000pt;}
.ws8_c01269{word-spacing:0.128000pt;}
.ws5_c01269{word-spacing:0.384000pt;}
._3_c01269{margin-left:-1.030400pt;}
._0_c01269{width:0.902400pt;}
._2_c01269{width:1.792000pt;}
._1_c01269{width:2.681600pt;}
.fs1_c01269{font-size:128.000000pt;}
.fs0_c01269{font-size:192.000000pt;}
.y0_c01269{bottom:0.000000pt;}
.ye_c01269{bottom:89.160000pt;}
.yd_c01269{bottom:127.560000pt;}
.yc_c01269{bottom:165.960000pt;}
.yb_c01269{bottom:204.360000pt;}
.ya_c01269{bottom:242.760000pt;}
.y9_c01269{bottom:281.160000pt;}
.y8_c01269{bottom:319.560000pt;}
.y7_c01269{bottom:381.000000pt;}
.y6_c01269{bottom:419.400000pt;}
.y5_c01269{bottom:457.800000pt;}
.y4_c01269{bottom:496.200000pt;}
.y3_c01269{bottom:534.600000pt;}
.y2_c01269{bottom:573.000000pt;}
.y1_c01269{bottom:645.980000pt;}
.h3_c01269{height:93.250000pt;}
.h2_c01269{height:98.625000pt;}
.h1_c01269{height:139.875000pt;}
.h0_c01269{height:720.000000pt;}
.w0_c01269{width:960.000000pt;}
.x0_c01269{left:0.000000pt;}
.x2_c01269{left:57.600000pt;}
.x3_c01269{left:112.320000pt;}
.x1_c01269{left:198.763333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_163e9369c49aa9b3f99e2527.woff2')format("woff");}.ff1_c01270{font-family:ff1_c01270;line-height:0.938965;font-style:normal;font-weight:normal;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_68605b54eee53713d842333a.woff2')format("woff");}.ff2_c01270{font-family:ff2_c01270;line-height:0.817871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01270{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01270{vertical-align:0.000000px;}
.ls4_c01270{letter-spacing:-0.144000px;}
.ls3_c01270{letter-spacing:0.000000px;}
.ls1_c01270{letter-spacing:0.288000px;}
.ls2_c01270{letter-spacing:39.153600px;}
.ls0_c01270{letter-spacing:138.672000px;}
.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:-39.888000px;}
.ws1_c01270{word-spacing:-1.728000px;}
.ws5_c01270{word-spacing:-1.008000px;}
.ws2_c01270{word-spacing:-0.768960px;}
.ws6_c01270{word-spacing:-0.288000px;}
.ws3_c01270{word-spacing:0.000000px;}
.ws4_c01270{word-spacing:0.432000px;}
._2_c01270{margin-left:-2.592000px;}
._0_c01270{margin-left:-1.172664px;}
._1_c01270{width:1.326456px;}
._3_c01270{width:2.711808px;}
.fc2_c01270{color:rgb(255,255,153);}
.fc1_c01270{color:rgb(255,255,255);}
.fc0_c01270{color:rgb(255,255,204);}
.fs1_c01270{font-size:144.000000px;}
.fs0_c01270{font-size:192.240000px;}
.y0_c01270{bottom:0.000000px;}
.yf_c01270{bottom:43.912500px;}
.ye_c01270{bottom:87.112500px;}
.yd_c01270{bottom:130.312500px;}
.yc_c01270{bottom:173.512500px;}
.yb_c01270{bottom:216.712500px;}
.ya_c01270{bottom:281.512500px;}
.y9_c01270{bottom:324.712500px;}
.y8_c01270{bottom:367.912500px;}
.y7_c01270{bottom:432.712500px;}
.y6_c01270{bottom:475.912500px;}
.y5_c01270{bottom:540.712500px;}
.y4_c01270{bottom:583.912500px;}
.y3_c01270{bottom:627.112500px;}
.y2_c01270{bottom:670.312500px;}
.y1_c01270{bottom:741.292350px;}
.h3_c01270{height:104.906250px;}
.h2_c01270{height:110.953125px;}
.h1_c01270{height:140.049844px;}
.h0_c01270{height:810.000000px;}
.w0_c01270{width:1080.000000px;}
.x0_c01270{left:0.000000px;}
.x2_c01270{left:25.237500px;}
.x3_c01270{left:86.797500px;}
.x1_c01270{left:162.457500px;}
@media print{
.v0_c01270{vertical-align:0.000000pt;}
.ls4_c01270{letter-spacing:-0.128000pt;}
.ls3_c01270{letter-spacing:0.000000pt;}
.ls1_c01270{letter-spacing:0.256000pt;}
.ls2_c01270{letter-spacing:34.803200pt;}
.ls0_c01270{letter-spacing:123.264000pt;}
.ws0_c01270{word-spacing:-35.456000pt;}
.ws1_c01270{word-spacing:-1.536000pt;}
.ws5_c01270{word-spacing:-0.896000pt;}
.ws2_c01270{word-spacing:-0.683520pt;}
.ws6_c01270{word-spacing:-0.256000pt;}
.ws3_c01270{word-spacing:0.000000pt;}
.ws4_c01270{word-spacing:0.384000pt;}
._2_c01270{margin-left:-2.304000pt;}
._0_c01270{margin-left:-1.042368pt;}
._1_c01270{width:1.179072pt;}
._3_c01270{width:2.410496pt;}
.fs1_c01270{font-size:128.000000pt;}
.fs0_c01270{font-size:170.880000pt;}
.y0_c01270{bottom:0.000000pt;}
.yf_c01270{bottom:39.033333pt;}
.ye_c01270{bottom:77.433333pt;}
.yd_c01270{bottom:115.833333pt;}
.yc_c01270{bottom:154.233333pt;}
.yb_c01270{bottom:192.633333pt;}
.ya_c01270{bottom:250.233333pt;}
.y9_c01270{bottom:288.633333pt;}
.y8_c01270{bottom:327.033333pt;}
.y7_c01270{bottom:384.633333pt;}
.y6_c01270{bottom:423.033333pt;}
.y5_c01270{bottom:480.633333pt;}
.y4_c01270{bottom:519.033333pt;}
.y3_c01270{bottom:557.433333pt;}
.y2_c01270{bottom:595.833333pt;}
.y1_c01270{bottom:658.926533pt;}
.h3_c01270{height:93.250000pt;}
.h2_c01270{height:98.625000pt;}
.h1_c01270{height:124.488750pt;}
.h0_c01270{height:720.000000pt;}
.w0_c01270{width:960.000000pt;}
.x0_c01270{left:0.000000pt;}
.x2_c01270{left:22.433333pt;}
.x3_c01270{left:77.153333pt;}
.x1_c01270{left:144.406667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cc20a2b75f70ae46ce060034.woff2')format("woff");}.ff1_c01271{font-family:ff1_c01271;line-height:0.817871;font-style:normal;font-weight:normal;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_2f1768733519b4327e942b24.woff2')format("woff");}.ff2_c01271{font-family:ff2_c01271;line-height:0.938965;font-style: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;}
.ls7_c01271{letter-spacing:-0.240480px;}
.lsa_c01271{letter-spacing:-0.216000px;}
.ls6_c01271{letter-spacing:-0.167760px;}
.ls8_c01271{letter-spacing:0.000000px;}
.ls2_c01271{letter-spacing:0.120240px;}
.ls9_c01271{letter-spacing:0.335520px;}
.ls5_c01271{letter-spacing:36.739440px;}
.ls4_c01271{letter-spacing:64.755360px;}
.ls0_c01271{letter-spacing:65.426400px;}
.ls1_c01271{letter-spacing:69.660000px;}
.ls3_c01271{letter-spacing:71.820000px;}
.sc__c01271{text-shadow:none;}
.sc0_c01271{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01271{-webkit-text-stroke:0px transparent;}
.sc0_c01271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01271{word-spacing:-59.832000px;}
.ws1_c01271{word-spacing:-46.469520px;}
.ws0_c01271{word-spacing:-33.426720px;}
.wsa_c01271{word-spacing:-5.200560px;}
.wse_c01271{word-spacing:-1.803600px;}
.ws7_c01271{word-spacing:-1.683360px;}
.ws6_c01271{word-spacing:-1.442880px;}
.ws5_c01271{word-spacing:-1.082160px;}
.ws8_c01271{word-spacing:-0.961920px;}
.wsd_c01271{word-spacing:-0.721440px;}
.ws9_c01271{word-spacing:-0.240480px;}
.wsc_c01271{word-spacing:-0.167760px;}
.ws3_c01271{word-spacing:0.000000px;}
.wsb_c01271{word-spacing:1.202400px;}
.ws4_c01271{word-spacing:2.516400px;}
._0_c01271{margin-left:-12.330360px;}
._4_c01271{margin-left:-6.757488px;}
._2_c01271{margin-left:-1.677600px;}
._1_c01271{width:1.358856px;}
._3_c01271{width:5.284440px;}
.fc1_c01271{color:rgb(255,255,255);}
.fc0_c01271{color:rgb(255,255,204);}
.fs1_c01271{font-size:90.000000px;}
.fs2_c01271{font-size:120.240000px;}
.fs0_c01271{font-size:167.760000px;}
.fs3_c01271{font-size:216.000000px;}
.y0_c01271{bottom:0.000000px;}
.ya_c01271{bottom:250.762500px;}
.y9_c01271{bottom:303.502500px;}
.y8_c01271{bottom:343.102500px;}
.y12_c01271{bottom:363.817500px;}
.y7_c01271{bottom:385.402500px;}
.y11_c01271{bottom:403.417500px;}
.y6_c01271{bottom:438.142500px;}
.y10_c01271{bottom:443.017500px;}
.y5_c01271{bottom:477.742500px;}
.yf_c01271{bottom:482.617500px;}
.y4_c01271{bottom:517.342500px;}
.ye_c01271{bottom:522.217500px;}
.y3_c01271{bottom:556.942500px;}
.yd_c01271{bottom:561.817500px;}
.y2_c01271{bottom:596.542350px;}
.yc_c01271{bottom:601.417350px;}
.y1_c01271{bottom:638.842500px;}
.yb_c01271{bottom:643.698360px;}
.y13_c01271{bottom:730.290000px;}
.h2_c01271{height:87.596719px;}
.h1_c01271{height:129.260391px;}
.h3_c01271{height:157.359375px;}
.h0_c01271{height:810.000000px;}
.w0_c01271{width:1080.000000px;}
.x0_c01271{left:0.000000px;}
.x1_c01271{left:40.237500px;}
.x3_c01271{left:47.257500px;}
.x2_c01271{left:101.437500px;}
.x6_c01271{left:274.837500px;}
.x4_c01271{left:547.811400px;}
.x5_c01271{left:609.000000px;}
@media print{
.v0_c01271{vertical-align:0.000000pt;}
.ls7_c01271{letter-spacing:-0.213760pt;}
.lsa_c01271{letter-spacing:-0.192000pt;}
.ls6_c01271{letter-spacing:-0.149120pt;}
.ls8_c01271{letter-spacing:0.000000pt;}
.ls2_c01271{letter-spacing:0.106880pt;}
.ls9_c01271{letter-spacing:0.298240pt;}
.ls5_c01271{letter-spacing:32.657280pt;}
.ls4_c01271{letter-spacing:57.560320pt;}
.ls0_c01271{letter-spacing:58.156800pt;}
.ls1_c01271{letter-spacing:61.920000pt;}
.ls3_c01271{letter-spacing:63.840000pt;}
.ws2_c01271{word-spacing:-53.184000pt;}
.ws1_c01271{word-spacing:-41.306240pt;}
.ws0_c01271{word-spacing:-29.712640pt;}
.wsa_c01271{word-spacing:-4.622720pt;}
.wse_c01271{word-spacing:-1.603200pt;}
.ws7_c01271{word-spacing:-1.496320pt;}
.ws6_c01271{word-spacing:-1.282560pt;}
.ws5_c01271{word-spacing:-0.961920pt;}
.ws8_c01271{word-spacing:-0.855040pt;}
.wsd_c01271{word-spacing:-0.641280pt;}
.ws9_c01271{word-spacing:-0.213760pt;}
.wsc_c01271{word-spacing:-0.149120pt;}
.ws3_c01271{word-spacing:0.000000pt;}
.wsb_c01271{word-spacing:1.068800pt;}
.ws4_c01271{word-spacing:2.236800pt;}
._0_c01271{margin-left:-10.960320pt;}
._4_c01271{margin-left:-6.006656pt;}
._2_c01271{margin-left:-1.491200pt;}
._1_c01271{width:1.207872pt;}
._3_c01271{width:4.697280pt;}
.fs1_c01271{font-size:80.000000pt;}
.fs2_c01271{font-size:106.880000pt;}
.fs0_c01271{font-size:149.120000pt;}
.fs3_c01271{font-size:192.000000pt;}
.y0_c01271{bottom:0.000000pt;}
.ya_c01271{bottom:222.900000pt;}
.y9_c01271{bottom:269.780000pt;}
.y8_c01271{bottom:304.980000pt;}
.y12_c01271{bottom:323.393333pt;}
.y7_c01271{bottom:342.580000pt;}
.y11_c01271{bottom:358.593333pt;}
.y6_c01271{bottom:389.460000pt;}
.y10_c01271{bottom:393.793333pt;}
.y5_c01271{bottom:424.660000pt;}
.yf_c01271{bottom:428.993333pt;}
.y4_c01271{bottom:459.860000pt;}
.ye_c01271{bottom:464.193333pt;}
.y3_c01271{bottom:495.060000pt;}
.yd_c01271{bottom:499.393333pt;}
.y2_c01271{bottom:530.259867pt;}
.yc_c01271{bottom:534.593200pt;}
.y1_c01271{bottom:567.860000pt;}
.yb_c01271{bottom:572.176320pt;}
.y13_c01271{bottom:649.146667pt;}
.h2_c01271{height:77.863750pt;}
.h1_c01271{height:114.898125pt;}
.h3_c01271{height:139.875000pt;}
.h0_c01271{height:720.000000pt;}
.w0_c01271{width:960.000000pt;}
.x0_c01271{left:0.000000pt;}
.x1_c01271{left:35.766667pt;}
.x3_c01271{left:42.006667pt;}
.x2_c01271{left:90.166667pt;}
.x6_c01271{left:244.300000pt;}
.x4_c01271{left:486.943467pt;}
.x5_c01271{left:541.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_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_51e472329bfc1aceb1dd1af8.woff2')format("woff");}.ff1_c01272{font-family:ff1_c01272;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01272;src:url('chunks/assets/font_43648955980183de89b9f340.woff2')format("woff");}.ff2_c01272{font-family:ff2_c01272;line-height:0.938965;font-style:normal;font-weight:normal;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_5c20cdd1d057d696e7cbbcc8.woff2')format("woff");}.ff3_c01272{font-family:ff3_c01272;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01272{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c01272{vertical-align:-25.200000px;}
.v0_c01272{vertical-align:0.000000px;}
.v3_c01272{vertical-align:25.164000px;}
.v1_c01272{vertical-align:50.364000px;}
.ls2_c01272{letter-spacing:-0.216000px;}
.ls1_c01272{letter-spacing:0.000000px;}
.ls0_c01272{letter-spacing:0.012000px;}
.sc__c01272{text-shadow:none;}
.sc0_c01272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01272{-webkit-text-stroke:0px transparent;}
.sc0_c01272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01272{word-spacing:-46.704000px;}
.ws10_c01272{word-spacing:-0.906000px;}
.ws2_c01272{word-spacing:-0.864000px;}
.ws9_c01272{word-spacing:-0.756000px;}
.ws3_c01272{word-spacing:-0.684000px;}
.ws1_c01272{word-spacing:0.000000px;}
.wse_c01272{word-spacing:0.012000px;}
.ws6_c01272{word-spacing:0.024000px;}
.wsd_c01272{word-spacing:0.204000px;}
.ws13_c01272{word-spacing:0.318000px;}
.wsa_c01272{word-spacing:0.468000px;}
.ws8_c01272{word-spacing:0.564000px;}
.ws7_c01272{word-spacing:0.606000px;}
.wsb_c01272{word-spacing:0.996000px;}
.wsc_c01272{word-spacing:1.008000px;}
.ws11_c01272{word-spacing:1.038000px;}
.ws5_c01272{word-spacing:1.122000px;}
.wsf_c01272{word-spacing:1.284000px;}
.ws12_c01272{word-spacing:2.508000px;}
.ws4_c01272{word-spacing:18.786000px;}
._1_c01272{margin-left:-2236.357440px;}
._2_c01272{margin-left:-2.443213px;}
._0_c01272{width:1.050000px;}
.fc0_c01272{color:rgb(0,0,0);}
.fs3_c01272{font-size:72.000000px;}
.fs4_c01272{font-size:84.000000px;}
.fs5_c01272{font-size:84.240000px;}
.fs2_c01272{font-size:108.000000px;}
.fs1_c01272{font-size:168.000000px;}
.fs0_c01272{font-size:216.000000px;}
.y0_c01272{bottom:0.000000px;}
.y8_c01272{bottom:46.476000px;}
.ya_c01272{bottom:119.221500px;}
.y9_c01272{bottom:144.421500px;}
.y7_c01272{bottom:218.118000px;}
.y6_c01272{bottom:249.621000px;}
.y5_c01272{bottom:281.142000px;}
.y4_c01272{bottom:347.679000px;}
.y3_c01272{bottom:479.331000px;}
.y2_c01272{bottom:544.170000px;}
.y1_c01272{bottom:609.009000px;}
.h3_c01272{height:52.453125px;}
.h6_c01272{height:61.154297px;}
.h4_c01272{height:61.195312px;}
.h5_c01272{height:61.370156px;}
.h1_c01272{height:157.253906px;}
.h2_c01272{height:172.754625px;}
.h0_c01272{height:810.000000px;}
.w0_c01272{width:1080.000000px;}
.x0_c01272{left:0.000000px;}
.x2_c01272{left:102.090000px;}
.x3_c01272{left:145.558500px;}
.x6_c01272{left:147.063000px;}
.x5_c01272{left:188.658000px;}
.x4_c01272{left:216.412500px;}
.x1_c01272{left:226.623000px;}
.x7_c01272{left:316.404000px;}
.x9_c01272{left:546.910500px;}
.xa_c01272{left:653.068500px;}
.x8_c01272{left:1003.470000px;}
@media print{
.v2_c01272{vertical-align:-22.400000pt;}
.v0_c01272{vertical-align:0.000000pt;}
.v3_c01272{vertical-align:22.368000pt;}
.v1_c01272{vertical-align:44.768000pt;}
.ls2_c01272{letter-spacing:-0.192000pt;}
.ls1_c01272{letter-spacing:0.000000pt;}
.ls0_c01272{letter-spacing:0.010667pt;}
.ws0_c01272{word-spacing:-41.514667pt;}
.ws10_c01272{word-spacing:-0.805333pt;}
.ws2_c01272{word-spacing:-0.768000pt;}
.ws9_c01272{word-spacing:-0.672000pt;}
.ws3_c01272{word-spacing:-0.608000pt;}
.ws1_c01272{word-spacing:0.000000pt;}
.wse_c01272{word-spacing:0.010667pt;}
.ws6_c01272{word-spacing:0.021333pt;}
.wsd_c01272{word-spacing:0.181333pt;}
.ws13_c01272{word-spacing:0.282667pt;}
.wsa_c01272{word-spacing:0.416000pt;}
.ws8_c01272{word-spacing:0.501333pt;}
.ws7_c01272{word-spacing:0.538667pt;}
.wsb_c01272{word-spacing:0.885333pt;}
.wsc_c01272{word-spacing:0.896000pt;}
.ws11_c01272{word-spacing:0.922667pt;}
.ws5_c01272{word-spacing:0.997333pt;}
.wsf_c01272{word-spacing:1.141333pt;}
.ws12_c01272{word-spacing:2.229333pt;}
.ws4_c01272{word-spacing:16.698667pt;}
._1_c01272{margin-left:-1987.873280pt;}
._2_c01272{margin-left:-2.171745pt;}
._0_c01272{width:0.933333pt;}
.fs3_c01272{font-size:64.000000pt;}
.fs4_c01272{font-size:74.666667pt;}
.fs5_c01272{font-size:74.880000pt;}
.fs2_c01272{font-size:96.000000pt;}
.fs1_c01272{font-size:149.333333pt;}
.fs0_c01272{font-size:192.000000pt;}
.y0_c01272{bottom:0.000000pt;}
.y8_c01272{bottom:41.312000pt;}
.ya_c01272{bottom:105.974667pt;}
.y9_c01272{bottom:128.374667pt;}
.y7_c01272{bottom:193.882667pt;}
.y6_c01272{bottom:221.885333pt;}
.y5_c01272{bottom:249.904000pt;}
.y4_c01272{bottom:309.048000pt;}
.y3_c01272{bottom:426.072000pt;}
.y2_c01272{bottom:483.706667pt;}
.y1_c01272{bottom:541.341333pt;}
.h3_c01272{height:46.625000pt;}
.h6_c01272{height:54.359375pt;}
.h4_c01272{height:54.395833pt;}
.h5_c01272{height:54.551250pt;}
.h1_c01272{height:139.781250pt;}
.h2_c01272{height:153.559667pt;}
.h0_c01272{height:720.000000pt;}
.w0_c01272{width:960.000000pt;}
.x0_c01272{left:0.000000pt;}
.x2_c01272{left:90.746667pt;}
.x3_c01272{left:129.385333pt;}
.x6_c01272{left:130.722667pt;}
.x5_c01272{left:167.696000pt;}
.x4_c01272{left:192.366667pt;}
.x1_c01272{left:201.442667pt;}
.x7_c01272{left:281.248000pt;}
.x9_c01272{left:486.142667pt;}
.xa_c01272{left:580.505333pt;}
.x8_c01272{left:891.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_42adeac0f0b3245096aff1b0.woff2')format("woff");}.ff1_c01273{font-family:ff1_c01273;line-height:0.938965;font-style: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;}
.ls0_c01273{letter-spacing:0.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:-46.637280px;}
.ws2_c01273{word-spacing:0.000000px;}
.ws1_c01273{word-spacing:30.006720px;}
._4_c01273{margin-left:-2236.357440px;}
._2_c01273{margin-left:-2.517071px;}
._1_c01273{width:1.006896px;}
._3_c01273{width:47.915040px;}
._0_c01273{width:76.644000px;}
.fc0_c01273{color:rgb(0,0,0);}
.fs2_c01273{font-size:84.240000px;}
.fs1_c01273{font-size:167.760000px;}
.fs0_c01273{font-size:264.384000px;}
.y0_c01273{bottom:0.000000px;}
.y8_c01273{bottom:46.476000px;}
.y7_c01273{bottom:180.075000px;}
.y6_c01273{bottom:280.905000px;}
.y5_c01273{bottom:331.305000px;}
.y4_c01273{bottom:432.150000px;}
.y3_c01273{bottom:482.550000px;}
.y2_c01273{bottom:583.380000px;}
.y1_c01273{bottom:709.815000px;}
.h3_c01273{height:61.370156px;}
.h2_c01273{height:122.215781px;}
.h1_c01273{height:192.607875px;}
.h0_c01273{height:810.000000px;}
.w0_c01273{width:1080.000000px;}
.x0_c01273{left:0.000000px;}
.x2_c01273{left:58.716000px;}
.x3_c01273{left:92.556000px;}
.x1_c01273{left:402.270000px;}
.x4_c01273{left:1003.470000px;}
@media print{
.v0_c01273{vertical-align:0.000000pt;}
.ls0_c01273{letter-spacing:0.000000pt;}
.ws0_c01273{word-spacing:-41.455360pt;}
.ws2_c01273{word-spacing:0.000000pt;}
.ws1_c01273{word-spacing:26.672640pt;}
._4_c01273{margin-left:-1987.873280pt;}
._2_c01273{margin-left:-2.237396pt;}
._1_c01273{width:0.895018pt;}
._3_c01273{width:42.591147pt;}
._0_c01273{width:68.128000pt;}
.fs2_c01273{font-size:74.880000pt;}
.fs1_c01273{font-size:149.120000pt;}
.fs0_c01273{font-size:235.008000pt;}
.y0_c01273{bottom:0.000000pt;}
.y8_c01273{bottom:41.312000pt;}
.y7_c01273{bottom:160.066667pt;}
.y6_c01273{bottom:249.693333pt;}
.y5_c01273{bottom:294.493333pt;}
.y4_c01273{bottom:384.133333pt;}
.y3_c01273{bottom:428.933333pt;}
.y2_c01273{bottom:518.560000pt;}
.y1_c01273{bottom:630.946667pt;}
.h3_c01273{height:54.551250pt;}
.h2_c01273{height:108.636250pt;}
.h1_c01273{height:171.207000pt;}
.h0_c01273{height:720.000000pt;}
.w0_c01273{width:960.000000pt;}
.x0_c01273{left:0.000000pt;}
.x2_c01273{left:52.192000pt;}
.x3_c01273{left:82.272000pt;}
.x1_c01273{left:357.573333pt;}
.x4_c01273{left:891.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc0137adf6c7cf2f1c37c1fe.woff2')format("woff");}.ff1_c01274{font-family:ff1_c01274;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01274{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01274{vertical-align:0.000000px;}
.ls2_c01274{letter-spacing:-0.181200px;}
.ls3_c01274{letter-spacing:-0.162600px;}
.ls1_c01274{letter-spacing:0.000000px;}
.ls0_c01274{letter-spacing:94.716000px;}
.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:-73.458720px;}
.ws1_c01274{word-spacing:-53.442720px;}
.ws2_c01274{word-spacing:0.000000px;}
._5_c01274{margin-left:-2236.357440px;}
._2_c01274{margin-left:-2.961788px;}
._1_c01274{margin-left:-1.183104px;}
._4_c01274{width:1.345872px;}
._3_c01274{width:52.355760px;}
._0_c01274{width:94.665600px;}
.fc0_c01274{color:rgb(0,0,0);}
.fs3_c01274{font-size:84.240000px;}
.fs2_c01274{font-size:192.240000px;}
.fs1_c01274{font-size:192.384000px;}
.fs0_c01274{font-size:264.240000px;}
.y0_c01274{bottom:0.000000px;}
.ya_c01274{bottom:46.476000px;}
.y9_c01274{bottom:131.076000px;}
.y8_c01274{bottom:188.670000px;}
.y7_c01274{bottom:257.835000px;}
.y6_c01274{bottom:315.435000px;}
.y5_c01274{bottom:384.555000px;}
.y4_c01274{bottom:442.185000px;}
.y3_c01274{bottom:511.305000px;}
.y2_c01274{bottom:568.950000px;}
.y1_c01274{bottom:697.710000px;}
.h4_c01274{height:61.370156px;}
.h3_c01274{height:140.049844px;}
.h2_c01274{height:140.154750px;}
.h1_c01274{height:192.502969px;}
.h0_c01274{height:810.000000px;}
.w0_c01274{width:1080.000000px;}
.x0_c01274{left:0.000000px;}
.x2_c01274{left:64.800000px;}
.x3_c01274{left:105.300000px;}
.x1_c01274{left:389.310000px;}
.x4_c01274{left:1003.470000px;}
@media print{
.v0_c01274{vertical-align:0.000000pt;}
.ls2_c01274{letter-spacing:-0.161067pt;}
.ls3_c01274{letter-spacing:-0.144533pt;}
.ls1_c01274{letter-spacing:0.000000pt;}
.ls0_c01274{letter-spacing:84.192000pt;}
.ws0_c01274{word-spacing:-65.296640pt;}
.ws1_c01274{word-spacing:-47.504640pt;}
.ws2_c01274{word-spacing:0.000000pt;}
._5_c01274{margin-left:-1987.873280pt;}
._2_c01274{margin-left:-2.632701pt;}
._1_c01274{margin-left:-1.051648pt;}
._4_c01274{width:1.196331pt;}
._3_c01274{width:46.538453pt;}
._0_c01274{width:84.147200pt;}
.fs3_c01274{font-size:74.880000pt;}
.fs2_c01274{font-size:170.880000pt;}
.fs1_c01274{font-size:171.008000pt;}
.fs0_c01274{font-size:234.880000pt;}
.y0_c01274{bottom:0.000000pt;}
.ya_c01274{bottom:41.312000pt;}
.y9_c01274{bottom:116.512000pt;}
.y8_c01274{bottom:167.706667pt;}
.y7_c01274{bottom:229.186667pt;}
.y6_c01274{bottom:280.386667pt;}
.y5_c01274{bottom:341.826667pt;}
.y4_c01274{bottom:393.053333pt;}
.y3_c01274{bottom:454.493333pt;}
.y2_c01274{bottom:505.733333pt;}
.y1_c01274{bottom:620.186667pt;}
.h4_c01274{height:54.551250pt;}
.h3_c01274{height:124.488750pt;}
.h2_c01274{height:124.582000pt;}
.h1_c01274{height:171.113750pt;}
.h0_c01274{height:720.000000pt;}
.w0_c01274{width:960.000000pt;}
.x0_c01274{left:0.000000pt;}
.x2_c01274{left:57.600000pt;}
.x3_c01274{left:93.600000pt;}
.x1_c01274{left:346.053333pt;}
.x4_c01274{left:891.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c3fc00fd8ea1c412cb1bc94d.woff2')format("woff");}.ff1_c01275{font-family:ff1_c01275;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01275{vertical-align:0.000000px;}
.ls2_c01275{letter-spacing:-0.202800px;}
.ls1_c01275{letter-spacing:0.000000px;}
.ls0_c01275{letter-spacing:94.665600px;}
.sc__c01275{text-shadow:none;}
.sc0_c01275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01275{-webkit-text-stroke:0px transparent;}
.sc0_c01275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01275{word-spacing:-73.498752px;}
.ws1_c01275{word-spacing:0.000000px;}
._4_c01275{margin-left:-2236.357440px;}
._2_c01275{margin-left:-1.923455px;}
._0_c01275{width:1.321656px;}
._1_c01275{width:52.167264px;}
._3_c01275{width:94.716000px;}
.fc0_c01275{color:rgb(0,0,0);}
.fs3_c01275{font-size:84.240000px;}
.fs2_c01275{font-size:192.240000px;}
.fs1_c01275{font-size:192.384000px;}
.fs0_c01275{font-size:264.384000px;}
.y0_c01275{bottom:0.000000px;}
.y8_c01275{bottom:46.476000px;}
.y7_c01275{bottom:269.355000px;}
.y6_c01275{bottom:326.955000px;}
.y5_c01275{bottom:396.075000px;}
.y4_c01275{bottom:453.705000px;}
.y3_c01275{bottom:511.305000px;}
.y2_c01275{bottom:568.950000px;}
.y1_c01275{bottom:693.615000px;}
.h4_c01275{height:61.370156px;}
.h3_c01275{height:140.049844px;}
.h2_c01275{height:140.154750px;}
.h1_c01275{height:192.607875px;}
.h0_c01275{height:810.000000px;}
.w0_c01275{width:1080.000000px;}
.x0_c01275{left:0.000000px;}
.x2_c01275{left:64.800000px;}
.x3_c01275{left:105.300000px;}
.x1_c01275{left:390.315000px;}
.x4_c01275{left:1003.470000px;}
@media print{
.v0_c01275{vertical-align:0.000000pt;}
.ls2_c01275{letter-spacing:-0.180267pt;}
.ls1_c01275{letter-spacing:0.000000pt;}
.ls0_c01275{letter-spacing:84.147200pt;}
.ws0_c01275{word-spacing:-65.332224pt;}
.ws1_c01275{word-spacing:0.000000pt;}
._4_c01275{margin-left:-1987.873280pt;}
._2_c01275{margin-left:-1.709738pt;}
._0_c01275{width:1.174805pt;}
._1_c01275{width:46.370901pt;}
._3_c01275{width:84.192000pt;}
.fs3_c01275{font-size:74.880000pt;}
.fs2_c01275{font-size:170.880000pt;}
.fs1_c01275{font-size:171.008000pt;}
.fs0_c01275{font-size:235.008000pt;}
.y0_c01275{bottom:0.000000pt;}
.y8_c01275{bottom:41.312000pt;}
.y7_c01275{bottom:239.426667pt;}
.y6_c01275{bottom:290.626667pt;}
.y5_c01275{bottom:352.066667pt;}
.y4_c01275{bottom:403.293333pt;}
.y3_c01275{bottom:454.493333pt;}
.y2_c01275{bottom:505.733333pt;}
.y1_c01275{bottom:616.546667pt;}
.h4_c01275{height:54.551250pt;}
.h3_c01275{height:124.488750pt;}
.h2_c01275{height:124.582000pt;}
.h1_c01275{height:171.207000pt;}
.h0_c01275{height:720.000000pt;}
.w0_c01275{width:960.000000pt;}
.x0_c01275{left:0.000000pt;}
.x2_c01275{left:57.600000pt;}
.x3_c01275{left:93.600000pt;}
.x1_c01275{left:346.946667pt;}
.x4_c01275{left:891.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b38053ffa70918330b9c066d.woff2')format("woff");}.ff1_c01276{font-family:ff1_c01276;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01276{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01276{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01276{vertical-align:0.000000px;}
.v1_c01276{vertical-align:76.320000px;}
.ls1_c01276{letter-spacing:0.000000px;}
.ls0_c01276{letter-spacing:0.026400px;}
.ls2_c01276{letter-spacing:0.106800px;}
.ls3_c01276{letter-spacing:0.250800px;}
.ls4_c01276{letter-spacing:0.360000px;}
.sc__c01276{text-shadow:none;}
.sc0_c01276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01276{-webkit-text-stroke:0px transparent;}
.sc0_c01276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01276{word-spacing:-33.426720px;}
.ws1_c01276{word-spacing:0.000000px;}
._1_c01276{margin-left:-6.733200px;}
._3_c01276{margin-left:-5.600208px;}
._2_c01276{margin-left:-2.696593px;}
._0_c01276{margin-left:-1.512000px;}
._4_c01276{width:534.472320px;}
.fc0_c01276{color:rgb(0,0,0);}
.fs1_c01276{font-size:84.240000px;}
.fs2_c01276{font-size:120.240000px;}
.fs3_c01276{font-size:120.384000px;}
.fs0_c01276{font-size:216.000000px;}
.y0_c01276{bottom:0.000000px;}
.y9_c01276{bottom:27.396000px;}
.y2_c01276{bottom:46.476000px;}
.y8_c01276{bottom:416.625000px;}
.y7_c01276{bottom:452.625000px;}
.y6_c01276{bottom:488.625000px;}
.y5_c01276{bottom:524.625000px;}
.y4_c01276{bottom:560.670000px;}
.y3_c01276{bottom:596.670000px;}
.y1_c01276{bottom:722.310000px;}
.h2_c01276{height:61.370156px;}
.h3_c01276{height:87.596719px;}
.h4_c01276{height:87.701625px;}
.h5_c01276{height:137.690156px;}
.h1_c01276{height:157.359375px;}
.h0_c01276{height:810.000000px;}
.w0_c01276{width:1080.000000px;}
.x0_c01276{left:0.000000px;}
.x3_c01276{left:29.196000px;}
.x4_c01276{left:38.916000px;}
.x1_c01276{left:228.810000px;}
.x2_c01276{left:1003.470000px;}
@media print{
.v0_c01276{vertical-align:0.000000pt;}
.v1_c01276{vertical-align:67.840000pt;}
.ls1_c01276{letter-spacing:0.000000pt;}
.ls0_c01276{letter-spacing:0.023467pt;}
.ls2_c01276{letter-spacing:0.094933pt;}
.ls3_c01276{letter-spacing:0.222933pt;}
.ls4_c01276{letter-spacing:0.320000pt;}
.ws0_c01276{word-spacing:-29.712640pt;}
.ws1_c01276{word-spacing:0.000000pt;}
._1_c01276{margin-left:-5.985066pt;}
._3_c01276{margin-left:-4.977962pt;}
._2_c01276{margin-left:-2.396971pt;}
._0_c01276{margin-left:-1.344000pt;}
._4_c01276{width:475.086507pt;}
.fs1_c01276{font-size:74.880000pt;}
.fs2_c01276{font-size:106.880000pt;}
.fs3_c01276{font-size:107.008000pt;}
.fs0_c01276{font-size:192.000000pt;}
.y0_c01276{bottom:0.000000pt;}
.y9_c01276{bottom:24.352000pt;}
.y2_c01276{bottom:41.312000pt;}
.y8_c01276{bottom:370.333333pt;}
.y7_c01276{bottom:402.333333pt;}
.y6_c01276{bottom:434.333333pt;}
.y5_c01276{bottom:466.333333pt;}
.y4_c01276{bottom:498.373333pt;}
.y3_c01276{bottom:530.373333pt;}
.y1_c01276{bottom:642.053333pt;}
.h2_c01276{height:54.551250pt;}
.h3_c01276{height:77.863750pt;}
.h4_c01276{height:77.957000pt;}
.h5_c01276{height:122.391250pt;}
.h1_c01276{height:139.875000pt;}
.h0_c01276{height:720.000000pt;}
.w0_c01276{width:960.000000pt;}
.x0_c01276{left:0.000000pt;}
.x3_c01276{left:25.952000pt;}
.x4_c01276{left:34.592000pt;}
.x1_c01276{left:203.386667pt;}
.x2_c01276{left:891.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2365ba3e1ca3b67df441f27c.woff2')format("woff");}.ff1_c01277{font-family:ff1_c01277;line-height:0.938965;font-style: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);}
.v1_c01277{vertical-align:-35.280000px;}
.v0_c01277{vertical-align:0.000000px;}
.v2_c01277{vertical-align:43.200000px;}
.ls0_c01277{letter-spacing:0.000000px;}
.ls1_c01277{letter-spacing:0.037200px;}
.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;}
}
.ws2_c01277{word-spacing:-40.032000px;}
.ws3_c01277{word-spacing:-26.621280px;}
.ws4_c01277{word-spacing:0.000000px;}
.ws1_c01277{word-spacing:13.662000px;}
.ws0_c01277{word-spacing:45.108000px;}
._3_c01277{margin-left:-8.410752px;}
._1_c01277{margin-left:-4.896000px;}
._5_c01277{margin-left:-2.443213px;}
._2_c01277{margin-left:-1.296000px;}
._4_c01277{width:1.296000px;}
._0_c01277{width:85.140000px;}
.fc0_c01277{color:rgb(0,0,0);}
.fs1_c01277{font-size:84.240000px;}
.fs4_c01277{font-size:95.760000px;}
.fs5_c01277{font-size:95.904000px;}
.fs2_c01277{font-size:144.000000px;}
.fs3_c01277{font-size:144.144000px;}
.fs0_c01277{font-size:264.384000px;}
.y0_c01277{bottom:0.000000px;}
.y2_c01277{bottom:46.476000px;}
.ya_c01277{bottom:255.345000px;}
.y9_c01277{bottom:298.545000px;}
.y8_c01277{bottom:341.790000px;}
.y7_c01277{bottom:384.990000px;}
.y6_c01277{bottom:428.190000px;}
.y5_c01277{bottom:471.390000px;}
.y4_c01277{bottom:514.620000px;}
.y3_c01277{bottom:557.820000px;}
.y1_c01277{bottom:709.815000px;}
.h2_c01277{height:61.370156px;}
.h3_c01277{height:104.906250px;}
.h4_c01277{height:105.011156px;}
.h6_c01277{height:112.962656px;}
.h5_c01277{height:113.067563px;}
.h1_c01277{height:192.607875px;}
.h0_c01277{height:810.000000px;}
.w0_c01277{width:1080.000000px;}
.x0_c01277{left:0.000000px;}
.x1_c01277{left:154.365000px;}
.x5_c01277{left:456.090000px;}
.x3_c01277{left:467.205000px;}
.x4_c01277{left:501.090000px;}
.x2_c01277{left:1003.470000px;}
@media print{
.v1_c01277{vertical-align:-31.360000pt;}
.v0_c01277{vertical-align:0.000000pt;}
.v2_c01277{vertical-align:38.400000pt;}
.ls0_c01277{letter-spacing:0.000000pt;}
.ls1_c01277{letter-spacing:0.033067pt;}
.ws2_c01277{word-spacing:-35.584000pt;}
.ws3_c01277{word-spacing:-23.663360pt;}
.ws4_c01277{word-spacing:0.000000pt;}
.ws1_c01277{word-spacing:12.144000pt;}
.ws0_c01277{word-spacing:40.096000pt;}
._3_c01277{margin-left:-7.476224pt;}
._1_c01277{margin-left:-4.352000pt;}
._5_c01277{margin-left:-2.171745pt;}
._2_c01277{margin-left:-1.152000pt;}
._4_c01277{width:1.152000pt;}
._0_c01277{width:75.680000pt;}
.fs1_c01277{font-size:74.880000pt;}
.fs4_c01277{font-size:85.120000pt;}
.fs5_c01277{font-size:85.248000pt;}
.fs2_c01277{font-size:128.000000pt;}
.fs3_c01277{font-size:128.128000pt;}
.fs0_c01277{font-size:235.008000pt;}
.y0_c01277{bottom:0.000000pt;}
.y2_c01277{bottom:41.312000pt;}
.ya_c01277{bottom:226.973333pt;}
.y9_c01277{bottom:265.373333pt;}
.y8_c01277{bottom:303.813333pt;}
.y7_c01277{bottom:342.213333pt;}
.y6_c01277{bottom:380.613333pt;}
.y5_c01277{bottom:419.013333pt;}
.y4_c01277{bottom:457.440000pt;}
.y3_c01277{bottom:495.840000pt;}
.y1_c01277{bottom:630.946667pt;}
.h2_c01277{height:54.551250pt;}
.h3_c01277{height:93.250000pt;}
.h4_c01277{height:93.343250pt;}
.h6_c01277{height:100.411250pt;}
.h5_c01277{height:100.504500pt;}
.h1_c01277{height:171.207000pt;}
.h0_c01277{height:720.000000pt;}
.w0_c01277{width:960.000000pt;}
.x0_c01277{left:0.000000pt;}
.x1_c01277{left:137.213333pt;}
.x5_c01277{left:405.413333pt;}
.x3_c01277{left:415.293333pt;}
.x4_c01277{left:445.413333pt;}
.x2_c01277{left:891.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4f066fca3ecbd7d34d4a08f5.woff2')format("woff");}.ff1_c01278{font-family:ff1_c01278;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01278{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01278{vertical-align:0.000000px;}
.ls1_c01278{letter-spacing:0.000000px;}
.ls0_c01278{letter-spacing:0.306600px;}
.sc__c01278{text-shadow:none;}
.sc0_c01278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01278{-webkit-text-stroke:0px transparent;}
.sc0_c01278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01278{word-spacing:0.000000px;}
._1_c01278{margin-left:-2.443213px;}
._0_c01278{width:1.638960px;}
.fc1_c01278{color:rgb(255,0,0);}
.fc0_c01278{color:rgb(0,0,0);}
.fs1_c01278{font-size:84.240000px;}
.fs2_c01278{font-size:239.760000px;}
.fs3_c01278{font-size:239.904000px;}
.fs0_c01278{font-size:264.240000px;}
.y0_c01278{bottom:0.000000px;}
.y2_c01278{bottom:46.476000px;}
.y5_c01278{bottom:269.565000px;}
.y4_c01278{bottom:341.565000px;}
.y3_c01278{bottom:413.565000px;}
.y1_c01278{bottom:701.610000px;}
.h2_c01278{height:61.370156px;}
.h3_c01278{height:174.668906px;}
.h4_c01278{height:174.773812px;}
.h1_c01278{height:192.502969px;}
.h0_c01278{height:810.000000px;}
.w0_c01278{width:1080.000000px;}
.x0_c01278{left:0.000000px;}
.x3_c01278{left:54.792000px;}
.x4_c01278{left:122.832000px;}
.x1_c01278{left:222.225000px;}
.x5_c01278{left:363.345000px;}
.x6_c01278{left:456.090000px;}
.x2_c01278{left:1003.470000px;}
@media print{
.v0_c01278{vertical-align:0.000000pt;}
.ls1_c01278{letter-spacing:0.000000pt;}
.ls0_c01278{letter-spacing:0.272533pt;}
.ws0_c01278{word-spacing:0.000000pt;}
._1_c01278{margin-left:-2.171745pt;}
._0_c01278{width:1.456853pt;}
.fs1_c01278{font-size:74.880000pt;}
.fs2_c01278{font-size:213.120000pt;}
.fs3_c01278{font-size:213.248000pt;}
.fs0_c01278{font-size:234.880000pt;}
.y0_c01278{bottom:0.000000pt;}
.y2_c01278{bottom:41.312000pt;}
.y5_c01278{bottom:239.613333pt;}
.y4_c01278{bottom:303.613333pt;}
.y3_c01278{bottom:367.613333pt;}
.y1_c01278{bottom:623.653333pt;}
.h2_c01278{height:54.551250pt;}
.h3_c01278{height:155.261250pt;}
.h4_c01278{height:155.354500pt;}
.h1_c01278{height:171.113750pt;}
.h0_c01278{height:720.000000pt;}
.w0_c01278{width:960.000000pt;}
.x0_c01278{left:0.000000pt;}
.x3_c01278{left:48.704000pt;}
.x4_c01278{left:109.184000pt;}
.x1_c01278{left:197.533333pt;}
.x5_c01278{left:322.973333pt;}
.x6_c01278{left:405.413333pt;}
.x2_c01278{left:891.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_963a68ab90fa9340c6a31e62.woff2')format("woff");}.ff1_c01279{font-family:ff1_c01279;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01279{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01279{vertical-align:0.000000px;}
.ls3_c01279{letter-spacing:-0.151800px;}
.ls2_c01279{letter-spacing:0.000000px;}
.ls0_c01279{letter-spacing:0.018600px;}
.ls1_c01279{letter-spacing:94.716000px;}
.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:0.000000px;}
._4_c01279{margin-left:-2236.357440px;}
._2_c01279{margin-left:-3.559010px;}
._5_c01279{margin-left:-2.443213px;}
._1_c01279{margin-left:-1.346303px;}
._3_c01279{width:52.288126px;}
._0_c01279{width:94.665600px;}
.fc0_c01279{color:rgb(0,0,0);}
.fs3_c01279{font-size:84.240000px;}
.fs2_c01279{font-size:192.240000px;}
.fs1_c01279{font-size:192.384000px;}
.fs0_c01279{font-size:264.240000px;}
.y0_c01279{bottom:0.000000px;}
.ya_c01279{bottom:46.476000px;}
.y9_c01279{bottom:142.596000px;}
.y8_c01279{bottom:200.190000px;}
.y7_c01279{bottom:269.355000px;}
.y6_c01279{bottom:326.955000px;}
.y5_c01279{bottom:396.075000px;}
.y4_c01279{bottom:453.705000px;}
.y3_c01279{bottom:511.305000px;}
.y2_c01279{bottom:568.950000px;}
.y1_c01279{bottom:697.710000px;}
.h4_c01279{height:61.370156px;}
.h3_c01279{height:140.049844px;}
.h2_c01279{height:140.154750px;}
.h1_c01279{height:192.502969px;}
.h0_c01279{height:810.000000px;}
.w0_c01279{width:1080.000000px;}
.x0_c01279{left:0.000000px;}
.x2_c01279{left:64.800000px;}
.x3_c01279{left:105.300000px;}
.x1_c01279{left:137.808000px;}
.x4_c01279{left:1003.470000px;}
@media print{
.v0_c01279{vertical-align:0.000000pt;}
.ls3_c01279{letter-spacing:-0.134933pt;}
.ls2_c01279{letter-spacing:0.000000pt;}
.ls0_c01279{letter-spacing:0.016533pt;}
.ls1_c01279{letter-spacing:84.192000pt;}
.ws0_c01279{word-spacing:0.000000pt;}
._4_c01279{margin-left:-1987.873280pt;}
._2_c01279{margin-left:-3.163565pt;}
._5_c01279{margin-left:-2.171745pt;}
._1_c01279{margin-left:-1.196714pt;}
._3_c01279{width:46.478335pt;}
._0_c01279{width:84.147200pt;}
.fs3_c01279{font-size:74.880000pt;}
.fs2_c01279{font-size:170.880000pt;}
.fs1_c01279{font-size:171.008000pt;}
.fs0_c01279{font-size:234.880000pt;}
.y0_c01279{bottom:0.000000pt;}
.ya_c01279{bottom:41.312000pt;}
.y9_c01279{bottom:126.752000pt;}
.y8_c01279{bottom:177.946667pt;}
.y7_c01279{bottom:239.426667pt;}
.y6_c01279{bottom:290.626667pt;}
.y5_c01279{bottom:352.066667pt;}
.y4_c01279{bottom:403.293333pt;}
.y3_c01279{bottom:454.493333pt;}
.y2_c01279{bottom:505.733333pt;}
.y1_c01279{bottom:620.186667pt;}
.h4_c01279{height:54.551250pt;}
.h3_c01279{height:124.488750pt;}
.h2_c01279{height:124.582000pt;}
.h1_c01279{height:171.113750pt;}
.h0_c01279{height:720.000000pt;}
.w0_c01279{width:960.000000pt;}
.x0_c01279{left:0.000000pt;}
.x2_c01279{left:57.600000pt;}
.x3_c01279{left:93.600000pt;}
.x1_c01279{left:122.496000pt;}
.x4_c01279{left:891.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69560f5f36685303f063906d.woff2')format("woff");}.ff1_c01280{font-family:ff1_c01280;line-height:0.938965;font-style: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;}
.ls0_c01280{letter-spacing:0.000000px;}
.sc__c01280{text-shadow:none;}
.sc0_c01280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01280{-webkit-text-stroke:0px transparent;}
.sc0_c01280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01280{word-spacing:0.000000px;}
._0_c01280{margin-left:-2.268000px;}
._2_c01280{margin-left:-1.188000px;}
._1_c01280{width:1.512000px;}
.fc0_c01280{color:rgb(0,0,0);}
.fs1_c01280{font-size:84.240000px;}
.fs2_c01280{font-size:108.000000px;}
.fs0_c01280{font-size:264.384000px;}
.y0_c01280{bottom:0.000000px;}
.y2_c01280{bottom:46.476000px;}
.y3_c01280{bottom:235.155000px;}
.y4_c01280{bottom:379.335000px;}
.y1_c01280{bottom:702.255000px;}
.h2_c01280{height:61.370156px;}
.h3_c01280{height:78.679688px;}
.h1_c01280{height:192.607875px;}
.h0_c01280{height:810.000000px;}
.w0_c01280{width:1080.000000px;}
.x0_c01280{left:0.000000px;}
.x1_c01280{left:139.608000px;}
.x4_c01280{left:456.090000px;}
.x3_c01280{left:500.115000px;}
.x2_c01280{left:1003.470000px;}
@media print{
.v0_c01280{vertical-align:0.000000pt;}
.ls0_c01280{letter-spacing:0.000000pt;}
.ws0_c01280{word-spacing:0.000000pt;}
._0_c01280{margin-left:-2.016000pt;}
._2_c01280{margin-left:-1.056000pt;}
._1_c01280{width:1.344000pt;}
.fs1_c01280{font-size:74.880000pt;}
.fs2_c01280{font-size:96.000000pt;}
.fs0_c01280{font-size:235.008000pt;}
.y0_c01280{bottom:0.000000pt;}
.y2_c01280{bottom:41.312000pt;}
.y3_c01280{bottom:209.026667pt;}
.y4_c01280{bottom:337.186667pt;}
.y1_c01280{bottom:624.226667pt;}
.h2_c01280{height:54.551250pt;}
.h3_c01280{height:69.937500pt;}
.h1_c01280{height:171.207000pt;}
.h0_c01280{height:720.000000pt;}
.w0_c01280{width:960.000000pt;}
.x0_c01280{left:0.000000pt;}
.x1_c01280{left:124.096000pt;}
.x4_c01280{left:405.413333pt;}
.x3_c01280{left:444.546667pt;}
.x2_c01280{left:891.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6c63e22fbf864520d6a8ddd6.woff2')format("woff");}.ff1_c01281{font-family:ff1_c01281;line-height:0.938965;font-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_c01281{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.ls1_c01281{letter-spacing:-0.037200px;}
.ls0_c01281{letter-spacing:0.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;}
}
.ws0_c01281{word-spacing:-23.381520px;}
.ws1_c01281{word-spacing:0.000000px;}
._0_c01281{margin-left:-2236.320480px;}
._1_c01281{margin-left:-2.443213px;}
.fc1_c01281{color:rgb(255,255,255);}
.fc0_c01281{color:rgb(0,0,0);}
.fs1_c01281{font-size:84.240000px;}
.fs2_c01281{font-size:108.000000px;}
.fs0_c01281{font-size:264.384000px;}
.y0_c01281{bottom:0.000000px;}
.y2_c01281{bottom:46.476000px;}
.y3_c01281{bottom:451.650000px;}
.y4_c01281{bottom:451.695000px;}
.y1_c01281{bottom:693.615000px;}
.h2_c01281{height:61.370156px;}
.h3_c01281{height:78.679688px;}
.h1_c01281{height:192.607875px;}
.h0_c01281{height:810.000000px;}
.w0_c01281{width:1080.000000px;}
.x0_c01281{left:0.000000px;}
.x1_c01281{left:168.945000px;}
.x3_c01281{left:198.105000px;}
.x4_c01281{left:986.220000px;}
.x2_c01281{left:991.770000px;}
@media print{
.v0_c01281{vertical-align:0.000000pt;}
.ls1_c01281{letter-spacing:-0.033067pt;}
.ls0_c01281{letter-spacing:0.000000pt;}
.ws0_c01281{word-spacing:-20.783573pt;}
.ws1_c01281{word-spacing:0.000000pt;}
._0_c01281{margin-left:-1987.840427pt;}
._1_c01281{margin-left:-2.171745pt;}
.fs1_c01281{font-size:74.880000pt;}
.fs2_c01281{font-size:96.000000pt;}
.fs0_c01281{font-size:235.008000pt;}
.y0_c01281{bottom:0.000000pt;}
.y2_c01281{bottom:41.312000pt;}
.y3_c01281{bottom:401.466667pt;}
.y4_c01281{bottom:401.506667pt;}
.y1_c01281{bottom:616.546667pt;}
.h2_c01281{height:54.551250pt;}
.h3_c01281{height:69.937500pt;}
.h1_c01281{height:171.207000pt;}
.h0_c01281{height:720.000000pt;}
.w0_c01281{width:960.000000pt;}
.x0_c01281{left:0.000000pt;}
.x1_c01281{left:150.173333pt;}
.x3_c01281{left:176.093333pt;}
.x4_c01281{left:876.640000pt;}
.x2_c01281{left:881.573333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5a4b728c640d8843ef0a4bee.woff2')format("woff");}.ff1_c01282{font-family:ff1_c01282;line-height:0.938965;font-style: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:-6.540000px;}
.ls0_c01282{letter-spacing:0.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;}
}
.ws0_c01282{word-spacing:-16.878720px;}
.ws1_c01282{word-spacing:0.000000px;}
._0_c01282{margin-left:-2229.794880px;}
._1_c01282{margin-left:-2.443213px;}
.fc0_c01282{color:rgb(0,0,0);}
.fs1_c01282{font-size:84.240000px;}
.fs0_c01282{font-size:264.384000px;}
.y0_c01282{bottom:0.000000px;}
.y2_c01282{bottom:46.476000px;}
.y1_c01282{bottom:693.615000px;}
.h2_c01282{height:61.370156px;}
.h1_c01282{height:192.607875px;}
.h0_c01282{height:810.000000px;}
.w0_c01282{width:1080.000000px;}
.x0_c01282{left:0.000000px;}
.x1_c01282{left:77.148000px;}
.x2_c01282{left:993.390000px;}
@media print{
.v0_c01282{vertical-align:0.000000pt;}
.ls1_c01282{letter-spacing:-5.813333pt;}
.ls0_c01282{letter-spacing:0.000000pt;}
.ws0_c01282{word-spacing:-15.003307pt;}
.ws1_c01282{word-spacing:0.000000pt;}
._0_c01282{margin-left:-1982.039893pt;}
._1_c01282{margin-left:-2.171745pt;}
.fs1_c01282{font-size:74.880000pt;}
.fs0_c01282{font-size:235.008000pt;}
.y0_c01282{bottom:0.000000pt;}
.y2_c01282{bottom:41.312000pt;}
.y1_c01282{bottom:616.546667pt;}
.h2_c01282{height:54.551250pt;}
.h1_c01282{height:171.207000pt;}
.h0_c01282{height:720.000000pt;}
.w0_c01282{width:960.000000pt;}
.x0_c01282{left:0.000000pt;}
.x1_c01282{left:68.576000pt;}
.x2_c01282{left:883.013333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_48d77ac66ae06eb1cc542cad.woff2')format("woff");}.ff1_c01283{font-family:ff1_c01283;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01283{vertical-align:0.000000px;}
.ls0_c01283{letter-spacing:-0.085200px;}
.ls2_c01283{letter-spacing:-0.037200px;}
.ls1_c01283{letter-spacing:0.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.176256px;}
.ws1_c01283{word-spacing:0.000000px;}
._1_c01283{margin-left:-2.443213px;}
._0_c01283{margin-left:-1.080000px;}
.fc0_c01283{color:rgb(0,0,0);}
.fs1_c01283{font-size:84.240000px;}
.fs2_c01283{font-size:108.000000px;}
.fs0_c01283{font-size:264.384000px;}
.y0_c01283{bottom:0.000000px;}
.y2_c01283{bottom:46.476000px;}
.y4_c01283{bottom:360.255000px;}
.y3_c01283{bottom:596.085000px;}
.y1_c01283{bottom:702.255000px;}
.h2_c01283{height:61.370156px;}
.h3_c01283{height:78.679688px;}
.h1_c01283{height:192.607875px;}
.h0_c01283{height:810.000000px;}
.w0_c01283{width:1080.000000px;}
.x0_c01283{left:0.000000px;}
.x1_c01283{left:253.545000px;}
.x5_c01283{left:456.090000px;}
.x3_c01283{left:670.215000px;}
.x4_c01283{left:686.055000px;}
.x2_c01283{left:991.770000px;}
@media print{
.v0_c01283{vertical-align:0.000000pt;}
.ls0_c01283{letter-spacing:-0.075733pt;}
.ls2_c01283{letter-spacing:-0.033067pt;}
.ls1_c01283{letter-spacing:0.000000pt;}
.ws0_c01283{word-spacing:-0.156672pt;}
.ws1_c01283{word-spacing:0.000000pt;}
._1_c01283{margin-left:-2.171745pt;}
._0_c01283{margin-left:-0.960000pt;}
.fs1_c01283{font-size:74.880000pt;}
.fs2_c01283{font-size:96.000000pt;}
.fs0_c01283{font-size:235.008000pt;}
.y0_c01283{bottom:0.000000pt;}
.y2_c01283{bottom:41.312000pt;}
.y4_c01283{bottom:320.226667pt;}
.y3_c01283{bottom:529.853333pt;}
.y1_c01283{bottom:624.226667pt;}
.h2_c01283{height:54.551250pt;}
.h3_c01283{height:69.937500pt;}
.h1_c01283{height:171.207000pt;}
.h0_c01283{height:720.000000pt;}
.w0_c01283{width:960.000000pt;}
.x0_c01283{left:0.000000pt;}
.x1_c01283{left:225.373333pt;}
.x5_c01283{left:405.413333pt;}
.x3_c01283{left:595.746667pt;}
.x4_c01283{left:609.826667pt;}
.x2_c01283{left:881.573333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8dec7abf395bc950b6d2c1f2.woff2')format("woff");}.ff1_c01284{font-family:ff1_c01284;line-height:0.938965;font-style: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;}
.ls4_c01284{letter-spacing:-0.756000px;}
.ls3_c01284{letter-spacing:-0.037200px;}
.ls2_c01284{letter-spacing:0.000000px;}
.ls1_c01284{letter-spacing:0.028080px;}
.ls0_c01284{letter-spacing:0.341400px;}
.sc__c01284{text-shadow:none;}
.sc0_c01284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01284{-webkit-text-stroke:0px transparent;}
.sc0_c01284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01284{word-spacing:-23.418720px;}
.ws0_c01284{word-spacing:-23.381520px;}
.ws1_c01284{word-spacing:-22.662720px;}
.ws3_c01284{word-spacing:0.000000px;}
._0_c01284{margin-left:-3402.900480px;}
._3_c01284{margin-left:-11.203836px;}
._2_c01284{margin-left:-7.278036px;}
._1_c01284{margin-left:-1.853364px;}
._4_c01284{width:1.016088px;}
.fc0_c01284{color:rgb(0,0,0);}
.fs1_c01284{font-size:84.240000px;}
.fs2_c01284{font-size:84.384000px;}
.fs0_c01284{font-size:264.384000px;}
.y0_c01284{bottom:0.000000px;}
.y3_c01284{bottom:21.276000px;}
.y2_c01284{bottom:46.476000px;}
.y1_c01284{bottom:711.105000px;}
.h2_c01284{height:61.370156px;}
.h3_c01284{height:61.475062px;}
.h1_c01284{height:192.607875px;}
.h0_c01284{height:810.000000px;}
.w0_c01284{width:1080.000000px;}
.x0_c01284{left:0.000000px;}
.x1_c01284{left:284.865000px;}
.x3_c01284{left:439.530000px;}
.x2_c01284{left:991.770000px;}
@media print{
.v0_c01284{vertical-align:0.000000pt;}
.ls4_c01284{letter-spacing:-0.672000pt;}
.ls3_c01284{letter-spacing:-0.033067pt;}
.ls2_c01284{letter-spacing:0.000000pt;}
.ls1_c01284{letter-spacing:0.024960pt;}
.ls0_c01284{letter-spacing:0.303467pt;}
.ws2_c01284{word-spacing:-20.816640pt;}
.ws0_c01284{word-spacing:-20.783573pt;}
.ws1_c01284{word-spacing:-20.144640pt;}
.ws3_c01284{word-spacing:0.000000pt;}
._0_c01284{margin-left:-3024.800427pt;}
._3_c01284{margin-left:-9.958965pt;}
._2_c01284{margin-left:-6.469365pt;}
._1_c01284{margin-left:-1.647435pt;}
._4_c01284{width:0.903190pt;}
.fs1_c01284{font-size:74.880000pt;}
.fs2_c01284{font-size:75.008000pt;}
.fs0_c01284{font-size:235.008000pt;}
.y0_c01284{bottom:0.000000pt;}
.y3_c01284{bottom:18.912000pt;}
.y2_c01284{bottom:41.312000pt;}
.y1_c01284{bottom:632.093333pt;}
.h2_c01284{height:54.551250pt;}
.h3_c01284{height:54.644500pt;}
.h1_c01284{height:171.207000pt;}
.h0_c01284{height:720.000000pt;}
.w0_c01284{width:960.000000pt;}
.x0_c01284{left:0.000000pt;}
.x1_c01284{left:253.213333pt;}
.x3_c01284{left:390.693333pt;}
.x2_c01284{left:881.573333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_74ad89571b15d5c8ba2e0815.woff2')format("woff");}.ff1_c01285{font-family:ff1_c01285;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01285{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01285{vertical-align:0.000000px;}
.ls1_c01285{letter-spacing:-0.037200px;}
.ls0_c01285{letter-spacing:0.000000px;}
.sc__c01285{text-shadow:none;}
.sc0_c01285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01285{-webkit-text-stroke:0px transparent;}
.sc0_c01285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01285{word-spacing:-23.381520px;}
.ws1_c01285{word-spacing:0.000000px;}
._0_c01285{margin-left:-2236.320480px;}
._1_c01285{margin-left:-2.443213px;}
.fc0_c01285{color:rgb(0,0,0);}
.fs1_c01285{font-size:84.240000px;}
.fs0_c01285{font-size:264.240000px;}
.y0_c01285{bottom:0.000000px;}
.y2_c01285{bottom:46.476000px;}
.y1_c01285{bottom:695.670000px;}
.h2_c01285{height:61.370156px;}
.h1_c01285{height:192.502969px;}
.h0_c01285{height:810.000000px;}
.w0_c01285{width:1080.000000px;}
.x0_c01285{left:0.000000px;}
.x1_c01285{left:284.865000px;}
.x2_c01285{left:991.770000px;}
@media print{
.v0_c01285{vertical-align:0.000000pt;}
.ls1_c01285{letter-spacing:-0.033067pt;}
.ls0_c01285{letter-spacing:0.000000pt;}
.ws0_c01285{word-spacing:-20.783573pt;}
.ws1_c01285{word-spacing:0.000000pt;}
._0_c01285{margin-left:-1987.840427pt;}
._1_c01285{margin-left:-2.171745pt;}
.fs1_c01285{font-size:74.880000pt;}
.fs0_c01285{font-size:234.880000pt;}
.y0_c01285{bottom:0.000000pt;}
.y2_c01285{bottom:41.312000pt;}
.y1_c01285{bottom:618.373333pt;}
.h2_c01285{height:54.551250pt;}
.h1_c01285{height:171.113750pt;}
.h0_c01285{height:720.000000pt;}
.w0_c01285{width:960.000000pt;}
.x0_c01285{left:0.000000pt;}
.x1_c01285{left:253.213333pt;}
.x2_c01285{left:881.573333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd5587b5e113594f83ff6359.woff2')format("woff");}.ff1_c01286{font-family:ff1_c01286;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01286{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01286{vertical-align:0.000000px;}
.ls3_c01286{letter-spacing:-0.037200px;}
.ls2_c01286{letter-spacing:-0.028200px;}
.ls1_c01286{letter-spacing:0.000000px;}
.ls0_c01286{letter-spacing:0.341400px;}
.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;}
}
.ws1_c01286{word-spacing:-23.418720px;}
.ws0_c01286{word-spacing:-23.390520px;}
.ws2_c01286{word-spacing:0.000000px;}
._1_c01286{margin-left:-7.875202px;}
._3_c01286{margin-left:-2.880360px;}
._0_c01286{margin-left:-1.179613px;}
._2_c01286{width:1.327680px;}
.fc1_c01286{color:rgb(0,153,153);}
.fc0_c01286{color:rgb(0,0,0);}
.fs1_c01286{font-size:84.240000px;}
.fs2_c01286{font-size:84.384000px;}
.fs0_c01286{font-size:264.240000px;}
.y0_c01286{bottom:0.000000px;}
.y3_c01286{bottom:21.276000px;}
.y2_c01286{bottom:46.476000px;}
.y1_c01286{bottom:694.620000px;}
.h2_c01286{height:61.370156px;}
.h3_c01286{height:61.475062px;}
.h1_c01286{height:192.502969px;}
.h0_c01286{height:810.000000px;}
.w0_c01286{width:1080.000000px;}
.x0_c01286{left:0.000000px;}
.x2_c01286{left:209.415000px;}
.x1_c01286{left:317.850000px;}
.x3_c01286{left:460.725000px;}
.x4_c01286{left:991.770000px;}
@media print{
.v0_c01286{vertical-align:0.000000pt;}
.ls3_c01286{letter-spacing:-0.033067pt;}
.ls2_c01286{letter-spacing:-0.025067pt;}
.ls1_c01286{letter-spacing:0.000000pt;}
.ls0_c01286{letter-spacing:0.303467pt;}
.ws1_c01286{word-spacing:-20.816640pt;}
.ws0_c01286{word-spacing:-20.791573pt;}
.ws2_c01286{word-spacing:0.000000pt;}
._1_c01286{margin-left:-7.000179pt;}
._3_c01286{margin-left:-2.560320pt;}
._0_c01286{margin-left:-1.048545pt;}
._2_c01286{width:1.180160pt;}
.fs1_c01286{font-size:74.880000pt;}
.fs2_c01286{font-size:75.008000pt;}
.fs0_c01286{font-size:234.880000pt;}
.y0_c01286{bottom:0.000000pt;}
.y3_c01286{bottom:18.912000pt;}
.y2_c01286{bottom:41.312000pt;}
.y1_c01286{bottom:617.440000pt;}
.h2_c01286{height:54.551250pt;}
.h3_c01286{height:54.644500pt;}
.h1_c01286{height:171.113750pt;}
.h0_c01286{height:720.000000pt;}
.w0_c01286{width:960.000000pt;}
.x0_c01286{left:0.000000pt;}
.x2_c01286{left:186.146667pt;}
.x1_c01286{left:282.533333pt;}
.x3_c01286{left:409.533333pt;}
.x4_c01286{left:881.573333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0aedb5ad5f4d03dc42b49185.woff2')format("woff");}.ff1_c01287{font-family:ff1_c01287;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01287{vertical-align:0.000000px;}
.ls1_c01287{letter-spacing:-0.037200px;}
.ls0_c01287{letter-spacing:0.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;}
}
.ws0_c01287{word-spacing:0.000000px;}
._1_c01287{margin-left:-6.064775px;}
._0_c01287{margin-left:-1.432248px;}
.fc0_c01287{color:rgb(0,0,0);}
.fs1_c01287{font-size:84.240000px;}
.fs2_c01287{font-size:84.384000px;}
.fs0_c01287{font-size:264.240000px;}
.y0_c01287{bottom:0.000000px;}
.y3_c01287{bottom:21.276000px;}
.y2_c01287{bottom:46.476000px;}
.y1_c01287{bottom:695.670000px;}
.h2_c01287{height:61.370156px;}
.h3_c01287{height:61.475062px;}
.h1_c01287{height:192.502969px;}
.h0_c01287{height:810.000000px;}
.w0_c01287{width:1080.000000px;}
.x0_c01287{left:0.000000px;}
.x1_c01287{left:317.850000px;}
.x2_c01287{left:399.030000px;}
.x3_c01287{left:456.090000px;}
.x4_c01287{left:991.770000px;}
@media print{
.v0_c01287{vertical-align:0.000000pt;}
.ls1_c01287{letter-spacing:-0.033067pt;}
.ls0_c01287{letter-spacing:0.000000pt;}
.ws0_c01287{word-spacing:0.000000pt;}
._1_c01287{margin-left:-5.390911pt;}
._0_c01287{margin-left:-1.273110pt;}
.fs1_c01287{font-size:74.880000pt;}
.fs2_c01287{font-size:75.008000pt;}
.fs0_c01287{font-size:234.880000pt;}
.y0_c01287{bottom:0.000000pt;}
.y3_c01287{bottom:18.912000pt;}
.y2_c01287{bottom:41.312000pt;}
.y1_c01287{bottom:618.373333pt;}
.h2_c01287{height:54.551250pt;}
.h3_c01287{height:54.644500pt;}
.h1_c01287{height:171.113750pt;}
.h0_c01287{height:720.000000pt;}
.w0_c01287{width:960.000000pt;}
.x0_c01287{left:0.000000pt;}
.x1_c01287{left:282.533333pt;}
.x2_c01287{left:354.693333pt;}
.x3_c01287{left:405.413333pt;}
.x4_c01287{left:881.573333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f2f79188aa6ff9b45034ad15.woff2')format("woff");}.ff1_c01288{font-family:ff1_c01288;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01288{vertical-align:0.000000px;}
.ls1_c01288{letter-spacing:-0.037200px;}
.ls0_c01288{letter-spacing:0.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:-73.458720px;}
.ws1_c01288{word-spacing:-46.677312px;}
.ws2_c01288{word-spacing:0.000000px;}
._2_c01288{margin-left:-2.852423px;}
._1_c01288{width:1.342248px;}
._3_c01288{width:2.409577px;}
._0_c01288{width:76.644000px;}
.fc0_c01288{color:rgb(0,0,0);}
.fs1_c01288{font-size:84.240000px;}
.fs2_c01288{font-size:167.760000px;}
.fs3_c01288{font-size:167.904000px;}
.fs0_c01288{font-size:264.240000px;}
.y0_c01288{bottom:0.000000px;}
.y2_c01288{bottom:46.476000px;}
.yd_c01288{bottom:116.136000px;}
.yc_c01288{bottom:166.575000px;}
.yb_c01288{bottom:216.975000px;}
.ya_c01288{bottom:267.375000px;}
.y9_c01288{bottom:317.805000px;}
.y8_c01288{bottom:368.205000px;}
.y7_c01288{bottom:418.605000px;}
.y6_c01288{bottom:469.050000px;}
.y5_c01288{bottom:519.450000px;}
.y4_c01288{bottom:569.850000px;}
.y3_c01288{bottom:620.250000px;}
.y1_c01288{bottom:709.380000px;}
.h2_c01288{height:61.370156px;}
.h3_c01288{height:122.215781px;}
.h4_c01288{height:122.320687px;}
.h1_c01288{height:192.502969px;}
.h0_c01288{height:810.000000px;}
.w0_c01288{width:1080.000000px;}
.x0_c01288{left:0.000000px;}
.x3_c01288{left:60.192000px;}
.x4_c01288{left:94.032000px;}
.x1_c01288{left:359.970000px;}
.x5_c01288{left:456.090000px;}
.x2_c01288{left:991.770000px;}
@media print{
.v0_c01288{vertical-align:0.000000pt;}
.ls1_c01288{letter-spacing:-0.033067pt;}
.ls0_c01288{letter-spacing:0.000000pt;}
.ws0_c01288{word-spacing:-65.296640pt;}
.ws1_c01288{word-spacing:-41.490944pt;}
.ws2_c01288{word-spacing:0.000000pt;}
._2_c01288{margin-left:-2.535487pt;}
._1_c01288{width:1.193109pt;}
._3_c01288{width:2.141846pt;}
._0_c01288{width:68.128000pt;}
.fs1_c01288{font-size:74.880000pt;}
.fs2_c01288{font-size:149.120000pt;}
.fs3_c01288{font-size:149.248000pt;}
.fs0_c01288{font-size:234.880000pt;}
.y0_c01288{bottom:0.000000pt;}
.y2_c01288{bottom:41.312000pt;}
.yd_c01288{bottom:103.232000pt;}
.yc_c01288{bottom:148.066667pt;}
.yb_c01288{bottom:192.866667pt;}
.ya_c01288{bottom:237.666667pt;}
.y9_c01288{bottom:282.493333pt;}
.y8_c01288{bottom:327.293333pt;}
.y7_c01288{bottom:372.093333pt;}
.y6_c01288{bottom:416.933333pt;}
.y5_c01288{bottom:461.733333pt;}
.y4_c01288{bottom:506.533333pt;}
.y3_c01288{bottom:551.333333pt;}
.y1_c01288{bottom:630.560000pt;}
.h2_c01288{height:54.551250pt;}
.h3_c01288{height:108.636250pt;}
.h4_c01288{height:108.729500pt;}
.h1_c01288{height:171.113750pt;}
.h0_c01288{height:720.000000pt;}
.w0_c01288{width:960.000000pt;}
.x0_c01288{left:0.000000pt;}
.x3_c01288{left:53.504000pt;}
.x4_c01288{left:83.584000pt;}
.x1_c01288{left:319.973333pt;}
.x5_c01288{left:405.413333pt;}
.x2_c01288{left:881.573333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c35d25a7374f1623d6210d1.woff2')format("woff");}.ff1_c01289{font-family:ff1_c01289;line-height:0.938965;font-style: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);}
.v2_c01289{vertical-align:-43.200000px;}
.v0_c01289{vertical-align:0.000000px;}
.v1_c01289{vertical-align:43.200000px;}
.ls4_c01289{letter-spacing:-0.144000px;}
.ls3_c01289{letter-spacing:-0.037200px;}
.ls2_c01289{letter-spacing:0.000000px;}
.ls0_c01289{letter-spacing:0.408000px;}
.ls1_c01289{letter-spacing:39.701376px;}
.sc__c01289{text-shadow:none;}
.sc0_c01289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01289{-webkit-text-stroke:0px transparent;}
.sc0_c01289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01289{word-spacing:-73.458720px;}
.ws4_c01289{word-spacing:-40.072032px;}
.ws5_c01289{word-spacing:0.000000px;}
.ws1_c01289{word-spacing:0.432000px;}
.ws2_c01289{word-spacing:13.016160px;}
.ws3_c01289{word-spacing:13.736160px;}
._4_c01289{margin-left:-16.272000px;}
._3_c01289{margin-left:-5.904000px;}
._5_c01289{margin-left:-2.443213px;}
._2_c01289{margin-left:-1.440000px;}
._1_c01289{width:1.728000px;}
._0_c01289{width:84.960000px;}
.fc0_c01289{color:rgb(0,0,0);}
.fs1_c01289{font-size:84.240000px;}
.fs3_c01289{font-size:95.760000px;}
.fs4_c01289{font-size:95.904000px;}
.fs2_c01289{font-size:144.000000px;}
.fs5_c01289{font-size:144.144000px;}
.fs0_c01289{font-size:264.240000px;}
.y0_c01289{bottom:0.000000px;}
.y10_c01289{bottom:30.348000px;}
.y2_c01289{bottom:46.476000px;}
.yf_c01289{bottom:115.452000px;}
.ye_c01289{bottom:158.655000px;}
.yd_c01289{bottom:201.855000px;}
.yc_c01289{bottom:245.055000px;}
.yb_c01289{bottom:288.285000px;}
.ya_c01289{bottom:331.485000px;}
.y9_c01289{bottom:374.685000px;}
.y8_c01289{bottom:417.885000px;}
.y7_c01289{bottom:461.130000px;}
.y6_c01289{bottom:504.330000px;}
.y5_c01289{bottom:547.530000px;}
.y4_c01289{bottom:601.560000px;}
.y3_c01289{bottom:633.960000px;}
.y1_c01289{bottom:709.380000px;}
.h2_c01289{height:61.370156px;}
.h4_c01289{height:69.867562px;}
.h5_c01289{height:104.906250px;}
.h6_c01289{height:105.011156px;}
.h3_c01289{height:112.962656px;}
.h1_c01289{height:192.502969px;}
.h0_c01289{height:810.000000px;}
.w0_c01289{width:1080.000000px;}
.x0_c01289{left:0.000000px;}
.x3_c01289{left:64.800000px;}
.x4_c01289{left:98.640000px;}
.x1_c01289{left:359.970000px;}
.x5_c01289{left:456.090000px;}
.x2_c01289{left:991.770000px;}
@media print{
.v2_c01289{vertical-align:-38.400000pt;}
.v0_c01289{vertical-align:0.000000pt;}
.v1_c01289{vertical-align:38.400000pt;}
.ls4_c01289{letter-spacing:-0.128000pt;}
.ls3_c01289{letter-spacing:-0.033067pt;}
.ls2_c01289{letter-spacing:0.000000pt;}
.ls0_c01289{letter-spacing:0.362667pt;}
.ls1_c01289{letter-spacing:35.290112pt;}
.ws0_c01289{word-spacing:-65.296640pt;}
.ws4_c01289{word-spacing:-35.619584pt;}
.ws5_c01289{word-spacing:0.000000pt;}
.ws1_c01289{word-spacing:0.384000pt;}
.ws2_c01289{word-spacing:11.569920pt;}
.ws3_c01289{word-spacing:12.209920pt;}
._4_c01289{margin-left:-14.464000pt;}
._3_c01289{margin-left:-5.248000pt;}
._5_c01289{margin-left:-2.171745pt;}
._2_c01289{margin-left:-1.280000pt;}
._1_c01289{width:1.536000pt;}
._0_c01289{width:75.520000pt;}
.fs1_c01289{font-size:74.880000pt;}
.fs3_c01289{font-size:85.120000pt;}
.fs4_c01289{font-size:85.248000pt;}
.fs2_c01289{font-size:128.000000pt;}
.fs5_c01289{font-size:128.128000pt;}
.fs0_c01289{font-size:234.880000pt;}
.y0_c01289{bottom:0.000000pt;}
.y10_c01289{bottom:26.976000pt;}
.y2_c01289{bottom:41.312000pt;}
.yf_c01289{bottom:102.624000pt;}
.ye_c01289{bottom:141.026667pt;}
.yd_c01289{bottom:179.426667pt;}
.yc_c01289{bottom:217.826667pt;}
.yb_c01289{bottom:256.253333pt;}
.ya_c01289{bottom:294.653333pt;}
.y9_c01289{bottom:333.053333pt;}
.y8_c01289{bottom:371.453333pt;}
.y7_c01289{bottom:409.893333pt;}
.y6_c01289{bottom:448.293333pt;}
.y5_c01289{bottom:486.693333pt;}
.y4_c01289{bottom:534.720000pt;}
.y3_c01289{bottom:563.520000pt;}
.y1_c01289{bottom:630.560000pt;}
.h2_c01289{height:54.551250pt;}
.h4_c01289{height:62.104500pt;}
.h5_c01289{height:93.250000pt;}
.h6_c01289{height:93.343250pt;}
.h3_c01289{height:100.411250pt;}
.h1_c01289{height:171.113750pt;}
.h0_c01289{height:720.000000pt;}
.w0_c01289{width:960.000000pt;}
.x0_c01289{left:0.000000pt;}
.x3_c01289{left:57.600000pt;}
.x4_c01289{left:87.680000pt;}
.x1_c01289{left:319.973333pt;}
.x5_c01289{left:405.413333pt;}
.x2_c01289{left:881.573333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dc840b10640318ae1d7f8aba.woff2')format("woff");}.ff1_c01290{font-family:ff1_c01290;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01290;src:url('chunks/assets/font_a38a0454e163fc236872f685.woff2')format("woff");}.ff2_c01290{font-family:ff2_c01290;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01290;src:url('chunks/assets/font_3b8a5333576a706742f9b5e1.woff2')format("woff");}.ff3_c01290{font-family:ff3_c01290;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01290{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01290{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01290{vertical-align:0.000000px;}
.ls6_c01290{letter-spacing:-0.287280px;}
.ls5_c01290{letter-spacing:-0.167760px;}
.ls4_c01290{letter-spacing:-0.095760px;}
.ls3_c01290{letter-spacing:0.000000px;}
.ls2_c01290{letter-spacing:0.216000px;}
.ls7_c01290{letter-spacing:0.287280px;}
.ls1_c01290{letter-spacing:0.670320px;}
.ls0_c01290{letter-spacing:1.006560px;}
.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;}
}
.ws1_c01290{word-spacing:-37.746000px;}
.ws5_c01290{word-spacing:-21.929040px;}
.ws4_c01290{word-spacing:-21.641760px;}
.ws2_c01290{word-spacing:-21.546000px;}
.ws3_c01290{word-spacing:-21.354480px;}
.ws0_c01290{word-spacing:-16.272000px;}
.ws6_c01290{word-spacing:-0.216000px;}
.ws7_c01290{word-spacing:0.000000px;}
.ws8_c01290{word-spacing:0.095760px;}
.ws9_c01290{word-spacing:0.335520px;}
.wsa_c01290{word-spacing:0.766080px;}
._1_c01290{margin-left:-1.139544px;}
._0_c01290{width:1.082088px;}
.fc1_c01290{color:rgb(0,0,255);}
.fc0_c01290{color:rgb(0,0,0);}
.fs0_c01290{font-size:72.000000px;}
.fs1_c01290{font-size:95.760000px;}
.fs2_c01290{font-size:167.760000px;}
.y0_c01290{bottom:0.000000px;}
.y2_c01290{bottom:61.560000px;}
.y1_c01290{bottom:87.120000px;}
.y14_c01290{bottom:220.320360px;}
.y13_c01290{bottom:255.607920px;}
.y12_c01290{bottom:290.703960px;}
.y11_c01290{bottom:325.800000px;}
.y10_c01290{bottom:361.095660px;}
.yf_c01290{bottom:396.191700px;}
.ye_c01290{bottom:424.800000px;}
.yd_c01290{bottom:729.536400px;}
.yc_c01290{bottom:764.823960px;}
.yb_c01290{bottom:799.920000px;}
.ya_c01290{bottom:844.192080px;}
.y9_c01290{bottom:905.760000px;}
.y8_c01290{bottom:958.136760px;}
.y7_c01290{bottom:993.232800px;}
.y6_c01290{bottom:1028.520360px;}
.y5_c01290{bottom:1063.616400px;}
.y4_c01290{bottom:1098.712440px;}
.y3_c01290{bottom:1134.000000px;}
.h3_c01290{height:47.988281px;}
.h2_c01290{height:51.679688px;}
.h5_c01290{height:65.460938px;}
.h4_c01290{height:68.733984px;}
.h6_c01290{height:114.679688px;}
.h0_c01290{height:1262.880000px;}
.h1_c01290{height:1263.000000px;}
.w0_c01290{width:892.980000px;}
.w1_c01290{width:893.250000px;}
.x0_c01290{left:0.000000px;}
.x2_c01290{left:106.200000px;}
.x1_c01290{left:432.720000px;}
.x3_c01290{left:784.080000px;}
@media print{
.v0_c01290{vertical-align:0.000000pt;}
.ls6_c01290{letter-spacing:-0.255360pt;}
.ls5_c01290{letter-spacing:-0.149120pt;}
.ls4_c01290{letter-spacing:-0.085120pt;}
.ls3_c01290{letter-spacing:0.000000pt;}
.ls2_c01290{letter-spacing:0.192000pt;}
.ls7_c01290{letter-spacing:0.255360pt;}
.ls1_c01290{letter-spacing:0.595840pt;}
.ls0_c01290{letter-spacing:0.894720pt;}
.ws1_c01290{word-spacing:-33.552000pt;}
.ws5_c01290{word-spacing:-19.492480pt;}
.ws4_c01290{word-spacing:-19.237120pt;}
.ws2_c01290{word-spacing:-19.152000pt;}
.ws3_c01290{word-spacing:-18.981760pt;}
.ws0_c01290{word-spacing:-14.464000pt;}
.ws6_c01290{word-spacing:-0.192000pt;}
.ws7_c01290{word-spacing:0.000000pt;}
.ws8_c01290{word-spacing:0.085120pt;}
.ws9_c01290{word-spacing:0.298240pt;}
.wsa_c01290{word-spacing:0.680960pt;}
._1_c01290{margin-left:-1.012928pt;}
._0_c01290{width:0.961856pt;}
.fs0_c01290{font-size:64.000000pt;}
.fs1_c01290{font-size:85.120000pt;}
.fs2_c01290{font-size:149.120000pt;}
.y0_c01290{bottom:0.000000pt;}
.y2_c01290{bottom:54.720000pt;}
.y1_c01290{bottom:77.440000pt;}
.y14_c01290{bottom:195.840320pt;}
.y13_c01290{bottom:227.207040pt;}
.y12_c01290{bottom:258.403520pt;}
.y11_c01290{bottom:289.600000pt;}
.y10_c01290{bottom:320.973920pt;}
.yf_c01290{bottom:352.170400pt;}
.ye_c01290{bottom:377.600000pt;}
.yd_c01290{bottom:648.476800pt;}
.yc_c01290{bottom:679.843520pt;}
.yb_c01290{bottom:711.040000pt;}
.ya_c01290{bottom:750.392960pt;}
.y9_c01290{bottom:805.120000pt;}
.y8_c01290{bottom:851.677120pt;}
.y7_c01290{bottom:882.873600pt;}
.y6_c01290{bottom:914.240320pt;}
.y5_c01290{bottom:945.436800pt;}
.y4_c01290{bottom:976.633280pt;}
.y3_c01290{bottom:1008.000000pt;}
.h3_c01290{height:42.656250pt;}
.h2_c01290{height:45.937500pt;}
.h5_c01290{height:58.187500pt;}
.h4_c01290{height:61.096875pt;}
.h6_c01290{height:101.937500pt;}
.h0_c01290{height:1122.560000pt;}
.h1_c01290{height:1122.666667pt;}
.w0_c01290{width:793.760000pt;}
.w1_c01290{width:794.000000pt;}
.x0_c01290{left:0.000000pt;}
.x2_c01290{left:94.400000pt;}
.x1_c01290{left:384.640000pt;}
.x3_c01290{left:696.960000pt;}
}




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